@charset "UTF-8";

html {
    box-sizing: border-box
}

*,
*:after,
*:before {
    box-sizing: inherit
}

ul[class],
ol[class] {
    padding: 0
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    font-size: inherit
}

ul[class] {
    list-style: none
}

img {
    width: 100%;
    display: block
}

input,
button,
textarea,
select {
    font: inherit
}

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

@font-face {
    font-family: kanit;
    src: url(../src/fonts/Kanit-Bold.woff2) format("woff2"), url(../src/fonts/Kanit-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: kanit;
    src: url(../src/fonts/Kanit-Medium.woff2) format("woff2"), url(../src/fonts/Kanit-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: kanit;
    src: url(../src/fonts/Kanit-Regular.woff2) format("woff2"), url(../src/fonts/Kanit-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: karla;
    src: url(../src/fonts/Karla-Regular.woff2) format("woff2"), url(../src/fonts/Karla-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@keyframes headerSvg {
    to {
        transform: translateY(-10%)
    }
}

@keyframes levitation {
    to {
        transform: translate(15%, -15%)
    }
}

@keyframes levitationMobile {
    to {
        transform: translate(5%, -5%)
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg)
    }
}
.header {
    position: fixed;
    z-index: 55;
    width: 100%;
}
.header .mobile-menu {
    display: none
}

@media (max-width: 900px) {
    .header .mobile-menu {
        display: block;
        margin-left: 15px
    }
}

@media (max-width: 900px) {
    .header .decstop-logo {
        display: none
    }

    .header .mobile__menu-box {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .header .header__menu-list {
        height: 88dvh;
        flex-direction: column;
        align-items: center;
        position: absolute;
        width: 100dvw;
        top: 42px;
        left: -15px;
        z-index: 55;
        background-color: #272727;
        transition: transform .3s;
        transform: translate(100%)
    }

    .header .header__menu-list.active {
        transform: translate(0)
    }

    .header .mobile-btn {
        cursor: pointer
    }

    .header .mobile-btn-line {
        width: 36px;
        height: 4px;
        background-color: #d9d9d9;
        border-radius: 25px;
        transition: transform .3s, opacity .3s
    }

    .header .mobile-btn-line+.mobile-btn-line {
        margin-top: 4px
    }

    .header .mobile-btn.active .second {
        opacity: 0
    }

    .header .mobile-btn.active .first {
        transform: rotate(39deg) translate(4px, 9px)
    }

    .header .mobile-btn.active .third {
        transform: rotate(-39deg) translateY(-9px)
    }
}

.header__top {
    padding: 17px 0;
    background-color: #1c1b1b;
}

.header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header__top-box {
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 700
}

@media (max-width: 1050px) {
    .header__top-box {
        font-size: 12px
    }
}

.header__top-box .icon {
    width: 16px
}

.header__top-box .green {
    color: #05fe00;
    display: flex;
    align-items: center;
    font-family: karla;
    font-size: 16px;
    font-weight: 400;
    gap: 5px
}

@media (max-width: 1050px) {
    .header__top-box .green {
        font-size: 12px
    }
}

.header__top-box .green svg {
    animation: headerSvg .5s linear infinite alternate
}

.header__top-box--mail {
    color: #757575;
    font-family: karla;
    font-size: 20px;
    font-weight: 400;
    transition: color .3s
}

@media (max-width: 1050px) {
    .header__top-box--mail {
        font-size: 14px
    }
}

@media (hover: hover) {
    .header__top-box--mail:hover {
        color: #f2f2f2
    }
}

.header__menu {
    background-color: #272727;
    padding: 12px 0
}

.header__menu-list {
    display: flex;
    gap: 60px;
    font-size: 24px
}

@media (max-width: 1050px) {
    .header__menu-list {
        font-size: 18px;
        justify-content: space-around
    }
}

.header__menu-item {
    transition: color .3s
}

@media (hover: hover) {
    .header__menu-item:hover {
        color: #fe0000
    }
}

.top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 135px;
    margin-bottom: 100px
}

@media (max-width: 1050px) {
    .top__inner {
        margin-top: 100px;
        margin-bottom: 50px
    }
}

@media (max-width: 780px) {
    .top__inner {
        flex-direction: column;
        gap: 80px
    }
}

.top__info {
    max-width: 710px;
    width: 100%
}

.top__info-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.09
}

.top__info-title span {
    background: linear-gradient(90deg, #ef1a40, #f34f6c, #dd292f 50%, #de1708);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (max-width: 1050px) {
    .top__info-title {
        font-size: 48px
    }
}

.top__info-text {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.09
}

@media (max-width: 1050px) {
    .top__info-text {
        font-size: 16px
    }
}

.top__info-link {
    display: flex;
    align-items: center;
    position: relative;
    width: 320px;
    border-radius: 21px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    justify-content: center;
    padding: 15px 0;
    margin-top: 42px;
    transition: all .3s
}

.top__info-link:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 21px;
    padding: 2px;
    background: linear-gradient(90deg, #ef1a40, #f34f6c, #dd292f 50%, #de1708);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.top__info-link span {
    padding-right: 20px
}

.top__info-link svg {
    position: absolute;
    right: 25px;
    transition: all .3s
}

@media (hover: hover) {
    .top__info-link:hover {
        background-color: #757575
    }

    .top__info-link:hover svg {
        transform: translate(5px)
    }
}

@media (max-width: 1050px) {
    .top__info-link {
        font-size: 14px;
        width: 200px
    }
}

@media (max-width: 780px) {
    .top__info {
        display: flex;
        flex-direction: column;
        align-items: center
    }
}

.top__decor {
    max-width: 400px;
    width: 100%;
    position: relative
}

.top__decor:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: #fe000080;
    border-radius: 50%;
    filter: blur(45px);
    right: 0;
    top: 0;
    z-index: -2
}

.top__decor:after {
    content: "";
    position: absolute;
    width: 215px;
    height: 215px;
    background-color: #fe000080;
    border-radius: 50%;
    filter: blur(45px);
    right: 75px;
    top: 50px;
    z-index: -1
}

.top__decor img {
    animation: levitation 5s ease-in-out infinite alternate
}

@media (max-width: 780px) {
    .top__decor img {
        animation: levitationMobile 5s ease-in-out infinite alternate
    }
}

.exchanges__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px
}

@media (max-width: 1050px) {
    .exchanges__title {
        font-size: 24px;
        text-align: center
    }
}

.exchanges__table {
    background: #282626;
    border-radius: 25px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #757575 transparent
}

.exchanges__table::-webkit-scrollbar {
    height: 8px
}

.exchanges__table::-webkit-scrollbar-track {
    background: transparent
}

.exchanges__table::-webkit-scrollbar-thumb {
    background: #757575;
    border-radius: 10px;
    transform: translateY(-100px)
}

.exchanges__table::-webkit-scrollbar-thumb:hover {
    background: #555
}

.exchanges__table::-webkit-scrollbar-button {
    display: none
}

.exchanges__table .exchanges__table-row {
    padding: 18px 0 18px 21px
}

.exchanges__table .exchanges__table-row+.exchanges__table-row {
    border-top: 1px solid #373636
}

.exchanges__table img {
    width: auto !important;
    height: 20px
}

.exchanges__table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px
}

@media (max-width: 1050px) {
    .exchanges__table-row {
        font-size: 14px
    }
}

.exchanges__table-row--title {
    color: #757575;
    margin-bottom: 25px;
    overflow-x: auto;
    white-space: nowrap
}

.exchanges__table-row--title::-webkit-scrollbar {
    display: none
}

.exchanges__table-row .row {
    min-width: 117px;
    display: flex;
    align-items: center;
    gap: 5px
}

.exchanges__table-row .row .circle {
    width: 10px;
    height: 10px;
    background-color: #fe0000;
    border-radius: 50%
}

.exchanges .pagination {
    display: flex;
    justify-content: center;
    margin: 24px
}

.exchanges .pagination .button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: transform .3s
}

.exchanges .pagination .button .btnHover {
    transition: fill .3s
}

@media (hover: hover) {
    .exchanges .pagination .button:hover .btnHover {
        fill: #f2f2f2
    }
}

.exchanges .pagination .button:disabled {
    cursor: auto
}

.exchanges .pagination .button:disabled .btnHover {
    fill: #757575
}

.exchanges .pagination #page-numbers {
    display: flex
}

.exchanges .pagination .page-number {
    font-size: 20px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #757575;
    cursor: pointer;
    transition: color .3s
}

@media (max-width: 1050px) {
    .exchanges .pagination .page-number {
        font-size: 16px
    }
}

.exchanges .pagination .page-number.active-page {
    background-color: #fe0000bf;
    color: #f2f2f2
}

@media (hover: hover) {
    .exchanges .pagination .page-number:hover {
        color: #f2f2f2
    }
}

.schedule .boxTop {
    display: flex;
    max-width: 670px;
    justify-content: space-between
}

@media (max-width: 1050px) {
    .schedule .boxTop {
        max-width: 100%;
        justify-content: center;
        gap: 20px
    }
}

.schedule__box {
    margin-bottom: 50px
}

.schedule__box-top {
    font-size: 32px;
    font-weight: 700
}

@media (max-width: 1050px) {
    .schedule__box-top {
        font-size: 24px;
        text-align: center
    }
}

.schedule__box-top--bottom {
    font-family: karla;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    gap: 10px
}

.schedule__box-top--bottom span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #05fe00
}

.schedule__box-top--bottom span svg {
    animation: headerSvg .5s linear infinite alternate
}

.schedule__box-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #757575
}

.schedule__box-bottom img {
    width: 40px;
    height: 13px
}

.about {
    margin-top: 72px;
    margin-bottom: 100px
}

@media (max-width: 1050px) {
    .about {
        margin-bottom: 48px
    }
}

.about .mobile {
    display: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33
}

@media (max-width: 780px) {
    .about .mobile {
        display: block;
        text-align: center
    }
}

.about__title {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: 24px
}

@media (max-width: 1050px) {
    .about__title {
        font-size: 24px
    }
}

@media (max-width: 780px) {
    .about__title {
        display: none
    }
}

.about .right {
    min-width: 272px
}

.about__items {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch
}

@media (max-width: 780px) {
    .about__items {
        flex-direction: column
    }
}

.about__item {
    background-color: #282626;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.about__item-left {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.33;
    font-family: karla
}

.about__item-row {
    display: flex;
    justify-content: space-between
}

.about__item-info {
    font-size: 12px;
    font-weight: 400;
    line-height: auto
}

.about__item-date {
    font-size: 16px;
    font-weight: 700;
    line-height: auto
}

.about__item-date span {
    color: #fe0000
}

.footer .mobile {
    display: none
}

.footer__inner {
    background-image: url(../src/img/footer.png);
    background-repeat: no-repeat;
    background-size: 438px;
    background-position: center
}
@media (max-width: 580px) {
    .footer__inner{
        background-size: 258px;
        background-position: center 150px;
    }
}
@media (max-width: 412px) {
    .footer__inner{
   
        background-position: center 200px;
    }
}

.footer__top {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 1.09
}

.footer__title {
    font-size: 52px;
    font-weight: 700;
    text-align: center;
    max-width: 880px;
    margin-bottom: 24px
}

@media (max-width: 1050px) {
    .footer__title {
        font-size: 36px;
        margin-bottom: 19px
    }
}

.footer__title span {
    background: linear-gradient(90deg, #ef1a40, #f34f6c, #dd292f 50%, #de1708);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.footer__text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 90px
}

@media (max-width: 1050px) {
    .footer__text {
        font-size: 16px;
        margin-bottom: 35px;
        text-align: center
    }
}

.footer__btn {
    margin-bottom: 90px;
    z-index: 5
}

.footer__btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0e0e0e40;
    border-radius: 21px;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

@media (max-width: 1050px) {
    .footer__btn {
        margin: 0 0 45px
    }
}

.footer__info {
    position: relative;
    z-index: 5;
    padding: 54px 0
}

.footer__info:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0e0e0e40;
    border-radius: 21px;
    z-index: -1;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(10px);
    top: 0
}

@media (max-width: 780px) {
    .footer__info {
        padding: 24px 0
    }
}

.footer__box {
    display: flex;
    justify-content: space-between
}

.footer__box .logo {
    margin-left: 13px;
    margin-bottom: 24px
}

.footer__col {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    font-weight: 400;
    font-family: karla
}

@media (max-width: 780px) {
    .footer__col {
        font-size: 14px
    }
}

.footer__col-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px
}

@media (max-width: 780px) {
    .footer__col-title {
        font-size: 16px;
        margin-bottom: 16px
    }
}

.footer__col-link {
    margin-bottom: 10px;
    transition: color .3s
}

@media (max-width: 780px) {
    .footer__col-link {
        margin-bottom: 8px
    }
}

@media (hover: hover) {
    .footer__col-link:hover {
        color: #fe0000
    }
}

@media (max-width: 780px) {
    .footer__col.dextop {
        display: none
    }

    .footer__col.mobile {
        display: flex;
        flex-direction: row;
        gap: 14px;
        margin-left: 13px;
        font-size: 12px;
        margin-bottom: 29px
    }
}

.faq {
    margin-top: 60px;
    margin-bottom: 100px
}

@media (max-width: 780px) {
    .faq {
        margin-bottom: 36px
    }
}

.faq .top__info-title {
    text-align: center
}

@media (max-width: 780px) {
    .faq .top__info-title {
        margin-bottom: 36px
    }
}

.faq__inner {
    background-color: #282626;
    border-radius: 25px;
    padding: 36px
}

@media (max-width: 780px) {
    .faq__inner {
        border-radius: 14px;
        padding: 18px
    }
}

.faq .info__item+.info__item {
    margin-top: 24px
}

@media (max-width: 780px) {
    .faq .info__item+.info__item {
        margin-top: 12px
    }
}

.faq .info__item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: all .3s;
    padding-left: 54px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top: 1px solid transparent
}

@media (max-width: 780px) {
    .faq .info__item-body {
        padding-left: 34px;
        font-size: 12px
    }
}

.faq .info__item-body.active {
    border-top-color: #373636;
    background-color: #1c1b1b;
    padding: 24px 24px 24px 54px;
    grid-template-rows: 1fr
}

@media (max-width: 780px) {
    .faq .info__item-body.active {
        padding: 13px 13px 13px 34px
    }
}

.faq .info__item-body>div {
    overflow: hidden
}

.faq .btn-title {
    display: flex;
    gap: 10px;
    max-width: 990px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1
}

.faq .btn-title img {
    width: 24px;
    height: 24px
}

@media (max-width: 780px) {
    .faq .btn-title {
        font-size: 14px
    }

    .faq .btn-title img {
        width: 16px;
        height: 16px
    }
}

.faq .itembtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1c1b1b;
    border-radius: 15px;
    padding: 24px;
    cursor: pointer
}

@media (max-width: 780px) {
    .faq .itembtn {
        padding: 13px;
        gap: 10px
    }
}

.faq .itembtn svg {
    transition: transform .3s
}

@media (max-width: 780px) {
    .faq .itembtn svg {
        width: 20px;
        height: 20px
    }
}

.faq .itembtn .circle,
.faq .itembtn .arrow {
    transition: fill .3s
}

@media (hover: hover) {
    .faq .itembtn:hover svg {
        transform: rotate(180deg)
    }

    .faq .itembtn:hover .circle {
        fill: #fe0000
    }

    .faq .itembtn:hover .arrow {
        fill: #f2f2f2
    }
}

.faq .itembtn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.faq .itembtn.active svg {
    transform: rotate(180deg)
}

.faq .itembtn.active .circle {
    fill: #fe0000
}

.faq .itembtn.active .arrow {
    fill: #f2f2f2
}

@media (hover: hover) {
    .faq .itembtn.active:hover svg {
        transform: rotate(0)
    }

    .faq .itembtn.active:hover .circle {
        fill: #757575
    }

    .faq .itembtn.active:hover .arrow {
        fill: #282626
    }
}

.terms .top__info-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 36px
}

.terms__info {
    background-color: #282626;
    border-radius: 25px;
    padding: 36px
}

@media (max-width: 780px) {
    .terms__info {
        border-radius: 14px;
        padding: 16px;
        margin-bottom: 36px
    }
}

.terms__item+.terms__item {
    margin-top: 36px
}

@media (max-width: 780px) {
    .terms__item+.terms__item {
        margin-top: 24px
    }
}

.terms__item-title {
    font-family: karla;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px
}

@media (max-width: 780px) {
    .terms__item-title {
        font-size: 14px;
        margin-bottom: 10px
    }
}

.terms__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.09;
    font-family: karla
}

@media (max-width: 780px) {
    .terms__item-text {
        font-size: 14px
    }
}

.terms__item-text p+p {
    margin-top: 16px
}

@media (max-width: 780px) {
    .terms__item-text p+p {
        margin-top: 14px
    }
}

.contacts .top__info-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 34px
}

.contacts__inner {
    background-color: #282626;
    border-radius: 25px;
    padding: 40px 36px;
    margin-bottom: 60px
}

@media (max-width: 780px) {
    .contacts__inner {
        padding: 14px;
        margin-bottom: 36px
    }
}

.contacts__inner textarea {
    resize: none;
    width: 100%;
    background-color: #1c1b1b;
    color: #f2f2f2;
    border: none;
    padding: 24px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 15px
}

.contacts__inner textarea::placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #757575
}

@media (max-width: 780px) {
    .contacts__inner textarea::placeholder {
        font-size: 14px
    }
}

.contacts__inner textarea:focus {
    outline: 2px solid #757575
}

@media (max-width: 780px) {
    .contacts__inner textarea {
        border-radius: 10px;
        font-size: 14px;
        padding: 9px 12px
    }
}

.contacts__inputs {
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px
}

@media (max-width: 780px) {
    .contacts__inputs {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px
    }
}

.contacts__inputs input {
    width: 100%;
    background-color: #1c1b1b;
    color: #f2f2f2;
    border: none;
    padding: 24px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 15px
}

.contacts__inputs input::placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #757575
}

@media (max-width: 780px) {
    .contacts__inputs input::placeholder {
        font-size: 14px
    }
}

.contacts__inputs input:focus {
    outline: 2px solid #757575
}

@media (max-width: 780px) {
    .contacts__inputs input {
        border-radius: 10px;
        font-size: 14px;
        padding: 9px 12px
    }
}

.contacts .top__info-link {
    width: 150px;
    height: 60px;
    border-radius: 21px;
    margin: 36px auto 0
}

@media (max-width: 780px) {
    .contacts .top__info-link {
        margin-top: 14px
    }
}

.contacts__items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px
}

@media (max-width: 1050px) {
    .contacts__items {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 16px
    }
}

@media (max-width: 780px) {
    .contacts__items {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 36px
    }
}

.contacts__item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color .3s
}

@media (max-width: 780px) {
    .contacts__item {
        max-width: 320px;
        width: 100%
    }
}

@media (hover: hover) {
    .contacts__item:hover {
        color: #757575
    }

    .contacts__item:hover .icon {
        fill: #757575
    }

    .contacts__item:hover .icon2 {
        stroke: #757575
    }

    .contacts__item:hover .bg {
        fill: #b20000
    }
}

.contacts__item .icon,
.contacts__item .icon2,
.contacts__item .bg {
    transition: fill .3s, stroke .3s
}

.contacts__item-img {
    display: flex;
    align-items: center
}

.contacts__item-title {
    font-size: 24px;
    font-weight: 700
}

@media (max-width: 780px) {
    .contacts__item-title {
        font-size: 16px
    }
}

.contacts__item-text {
    font-size: 16px;
    font-weight: 400;
    font-family: karla
}

@media (max-width: 780px) {
    .contacts__item-text {
        font-size: 12px
    }
}

html {
    scroll-behavior: smooth
}

body {
    font-family: kanit;
    font-weight: 400;
    overflow-x: hidden;
    min-width: 320px;
    background-color: #1c1b1b;
    color: #f2f2f2
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative
}

.main {
    flex: 1 0 auto;
    width: 100%;
    overflow: hidden
}

.footer {
    flex: 0 0 auto;
    width: 100%;
    overflow: hidden
}

.container {
    max-width: 1226px;
    padding: 0 15px;
    margin: 0 auto
}

.container-fluid {
    max-width: 1016px;
    padding: 0 15px;
    margin: 0 auto
}

.logo {
    display: flex;
    align-items: center;
    width: 138px;
    font-size: 24px;
    background-color: #1c1b1b;
    font-weight: 500;
    position: relative;
    border-radius: 9px;
    box-shadow: 0 2px 6.5px #6c414140;
    padding-left: 29px
}

.logo span {
    color: #f2f2f2
}

.logo span.grad {
    background: linear-gradient(90deg, #ef1a40, #f34f6c, #dd292f 50%, #de1708);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.logo img {
    position: absolute;
    width: 40px;
    left: -15px
}

@media (max-width: 1050px) {
    .logo {
        font-size: 20px;
        min-width: 110px;
        max-width: 110px;
        padding-left: 19px;
        max-height: 30px
    }

    .logo img {
        width: 30px
    }
}