.header {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    min-width: 260px;
    background: #090F34;
  }
  .header__wrapper {
    position: relative;
    height: 100%;
    padding: 60px 36px;
	  padding-left: 0px;
	  padding-right: 0px;
  }
  .header__wrapper nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
/*     gap: 30px; */
    margin-top: 44px;
  }
.header__wrapper nav > ul > li {
	background: none;
	padding: 12px 40px;
	transition: .2s;
}
.header__wrapper nav > ul > li:hover {
	background: #262A46;
	cursor: pointer;
	transition: .2s;
}
  .header__wrapper nav > ul li > a {
    color: #717484;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .header__wrapper nav > ul li > a:hover {
    color: #7660A8;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .header__wrapper .btn-wrapper {
    position: absolute;
    bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-evenly;
    gap: 38px;
	  padding-left: 40px;
  }
  .header__wrapper .btn-wrapper a {
    display: block;
    width: 44px;
    height: 44px;
    background: #1AE58C;
    padding: 12px;
    border-radius: 50%;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  .header__wrapper .btn-wrapper a:hover {
    background: #12f392;
  }
  .header__wrapper .btn-wrapper .switchLang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .header__wrapper .btn-wrapper .switchLang a {
    padding: 10px 5px;
    background: transparent;
    border: 1px solid #717484;
    color: #717484;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  .header__wrapper .btn-wrapper .switchLang a:hover {
    background: rgba(113, 116, 132, 0.2549019608);
  }
  .header__wrapper .btn-wrapper .switchLang .current {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: #fff;
    border: 1px solid #fff;
    color: #181818;
    pointer-events: none;
  }
  
  .burger {
    display: none;
  }
  
  @media (min-width: 1200px) {
    ul.mobileMenu {
      display: none;
    }
  }
  @media (max-width: 1199px) {
	  #logoMob {
		  display: block;
		  position: absolute;
		  left: 15px;
		  top: 20px;
	  }
    .burger {
      display: block;
      position: absolute;
      right: 35px;
      top: 30px;
    }
    ul.mobileMenu {
      border-radius: 10px;
      display: none;
      position: absolute;
      top: -10px;
      left: 0px;
      width: -webkit-fill-available;
      width: -moz-available;
      padding: 0;
      padding-bottom: 20px;
      list-style: none;
      margin: 20px auto;
      margin-left: 20px;
      margin-right: 20px;
      margin-bottom: 100px;
      background-color: transparent;
      z-index: 9999;
    }
    ul.mobileMenu #mobMenuWrapper {
      width: 384px;
      float: right;
      position: relative;
      top: -22px;
      border-radius: 0 0 10px 10px;
      background: #090F34;
      -webkit-box-shadow: 0px 11px 16px -4px rgba(34, 34, 34, 0.2);
              box-shadow: 0px 11px 16px -4px rgba(34, 34, 34, 0.2);
    }
    ul.mobileMenu .menuList {
      position: relative;
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      height: 50px;
      vertical-align: sub;
      background: #090F34;
      border-top: 1px solid #2b2b2b;
      clear: both;
      border-radius: 0 0 10px 10px;
    }
    ul.mobileMenu .menuList a {
      text-decoration: none;
      color: #fff;
      padding: 17px 0px 17px 20px;
      display: block;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      font-size: 18px;
      font-weight: 300;
      line-height: 15px;
    }
    ul.mobileMenu .menuList .items {
      height: 0px;
      padding-left: 0px;
      overflow: hidden;
    }
    ul.mobileMenu .menuList .items a {
      padding: 17px;
      padding-left: 30px;
      padding-top: 0;
      padding-bottom: 10px;
    }
    ul.mobileMenu .menuList:nth-child(5) .items {
      border-bottom: 1px solid #090f34;
    }
    ul.mobileMenu .menuList:nth-child(6)::after {
      content: url("/wp-content/themes/custom/images/chevron.svg");
      position: absolute;
      right: 20px;
      top: 12px;
      padding: 0px 5px;
      color: white;
    }
    ul.mobileMenu .active > .items {
      display: block;
      padding: 0px;
      height: auto;
      color: #fff;
      -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
              transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
      -webkit-transition: all 200ms;
      transition: all 200ms;
      clear: both;
      float: left;
      width: 100%;
      padding-top: 17px;
      background-color: #663EBA;
      border-radius: 0 0 10px 10px;
    }
    ul.mobileMenu .active > .items li {
      background-color: transparent;
      padding: 0px;
      list-style: none;
    }
    ul.mobileMenu .active > .items li a {
      color: #fff;
      font-size: 18px;
      font-weight: 400;
      line-height: 20px;
    }
    ul.mobileMenu .active > .items li:last-child {
      border-color: transparent;
      padding-bottom: 0px;
    }
    ul.mobileMenu .active > .items .active .items {
      background-color: white;
    }
    ul.mobileMenu .active > a {
      background-color: #1AE58C;
    }
    ul.mobileMenu .active .menuList {
      background-color: white;
      margin-bottom: 15px;
    }
    ul.mobileMenu .active .menuList a {
      background-color: white;
      padding: 17px 0px 17px 45px;
    }
    ul.mobileMenu .active::after {
      content: url("/wp-content/themes/custom/images/chevron-blue.svg") !important;
      font-size: 24px;
      top: 5px !important;
      color: black;
    }
    .mobileMenuHead {
      position: relative;
      border-radius: 10px 10px 0 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-top: 24px;
      padding-left: 20px;
      background-color: #090F34;
      margin-bottom: 22px;
      height: 70px;
    }
    .mobileMenuHead #close {
      position: relative;
      bottom: 10px;
      right: 0px;
    }
    .mobileMenuHead a {
      height: 50px;
    }
    .mobileMenuHead a > .logo {
      position: absolute;
      left: 13px;
      top: 13px;
      height: initial;
    }
  }
  @media (max-width: 768px) {
    ul.mobileMenu #mobMenuWrapper {
      width: -webkit-fill-available;
      width: -moz-available;
    }
    .mobileMenuHead {
      border-radius: 10px 10px 0 0;
    }
  }
  * {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "Manrope";
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
  }
  
  li {
    list-style-type: none;
  }
  
  ul {
    padding: 0;
  }
  
  a {
    text-decoration: none;
  }
  
  h1 {
    color: #FDFCFC;
    font-weight: 700;
    font-size: 56px;
    line-height: 72px;
  }
  
  h2 {
    color: #181818;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
  }
  
  h3 {
    color: #FDFCFC;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
  
  .subtitle {
    color: #FDFCFC;
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
  }
  
  .pt {
    padding-top: 150px;
  }
  
  .pt-m {
    padding-top: 24px;
  }
  
  .pb {
    padding-bottom: 150px;
  }
  
  .pb-l {
    padding-bottom: 32px;
  }
  
  .pb-m {
    padding-bottom: 24px;
  }
  
  .mt-l {
    margin-top: 48px;
  }
  
  .mt-m {
    margin-top: 24px;
  }
  
  .mt-s {
    margin-top: 16px;
  }
  
  .mb-l {
    margin-bottom: 48px;
  }
  
  .mb-m {
    margin-bottom: 24px;
  }
  
  .mb-s {
    margin-bottom: 16px;
  }
  
  .mb-xs {
    margin-bottom: 10px;
  }
  
  .yellow {
    background: #FECB33;
  }
  
  .purple {
    background: #502DA0 !important;
  }
  
  .l-blue {
    background: #76B7F4;
  }
  
  .blue {
    background: #007CF0;
  }
  
  .green {
    background: #1AE58C;
  }
  
  .black {
    background: #181818;
  }
  
  .white {
    color: #FDFCFC;
  }
  
  ._black {
    color: #181818;
  }
  
  .container {
    max-width: 1160px;
    margin: 0 auto;
  }
  
  .fl-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .fl-col-cen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .js-bw {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .bd-b {
    border-bottom: 1px solid #000;
  }
  
  .btn {
    display: inline-block;
    background: #181818;
    padding: 8px 32px;
    border-radius: 8px;
    font-size: 24px;
    line-height: 48px;
    color: #FDFCFC;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  
  .btn:hover {
    background: #FDFCFC;
    color: #181818;
  }
  
  @media (max-width: 1200px) {
    .container {
      width: 720px;
    }
    h1 {
      font-size: 38px;
      line-height: 40px;
    }
    h2 {
      font-size: 32px;
      line-height: 40px;
    }
    h3 {
      font-size: 26px;
      line-height: 32px;
    }
    .subtitle {
      font-size: 20px;
      line-height: 24px;
    }
    .pt {
      padding-top: 100px;
    }
    .pb {
      padding-bottom: 100px;
    }
    .pb-l {
      padding-bottom: 24px;
    }
    .mt-l {
      margin-top: 48px;
    }
    .mt-m {
      margin-top: 24px;
    }
    .mt-s {
      margin-top: 16px;
    }
    .mb-l {
      margin-bottom: 32px;
    }
    .mb-m {
      margin-bottom: 24px;
    }
    .mb-s {
      margin-bottom: 16px;
    }
  }
  @media (max-width: 768px) {
    .pt {
      padding-top: 80px;
    }
    .pb {
      padding-bottom: 80px;
    }
    .mt-l {
      margin-top: 32px;
    }
    .mt-m {
      margin-top: 16px;
    }
    .mt-s {
      margin-top: 8px;
    }
    .mb-l {
      margin-bottom: 32px;
    }
    .mb-m {
      margin-bottom: 16px;
    }
    .mb-s {
      margin-bottom: 8px;
    }
    h1 {
      font-size: 38px;
      line-height: 36px;
    }
    h2 {
      font-size: 26px;
      line-height: 32px;
    }
    h3 {
      font-size: 20px;
      line-height: 24px;
    }
    .subtitle {
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
    }
    .container {
      width: initial;
      margin-left: 20px;
      margin-right: 20px;
    }
    .btn {
      width: -webkit-fill-available;
      width: -moz-available;
      text-align: center;
      font-size: 18px !important;
    }
  }
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #502DA0;
  }
  .hero .container {
    margin-left: 120px;
    margin-right: 40px;
  }
  .hero .container h1 {
    max-width: 445px;
  }
  .hero .container .item:first-child {
    width: 600px;
  }
  .hero .container .item:last-child {
    width: initial;
  }
  .hero .container .item:last-child img {
    width: 100%;
  }
  
  .twu .container #linked {
    position: relative;
  }
  .twu .container #linked:hover::after {
    background: #181818;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .twu .container #linked::before {
    content: url("/wp-content/themes/custom/images/icon-link.svg");
    position: absolute;
    right: -46px;
    bottom: 8px;
    z-index: 3;
  }
  .twu .container #linked::after {
    content: "";
    position: absolute;
    right: -60px;
    display: inline-block;
    background: #532EA0;
    border-radius: 50%;
    height: 44px;
    width: 44px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .twu .container .subtitle {
    max-width: 450px;
  }
  .twu .container .grid-3-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 283px 10px 283px 10px 283px 10px 283px;
    grid-template-columns: repeat(4, 283px);
    -ms-grid-rows: 242px 10px 242px 10px 242px;
    grid-template-rows: repeat(3, 262px);
    gap: 10px;
  }
  .twu .container .grid-3-4 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .twu .container .grid-3-4 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .twu .container .grid-3-4 > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .twu .container .grid-3-4 > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .twu .container .grid-3-4 > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .twu .container .grid-3-4 > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .twu .container .grid-3-4 > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .twu .container .grid-3-4 > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .twu .container .grid-3-4 > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .twu .container .grid-3-4 > *:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .twu .container .grid-3-4 > *:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .twu .container .grid-3-4 > *:nth-child(12) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }
  .twu .container .grid-3-4 .card {
    position: relative;
    padding: 40px;
    border-radius: 40px;
    overflow: hidden;
  }
.twu .container .grid-3-4 .card > img {
	margin-bottom: 24px;
}
  .twu .container .grid-3-4 .card #angle {
    position: absolute;
    bottom: -24px;
  }
  .twu .container .grid-3-4 .card:nth-child(1) {
    background: #090F34;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .twu .container .grid-3-4 .card:nth-child(2) {
    background: #663EBA;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .twu .container .grid-3-4 .card:nth-child(3) {
    background: #fff;
  }
  .twu .container .grid-3-4 .card:nth-child(3) p {
    color: #181818;
  }
  .twu .container .grid-3-4 .card:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .twu .container .grid-3-4 .card:nth-child(5) {
    background: #181818;
  }
  .twu .container .grid-3-4 .card:nth-child(5) p {
    color: #FDFCFC;
  }
  .twu .container .grid-3-4 .card:nth-child(6) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    background: #272727;
  }
  .twu .container .grid-3-4 .card:nth-child(6) p {
    color: #FDFCFC;
  }
  .twu .container .grid-3-4 .card:nth-child(7) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
  .twu .container .grid-3-4 .watchers {
    background-image: url("/wp-content/themes/custom/images/watchers.png");
  }
  .twu .container .grid-3-4 .displays {
    background-image: url("/wp-content/themes/custom/images/display.png");
  }
  .twu .container .grid_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 575px 10px 575px;
    grid-template-columns: repeat(2, 575px);
    -ms-grid-rows: 408px 10px 408px;
    grid-template-rows: repeat(2, 408px);
    gap: 10px;
  }
  .twu .container .grid_wrapper > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .twu .container .grid_wrapper > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .twu .container .grid_wrapper > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .twu .container .grid_wrapper > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .twu .container .grid_wrapper .card {
    position: relative;
    padding: 40px;
    border-radius: 40px;
    background: #DEEBFF;
  }
  .twu .container .grid_wrapper .card .subtitle {
    width: 100%;
    max-width: inherit;
    position: relative;
    z-index: 3;
  }
  .twu .container .grid_wrapper .card img {
    position: absolute;
    width: 280px;
    bottom: 40px;
    left: 24%;
  }
  .twu .container .grid_wrapper .card .link {
    background: #FDFCFC;
    padding: 10px 21px;
    border-radius: 40px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  .twu .container .grid_wrapper .card .link::after {
    margin-left: 8px;
    content: url("/wp-content/themes/custom/images/icon-link-black.svg");
  }
  .twu .container .grid_wrapper .card .link:hover {
    background: #181818;
    color: #FDFCFC;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  .twu .container .grid_wrapper .card .link:hover::after {
    content: url("/wp-content/themes/custom/images/icon-link.svg");
  }
  .twu .container .grid_wrapper .card .js-bw {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  #platform .container .fl-col-cen {
    gap: 10px;
  }
  #platform .container .card {
    background: #663EBA;
    padding: 40px;
    border-radius: 40px;
    width: -webkit-fill-available;
    width: -moz-available;
  }
  #platform .container .card .fl-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #platform .container .card .fl-row .item:last-child .subtitle {
    max-width: 592px;
  }
  
  #accounts .container .subtitle {
    max-width: 538px;
  }
  #accounts .container .fl-col-cen {
    gap: 10px;
  }
  #accounts .container .bd-b {
    margin-bottom: 32px;
  }
  #accounts .container .card {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 40px;
    border-radius: 40px;
    background: #FDFCFC;
  }
  #accounts .container .card .fl-row.js-bw.bd-b.pb-l div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  #accounts .container .card .fl-row.js-bw.bd-b.pb-l div .price {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
  }
  #accounts .container .card .fl-row.js-bw.bd-b.pb-l div .min {
    width: 135px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
  }
  #accounts .container .card .subtitle {
    font-size: 20px;
    line-height: 24px;
  }
  #accounts .container .card .wider {
    width: 335px;
  }
  #accounts .container .card .wider li {
    margin-bottom: 12px;
  }
  #accounts .container .card .bold {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
  }
#accounts .container .card .pr:hover {
	background: #502DA0 !important;
	color: #fff;
	transition: .2s;
}
  #accounts .container .card .fl-row:nth-child(2) {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #accounts .container .card .accounts-list li {
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 12px;
  }
  #accounts .container .card .accounts-list .item_active-diff {
    color: #FDFCFC;
  }
  #accounts .container .card .accounts-list .item_active-diff::before {
    content: url("/wp-content/themes/custom/images/marker-white.png");
    margin-right: 10px;
    position: relative;
    top: 5px;
  }
  #accounts .container .card .accounts-list .item_inactive {
    color: #C5CBD3;
  }
  #accounts .container .card .accounts-list .item_active::before {
    content: url("/wp-content/themes/custom/images/marker-active.png");
    margin-right: 10px;
    position: relative;
    top: 5px;
  }
  #accounts .container .card .accounts-list .item_inactive::before {
    content: url("/wp-content/themes/custom/images/mar-inactive.png");
    margin-right: 10px;
    position: relative;
    top: 5px;
  }
  #accounts .container .purple .bd-b {
    border-color: #FDFCFC;
  }
  
  .withdrawal .container .item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 460px;
  }
  .withdrawal .container .item:last-child .subtitle::after {
    content: url("/wp-content/themes/custom/images/snowy-boyyyyy.png");
    position: relative;
    top: -2px;
  }
  .withdrawal .container .item:last-child .coins .fl-row {
    gap: 16px;
  }
  .withdrawal .container .item:last-child .coins ul > li {
    margin-top: 38px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    padding-left: 8px;
  }
  .withdrawal .container .item:last-child .coins ul > li::marker {
    content: url("/wp-content/themes/custom/images/snowy-boyyyyy.png");
    position: relative;
    top: -2px;
  }
  
  .start .container .fl-row {
    gap: 40px;
  }
  
  .banner .fl-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner .item:first-child {
    max-width: 500px;
  }
  .banner .item:last-child {
    max-width: 590px;
  }
  .banner .item:last-child img {
    width: 100%;
  }
  .banner .large {
    font-size: 50px;
    line-height: 56px;
  }
  
  #contacts .container .subtitle {
    max-width: 560px;
  }
  #contacts .container .fl-row {
    gap: 10px;
  }
  #contacts .container .fl-row .fl-col-cen {
    gap: 10px;
  }
  #contacts .container .card {
    width: 575px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    background: #663EBA;
    padding: 40px;
    border-radius: 40px;
    overflow: hidden;
  }
  #contacts .container .card .fl-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  #contacts .container .card a:hover {
    color: #090F34;
  }
  #contacts .container .card .sm {
    font-size: 20px;
    line-height: 24px;
  }
  #contacts .container .map {
    padding: 0 !important;
  }
  #contacts .container form {
    gap: 20px !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #contacts .container form {
    height: 682px;
    background: #663EBA;
    padding: 40px;
    border-radius: 40px;
  }
  #contacts .container form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    width: 100%;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
  }
  #contacts .container form label input, #contacts .container form label textarea {
    padding: 20px;
    width: -webkit-fill-available;
    width: -moz-available;
    background: #502DA0;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
  }
  #contacts .container form label input::-webkit-input-placeholder, #contacts .container form label textarea::-webkit-input-placeholder {
    color: #ACACAC;
  }
  #contacts .container form label input::-moz-placeholder, #contacts .container form label textarea::-moz-placeholder {
    color: #ACACAC;
  }
  #contacts .container form label input:-ms-input-placeholder, #contacts .container form label textarea:-ms-input-placeholder {
    color: #ACACAC;
  }
  #contacts .container form label input::-ms-input-placeholder, #contacts .container form label textarea::-ms-input-placeholder {
    color: #ACACAC;
  }
  #contacts .container form label input::placeholder, #contacts .container form label textarea::placeholder {
    color: #ACACAC;
  }
  #contacts .container form label textarea {
    resize: none;
    width: -webkit-fill-available;
    width: -moz-available;
    height: 192px;
  }
  #contacts .container form button {
    border: none;
    cursor: pointer;
  }
  #contacts .container form .row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    height: 30px;
	  margin-top: 20px;
  }
  #contacts .container form .row input {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 30px;
    height: 30px;
    z-index: 3;
  }
  #contacts .container form .row input:checked ~ .checkmark::after {
    display: block;
    left: 10px;
    top: 4px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  #contacts .container form .row .row-wrap {
    width: 30px;
  }
  #contacts .container form .row .checkmark {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background: #502DA0;
    border-radius: 3px;
  }
  #contacts .container form .row .checkmark::after {
    content: "";
    position: absolute;
    display: none;
  }
  #contacts .container form .row .note {
    position: relative;
    top: 2px;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
  }
  
  @media (min-width: 1400px) {
    .hero .container {
      margin-left: 120px !important;
    }
  }
  @media (min-width: 1200px) {
    #tablet {
      display: none;
    }
	  
    .hero .container {
      margin-left: 20px;
      margin-right: 20px;
    }
  }
  @media (max-width: 1200px) {
    #tablet {
      display: block;
    }
    aside {
      display: none;
    }

    .hero .container {
      margin-left: auto;
      margin-right: auto;
    }
    .twu .container #linked::before {
      content: url("/wp-content/themes/custom/images/icon-link.svg");
      position: absolute;
      right: -46px;
      bottom: 2px;
      z-index: 3;
    }
    .twu .container #linked::after {
      content: "";
      position: absolute;
      right: -60px;
      display: inline-block;
      background: #532EA0;
      border-radius: 50%;
      height: 44px;
      width: 44px;
      -webkit-transition: 0.2s;
      transition: 0.2s;
    }
    .twu .container .fl-row.js-bw.mb-l .subtitle {
      max-width: 220px;
    }
    .twu .container .grid-3-4 {
      -ms-grid-columns: (233px)[3];
      grid-template-columns: repeat(3, 233px);
      -ms-grid-rows: (200px)[4];
      grid-template-rows: repeat(4, 230px);
    }
    .twu .container .grid-3-4 > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .twu .container .grid-3-4 > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    .twu .container .grid-3-4 > *:nth-child(3) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
    }
    .twu .container .grid-3-4 > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .twu .container .grid-3-4 > *:nth-child(5) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .twu .container .grid-3-4 > *:nth-child(6) {
      -ms-grid-row: 2;
      -ms-grid-column: 3;
    }
    .twu .container .grid-3-4 > *:nth-child(7) {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    .twu .container .grid-3-4 > *:nth-child(8) {
      -ms-grid-row: 3;
      -ms-grid-column: 2;
    }
    .twu .container .grid-3-4 > *:nth-child(9) {
      -ms-grid-row: 3;
      -ms-grid-column: 3;
    }
    .twu .container .grid-3-4 > *:nth-child(10) {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
    }
    .twu .container .grid-3-4 > *:nth-child(11) {
      -ms-grid-row: 4;
      -ms-grid-column: 2;
    }
    .twu .container .grid-3-4 > *:nth-child(12) {
      -ms-grid-row: 4;
      -ms-grid-column: 3;
    }
    .twu .container .grid-3-4 .card #angle {
      bottom: -44px;
    }
    .twu .container .grid-3-4 .card:nth-child(3) {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1/3;
    }
    .twu .container .grid-3-4 .card:nth-child(7) {
      -ms-grid-row: 4;
      grid-row: 4;
      -ms-grid-column: 3;
      -ms-grid-column-span: 1;
      grid-column: 3/4;
    }
    .twu .container .grid_wrapper {
      -ms-grid-columns: (354px)[2];
      grid-template-columns: repeat(2, 354px);
      -ms-grid-rows: (408px)[2];
      grid-template-rows: repeat(2, 408px);
    }
    .twu .container .grid_wrapper > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .twu .container .grid_wrapper > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    .twu .container .grid_wrapper > *:nth-child(3) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    .twu .container .grid_wrapper > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .twu .container .grid_wrapper .card {
      padding: 24px;
    }
    .twu .container .grid_wrapper .card .fl-row.js-bw.mb-xs {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      gap: 10px;
    }
    .twu .container .grid_wrapper .card img {
      width: 240px;
      left: 15%;
      bottom: 24px;
    }
    #platform .container .subtitle {
      max-width: 300px;
    }
    #platform .container .fl-col-cen.pt-m .card {
      padding: 24px;
    }
    #platform .container .fl-col-cen.pt-m .card .fl-row {
      gap: 32px;
    }
    #platform .container .fl-col-cen.pt-m .card .fl-row .item:first-child img {
      width: 250px;
    }
    #platform .container .fl-col-cen.pt-m .card .fl-row .item:last-child .btn {
      width: -webkit-fill-available;
      width: -moz-available;
      text-align: center;
      font-size: 24px;
    }
    #accounts .container .subtitle {
      max-width: 420px;
    }
    #accounts .container .card {
      padding: 24px;
    }
    #accounts .container .card .fl-row:nth-child(2) {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
    }
    #accounts .container .card .fl-row:nth-child(2) > *:nth-child(1) {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    #accounts .container .card .fl-row:nth-child(2) > *:nth-child(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
    }
    #accounts .container .card .fl-row:nth-child(2) > *:nth-child(3) {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
    #accounts .container .card .fl-row:nth-child(2) > *:nth-child(4) {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    #accounts .container .card .wider {
      width: 100%;
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1/3;
    }
    #accounts .container .card .wider .fl-row:nth-child(2) {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
    .embedded .container .widget .mch-widget-wogx.mch-widget-news.horizontal {
      min-width: auto;
    }
    .withdrawal .container {
      gap: 40px;
    }
    .withdrawal .container .item:first-child {
      max-width: 400px;
    }
    .withdrawal .container .item:first-child img {
      width: 100%;
    }
    .withdrawal .container .item:last-child {
      max-width: 400px;
    }
    .withdrawal .container .item:last-child .coins img {
      width: 87px;
    }
    .withdrawal .container .item:last-child .coins ul > li {
      margin-top: 18px;
    }
    .start .container .fl-row .item {
      width: 230px;
    }
    .start .container .fl-row .item img {
      width: 100%;
    }
    .start .container .fl-row .item h3 {
      font-size: 19px;
      line-height: 24px;
    }
    .banner .container .item .large {
      font-size: 38px;
      line-height: 40px;
    }
    #contacts .container .fl-row:first-child .subtitle {
      max-width: 440px;
    }
    #contacts .container .fl-row:last-child {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    #contacts .container .fl-row:last-child .card {
      width: -webkit-fill-available;
      width: -moz-available;
    }
    #contacts .container .fl-row:last-child .card .fl-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
    #contacts .container .fl-row:last-child .card #desk {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .hero .container {
      margin-left: 20px;
      margin-right: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px;
		padding-top: 120px;
    }
    .hero .container h1, .hero .container .subtitle {
      text-align: center;
      max-width: initial;
    }
    .hero .container .item:first-child {
      width: -webkit-fill-available;
      width: -moz-available;
    }
    .twu .container #linked {
      max-width: 320px;
      margin-right: auto;
      margin-left: auto;
    }
    .twu .container #linked::after {
      display: none !important;
    }
    .twu .container #linked::before {
      display: none;
    }
  }
  @media (max-width: 768px) and (min-width: 400px) {
    .twu .container #linked::after {
      display: inline-block !important;
    }
    .twu .container #linked::before {
      display: block;
      bottom: 0 !important;
    }
  }
  @media (max-width: 768px) {
    .twu .container #linked::before {
      content: url("/wp-content/themes/custom/images/icon-link.svg");
      position: absolute;
      right: -21px;
      bottom: 2px;
      z-index: 3;
    }
    .twu .container #linked::after {
      content: "";
      position: absolute;
      right: -30px;
      display: inline-block;
      background: #532EA0;
      border-radius: 50%;
      height: 34px;
      width: 34px;
      -webkit-transition: 0.2s;
      transition: 0.2s;
    }
    .twu .container .fl-row.js-bw.mb-l {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .twu .container .fl-row.js-bw.mb-l h2, .twu .container .fl-row.js-bw.mb-l .subtitle {
      text-align: center;
    }
    .twu .container .fl-row.js-bw.mb-l .subtitle {
      margin-top: 10px;
      max-width: initial;
    }
    .twu .container .grid-3-4 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .twu .container .grid-3-4 .card {
      padding: 24px;
      height: -webkit-min-content;
      height: -moz-min-content;
      height: min-content;
    }
    .twu .container .grid-3-4 .card .subtitle {
      max-width: initial;
    }
    .twu .container .grid-3-4 .card img {
      margin-bottom: 10px;
    }
    .twu .container .grid-3-4 .card #angle {
      right: 0;
    }
    .twu .container .grid-3-4 .card:nth-child(2) {
      height: 360px;
    }
    .twu .container .grid-3-4 .watchers, .twu .container .grid-3-4 .displays {
      height: 200px !important;
    }
    .twu .container .grid_wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .twu .container .grid_wrapper .card {
      height: 400px;
    }
    .twu .container .grid_wrapper .card .fl-row.js-bw.mb-xs {
      margin-left: 0;
      margin-right: 0;
    }
    .twu .container .grid_wrapper .card .link {
      font-size: 16px;
      line-height: 18px;
    }
    .twu .container .grid_wrapper .card .link::after {
      position: relative;
      bottom: 1px;
      content: "";
      display: inline-block;
      background-image: url("/wp-content/themes/custom/images/icon-link-black.svg");
      background-size: 10px 10px;
      width: 10px;
      height: 10px;
    }
    .twu .container .grid_wrapper .card div {
      width: 240px;
      margin-left: auto;
      margin-right: auto;
    }
    .twu .container .grid_wrapper .card div img {
      position: static;
    }
    #platform .container .subtitle {
      margin-top: 10px;
      max-width: initial;
    }
    #platform .container .card .fl-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    #accounts .container .subtitle {
      max-width: initial;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row.js-bw.bd-b.pb-l {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
		gap: 12px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row.js-bw.bd-b.pb-l h3 {
      position: relative;
      top: 5px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row.js-bw.bd-b.pb-l div {
      gap: 0px;
		justify-content: space-between;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row.js-bw.bd-b.pb-l div .price {
      font-size: 20px;
      line-height: 20px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row.js-bw.bd-b.pb-l div .min {
      width: initial;
      font-size: 12px;
      line-height: 16px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .wider {
      margin-bottom: 16px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .wider .fl-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .wider .subtitle {
      font-size: 18px;
      line-height: 20px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .accounts-list {
      width: -webkit-fill-available;
      width: -moz-available;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .accounts-list li {
      font-size: 16px;
      line-height: 18px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .accounts-list .item_active::before {
      display: inline-block;
      content: "";
      background-image: url("/wp-content/themes/custom/images/marker-active.png");
      background-repeat: no-repeat;
      background-size: 16px 16px;
      width: 16px;
      height: 16px;
      top: 2px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .accounts-list .item_active-diff::before {
      display: inline-block;
      content: "";
      background-image: url("/wp-content/themes/custom/images/marker-white.png");
      background-repeat: no-repeat;
      background-size: 16px 16px;
      width: 16px;
      height: 16px;
      top: 2px;
    }
    #accounts .container .fl-col-cen.pt-m .card .fl-row .accounts-list .item_inactive::before {
      display: inline-block;
      content: "";
      background-image: url("/wp-content/themes/custom/images/mar-inactive.png");
      background-repeat: no-repeat;
      background-size: 16px 16px;
      width: 16px;
      height: 16px;
      top: 2px;
    }
    .embedded .container h2 {
      text-align: center;
    }
    .withdrawal .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .withdrawal .container h2 {
      text-align: center;
    }
    .withdrawal .container .item:first-child {
      max-width: initial;
    }
    .withdrawal .container .item:last-child {
      max-width: initial;
    }
    .withdrawal .container .item:last-child .coins {
      margin-top: 24px;
    }
    .withdrawal .container .item:last-child .coins .fl-row {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .withdrawal .container .item:last-child .coins img {
      width: 71px;
    }
    .withdrawal .container .item:last-child .coins ul > li {
      font-size: 16px;
      line-height: 20px;
    }
    .start .container h2 {
      text-align: center;
    }
    .start .container .fl-row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
    .start .container .fl-row .item {
      width: -webkit-fill-available;
      width: -moz-available;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
    .start .container .fl-row .item h3 {
      width: 100%;
    }
    .start .container .fl-row .item p {
      width: 100%;
      text-align: start;
    }
    .start .container .fl-row .item img {
      width: 230px;
    }
    .banner .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px;
    }
    .banner .container .item h2, .banner .container .item .subtitle {
      text-align: center;
    }
    .banner .container .item:first-child {
      max-width: initial;
    }
    .banner .container .item:last-child {
      max-width: initial;
    }
    #contacts .container .fl-row:first-child {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    #contacts .container .fl-row:first-child h2 {
      width: 100%;
      text-align: center;
    }
    #contacts .container .fl-row:first-child .subtitle {
      text-align: center;
      width: 100%;
      max-width: initial;
    }
    #contacts .container .fl-row:last-child .card {
      padding: 24px;
    }
    #contacts .container .fl-row:last-child .card .fl-row > .sm {
      text-align: start;
      font-size: 18px;
      line-height: 20px;
    }
    #contacts .container .fl-row:last-child form {
      padding: 24px;
    }
    #contacts .container .fl-row:last-child form .row .note {
      font-size: 16px;
      line-height: 22px;
    }
  }
  .err {
    height: 950px;
  }
  .err .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
    margin: 0 auto !important;
  }
  .err .container .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 730px!important;
    background-image: url("/wp-content/themes/custom/images/err-bg.png");
    background-repeat: no-repeat;
  }
.err .container .item > .subtitle {
	text-align: center;
}
  
  @media (max-width: 1200px) {
    .err .container {
      width: 100%;
    }
    .err .container .item {
      width: 720px !important;
    }
  }
  @media (max-width: 768px) {
    .err .container {
      width: -moz-available !important;
      padding-left: 20px;
      padding-right: 20px;
    }
    .err .container .item {
      width: 100% !important;
      height: 600px;
      background-position: center;
      background-size: 400px 350px;
    }
  }
  .footer {
    background: #090F34;
  }
  .footer .container nav {
    padding-bottom: 72px;
    margin-bottom: 70px;
    border-color: #2C304A;
  }
  .footer .container nav ul a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FDFCFC;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .footer .container nav ul a:hover {
    color: #7660A8;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .footer .container .info {
    gap: 150px;
  }
  .footer .container .docs {
    color: #717484;
  }
  .footer .container .docs__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .footer .container .docs ul {
    width: 254px;
  }
  .footer .container .docs ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .footer .container .docs ul li::before {
    content: url("/wp-content/themes/custom/images/link.png");
    height: 26px;
  }
  .footer .container .docs ul a {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    color: #717484;
    text-decoration: underline;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .footer .container .docs ul a:hover {
    color: #7660A8;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  
  @media (max-width: 768px) {
    .footer .container nav {
      padding-bottom: 32px;
      margin-bottom: 32px;
    }
    .footer .container nav ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 8px;
    }
    .footer .container .info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 32px;
    }
  }

@media(min-width: 1200px) {
	#logoMob {
		  display: none;
	  }
}

@media(max-width: 505px) {
	#contacts .container form button {
		margin-top: 24px;
	}
}

/* FORM */
#wpcf7-f17-o1 {
	width: -webkit-fill-available;
	width: -moz-available;
}
.wpcf7-form-control-wrap {
	margin-top: 10px;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
	position: absolute;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border: none;
	color: #dc3232;
	font-weight: 300;
}
.wpcf7 form .wpcf7-response-output {
	margin: 0;
	padding: 0;
	margin-top: 8px;
	text-align: center;
}

/* COOKIES  */
#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 45px;
    right: 45px;
    max-width: 580px;
    padding: 20px 32px;
    background-color: #444B5B;
    color: white;
    border-radius: 10px;
	z-index: 99999;
}

#cookie_notification p{
    margin: 0;
    font-size: 18px;
    text-align: left;
    line-height: 22px;
}
  
#cookie_notification.show {
    display: flex;
    align-items: center;
	gap: 20px;
}
.cookie_accept{
    border-radius: 10px;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: .2s;
    line-height: 20px;
	background-color: #6666FF;
	color: #fff;

    &:hover {
        transition: .2s;
        background-color: #3F3FFB;
    }
}
@media(max-width: 768px) {
	#cookie_notification {
	transform: translateX(-50%);
	left: 50%;
		width: calc(100% - 40px);
		margin-right: 20px;
		margin-left: 0px
	}
}
