body {
    background-color: rgba(7, 7, 19, 1);
    font-family: 'Inter', sans-serif;
    transition-duration: .4s;

    margin: 0;
}
@font-face {
    font-family: BOLD;
    src: url(./font/SuisseIntl-Bold.otf);
}
@font-face {
    font-family: BOOK;
    src: url(./font/SuisseIntl-Book.otf);
}
@font-face {
    font-family: LIGHT;
    src: url(./font/SuisseIntl-Light.otf);
}
@font-face {
    font-family: REGULAR;
    src: url(./font/SuisseIntl-Regular.otf);
}
@font-face {
    font-family: MEDIUM;
    src: url(./font/SuisseIntl-Medium.otf);
}
body,
html {
    height: 100%;
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
::before,
::after {
    padding: 0;
    margin: 0;
    border: 0;
}
.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
}
img {
    vertical-align: top;
}
a {
    text-decoration: none;
}
[class*="__container"] {
    max-width: 1521px;
    margin: 0px auto;
    padding: 0px 15px;
}
/* ======HEADER===== */
.header{
    position: relative;
    z-index: 10000;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(9, 9, 23, 1);
}
.header__container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    min-height: 127px;
}
.header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 34px;
    background-color: rgba(83, 234, 117, 1);
    padding: 17px 23px;
}
.header__logo__img {
    position: relative;
    margin: 0px 9px 0px 0px;
}
.header__logo__text {
    font-size: 22.48px;
    color: #070713;
    font-family: BOLD;
    font-style: normal;
    line-height: normal;
}
.header__menu {
    position: relative;
}
.header__menu__ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 54px;
}
.header__menu__li {
    display: flex;
}
.header__menu__link {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
    transition: all 0.4s ease;
}
.header__menu__link:hover {
    color: #FFF;
    padding: 8px 18px;
    border-radius: 70px;
    background: #0D0D20;
}
.header__button {
    cursor: pointer;
    padding: 20px 77px;
    border-radius: 85px;
    background: #53EA75;
    transition: all 0.4s ease;
}
.header__button:hover {
    background-color: #FFF;
}
.header__button__text {
    font-size: 18px;
    color: #070713;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.header__burger {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    cursor: pointer;
    padding: 20px;
    border-radius: 34.325px;
    background: #0D0D20;
}
.bar1 {
    width: 20px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 3px 0;
    transition: 0.4s;
}
.bar2 {
    width: 27px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 3px 0;
    transition: 0.4s;
}
.bar3 {
    width: 16px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 3px 0;
    transition: 0.4s;
}
.change .bar1 {
    width: 27px;
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    width: 27px;
    -webkit-transform: rotate(45deg) translate(-6px, -8px);
    transform: rotate(45deg) translate(-6px, -7px);
}
.burger {
    z-index: 9999;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100%;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #070713;
    padding: 15px 15px 15px 15px;
    -webkit-box-shadow: -12px -4px 23px -10px #070713;
    -moz-box-shadow: -12px -4px 23px -10px #070713;
    box-shadow: -12px -4px 23px -10px #070713;
    transition: all 0.5s;
}
.active__burger {
    right: 0;
    transition: right  0.5s ease 0s;
}
.burger__menu {
    margin: 153px 0px 0px 0px;
}
.burger__menu__list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
    gap: 54px;
    padding: 0;
}
.burger__link {
    font-size: 22px;
}
/* =======MAIN====== */
.main {
    position: relative;
    flex: 1 1 auto;
}
.main__container {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
/* ======TOP====== */
.main__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main__top__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main__top__title {
    font-size: 68px;
    color: #FFF;
    font-family: BOLD;
    font-style: normal;
    line-height: normal;
}
.main__top__title span {
    color: #53EA75;
    font-family: BOLD;
    font-style: normal;
    line-height: normal;
}
.main__top__text {
    margin: 24px 0px 0px 0px;
    font-size: 18px;
    color: rgba(97, 97, 106, 1);
    font-family: REGULAR;
    font-style: normal;
    line-height: 150%;
}
.main__top__blocks {
    margin: 48px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.main__top__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 11px 32px;
    border-radius: 74px;
    background: #090917;
}
.main__top__block__title {
    font-size: 14px;
    color: rgba(97, 97, 106, 1);
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__top__block__down {
    margin: 5px 0px 0px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main__top__block__image {
    position: relative;
    margin: 0px 8px 0px 0px;
}
.main__top__block__number {
    font-size: 16px;
    color: #FFF;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__top__right {
    position: relative;
    margin: 0px -125px 0px 0px;
}
.main__top__right__img {
    position: relative;
}
/* ======TARIFFS===== */
.main__tariffs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 130px 0px 0px 0px;
    width: 100%;
}
.main__tariffs__title {
    color: #FFF;
    font-size: 52px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 18px 0px;
}
.main__tariffs__text {
    font-size: 24px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: 140%;
    margin: 0px 0px 45px 0px;
}
.main__tariffs__cont {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.slider-2 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 374px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.slider-3 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 374px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.tariffs__cont__2 {
    display: none;
}
.main__tariffs__right {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    right: 680px;
}
.tariff__slider__cont {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main__tariffs__slider {
    width: 453px;
    position: relative;
    padding: 44px 39px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 30px;
    background: #090917;
    z-index: 100;
    transition: transform 0.6s ease-in-out;
}
.main__tariffs__slider__data {
    min-width: 378px;
    transition: transform 0.6s ease-in-out;
}
.main__tariffs__slider__title {
    color: #FFF;
    font-size: 24px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 10px 0px;
}
.main__tariffs__slider__text {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 39px 0px;
}
.main__tariffs__slider__price__cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 0px 22px 0px;
    gap: 10px;
}
.main__tariffs__slider__price {
    color: #53EA75;
    font-size: 42px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
}
.main__tariffs__slider__slash {
    color: #1C1C36;
    font-size: 42px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
}
.main__tariffs__slider__time {
    padding: 8px 17px;
    color: #B5B5B5;
    font-size: 16px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    border-radius: 18.5px;
    background: #141422;
}
.main__tariffs__slider__currency__cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 0px 22px 0px;
    gap: 16px;
}
.main__tariffs__slider__currency {
    color: #B5B5B5;
    font-size: 16px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    border-radius: 18.5px;
    background: #141422;
    padding: 8px 17px;
    transition: all 0.4s ease;
    cursor: pointer;
}
.main__tariffs__slider__currency:hover {
    color: #090917;
    background-color: #FFF;
}
.main__tariffs__slider__currency__checked {
    color: #090917;
    background: #FFF;
}
.main__tariffs__slider__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 0px 12px 0px;
}
.main__tariffs__slider__info__title {
    color: #FFF;
    font-size: 22px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    margin: 0px 16px 0px 0px;
}
.main__tariffs__slider__info__text {
    color: #61616A;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__tariffs__slider__buttons {
    margin: 48px 0px 0px 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 21px;
}
.main__tariffs__slider__button {
    cursor: pointer;
    padding: 20px 99px;
    border-radius: 85px;
    background: #53EA75;
    transition: all 0.4s ease;
}
.main__tariffs__slider__button:hover {
    background-color: #FFF;
}
.main__tariffs__slider__button__text {
    color: #15161D;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__tariffs__slider__left__arrow {
    cursor: pointer;
    padding: 8px;
    border-radius: 51px;
    transition: all 0.4s ease;
}
.main__tariffs__slider__left__arrow:hover {
    background-color: #FFF;
}
.main__tariffs__slider__arrow__img {
    position: relative;
}
.main__tariffs__slider__right__arrow {
    cursor: pointer;
    padding: 8px;
    border-radius: 51px;
    background: #53EA75;
    transition: all 0.4s ease;
}
.main__tariffs__slider__right__arrow:hover {
    background-color: #FFF;
}
.main__tariffs__human {
    position: relative;
    right: -680px;
    z-index: 2;
}
.main__tariffs__light {
    position: relative;
    right: -250px;
    z-index: 1;
}
.main__tariffs__clock {
    z-index: 50;
    position: relative;
}
.main__tariffs__clock__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    position: relative;
    background-color: rgba(7, 7, 19, 1);
    z-index: 5;
}
.main__tariffs__clock__circle__img {
    position: relative;
}
.main__tariffs__clock__circle:not(:first-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(7, 7, 19, 0.3);
}
.main__tariffs__clock__circle:nth-child(2) {
    width: 246px;
    height: 246px;
    border: 1px solid rgba(217, 217, 217, 0.3);
    background: linear-gradient(180deg, #090917 0%, rgba(13, 13, 30, 0.00) 100%);
    z-index: 4;
}
.main__tariffs__clock__circle:nth-child(3) {
    width: 346px;
    height: 346px;
    border: 1px solid rgba(217, 217, 217, 0.3);
    background: linear-gradient(180deg, #090917 0%, rgba(13, 13, 30, 0.00) 100%);
    z-index: 3;
}
.main__tariffs__clock__circle:nth-child(4) {
    width: 446px;
    height: 446px;
    border: 1px solid rgba(217, 217, 217, 0.3);
    z-index: 2;
}
.main__tariffs__clock__circle:nth-child(5) {
    width: 546px;
    height: 546px;
    border: 1px solid rgba(217, 217, 217, 0.3);
    z-index: 1;
}
.main__tariffs__clock__circle__number {
    cursor: pointer;
    position: absolute;
    transform: translate(-50%, -50%);
}
.main__tariffs__clock__circle__number:nth-child(1) {
    top: 0;
    left: 50%;
}
.main__tariffs__clock__circle__number:nth-child(2) {
    top: 5%;
    left: 75%;
}
.main__tariffs__clock__circle__number:nth-child(3) {
    top: 25%;
    left: 95%;
}
.main__tariffs__clock__circle__number:nth-child(4) {
    top: 50%;
    left: 100%;
}
.main__tariffs__clock__circle__number:nth-child(5) {
    top: 75%;
    left: 95%;
}
.main__tariffs__clock__circle__number:nth-child(6) {
    top: 95%;
    left: 75%;
}
.main__tariffs__clock__circle__number:nth-child(7) {
    top: 100%;
    left: 50%;
}
.main__tariffs__clock__circle__number:nth-child(8) {
    top: 95%;
    left: 25%;
}
.main__tariffs__clock__circle__number:nth-child(9) {
    top: 75%;
    left: 5%;
}
.main__tariffs__clock__circle__number:nth-child(10) {
    top: 50%;
    left: 0%;
}
.main__tariffs__clock__circle__number:nth-child(11) {
    top: 25%;
    left: 5%;
}
.main__tariffs__clock__circle__number:nth-child(12) {
    top: 5%;
    left: 25%;
}
.main__tariffs__clock__circle__number__circle {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #61616A;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: 170%;
    border-radius: 50%;
    background-color: #141422;
    z-index: 10;
}
@keyframes changeColor {
    0% { 
        color: #61616A;
        background-color: #141422;
    }
    100% {
        color: #000000;
        background-color: #53EA75; 
    }
}
@keyframes borderWidthColor {
    0% {
        width: 0px;
        height: 0px;
        border: none;
    }
    100% {
        width: 100px;
        height: 100px;
        border: 1px solid #53EA75;
    }
}
.main__tariffs__clock__circle__number__circle:hover {
    background-color: #fff;
    color: #fff;
}
.main__tariffs__clock__circle__number__circle:not(:first-child) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main__tariffs__clock__circle__number__circle:nth-child(2) {
    width: 70px;
    height: 70px;
    border: 1px solid #141422;
    background-color: transparent;
    z-index: 9;
}
.main__tariffs__clock__circle__number__checked:nth-child(1) {
    animation: changeColor 0.5s forwards;
}
.main__tariffs__clock__circle__number__checked:nth-child(2) {
    animation: borderWidthColor 0.5s forwards;
}
/* ====ADVANTAGES==== */
.main__advantages {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 130px 0px 0px 0px;
}
.main__advantages__title {
    font-size: 52px;
    color: #FFF;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 18px 0px;
}
.main__advantages__text {
    font-size: 24px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 90px 0px;
}
.main__advantages__cont {
    width: 100%;
    min-height: 1065px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: 
    "adv1 adv1 adv1 adv1 adv1 adv3 adv3 adv3 adv3 adv3 adv3 adv3"
    "adv2 adv2 adv2 adv2 adv2 adv3 adv3 adv3 adv3 adv3 adv3 adv3"
    "adv4 adv4 adv4 adv4 adv5 adv5 adv5 adv5 adv6 adv6 adv6 adv6";
    gap: 38px;
}
.main__advantage {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 52px 10px 10px 41px;
    border-radius: 30px;
    background: #090917;
}
.main__advantage2 {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 89px 28px 50px 37px;
    border-radius: 30px;
    background: #090917;
}
.advantage__1 {
    grid-area: adv1;
    background-image: url(./assets/adv1.png);
    background-repeat: no-repeat;
    background-position: right -85px center;
}
.advantage__1 div {
    max-width: 320px;
}
.advantage__2 {
    grid-area: adv2;
    background-image: url(./assets/adv2.png);
    background-repeat: no-repeat;
    background-position: right -85px center;
}
.advantage__2 div {
    max-width: 320px;
}
.advantage__3 {
    grid-area: adv3;
    background-image: url(./assets/adv3.png);
    background-repeat: no-repeat;
    background-position: center bottom 100px;
    padding: 41px 10px 10px 52px !important;
}
.advantage__3 div {
    max-width: 700px;
}
.advantage__4 {
    grid-area: adv4;
    background-image: url(./assets/adv4.png);
    background-repeat: no-repeat;
    background-position: left -40px top -50px;
}
.advantage__5 {
    grid-area: adv5;
    background-image: url(./assets/adv5.png);
    background-repeat: no-repeat;
    background-position: left -21px top -50px;
}
.advantage__6 {
    grid-area: adv6;
    background-image: url(./assets/adv6.png);
    background-repeat: no-repeat;
    background-position: left -47px top -60px;
}
.main__advantage__title {
    color: #FFF;
    font-size: 38px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 23px 0px;
}
.main__advantage__text {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: 170%;
}
.main__advantage2__title {
    color: #FFF;
    font-size: 32px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 30px 0px;
}
.main__advantage2__text {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: 170%;
}
/* =====REVIEWS====== */
.main__reviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 130px 0px 0px 0px;
    width: 100%;
}
.main__reviews__title {
    color: #FFF;
    font-size: 52px;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 18px 0px;
}
.main__reviews__text {
    font-size: 24px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: 140%;
    margin: 0px 0px 90px 0px;
}
.main__reviews__cont {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    position: relative;
}
.slider {
    display: flex;
    gap: 40px;
    transition: transform 0.3s ease-in-out;
}
.main__review {
    width: 40%;
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 22px 31px 47px;
    border-radius: 20px;
    background: #090917;
}
.main__review__user {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0px 0px 17px 0px;
}
.main__review__user__img {
    position: relative;
    margin: 0px 20px 0px 0px;
}
.main__review__user__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main__review__user__name {
    font-size: 24px;
    color: #FFF;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    margin: 0px 0px 4px 0px;
}
.main__review__user__role {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__review__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main__review__title {
    color: #53EA75;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: 170%;
    margin: 0px 0px 12px 0px;
}
.main__review__text {
    color: #61616A;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: 170%;
}
.main__reviews__management {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0px 0px 0px;
}
.main__all__reviews__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 0px 0px 48px;
    transition: all 0.4s ease;
}
.main__all__reviews__button__text {
    color: #53EA75;
    font-size: 18px;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    margin: 0px 15px 0px 0px;
}
.main__all__reviews__button__img {
    position: relative;
}
.main__reviews__management__arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main__reviews__management__left__arrow {
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    background: #090917;
    margin: 0px 18px 0px 0px;
    transition: all 0.4s ease;
}
.main__reviews__management__left__arrow:hover {
    background-color: #FFF;
}
.main__reviews__management__arrow__img {
    position: relative;
}
.main__reviews__management__right__arrow {
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    background: #53EA75;
    transition: all 0.4s ease;
}
.main__reviews__management__right__arrow:hover {
    background-color: #FFF;
}
/* =====FEEDBACK===== */
.main__feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 97px 0px 0px 0px;
}
.main__feedback__title {
    margin: 0px 0px 8px 0px;
    font-size: 24px;
    color: #FFF;
    font-family: BOOK;
    font-style: normal;
    line-height: normal;
}
.main__feedback__text {
    text-align: center;
    margin: 0px 0px 24px 0px;
    font-size: 18px;
    color: rgba(97, 97, 106, 1);
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__feedback__input__cont {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main__feedback__input {
    width: 470px;
    height: 100%;
    margin: 0px 12px 0px 0px;
    border-radius: 99px;
    border: 1px solid #FFF;
    background-color: transparent;
    background-image: url(./assets/mail.svg);
    background-size: 19px 19px;
    background-repeat: no-repeat;
    background-position: left 24px center;
    padding: 19px 24px 19px 52px;
    appearance: none;
    outline: none;
    font-size: 18px;
    color: #FFF;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.main__feedback__button {
    text-align: center;
    border-radius: 85px;
    background: #53EA75;
    padding: 20px 60px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.main__feedback__button:hover {
    background-color: #FFF;
}
.main__feedback__button__text {
    font-size: 18px;
    color: #070713;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
/* ======FOOTER===== */
.footer {
    position: relative;
    z-index: 100;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(9, 9, 23, 1);
    margin: 215px 0px 0px 0px;
}
.footer__container {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.footer__1 {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 128px;
}
.footer__top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}
.footer__bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer__2 {
    display: none;
}
.footer__3 {
    display: none;
}
.footer__logo {
    position: relative;
}
.footer__logo__img {
    position: relative;
}
.footer__copyright {
    position: relative;
}
.footer__copyright__text {
    font-size: 14px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
}
.footer__menu {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.footer__menu__line {
    width: 1px;
    height: 100%;
    background-color: #161626;
}
.footer__menu__item {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}
.footer__menu__item__link {
    font-size: 18px;
    color: #61616A;
    font-family: REGULAR;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
    transition: all 0.4s ease;
}
.footer__menu__item__link:hover {
    color: #FFF;
    text-decoration: underline;
}
.footer__messengers {
    display: flex;
    flex-direction: row;
    gap: 18px;
}
.footer__messenger {
    cursor: pointer;
    position: relative;
}
.footer__messenger__img {
    position: relative;
}
.footer__messenger__img svg {
    fill: #61616A;
    transition: all 0.4s ease;
}
.footer__messenger__img:hover svg {
    fill: #fff;
}
.footer__protected {
    position: relative;
}
.footer__protected__img {
    position: relative;
}
/* =====REQUESTS===== */
@media (max-width: 1521px) {
    [class*="__container"] {
        max-width: 1200px;
    }
    .main__top__blocks {
        flex-wrap: wrap;
    }
    .main__tariffs__cont {
        flex-direction: column;
        align-items: center;
    }
    .tariffs__cont__1 {
        display: none;
    }
    .tariffs__cont__2 {
        width: 100%;
        display: flex;
    }
    .main__tariffs__human {
        right: 0;
    }
    .main__tariffs__right {
        flex-direction: column;
        top: -450px;
        right: 0px;
    }
    .main__tariffs__light {
        right: 0;
        transform: rotate(90deg);
    }
    .main__advantages {
        margin: 0;
    }
    .main__advantages__cont {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main__advantage {
        text-align: left;
        width: 100%;
    }
    .main__advantage2 {
        width: 100%;
    }
    .advantage__3 {
        min-height: 680px;
    }
    .footer__1 {
        display: none;
    }
    .footer__2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer__logo__img {
        height: 85px;
    }
}
@media (max-width: 1230px) {
    [class*="__container"] {
        max-width: 950px;
    }
    .main__top {
        margin: 50px 0px 0px 0px;
        flex-direction: column;
        align-items: center;
    }
    .main__top__left {
        z-index: 100;
        text-align: center;
        align-items: center;
    }
    .main__top__title {
        font-size: 54px;
    }
    .main__top__text {
        margin: 18px 0px 0px 0px;
        font-size: 16px;
    }
    .main__top__right {
        z-index: 90;
        margin: -150px 0px 0px 0px;
    }
    .main__top__right__img {
        height: 600px;
    }
    .main__tariffs__human {
        height: 500px;
    }
}
@media (max-width: 991.98px) {
    [class*="__container"] {
        max-width: 750px;
    }
    .header__menu {
        display: none;
    }
    .header__button {
        display: none;
    }
    .header__burger {
        display: inline-flex;
    }
    .main__top__left {
        align-items: flex-start;
    }
    .main__top__title {
        width: 100%;
    }
    .main__top__blocks {
        flex-direction: column;
    }
    .main__top__right {
        margin: -370px -350px 0px 0px;
    }
    .main__top__right__img {
        height: 400px;
    }
    .main__tariffs__title {
        font-size: 46px;
    }
    .main__tariffs__text {
        font-size: 16px;
    }
    .tariff__slider__cont {
        width: 100%;
    }
    .tariffs__cont__2 {
        width: auto;
    }
    .main__tariffs__right {
        left: -80px;
    }
    .main__tariffs__human {
        height: 450px;
        left: -150px;
    }
    .main__advantages {
        text-align: center;
    }
    .main__advantages__title {
        font-size: 46px;
    }
    .main__advantages__text {
        font-size: 16px;
        margin: 0px 0px 60px 0px;
    }
    .main__reviews__title {
        font-size: 46px;
    }
    .main__reviews__text {
        font-size: 16px;
    }
    .footer__copyright__text {
        font-size: 12px;
    }
    .footer__menu__item__link {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    [class*="__container"] {
        max-width: 590px;
    }
    .main__tariffs__slider {
        width: 420px;
    }
    .slider-3 {
        width: 344px;
    }
    .main__tariffs__slider__data {
        min-width: 346px;
    }
    .main__tariffs__slider__button {
        padding: 20px 74px;
    }
    .main__tariffs__clock__circle {
        width: 86px;
        height: 86px;
    }
    .main__tariffs__clock__circle:nth-child(2) {
        width: 166px;
        height: 166px;
    }
    .main__tariffs__clock__circle:nth-child(3) {
        width: 246px;
        height: 246px;
    }
    .main__tariffs__clock__circle:nth-child(4) {
        width: 326px;
        height: 326px;
    }
    .main__tariffs__clock__circle:nth-child(5) {
        width: 406px;
        height: 406px;
    }
    .main__tariffs__right {
        left: -170px;
    }
    .main__advantage {
        padding: 30px 47px !important;
        text-align: center;
        align-items: center;
    }
    .advantage__1 {
        background-position: bottom center;
        min-height: 550px;
    }
    .advantage__2 {
        background-position: bottom center;
        min-height: 550px;
    }
    .advantage__3 {
        background-size: 83%;
        min-height: 600px;
        background-position: bottom 70px center;
    }
    .main__review {
        width: 30%;
    }
    .main__all__reviews__button {
        margin: 0;
    }
    .main__reviews__text {
        margin: 0px 0px 56px 0px;
    }
    .main__reviews__management__left__arrow {
        border-radius: 50%;
    }
    .main__reviews__management__right__arrow {
        border-radius: 50%;
    }
    .main__feedback__input__cont {
        width: 100%;
        flex-direction: column;
    }
    .main__feedback__input {
        width: 100%;
        margin: 0px 0px 12px 0px;
    }
    .main__feedback__button {
        width: 100%;
    }
    .footer {
        margin: 135px 0px 0px 0px;
    }
    .footer__2 {
        display: none;
    }
    .footer__3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 0px 15px 0px;
    }
    .footer__top__3 {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer__logo__img {
        height: 80px;
    }
    .footer__bottom__3 {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 15px 0px 0px 0px;
        position: relative;
    }
    .footer__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .footer__menu__item {
        padding: 16px 0px;
    }
    .footer__right__3 {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .footer__messengers {
        flex-direction: column;
    }
    .footer__protected {
        position: absolute;
        display: inline-block;
        bottom: 0;
    }
}
@media (max-width: 569.98px) {
    [class*="__container"] {
        max-width: 450px;
    }
    .header__logo__img {
        width: 20px;
        height: 20px;
    }
    .header__burger {
        padding: 13px;
    }
    .header__logo__text {
        font-size: 16px;
    }
    .burger__link {
        font-size: 18px;
    }
    .main__top__title {
        font-size: 30px;
    }
    .main__top__text {
        font-size: 14px;
    }
    .main__top__right {
        margin: -370px -280px 0px 0px;
    }
    .slider-3 {
        width: 379px;
    }
    .main__tariffs__slider__data {
        min-width: 380px;
    }
    .main__tariffs {
        margin: 93px 0px 0px 0px;
    }
    .main__tariffs__human {
        display: none;
    }
    .main__tariffs__title {
        font-size: 26px;
    }
    .main__tariffs__slider {
        width: 425px;
    }
    .main__tariffs__slider__button {
        padding: 20px 60px;
    }
    .main__tariffs__clock__circle {
        width: 80px;
        height: 80px;
    }
    .main__tariffs__clock__circle:nth-child(2) {
        width: 140px;
        height: 140px;
    }
    .main__tariffs__clock__circle:nth-child(3) {
        width: 230px;
        height: 230px;
    }
    .main__tariffs__clock__circle:nth-child(4) {
        width: 310px;
        height: 310px;
    }
    .main__tariffs__clock__circle:nth-child(5) {
        width: 380px;
        height: 380px;
    }
    @keyframes borderWidthColor2 {
        0% {
            width: 0px;
            height: 0px;
            border: none;
        }
        100% {
            width: 70px;
            height: 70px;
            border: 1px solid #53EA75;
        }
    }
    .main__tariffs__clock__circle__number__checked:nth-child(2) {
        animation: borderWidthColor2 0.5s forwards;
    }
    .main__tariffs__clock__circle__number__circle:nth-child(2) {
        width: 60px;
        height: 60px;
    }
    .main__tariffs__clock__circle__number__checked:nth-child(2) {
        width: 70px;
        height: 70px;
    }
    .main__tariffs__right {
        left: -235px;
    }
    .main__advantages {
        margin: 70px 0px 0px 0px;
    }
    .main__advantages__title {
        font-size: 26px;
    }
    .main__advantages__text {
        margin: 0px 0px 40px 0px;
    }
    .main__advantage__title {
        text-align: center;
        font-size: 24px;
    }
    .main__advantage__text {
        font-size: 16px;
    }
    .main__advantage2__title {
        font-size: 26px;
    }
    .advantage__1 {
        min-height: 500px;
    }
    .advantage__2 {
        min-height: 500px;
    }
    .advantage__3 {
        min-height: 500px;
    }
    .main__review {
        padding: 20px;
        width: 20%;
    }
    .main__review__user__name {
        font-size: 22px;
    }
    .main__review__user__role {
        font-size: 16px;
    }
    .main__review__text {
        font-size: 16px;
    }
    .main__reviews {
        margin: 70px 0px 0px 0px;
    }
    .main__reviews__title {
        font-size: 26px;
    }
    .main__feedback {
        margin: 54px 0px 0px 0px;
    }
    .main__reviews__text {
        font-size: 16px;
        margin: 0px 0px 36px 0px;
    }
    .main__feedback__title {
        font-size: 22px;
    }
    .main__feedback__text {
        font-size: 14px;
    }
    .footer {
        margin: 115px 0px 0px 0px;
    }
}
@media (max-width: 479.98px) {
    [class*="__container"] {
        max-width: none;
    }
    .slider-3 {
        width: 300px;
    }
    .main__tariffs__slider__data {
        min-width: 300px;
    }
    .main__tariffs__slider {
        width: 100%;
    }
    .main__tariffs__slider__price {
        font-size: 32px;
    }
    .main__tariffs__slider__button {
        padding: 20px 40px;
    }
    .main__tariffs__clock__circle {
        width: 70px;
        height: 70px;
    }
    .main__tariffs__clock__circle:nth-child(2) {
        width: 140px;
        height: 140px;
    }
    .main__tariffs__clock__circle:nth-child(3) {
        width: 190px;
        height: 190px;
    }
    .main__tariffs__clock__circle:nth-child(4) {
        width: 240px;
        height: 240px;
    }
    .main__tariffs__clock__circle:nth-child(5) {
        width: 300px;
        height: 300px;
    }
    .main__tariffs__right {
        top: -100px;
        left: 0px;
    }
    .main__tariffs__light {
        width: 350px;
    }
    .tariffs__cont__2 {
        width: 100%;
    }
}
@media (max-width: 387px) {
    .slider-3 {
        width: 275px;
    }
    .main__tariffs__slider__data {
        min-width: 275px;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: #53ea75 #070713;
}

*::-webkit-scrollbar {
    width: 14px;
}

*::-webkit-scrollbar-track {
    background: #070713;
}

*::-webkit-scrollbar-thumb {
    background-color: #53ea75;
    border-radius: 5px;
    border: 2px solid #070713;
}
