:root {
  --zero: #000;
  --white: #fff;
  --orange: #E8860E;
  --blue: #004AA8;
  --blueLight: #076AE8;
  --blueDark: #001D54;
  --border: #2C4471;
  --tGray: rgba(0, 29, 84, 0.20);
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.otf") format("opentype");
  font-weight: 700;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: 0px;
  font-family: "Myriad Pro";
  font-weight: 400;
  color: var(--white);
  background: var(--blue);
  font-size: 32px;
  line-height: 140%;
  width: 100%;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.no-scroll > .simplebar-track {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  border-bottom: 1px solid var(--blueLight);
}

.header a {
  color: inherit;
  text-decoration: none;
}

.header__item {
  padding: 0 32px;
  border-right: 1px solid var(--blueLight);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 89px;
  position: relative;
  background: rgba(0, 73, 168, 0.8);
}

.header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header__item--logo {
  pointer-events: none;
}

.header__item--logo img {
  height: 32px;
  width: auto;
}

.header__item:last-child {
  border: none;
  padding-right: 16px;
}

.header__item:last-child .right {
  display: block;
  width: 24px;
  height: 90px;
  position: absolute;
  top: 0px;
  left: 100%;
  background: rgba(0, 73, 168, 0.8) url("../img/header-1.svg") center center/contain no-repeat;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-clip-path: polygon(-2px 1px, 108.33% 2px, 108.33% 72.01%, 33.67% 101.11%, -3px 101.11%);
          clip-path: polygon(-2px 1px, 108.33% 2px, 108.33% 72.01%, 33.67% 101.11%, -3px 101.11%);
}

.header__item:hover span {
  opacity: 1;
}

.header__item:hover::before {
  width: 80px;
}

.header__item img {
  display: block;
}

.header__item::before {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0px;
  background: var(--orange);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header__text {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

p {
  margin: 10px 0;
}

.container {
  width: 1632px;
  margin: 0 auto;
  position: relative;
}

.oval-1 {
  width: 1740.471px;
  height: 436.595px;
  width: 76.56vw;
  height: 22.71vw;
  -webkit-transform: rotate(25.478deg);
      -ms-transform: rotate(25.478deg);
          transform: rotate(25.478deg);
  border-radius: 1740.471px;
  opacity: 0.4;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(170, 255, 255, 0.8) 0%, rgba(148, 248, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(170, 255, 255, 0.8) 0%, rgba(148, 248, 255, 0) 100%);
  position: absolute;
  top: 17.3vw;
  left: -44vw;
  z-index: 1;
}

.top {
  padding-top: 240px;
  position: relative;
  width: calc((100% + 32px) / 12 * 6 - 32px);
  z-index: 3;
}

.top__title {
  display: inline-block;
  position: relative;
  background: var(--orange);
  font-weight: 400;
  line-height: 110%;
  font-size: 56px;
  margin: 0 0 80px;
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  -webkit-mask-image: url("../img/mask.svg");
          mask-image: url("../img/mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 900px 400px;
          mask-size: 900px 400px;
  -webkit-mask-position: right bottom;
          mask-position: right bottom;
  text-transform: uppercase;
}

.logo_video {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  z-index: 1;
}

.logo_video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 74, 168, 0) 88.94%, #004AA8 96.63%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 74, 168, 0) 88.94%, #004AA8 96.63%);
  border-radius: 50%;
}

.logo_video::after {
  content: "";
  display: block;
  width: 132.75%;
  height: 132.75%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(1, 61, 136, 0) 70.25%, #013D88 73.29%, rgba(1, 61, 136, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(1, 61, 136, 0) 70.25%, #013D88 73.29%, rgba(1, 61, 136, 0) 100%);
}

.logo_video .logo_video__video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.logo_video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 116.63%;
  height: 116.63%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.logo_animate {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 208px;
  height: 84px;
  background: url(../img/logo-anime.svg) 50% -10%/100% auto no-repeat;
}

.logo_animate[data-frame="1"] {
  background-position-y: 0%;
}

.logo_animate[data-frame="1"] {
  background-position-y: 18.75%;
}

.logo_animate[data-frame="2"] {
  background-position-y: 25%;
}

.logo_animate[data-frame="3"] {
  background-position-y: 31.25%;
}

.logo_animate[data-frame="4"] {
  background-position-y: 37.5%;
}

.logo_animate[data-frame="5"] {
  background-position-y: 43.75%;
}

.logo_animate[data-frame="6"] {
  background-position-y: 50%;
}

.logo_animate[data-frame="7"] {
  background-position-y: 56.25%;
}

.logo_animate[data-frame="8"] {
  background-position-y: 62.5%;
}

.logo_animate[data-frame="9"] {
  background-position-y: 68.75%;
}

.logo_animate[data-frame="10"] {
  background-position-y: 75%;
}

.logo_animate[data-frame="11"] {
  background-position-y: 81.25%;
}

.logo_animate[data-frame="12"] {
  background-position-y: 87.5%;
}

.logo_animate[data-frame="13"] {
  background-position-y: 93.75%;
}

.logo_animate[data-frame="14"] {
  background-position-y: 100%;
}

.weave {
  margin-top: -148px;
  margin-bottom: 60px;
  position: relative;
}

.weave video {
  width: 100%;
  opacity: 0.6;
  pointer-events: none;
}

.weave::after {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 74, 168, 0)), to(#004AA8));
  background: -o-linear-gradient(top, rgba(0, 74, 168, 0) 0%, #004AA8 100%);
  background: linear-gradient(180deg, rgba(0, 74, 168, 0) 0%, #004AA8 100%);
  pointer-events: none;
}

.ships {
  position: absolute;
  left: 0;
  width: 100%;
  background-size: auto 100%;
  background-repeat: repeat-x;
}

.ships--1 {
  top: 39%;
  height: 111px;
  background-image: url(../img/ships-1.svg);
  -webkit-animation: ships-1 12000s infinite linear;
          animation: ships-1 12000s infinite linear;
}

@-webkit-keyframes ships-1 {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: -10000% 0%;
  }
}

@keyframes ships-1 {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: -10000% 0%;
  }
}

.ships--2 {
  top: 55%;
  height: 147px;
  background-image: url(../img/ships-2.svg);
  -webkit-animation: ships-1 4000s infinite linear;
          animation: ships-1 4000s infinite linear;
}

@-webkit-keyframes ships-2 {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: -10000% 0%;
  }
}

@keyframes ships-2 {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: -10000% 0%;
  }
}

.title {
  display: inline-block;
  position: relative;
  background: var(--orange);
  font-weight: 400;
  line-height: 110%;
  font-size: 56px;
  margin: 0 0 80px;
  padding: 10px 8px 10px 16px;
  border-radius: 8px 0 0 8px;
  -webkit-mask-position: right bottom;
          mask-position: right bottom;
  text-transform: uppercase;
}

.title::before {
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 100%;
  border-radius: 0 8px 0 0;
  background: var(--orange);
  -webkit-mask-image: url("../img/mask-one.svg");
          mask-image: url("../img/mask-one.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 900px 400px;
          mask-size: 900px 400px;
  -webkit-mask-position: right bottom;
          mask-position: right bottom;
}

.sub-title {
  font-weight: 400;
  line-height: 110%;
  font-size: 56px;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.map {
  position: relative;
  margin-bottom: 290px;
}

.map .title {
  position: absolute;
  top: 0;
  left: 0;
}

.map__wrapper {
  position: relative;
  z-index: 1;
}

.shadow-1 {
  width: 119.43vw;
  height: 56.25vw;
  position: absolute;
  top: -3.13vw;
  right: -48.85vw;
  z-index: 1;
  border-radius: 119.43vw;
  background: -o-radial-gradient(50% 50%, 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
}

.shadow-2 {
  width: 100vw;
  height: 39.58vw;
  position: absolute;
  top: 16.93vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  border-radius: 100vw;
  background: -o-radial-gradient(50% 50%, 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
  opacity: 0.4;
}

.shadow-3 {
  width: 55.05vw;
  height: 55.05vw;
  position: absolute;
  top: 21.88vw;
  left: -27.55vw;
  z-index: 1;
  border-radius: 50%;
  background: -o-radial-gradient(50% 50%, 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #00387B 0%, rgba(0, 56, 123, 0) 100%);
}

.map__image {
  width: 100%;
  display: block;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.map__point {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 48px;
}

.map__point img {
  display: block;
  width: 100%;
}

.map__point:hover .map__title {
  border-color: var(--blueLight);
  background: var(--blue);
  -webkit-box-shadow: 0 0 16px 0 rgba(51, 138, 253, 0.6);
          box-shadow: 0 0 16px 0 rgba(51, 138, 253, 0.6);
}

.map__point.active .map__title {
  display: block;
  border-color: var(--blueLight);
  background: var(--blue);
  -webkit-box-shadow: 0 0 16px 0 rgba(51, 138, 253, 0.6);
          box-shadow: 0 0 16px 0 rgba(51, 138, 253, 0.6);
}

.map__point--murmansk {
  top: 35%;
  left: 24%;
}

.map__point--spb {
  top: 45.3%;
  left: 13.2%;
}

.map__point--nizhnii-novgorod {
  top: 65.1%;
  left: 18.5%;
}

.map__point--viliuchinsk {
  top: 47.2%;
  left: 96.7%;
}

.map__point--khabarovsk {
  top: 80.5%;
  left: 87.8%;
}

.map__point--vladivostok {
  top: 90%;
  left: 90.9%;
}

.map__point--bolshoi-kamen {
  top: 94.7%;
  left: 88.5%;
}

.map__title {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 5px 12px 3px;
  border-radius: 20px;
  background: var(--blueDark);
  border: 1px solid var(--blueDark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 110%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: default;
  white-space: nowrap;
}

.map__title--left {
  left: auto;
  right: 100%;
}

.contacts {
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
  background: url(../img/contacts-shadow.svg) 0% 100%/100% auto no-repeat;
}

.contacts__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contacts__item {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--tGray);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  min-height: 340px;
  padding: 32px;
  gap: 20px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.contacts__item:hover {
  border-color: #38ABFE;
  -webkit-box-shadow: 0 0 24px 2px #38ABFE, inset 0 0 24px 2px #38ABFE;
          box-shadow: 0 0 24px 2px #38ABFE, inset 0 0 24px 2px #38ABFE;
}

.contacts__ico img {
  height: 48px;
}

.contacts__text {
  margin-top: auto;
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
}

.contacts__text a {
  color: inherit;
  text-decoration: none;
}

.oval-2 {
  position: absolute;
  top: 0.82vw;
  right: -5.47vw;
  width: 71.93vw;
  height: 18.02vw;
  -webkit-transform: rotate(154.51deg);
      -ms-transform: rotate(154.51deg);
          transform: rotate(154.51deg);
  border-radius: 71.93vw;
  opacity: 0.4;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(170, 255, 255, 0.8) 0%, rgba(148, 248, 255, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(170, 255, 255, 0.8) 0%, rgba(148, 248, 255, 0) 100%);
  -webkit-filter: blur(16px);
          filter: blur(16px);
}

.creator {
  margin-top: 160px;
  margin-bottom: -160px;
  width: 100%;
}

.creator a {
  color: inherit;
}

@media (max-width: 1680px) {
  body {
    font-size: 28px;
  }

  .header {
    font-size: 20px;
  }

  .header__item {
    height: 85px;
  }

  .header__item:last-child {
    padding-right: 8px;
  }

  .header__item:last-child .right {
    width: 23px;
    height: 86px;
    background-image: url(../img/header-2.svg);
  }

  .container {
    width: calc(100vw - 128px);
  }

  .top {
    padding-top: 170px;
    width: calc((100% + 32px) / 12 * 7 - 32px);
  }

  .top__title {
    font-size: 48px;
    margin-bottom: 60px;
    -webkit-mask-size: 900px 400px;
            mask-size: 900px 400px;
  }

  .logo_video {
    width: calc((100vw - 128px + 32px) / 12 * 5 - 32px);
    height: calc((100vw - 128px + 32px) / 12 * 5 - 32px);
  }

  .logo_animate {
    width: 132px;
    height: 53px;
  }

  .weave {
    margin-top: -122px;
  }

  .weave::after {
    height: 85px;
  }

  .ships--1 {
    height: 78px;
  }

  .ships--2 {
    height: 104px;
  }

  .title {
    font-size: 48px;
    margin-bottom: 60px;
    -webkit-mask-size: 900px 400px;
            mask-size: 900px 400px;
  }

  .sub-title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .map {
    margin-bottom: 180px;
  }

  .contacts {
    padding-bottom: 80px;
  }

  .contacts__item {
    min-height: 280px;
  }

  .contacts__text {
    font-size: 32px;
  }

  .creator {
    margin-top: 60px;
    margin-bottom: -60px;
  }
}

@media (max-width: 1280px) {
  body {
    font-size: 24px;
  }

  .header {
    font-size: 18px;
  }

  .header__item {
    height: 67px;
    padding: 0 24px;
  }

  .header__item--logo img {
    height: 28px;
  }

  .header__item:last-child {
    padding-right: 4px;
  }

  .header__item:last-child .right {
    width: 18px;
    height: 68px;
    background-image: url(../img/header-3.svg);
  }

  .header__item:hover::before {
    width: 68px;
  }

  .container {
    width: calc(100vw - 64px);
  }

  .top {
    padding-top: 128px;
  }

  .top__title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .logo_animate {
    width: 96px;
    height: 39px;
  }

  .weave {
    margin-top: -96px;
  }

  .weave::after {
    height: 64px;
  }

  .ships--1 {
    height: 58px;
  }

  .ships--2 {
    height: 78px;
  }

  .title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .sub-title {
    font-size: 42px;
  }

  .map {
    margin-bottom: 110px;
  }

  .map__point {
    width: 32px;
  }

  .map__title {
    padding: 4px 8px 4px;
    font-size: 16px;
  }

  .contacts__item {
    padding: 24px;
    min-height: 220px;
  }

  .contacts__ico img {
    height: 32px;
  }

  .contacts__text {
    font-size: 28px;
  }
}

@media (max-width: 910px) {
  .oval-1 {
    width: 940px;
    height: 240px;
    top: 600px;
    left: -300px;
  }

  .top {
    padding-top: 600px;
    width: 100%;
  }

  .logo_video {
    width: 416px;
    height: 416px;
    top: 117px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .logo_animate {
    width: 109px;
    height: 44px;
  }

  .weave::after {
    height: 48px;
  }

  .ships--1 {
    height: 44px;
  }

  .ships--2 {
    height: 58px;
  }

  .map .title {
    position: relative;
    margin-bottom: 40px !important;
  }

  .contacts__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .contacts__item {
    min-height: 180px;
  }

  .oval-2 {
    top: 18.82vw;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 18px;
  }

  .header {
    font-size: 14px;
  }

  .header__item {
    height: 39px;
    padding: 0 12px;
  }

  .header__item--logo img {
    height: 20px;
  }

  .header__item:last-child {
    padding-right: 0;
  }

  .header__item:last-child .right {
    width: 14px;
    height: 40px;
    background-image: url(../img/header-4.svg);
  }

  .header__item:hover::before {
    width: 48px;
  }

  .mobile-hide {
    display: none;
  }

  .container {
    width: calc(100vw - 32px);
  }

  .oval-1 {
    width: 555px;
    height: 140px;
    top: 440px;
    left: -200px;
  }

  .top {
    padding-top: 364px;
  }

  .top__title {
    font-size: 24px;
    padding: 6px 14px 6px 8px;
    margin-bottom: 20px;
    -webkit-mask-image: url("../img/mask-mobile.svg");
            mask-image: url("../img/mask-mobile.svg");
  }

  .logo_video {
    width: 270px;
    height: 270px;
    top: 60px;
  }

  .logo_animate {
    width: 69px;
    height: 28px;
  }

  .weave {
    margin-top: 4px;
    margin-bottom: 30px;
  }

  .weave::after {
    height: 25px;
  }

  .ships--1 {
    height: 22px;
  }

  .ships--2 {
    height: 30px;
  }

  .title {
    font-size: 24px;
    padding: 6px 0px 6px 8px;
    margin-bottom: 20px;
  }

  .title::before {
    width: 7px;
    -webkit-mask-image: url("../img/mask-one-mobile.svg");
            mask-image: url("../img/mask-one-mobile.svg");
  }

  .sub-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .shadow-1 {
    width: 152.82vw;
    height: 72.05vw;
    top: -7.69vw;
    right: auto;
    left: -16px;
  }

  .shadow-3 {
    width: 95.2vw;
    height: 95.2vw;
    top: 25vw;
    left: -48vw;
  }

  .map__point {
    width: 24px;
  }

  .map__title {
    display: none;
    padding: 2px 6px 1px;
    font-size: 12px;
  }

  .contacts {
    padding-bottom: 40px;
  }

  .creator {
    margin-top: 20px;
    margin-bottom: -20px;
  }

  .contacts__list {
    gap: 16px;
  }

  .contacts__text {
    font-size: 22px;
  }
}

@media (max-width: 910px) and (min-width: 601px) {
  .contacts__text br {
    display: none;
  }
}

.title_wrapper {
  position: relative;
}
.title_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 100%;
  -webkit-box-shadow: 0 0 24px 2px #FDA942, inset 0 0 24px 2px #FDA942;
  box-shadow: 0 0 24px 2px #FDA942, inset 0 0 24px 2px #FDA942;
  transition: opacity .4s;
  opacity: 0;
  pointer-events: none;
}
.title_wrapper.active::before {
  opacity: 1;
}
.top .title_wrapper::before {
  content: '';
  width: 773px;
  height: calc(100% - 80px);
  border-radius: 8px 8px 46px 8px;
}
.title_wrapper .title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(100% + 24px);
  height: 100%;
  -webkit-box-shadow: 0 0 24px 2px #FDA942, inset 0 0 24px 2px #FDA942;
  box-shadow: 0 0 24px 2px #FDA942, inset 0 0 24px 2px #FDA942;
  transition: opacity .4s;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px 8px 22px 8px;
}
.title_wrapper.active .title::after {
  opacity: 1;
}
@media (max-width: 1680px){
  .top .title_wrapper::before {
    width: 671px;
    height: calc(100% - 60px);
    border-radius: 8px 8px 50px 8px;
  }
}
@media (max-width: 1280px){
  .top .title_wrapper::before {
    width: 594px;
    height: calc(100% - 40px);
    border-radius: 8px 8px 50px 8px;
  }
}
@media (max-width: 600px){
  .top .title_wrapper::before {
    width: 330px;
    height: calc(100% - 20px);
    border-radius: 8px 8px 22px 8px;
  }
  .title_wrapper .title::after {
    width: calc(100% + 7px);
    border-radius: 8px 8px 12px 8px;
  }
}