
		/* roboto-300 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v32-cyrillic_latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-regular - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-cyrillic_latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v32-cyrillic_latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-600 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v26-cyrillic_latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - cyrillic_latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v26-cyrillic_latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v26-cyrillic_latin-800.woff2') format('woff2');
}


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

}

:root {
    --index: calc(1vw + 1vh);
    --main-color: #E31E25;

}

body {

    background: linear-gradient(0deg, #1E1E1E, #1E1E1E);
    font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
    
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;

}

.header {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-cont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanva {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.offcanvas-head {
    display: none;
}

.offcanva-body {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: calc(var(--index) * 1.2);
    line-height: 35px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-transform: uppercase;
    padding: 8px 0;



}

.logo-link {
    color: #fff;
    text-decoration: none;
    margin-right: 100px;

}

.menu-list {
    display: flex;
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;

}

.offcanvas-header {
    display: none;
}

.menu-link {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    transition: .4s ease;
    position: relative;
    text-decoration: none;
    padding: 8px;
}

.menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;


}

.menu-item::before {
    position: absolute;
    content: '';
    height: 33.33%;
    width: 0;
    background-color: var(--main-color);
    transition: .4s ease;
    left: 0;
    top: 2px;
    z-index: -1;

}

.menu-link::before {
    position: absolute;
    content: '';
    height: 33.3%;
    width: 0;
    background-color: var(--main-color);
    transition: .4s ease;
    right: 0;
    bottom: 50%;
    z-index: -1;
    transform: translateY(50%);

}

.menu-item::after {
    position: absolute;
    content: '';
    height: 33.33%;
    width: 0;
    background-color: var(--main-color);
    transition: .4s ease;
    left: 0;
    bottom: 2px;
    z-index: -1;
}



.menu-item:hover a::before {
    width: 100%;
}

.menu-item:hover::after,
::before {
    width: 100%;
}

.menu-item:hover::before {
    width: 100%;
}

.menu-close {

    position: relative;
    display: flex;
    flex-direction: column;
    display: none;
    z-index: 5;
    transition: .5s;

}

.menu-close-active {
    rotate: 90deg;
}

.stick {
    width: 30px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 10px;
}

.stick-active {
    width: 8px;
    margin: 0 auto 9px;
    transition: .5s;
    /* color: red; */
}

.stick:not(:last-child) {
    margin-bottom: 9px;
}



.logo img {

    margin: 0 4px;

}

.logo:hover img {
    transform: rotate(360deg);
    transition: 0.3s linear;
}

.join {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 186px;
    padding: 5px 5px 5px 20px;
    border-radius: 50px;
    background-color: rgba(43, 43, 43, 1);
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    border: 3px solid #fff;
    box-shadow: 5px 5px 0px black;
    transition: 0.1s;


}

.social__top {
    display: none;
    background: rgba(217, 217, 217, 1);
    padding: 10px 20px;
    border-radius: 50px;

    gap: 10px;
    align-items: center;
}

.social__top .cont-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;

}

.join:hover .join-ico {
    transform: rotate(540deg);
}

.join:active {
    transform: translateX(5px) translateY(5px);
    box-shadow: 0px 0px 0px #000;
}

.m-container {
    position: relative;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;

}

.video-cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.video-bg {
    position: absolute;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;

}

.video-cont::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(30, 30, 30);
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9276960784313726) 8%, rgba(30, 30, 30, 0) 56%);
}

.video-cont::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(30, 30, 30, 0.5) 50.52%, #1E1E1E 100%);
    z-index: 1;
}

.t-cont {
    padding: 120px 0 20px;
    width: 80%;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-family: "Montserrat";
    font-size: calc(var(--index) * 4.4);
    font-weight: 800;
    line-height: calc(var(--index) * 5.5);
    /* letter-spacing: 0.05em; */
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 14px;
    color: white;
    width: calc(var(--index) * 25);
}

.big-span {
    font-size: calc(var(--index) * 6);
    

}

.yellow {
    color: rgba(255, 184, 0, 1);

}

.red {
    color: var(--main-color);
    font-size: calc(var(--index) * 7.6);


}

.mob-hidden p,
.mob-visible p {
    font-size: calc(var(--index) *1.4);
    color: white;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    margin-bottom: calc(var(--index) * 3);
}

.mob-hidden p span,
.mob-visible p span {
    color: var(--main-color);
    font-weight: 900;
}

.form-label {
    display: block;
}

.iti {
    width: 100%;
    margin-bottom: 20px;
}

.iti__country-name {
    color: #000;
}

.error {
    margin-top: 5px;
}

/* .drug {
    padding-left: calc(var(--index) * 12);
    text-align: right;

} */

.get-started {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 276px;
    padding: 5px 5px 5px 20px;
    border-radius: 50px;
    background-color: var(--main-color);
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px black;
    cursor: pointer;
    transition: 0.1s linear;

}

.get-started:active {
    box-shadow: 0px 0px 0px black;
    transform: translateX(5px) translateY(5px);

}

.get-started:hover .start-ico {
    transform: rotate(540deg);
}

.start-ico {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s linear;
}

.second-line {
    width: 100%;
    position: relative;
    padding: 80px 0px 20px 0px;
    overflow: hidden;

}

.second-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    left: 0;
    background: radial-gradient(9.73% 31.65% at 92.26% 50%, rgba(204, 204, 204, 0.2) 0%, rgba(123, 123, 123, 0) 100%);
    z-index: -1;
}

.second-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    left: 0;
    background: radial-gradient(11.32% 29.68% at 10.24% 50%, rgba(188, 188, 188, 0.2) 0%, rgba(188, 188, 188, 0) 100%);
    z-index: -1;

}

.cards2 {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 20px;

}

.card2 {
    width: 100%;
    background-color: rgba(61, 61, 61, 1);
    border-radius: 20px;
    transform: skew(-15deg);
    box-shadow: 0px 0px 5px rgba(123, 123, 123, 1);
    opacity: 0;
    transition: opacity 0.3s ease-out;




}

.card2.visible {
    opacity: 1;
    animation: blocks 0.2s linear, cards 0.3s linear 0.1s forwards;
}


.card-info2 {
    transform: skew(15deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px 20px 20px;



}

.card-info2 h3::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: rgba(123, 123, 123, 1);
    left: 50%;
    bottom: -30%;
    transform: translateX(-50%);
}

.card2:first-child .card-info2,
.card2:last-child .card-info2 {
    justify-content: center;

}

.card2-pic2 {
    max-width: 80px;
    margin-bottom: 10px;
}

.card2-pic2>svg {
    width: 100%;
}

.card-info2 h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 1.5);
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.card-info2 p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: calc(var(--index) * 1.5);
    text-align: left;
    color: #CFCFCF;
    margin: 20px 0 0;
    transform: skew(-15deg);
    padding: 0 30px 0 0;
}


.mob-visible {
    width: 80%;
    margin: auto;
    display: none;
}

.about {
    padding: 100px 0px 70px;
    position: relative;

}

.galery-title {
    text-align: center;
    margin-top: 50px;
    color: white;

}

.galery {
    max-width: 450px;
    border-radius: 50px;
    overflow: hidden;
    height: fit-content;
    margin-bottom: 60px;
}

.about-top {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.trainer-anchor {
    margin-top: 80px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 100%;
    height: 100%;
    background: radial-gradient(26.18% 32.52% at 31.15% 45.51%, rgba(108, 108, 108, 0.5) 0%, rgba(108, 108, 108, 0) 100%);
    z-index: -2;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(26.15% 43.32% at 85.07% 52.57%, rgba(108, 108, 108, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -2;
}

.about-us {
    width: 80%;
    padding: 100px 90px 80px;
    background: url(../img/about-bg.webp) no-repeat center/cover;
    border-radius: 50px;
    margin: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);


}

.about-mask {
    position: relative;
    z-index: 2;
}

.about-mask h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 2.5);
    line-height: 79px;
    text-align: left;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FFFFFF;
    max-width: 466px;
    margin-bottom: 20px;
}

.about-mask p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 35px;
    color: #FFFFFF;
    max-width: 500px;
    margin-bottom: 80px;

}

.about-span {
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 800;
}

.video {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.video-box {
    width: 100%;
    border-radius: 40px;

    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
}

.membership {
    width: 100%;
    position: relative;
    padding: 60px 0 80px;
}

.membership::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(26.18% 32.52% at 31.15% 45.51%, rgba(108, 108, 108, 0.5) 0%, rgba(108, 108, 108, 0) 100%),
        radial-gradient(26.15% 43.32% at 85.07% 52.57%, rgba(108, 108, 108, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;

}

.membership-cont {
    position: relative;
    z-index: 3;
    width: 100px;
    width: 80%;
    margin: auto;
    text-align: center;
}

.membership-cont h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 2.5);
    line-height: 79px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FFFFFF;
}

.membership-cont p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    color: #FFFFFF;


}

.price {
    max-width: 366px;
    height: 57px;
    border-radius: 50px;
    border: 1px solid #fff;
    display: block;
    margin: auto;
    background: rgba(217, 217, 217, 1);
    cursor: pointer;
    border: none;
    margin-bottom: 60px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    padding: 0 35px;
    position: relative;

}

.price span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 57px;
    color: var(--main-color);


}

.switcher {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--main-color);
    border-radius: 25px;
    transition: 0.5s;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5) inset;

}

.switcher p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 35px;
    color: #FFFFFF;
    transition: 0.3s;
}

.switcher p:nth-child(2) {
    opacity: 0;
}

#price {
    opacity: 0;
}

#price:checked~.price>.switcher {
    transform: translateX(100%);
}

#price:checked~.price>.switcher>p:nth-child(2) {
    opacity: 1;
}

#price:checked~.price>.switcher>p:first-child {
    opacity: 0;
}

#price:checked~.price-cards-cont>.price-card {
    transform: rotateY(180deg);

}


.price-cards-cont {
    display: flex;
    gap: 20px;


}

.size-card {
    visibility: hidden;
}

.price-card {
    width: 100%;
    /* height: 450px; */
    border-radius: 50px;
    transition: 0.5s;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
    /* backface-visibility: hidden; */
    padding: 10px 30px 20px;
    /* transform: rotateY(180deg); */
    opacity: 0;
    transition: transform .5s ease-in, opacity 0.5s linear;
    

}
.price-card.animation_price {
    opacity: 1;
    transform: rotateY(360deg);
    
}


.price-card:nth-child(2) .front {

    background: rgba(0, 0, 0, 0.5);
}

.price-card:nth-child(2) .back {

    background: rgba(0, 0, 0, 0.5);
}

.back {
    background: #6C6C6C;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 10px 30px 20px;
    text-align: left;
    border-radius: 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);

}

.front {
    background: #6C6C6C;
    padding: 10px 20px 20px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-align: left;
    border-radius: 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);

}

.front h4,
.back h4,
.size-card h4 {
    margin-bottom: 30px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
}

.back li,
.front li,
.size-card li {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    position: relative;
    list-style-type: none;
    width: fit-content;
    margin: 0 0 20px;
    text-align: left;
}

.back li::before,
.front li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -35px;
    width: 20px;
    height: 20px;
    background: url(../svg/check-solid.svg) no-repeat center/contain;
}

.badge1 {
    padding: 20px 10px;
    background-color: #000;
    border-radius: 50px;
    margin: 0 auto 20px;
    text-align: center;
}

.badge1 h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    text-align: center;
    color: #FFFFFF;
}

.wheel-logo {
    animation: rotate 0.4s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    transform-origin: center center;
}


.left-dec {
    width: 50%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.trainers {
    position: relative;
    overflow: hidden;

}

.trainers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 17.71%, rgba(30, 30, 30, 0.5) 50.52%, #1E1E1E 100%);
    ;
    z-index: -1;
}


.trainer-cont {
    width: 80%;
    margin: auto;
    display: flex;
    margin-bottom: 70px;


}

.pic-cont {
    max-width: 350px;
    border-radius: 50px;
    background: linear-gradient(180deg, #424242 0%, #7C7C7C 100%);
    box-shadow: 10px 20px 40px 0px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.pic-cont::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18.08%, #000000 100%);

}

.pic-cont img {
    width: 100%;

}

.trainer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-right: 20px;
}

.trainer-pic {
    width: 100%;
    display: flex;
    justify-content: center;
}

.trainer-cont h4 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 2.5);
    line-height: 79px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FFFFFF;
}

.trainer-cont p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
    color: #FFFFFF;
    max-width: 400px;
}

.contacts {
    position: relative;
    padding: 80px 0px 40px;
    box-shadow: 0px -20px 30px rgba(0, 0, 0, 0.4);


}

.contacts::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(44.83% 72.16% at 0% 96.99%, rgba(108, 108, 108, 0.5) 0%, rgba(108, 108, 108, 0) 100%),
        radial-gradient(21.46% 41.51% at 97.19% 93.56%, rgba(108, 108, 108, 0.48) 0%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: -1;

}

.contacts-cont {
    width: 80%;
    margin: auto;
    text-align: center;
}

.contacts-cont h4 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 2.5);
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.contacts-cont span {
    color: var(--main-color);
}

.map {
    width: 100%;
    border-radius: 50px;
    background: url('../img/map.webp') no-repeat center/cover;
    overflow: hidden;
}


.contacts-det {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(44.83% 72.16% at 0% 96.99%, rgba(108, 108, 108, 0.5) 0%, rgba(108, 108, 108, 0) 100%),
        radial-gradient(21.46% 41.51% at 97.19% 93.56%, rgba(108, 108, 108, 0.48) 0%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    padding: 50px 80px;
}

.map img {
    max-width: 100%;

}

.cont-up h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 2.5);
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom: calc(var(--index) * 5);
    ;
}

.cont-up a {
    text-decoration: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: calc(var(--index) * 1.5);
    text-transform: uppercase;
    color: #FFFFFF;
}

.cont-down {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.cont-pic {
    max-width: 50px;

}

/* .cont-pic1, .cont-pic2, .cont-pic3{
    width: 50px;
} */
.cont-pic1 svg,
.cont-pic2 svg,
.cont-pic3 svg {
    width: 50px;
    height: 50px;
}

.telephone,
.email,
.adr {
    display: flex;
    gap: 20px;
    align-items: center;
}

.email {
    margin-bottom: 20px;
}

.map-link {

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

.map-link p {
    margin-bottom: 0;
}

.social {
    background: rgba(217, 217, 217, 1);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.social .cont-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}



.footer {
    padding-top: 20px;
    text-align: center;
}

.footer p:first-child {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: #FFFFFF;
}

.footer p:last-child {
    font-family: 'Roboto';
    font-style: normal;
    font-size: 8px;
    color: var(--main-color);
    margin: 0;
}

.social a:hover .cont-pic svg {
    transform: rotate(360deg);
    transition: 0.3s;
}

.modal-content {
    background-color: rgba(61, 61, 61, 1);
    color: white;
}

.modal-header {

    border-bottom: var(--bs-modal-header-border-width) solid rgba(255, 184, 0, 1);
}

.modal-footer {
    border-top: var(--bs-modal-footer-border-width) solid rgba(255, 184, 0, 1);

}

.btn {
    background: var(--main-color);
    color: white;
}

.btn:hover {
    background: #a71419;
}

label span,
.fs-6 span {
    color: red;
    font-size: 20px;
}

.thanks-cont {
    width: 100%;
    height: 100vh;
    background: #262626;
    padding-top: 100px;
}

.thanks-message h1 {
    font-size: calc(var(--index) * 1.5);
    line-height: normal;
    width: 100%;
    text-align: center;
}

.thanks-message {
    width: 70%;
    margin: auto;
    padding: 50px;
    border-radius: 50px;
    border: 1px solid #ec0909;
    text-align: center;
}

.thanks-message a {
    text-decoration: none;
    color: white;

}

.big-form {
    margin-bottom: 50px;
}

.form-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.my-form {
    border-radius: 20px;
    max-width: 500px;
}



.form-logo {
    width: 500px;
    display: flex;
    align-items: center;
}

.form-logo svg {
    width: 500px;
}

.tracking-in-expand-fwd {
    -webkit-animation: tracking-in-expand-fwd 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand-fwd 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.1s;
    display: block;
}

.tracking-in-expand-fwd2 {
    -webkit-animation: tracking-in-expand-fwd 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.4s;
    animation: tracking-in-expand-fwd 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.2s;

}

.tracking-in-expand-fwd3 {
    -webkit-animation: tracking-in-expand-fwd 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand-fwd 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.3s;
    display: block;
}

.text-focus-in {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation-delay: 0.6s;
}


/* animation */
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@-webkit-keyframes tracking-in-expand-fwd {
    0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px);
        transform: translateZ(-700px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes tracking-in-expand-fwd {
    0% {
        letter-spacing: -0.5em;
        -webkit-transform: translateZ(-700px);
        transform: translateZ(-700px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}


@keyframes close {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 90deg;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes cards {
    0% {
        transform: skew(0);
    }

    50% {
        transform: skew(-25deg);
    }

    100% {
        transform: skew(-15deg);
    }
}

@keyframes cards2 {
    0% {
        transform: skew(0);
    }

    50% {
        transform: skew(-25deg);
    }

    100% {
        transform: skew(0deg);
    }
}

@keyframes blocks {
    from {
        transform: translateX(-150%);
    }

    to {
        transform: translateX(0);
    }
}

/* media */


@media (max-width:1450px) {
    .about-top {
        flex-direction: column;
        align-items: center;
    }

    .about-mask h2 {
        text-align: center;
        max-width: 100%;
    }

    .about-mask p {
        max-width: 100%;
    }

    .galery {
        max-width: 100%;
        margin-bottom: 60px;


    }

}

@media (max-width:1300px) {
    .form-container {
        padding: 0 20px;
        gap: 20px;
    }


}

@media (max-width:1200px) {

    .card2,
    .card-info2,
    .card-info2 p {
        transform: skew(0deg);
    }

    .card2.visible {

        animation: blocks 0.2s linear;
    }

}

@media (max-width:1024px) {
    .header {
        width: 90%;
    }

    .head-cont {
        flex-direction: column;
        background-color: #6C6C6C;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: -100vh;
        left: 0;
        justify-content: center;
        transition: 0.5s;

    }

    .menu-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

    .social__top {
        display: flex;
    }

    .menu-link {
        font-size: 38px;
    }

    .menu-close {
        display: block;
    }

    .offcanva-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 20px;
    }

    .offcanvas-head {
        display: block;
        align-self: flex-start;
        padding: 0 28px;
    }

    .offcanva {
        flex-direction: column;
        justify-content: flex-start;
        gap: 150px;
        margin: 0;
        height: 100%;
    }

    .close-open {
        top: 0;

    }

    .cards2 {
        flex-direction: column;
    }


    .form-logo {
        width: 460px;

    }

    .form-logo svg {
        width: 460px;
    }

    .my-form {

        max-width: 490px;
    }

    .video {
        flex-direction: column;
    }

    .video-box {
        height: 400px;
    }

    .video {
        width: 100%;

    }
    .t-cont{
        width: 90%;
        padding: 120px 0 120px;
    }
    h1{
        width: 100%;
        font-size: 15vw;
        line-height: 20vw;
    }
    .big-span{
        font-size: 20vw;
    }
    .red{
        font-size: 25vw;
    }

}

@media (max-width:1200px) {

    .left-dec {
        width: 60%;
    }
}

@media (max-width:992px) {
    .form-container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
    }


    .about {
        padding: 0 10px;
    }

    .about-us {
        width: 100%;
        padding: 0 20px;

    }

    .second-line {
        padding: 70px 10px 150px;
    }


    .title-container {
        width: 90%;
    }

    .price-cards-cont {
        flex-direction: column;
    }

    .front,
    .back {
        text-align: center;
    }

    .trainer-cont {
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }

    .left-dec {
        width: 100%;
    }

    .trainer-info p {
        max-width: 600px;
    }

    .cont-down {
        flex-direction: column;
        align-items: start;
    }

    .cont-up {
        margin-bottom: 20px;
    }

    .social {
        align-self: center;
    }

    .nav-link:hover {
        text-shadow: 1px 1px 1px #000;
    }

    .navbar-nav li:hover a::before {
        width: inherit;
    }

    .navbar-nav li:hover::after,
    ::before {
        width: inherit;
    }

    .navbar-nav li:hover::before {
        width: inherit;
    }

    .contacts-det {
        padding: 40px 40px;
        width: 100%;
    }

    .contacts-cont {
        width: 100%;
        padding: 10px;
    }

    .thanks-cont {
        padding: 100px 10px 0;
    }

    .thanks-message {
        width: 100%;

    }
}

@media(max-width:768px) {
    .trainer-info p {
        max-width: 400px;
    }

    .card-info2 p {
        line-height: 30px;
        padding: 0;
        text-align: center;
    }

}

@media (max-width: 610px) {
    .contacts-det {
        padding: 20px 10px;
    }

    .form-logo {
        width: 100%;

    }
}

@media (max-width: 525px) {

    .cont-pic1 svg,
    .cont-pic2 svg,
    .cont-pic3 svg {
        width: 30px;
        height: 30px;
    }
}

@media(max-width:500px) {
    .membership-cont h3 {
        font-size: 32px;
        line-height: normal;
    }

    .trainer-info p {
        max-width: 300px;
    }

    .head-cont {
        width: 100%;
    }

    .about-us {
        width: 100%;
        padding: 0 10px;

    }
    .t-cont{
        width: 100%;
        padding: 120px 10px;
    }

    .about-mask {
        padding: 40px 10px;
        text-align: center;
    }

    .about-us h2 {
        text-align: center;
    }

    .about-mask p {
        text-align: center;
    }

    .mask3 {
        padding-top: 50px;
    }

    .title-container h1 {
        transform: scale(.8);


    }

    .title-container {
        width: 100%;

    }

    .contacts-det {
        padding: 30px 10px;
    }



    .mob-visible {
        width: 100%;
        padding: 0 10px;
    }

    .telephone,
    .email,
    .adr {
        gap: 10px;

    }

    .header {
        width: 100%;
        padding: 0 10px;
    }

}

@media (max-width: 450px) {

    .form-logo {
        width: 100%;

    }

}

@media (max-width: 380px) {
    .price {
        padding: 0 10px;
    }

    .get-started {
        font-size: 18px;
    }

    .about-mask {
        padding: 0;
    }


}

@media (max-width: 360px) {
    .trainer-info p {
        max-width: 250px;
        line-height: 24px;
    }

    .cont-pic1 svg,
    .cont-pic2 svg,
    .cont-pic3 svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 350px) {
    .price-card {
        width: 100%;
    }

    .membership-cont {
        width: 90%;
    }


}