@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;family=Unbounded:wght@200..900&amp;family=Krona+One&amp;family=Luckiest+Guy&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');

:root {
    --index: calc(1dvh + 1dvw);

    /* --- COLORS ---*/
    --logo-red-color: #E6352B;
    --logo-blue-color: #1B9DD9;

    --main-red-color: #FF1E1E;
    --main-blue-color: #1E93FF;
    --main-dark-blue-color: #1B50D9;
    --items-grey: #353535;
    --main-grey: #101010;


    --main-black-background: #000307;
    --main-text-color: #fff;
    --main-text-font: Montserrat;


    /* --- PADDINGS --- */
    --section-padding: 50px;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    font-family: var(--main-text-font);
    background-color: var(--main-black-background);
    color: var(--main-text-color);
}

section {
    padding-block: var(--section-padding);
    position: relative;
    scroll-margin-block-start: 60px;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

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

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main {
    overflow-x: clip;
    padding-block-start: 102px;
}
a.absolute {
    position: absolute;
    width: 100%;
    height: 100%;
}
.relative {
    position: relative;
}

.container {
    max-width: 1300px;
    margin-inline: auto;
}
.stop-scroll {
    overflow-y: hidden;
}

/* entities */
.logo {
    position: relative;
    display: inline-flex;
    height: fit-content;
    transition: all 250ms ease-in-out;
}
.logo:hover{
    scale: 1.05;
}
.logo img {
    height: 42px;
    width: 185px;
}
.section__title {
    margin-block-end: 30px;
}
.title {
    font-family: Unbounded;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 33.6px */
}
.text-blue-gradient {
    background: linear-gradient(90deg, var(--logo-blue-color), #FFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-red-gradient {
    background: linear-gradient(90deg, var(--main-red-color) 15%, #FFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.background-light-elem {
    position: absolute;
    width: 881px;
    height: 881px;
    border-radius: 881px;
    background: var(--main-dark-blue-color);
    filter: blur(350px);
    z-index: -1;
}
.background-light-elem--left {
    right: 90%;
    filter: blur(240px);
    width: 656px;
    height: 656px;
    border-radius: 656px;
}
.background-light-elem--right {
    left: 100%;
}
.btn {
    cursor: pointer;
    color: var(--main-text-color);
    text-align: center;
    font-family: Unbounded;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: radial-gradient(97.6% 97.6% at 11.89% 16.6%, #FF1E1E 0%, #890505 100%);
    box-shadow: 0px 4px 15px 0px rgba(255, 0, 0, 0.20);
    outline: none;
    border: none;
    transition: all 250ms ease-in-out;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px 0px rgba(255, 0, 0, 0.5);
}
.description {
    color: var(--main-text-color);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 28px */
}
p.description:not(:last-child) {
    margin-block-end: 28px;
}
a.mail-link {
    font-weight: 900;
    text-decoration-line: underline;
}

/* /entities */


/* Header */
.header {
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(50px);
    padding-block: 30px;
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: all 250ms ease-in-out;
}
.header.stick {
    background: var(--main-black-background);
    padding-block:20px;
}
.header__container {
    display: flex;
    justify-content: space-between;
}

.header__logo-container .header__logo {
    display: flex;
    flex-direction: column;
}

.header__logo-container,
.footer__logo-container {
    display: inline-flex;
}

.header__nav {
    display: inline-flex;
    align-items: center;
}

.header__nav .header__menu {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.header__menu .menu-item {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    transition: all 250ms ease-in-out;
}
.header__menu .menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: var(--main-red-color);
    width: 0%;
    height: 1px;
    transition: all 250ms ease-in-out;
}
.header__menu .menu-item--active::after{
    width: 100%;
}
.header__menu .menu-item:hover {
    filter: drop-shadow(2px 2px 5px var(--main-red-color));
}
.header__btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__btns .btn {
    font-family: Montserrat;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
    background: radial-gradient(119.26% 78.46% at 50% 0%, #FF1E1E 0%, #890505 100%);
}

/* /Header */

/* Burger */

.burger {
    position: relative;
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: var(--items-grey);
    border-radius: 6px;
}
.burger__line {
    position: absolute;
    width: 17px;
    height: 2px;
    border-radius: 100px;
    background-color: var(--main-text-color);
    transition: 0.2s transform ease;
}
.burger__line:first-child {
    width: 13px;
    top: 13px;
}

.burger__line:last-child {
    width: 20px;
    bottom: 13px;
}

.burger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-35%);
}
  .burger--active .burger__line:nth-child(2) {
      opacity: 0;
  }

  .burger--active .burger__line:first-child {
      transform: rotate(45deg);
      top: 50%;
      width: 20px;
      transition: .3s ease-in-out;
  }

  .burger--active .burger__line:last-child {
      transform: rotate(-45deg);
      top: 50%;
      transition: .3s ease-in-out;
  }
/* /Burger */

/* Languages */
.languages {
    position: relative;
    font-family: 'Inter';
}

.languages__button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    transition: 250ms;
    margin-right: 20px;
}

.languages__button:hover, .languages__list_item:hover {
    filter: drop-shadow(0px 0px 5px var(--main-blue-color));
}
.languages__list_item:hover {
    background: var(--main-blue-color);
}
.languages__item-flag,
.languages__button-flag {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    background-repeat: no-repeat;
}

.languages__item-slug,
.languages__button-slug {
    font-size: 18px;
    padding-top: 2px;
    color: var(--main-text-color);
    text-transform: uppercase;
}

.languages__list {
    position: absolute;
    display: grid;
    background: var(--main-black-background);
    width: 100%;
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
    margin: 10px 0;
    transition: all 400ms ease-in-out;
}

.languages__list>* {
    min-height: 0;
}

.languages__list-active {
    transform: rotateX(0deg);
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    margin-bottom: 10px;
}

.languages__list_item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    text-decoration: none;
    transition: 250ms;
}

.languages__button-active {
    border-radius: 2px 2px 0 0;
}

.languages__list_item:last-child {
    border-radius: 0 0 2px 2px;
}

/* /Languages */


/* Hero section */
#hero {
    padding-block-start: 130px;
	padding-block-end: 180px;
    max-height: 1080px;
}
#hero .container {
    display: grid;
    grid-template-columns: 750px auto;
}
.hero__images {
    position: relative;
    z-index: -5;
}
.hero__images .header-bg-elem {
    position: absolute;
    top: -232px;
    left: 0;
    background-color: #000307;
    height: 102px;
    width: 1240px;
    z-index: 10;
}
.hero__images img {
    position: absolute;
    right: -480px;
    top: -420px;
    max-width: unset;
    z-index: 2;
    pointer-events: none;
}

.hero__images::before {
    content: '';
    background: linear-gradient(180deg, #000307 0%, rgba(0, 3, 7, 0.00) 100%);
    position: absolute;
    top: -130px;
    right: -100%;
    width: 1240px;
    height: 102px;
    flex-shrink: 0;
    z-index: 3;
}

.hero__images::after {
    content: '';
    background: linear-gradient(180deg, #000307 0%, rgba(0, 3, 7, 0.00) 100%);
    position: absolute;
    top: -130px;
    right: -100%;
    width: 1240px;
    height: 361px;
    flex-shrink: 0;
    z-index: 5;
}

.hero-left-bg-circle {
    position: absolute;
    right: 1775px;
    z-index: -1;
    top: 150px;
}
.hero-left-bg-circle img {
    max-width: unset;
}
#hero .background-light-elem {
    left: -590px;
    top: -590px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.hero__title {
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    max-width: 750px;
}

.hero__content .description {
    max-width: 596px;
    font-size: 20px;
}

/* /Hero section */


/* about section */
#about .background-light-elem {
    left: 95%;
}
#about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.about__content {
    padding-block-start: 70px;
}
.about__content .description {
    max-width: 618px;
}
.about__statistics {
    margin-block-start: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}
.statistics__item {
    display: flex;
    row-gap: 9px;
    flex-direction: column;
    align-items: center;
    padding: 40px 70px;
}
.statistics__item:nth-child(1), .statistics__item:nth-child(2) {
    padding-block-start: 0;
}
.statistics__item:nth-child(3),
.statistics__item:nth-child(4) {
    padding-block-end: 0;
}
.statistics__item .statistics__number {
    font-family: Unbounded;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.statistics__item .statistics__text {
    font-family: Unbounded;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
}
.statistics__elem0, .statistics__elem1 {
    position: absolute;
    background: radial-gradient(#fff 10%, transparent 60%);
}
.statistics__elem0 {
    height: 3px;
    width: 100%;
    left: 0;
    top: 46%;
}
.statistics__elem1 {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
}
/* /about section */


/* requirements section */
#requirements .background-light-elem {
    right: 90%;
    top: -20%;
    filter: blur(240px);
    width: 656px;
    height: 656px;
    border-radius: 656px;
}
.requirements__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
        "A B"
        "C ."
        "C D"
        ". D"
        "E ."
        "E F"
        ". F"
        "G ."
        "G H";
    justify-items: end;
    column-gap: 20px;
}
.requirements__content {
    grid-area: A;
}
.requirements__item {
    position: relative;
}
.requirements__item-number {
    position: absolute;
    left: -90px;
    top: -51px;
	pointer-events: none;
}
.requirements__item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #000307;
    width: 550px;
    min-height: 171px;
	padding: 15px 50px;
    overflow: hidden;
    position: relative;
}
.requirements__item-inner::before, .requirements__item-inner::after {
    content: '';
    position: absolute;
    width: 339px;
    height: 339px;
    border-radius: 339px;
    background: var(--main-dark-blue-color);
    filter: blur(100px);
}
.requirements__item-inner::before {
    left: -60%;
    top: 50%;
}
.requirements__item-inner::after {
    right: -40%;
    top: -140%;
}
.requirements__item:nth-child(2) {grid-area: B;}
.requirements__item:nth-child(3) {grid-area: C;}
.requirements__item:nth-child(4) {grid-area: D;}
.requirements__item:nth-child(5) {grid-area: E;}
.requirements__item:nth-child(6) {grid-area: F;}
.requirements__item:nth-child(7) {grid-area: G;}
.requirements__end-image {
    grid-area: H;
    justify-self: flex-start;
    margin-inline-start: 90px;
}
.requirements__item .description {
    z-index: 1;
}

/* /requirements section */

/* steps section */
#steps .background-light-elem--right {
    top: -20%;
}
#steps .background-light-elem--left {
    top: 55%;
}
#steps .section__title {
    margin-block-end: 62px;
}
.steps__list {
    display: grid;
    grid-template-areas: 
        "A img"
        "B img"
        "C img"
        "C D"
        "E D"
        "E F"
        "E F";
    row-gap: 42px;
    column-gap: 10%;
    grid-template-columns: repeat(2, 45%);
    position: relative;
}
.steps__list::after, .steps__list::before {
    content: '';
    position: absolute;
    height: calc(100% + 30px);
    width: 3px;
    background-color: #0044F2;
    margin-inline: auto;
    inset: auto 0;
    top: -15px;
    border-radius: 15px;
    z-index: -1;
}
.steps__list::before {
    filter: blur(5px);
}
.steps__card {
    display: flex;
    flex-direction: column;
    padding: 25px 30px;
    border-radius: 20px;
    border: 2px solid var(--main-red-color);
    background: #000307;
    position: relative;
    box-shadow: 0 0 20px #E6352B;
    transition: all 250ms ease-in-out;
}
.steps__card:hover {
    box-shadow: 0 0 35px #E6352B;
}
.steps__card .card__number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 107%;
    top: 10px;
    background: var(--main-red-color);
    border-radius: 50%;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: var(--main-text-color);
    font-family: Unbounded;
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
}
.steps__card .card__number::after {
    content: '';
    position: absolute;
    left: -40px;
    top: auto;
    width: 44px;
    height: 2px;
    z-index: -1;
    background-color: #E6352B;
}
.steps__card:nth-child(4) .card__number, .steps__card:nth-child(5) .card__number {
    left: unset;
    right: 107%;
}
.steps__card:nth-child(4) .card__number::after, .steps__card:nth-child(5) .card__number::after {
    left: unset;
    right: -40px;
}
.steps__card:nth-child(4) .card__number {
    top: 50px;
}
.steps__card:nth-child(6) .card__number {
    top: unset;
    bottom: 10px;
}
.steps__card:nth-child(1) {grid-area: A;}
.steps__card:nth-child(2) {grid-area: B;}
.steps__card:nth-child(3) {grid-area: C;}
.steps__card:nth-child(4) {grid-area: D;}
.steps__card:nth-child(5) {grid-area: F;}
.steps__card:nth-child(6) {grid-area: E;}
.steps__card .card__head {
    display: inline-flex;
    align-items: center;
    column-gap: 18px;
    position: relative;
    margin-block-end: 30px;
}
.steps__card .card__head::after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 1px;
    width: 80%;
    background-image: radial-gradient(#fff 10%, transparent 60%);
}
.steps__card .card__title {
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.steps__image {
    grid-area: img;
}
.steps__card .card__body .description {
    line-height: 120%;
}
/* /steps section */

/* howitworks section */
#howitworks .background-light-elem--right {
    top: 70%;
    left: 90%;
}
.howitworks__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.transaction-type--deposits {
    --cards-bg-color: var(--main-dark-blue-color);
    --cards-box-shadow-color:  rgba(0, 2, 45, 0.50);
}
.transaction-type--withdrawals {
    --cards-bg-color: var(--main-red-color);
    --cards-box-shadow-color: rgba(45, 0, 0, 0.50);
}
.howitworks__bg-circle {
    position: absolute;
}
.howitworks__bg-circle.howitworks__circle--blue {
    top: 65%;
    left: -110px;
    z-index: -1;
}
.howitworks__bg-circle.howitworks__circle--red {
    top: 0%;
    right: -80px;
    z-index: -1;
}
.transaction-type__title {
    font-family: Unbounded;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    margin-block-end: 38px;
}
.transaction__stages {
    display: grid;
    grid-template-columns: 1fr;
}
.transaction__stages .stage__item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 82px;
    background: #000307;
    box-shadow: 0px 5px 15px 0px var(--cards-box-shadow-color);
    width: 640px;
    height: 123px;
    position: relative;
    overflow: hidden;
}
.transaction__stages .stage__item::before,
.transaction__stages .stage__item::after {
    content: '';
    position: absolute;
    width: 339px;
    height: 339px;
    border-radius: 339px;
    background: var(--cards-bg-color);
    filter: blur(100px);
}
.transaction__stages .stage__item:not(:first-child) {
    margin-block-start: -20px;
}
.transaction__stages .stage__item::before {
    left: -40%;
    top: 40%;
}
.transaction__stages .stage__item::after {
    right: -40%;
    top: -220%;
}
.transaction__stages .stage__item:nth-child(1) {z-index: 4;}
.transaction__stages .stage__item:nth-child(2) {z-index: 3;}
.transaction__stages .stage__item:nth-child(3) {z-index: 2;}
.transaction__stages .stage__item:nth-child(4) {z-index: 1;}
.transaction__stages .stage__item .description {
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-inline-end: 40px;
    z-index: 5;
}
.stage__number {
    padding-block-start: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stage__number img {
    height: fit-content;
    max-height: 100%;
    z-index: 4;
}

.stage__item::before, .stage__item::after, .requirements__item-inner::after, .requirements__item-inner::before {pointer-events: none;}
/* /howitworks section */


/* advantages section */

#advantages .container {
    display: grid;
    grid-template-columns: 1fr 640px;
    gap: 75px;
}
#advantages .section__title {
    margin-block-end: 40px;
}
.advantages__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.advantage__card {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--main-red-color);
    background: #000307;
    transition: all 250ms ease-in-out;
}
.advantage__card:hover, .attention__card:hover {
    box-shadow: 0 0 15px var(--main-red-color);
}
.advantage__head {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-block-end: 15px;
}
.advantage__title {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}
.advantage__text {
    font-size: 16px;
}
/* /advantages section */

/* attention section */
#attention .background-light-elem--left {
    top: -35%;
}
#en .attention__card {
    grid-template-columns: 820px 1fr;
}
.attention__card {
    padding: 50px 60px;
    border-radius: 40px;
    border: 1px solid var(--main-red-color);
    background: #000307;
    box-shadow: 0px 10px 40px 0px rgba(0, 4, 24, 0.50);
    display: grid;
    grid-template-columns: 1fr auto;
    position: relative;
    align-items: center;
    overflow: hidden;
    transition: all 250ms ease-in-out;
}
.attention__card::before {
    content: '';
    position: absolute;
    width: 339px;
    height: 339px;
    border-radius: 339px;
    top: -34%;
    left: 83%;
    background: var(--main-red-color);
    filter: blur(135px);
	pointer-events: none;
}
.attention__title {
    color: #FFF;
    font-family: "Luckiest Guy", fantasy;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transform: rotate(32.031deg);
    position: relative;
}
/* /attention section */

/* contacts section */
#contacts .background-light-elem {
	bottom: 0;
}
.contact__form-bg {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 58.5%;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.contacts__form-bg-img {
    position: absolute;
    top: 0;
    z-index: -1;
}
.contacts__form-face-img {
    position: absolute;
    top: 0;
    z-index: 10;
}
.contacts__form {
    border-radius: 20px;
    background: #000307;
    padding: 40px;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(2px);
    max-width: 750px;
    position: relative;
    margin-inline-start: 110px;
    z-index: 5;
}
.contacts__form::before, .contacts__form::after {
    pointer-events: none;
}
.contacts__form::before {
    content: '';
    border-radius: 20px;
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-image: linear-gradient(135deg, #FFFFFF, #FFFFFF2B);
    z-index: -2;
}
.contacts__form::after {
    content: '';
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000307;
    z-index: -1;
}
.contacts__form .description {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}
.contacts__form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.contacts__form form .wpcf7-form-control-wrap {
    width: 100%
}
.contacts__form form input[type="text"],
.contacts__form form input[type="email"],
.contacts__form form input[type="tel"] {
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 10px;
    border: 1px solid #ADADAD;
    outline: none;
    background-color: transparent;
    padding: 10px 30px;
    width: 100%;
    transition: border-color 500ms ease
}
.contacts__form form input[type="text"]:focus,
.contacts__form form input[type="email"]:focus,
.contacts__form form input[type="tel"]:focus {
    border-color: var(--main-blue-color);
}
.contacts__form .checkbox {
    cursor: pointer;
    margin-block: 15px;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: center;
    width: 100%;
	gap: 10px;
}
.wpcf7-list-item {
	margin: 0;
}
.contacts__form .checkbox input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
}

.contacts__form .checkbox svg {
    --dark-gradient: #fff;
    --light-gradient: #fff;
}
.contacts__form .checkbox:has(input:checked) svg {
    --dark-gradient: #890505;
    --light-gradient: var(--main-red-color);
}
.contacts__form form .submit-btn {
    border: none;
    border-radius: 50px;
    box-shadow: 0px 15px 20px 0px rgba(86, 0, 0, 0.20);
    width: 50%;
    font-family: "Krona One", 'Unbounded';
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 250ms ease;
}
.contacts__form form .submit-btn:hover {
    scale: .98;
    box-shadow: 0px 15px 20px 0px rgba(86, 0, 0, 0.60);
}

/* /contacts section */

/* footer */
.footer::before {
    content: '';
    position: absolute;
    top:0;
    margin-inline: auto;
    width: 100%;
    height: 1px;
    background-image: radial-gradient(#fff 10%, transparent 60%);
}
.footer {
    background: #010205;
    position: relative;
}
.footer__container {
    padding-block: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer__links {
    display: flex;
    gap: 41px;
    margin-block-end: 40px;
}
.footer__link {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    transition: all 250ms ease-in-out;
}
.footer__link:hover {
    filter: drop-shadow(2px 2px 5px var(--main-blue-color));
}
.footer__text {
    max-width: 632px;
}

.footer__text .description {
    color: var(--main-text-color);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer__text-link {
    color: #B3B3B3;
    text-decoration-line: underline;
    transition: all 250ms ease-in-out;
}
.footer__text-link:hover {
    filter: drop-shadow(0 0 1px #B3B3B3);
}
/* /footer */


