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[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul[class] {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}

.title {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.6px;
    color: #01353E;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 50px;
    background-image: url(../images/stick.svg);
    bottom: -10px;
}

.header__top {
    background-image: url(..//images/header-bg.jpg);
    background-repeat: no-repeat;
    background-position: 35% center;
    background-size: cover;
    min-height: 100vh;
}

.header__top-inner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: linear-gradient(
        180deg,
        rgba(95, 108, 110, 0.75) 0%,
        rgba(51, 51, 51, 0.45) 45%,
        rgba(51, 51, 51, 0.15) 100%
    );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    padding-top: 5px;
    padding-bottom: 5px;

    box-shadow:
    -8px 0 24px rgba(0, 122, 178, 0.45),
     8px 0 24px rgba(255, 0, 153, 0.35),
     0 8px 32px rgba(0, 0, 0, 0.25),
     inset 0 1px 0 rgba(255, 255, 255, 0.15);

    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 999;
}

.logo {
    padding-top: 10px;
    padding-right: 185px;
}

.menu__btn {
    display: none;
}

.menu__list {
    display: flex;
    justify-content: center;
}

.menu__list-item+.menu__list-item {
    margin-left: 45px;
}

.menu__list-link {
    color: #FFFFFF;
    padding: 5px 3px;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    transition: all .3s;
}

.menu__list-link:hover {
    border-bottom: 1px solid #007ab2;
}

.header__content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.header__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 200px;
    line-height: 235px;
    padding-top: 186px;

    color: #ffffff;

    text-shadow:
        -2px -2px 0 rgba(255,255,255,0.9),
        2px 2px 0 rgba(180,180,180,0.8),
        4px 4px 8px rgba(0,0,0,0.35),
        8px 12px 25px rgba(0,0,0,0.45),
        0 0 25px rgba(0,122,178,0.35);

    letter-spacing: -5px;
}


.header__subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 50px;
    line-height: 46px;
    padding-top: 50px;

    color: #ffffff;

    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.9),
        2px 2px 0 rgba(170,170,170,0.8),
        4px 5px 10px rgba(0,0,0,0.35),
        0 0 20px rgba(0,122,178,0.35);

    letter-spacing: -5px;
}

.header__icon {
    padding-top: 50px;
}

.desc {
    margin-top: 89px;
}

.desc__title {
    padding-top: 100px;
    text-align: center;
}

.desc__content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 96px;
    margin-bottom: 100px;
}

.desc__content-item {
    display: flex;
    flex-direction: column;
    max-width: 480px;
}

.desc__content-text {
    margin-bottom: 30px;
}

.desc__content-text__one {
    margin-top: 10px;
    flex-grow: 1;
}

.benefits {
    background-color: #F8F8F8;
    padding-top: 100px;
    padding-bottom: 100px;
}

.benefits__title {
    text-align: center;
    margin-bottom: 100px;
}

.benefits__items {
     display: flex;
    justify-content: center;
    gap: 74px;
    align-items: flex-start;
}

.benefits__item {
    width: 350px;
    text-align: center;
}

.benefits__item p {
    width: 100%;
    margin-top: 19px;
}

.benefits__item-text span {
    display: block;
}

.benefits__item-title {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    position: relative;
    min-height: 50px;
}

.benefits__item-title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
}


.benefits__title--live::before {
    background-image: url(../images/sun.svg);
    top: -5px;
}

.benefits__title--air::before {
    background-image: url(../images/air.svg);
}

.benefits__title--human::before {
    background-image: url(../images/human.svg);
}

.benefits__inner {
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefits__info-item {
    height: 43px;
    margin-bottom: 10px;
    position: relative;
}

.benefits__info-item span {
    display: block;
    position: absolute;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
    top: -5px;
    right: 0;
}

.benefits__text {
    max-width: 600px;
}

.benefits__text-item {
    margin-bottom: 30px;
}

.small {
    background-image: url(..//images/serfer.jpg);
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;
   
}

.small__inner {
    padding: 100px 0;
    max-width: 520px;
}

.small__item {
    padding-top: 100px;
}

.small__item-text {
    margin-bottom: 30px;
}

.gallary {
    min-height: 750px;
    overflow: hidden;
}

.gallary__title {
    text-align: center;
}

.gallary__btn {
    padding-top: 100px;
    padding-bottom: 50px;
}

.gallary__item-btn {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0.6px;
    margin-right: 20px;
    color: #242121;
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .5s;
}

.gallary__item-btn:hover {
    color: #007ab2;
}

.gallary__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.gallary__item {
   position: relative;
    width: 350px;
    height: 250px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.gallary__item::before {
    content: "";
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(51, 51, 51, 0.7);
    opacity: 0;
    transition: all 0.6s;
}

.gallary__item:hover:before {
    opacity: 1;
}

.gallary__item img {
     max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn__item {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.gallary__btn-item {
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
    background-color: #fff;
    padding: 23px 91px;
    cursor: pointer;
    border: 1px solid #C4C4C4;
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: all .5s;
}

.gallary__btn-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    transform: translatex(-4em) skewX(-45deg);
}

.gallary__btn-item:hover {
    background-color: #007ab2;
    border: 2px solid #000;
    border-radius: 5px;
}

.gallary__btn-item:hover:before {
    animation: line 1.2s;
}

@keyframes line {
    from {
        transform: translatex(-4em) skewX(-45deg);
    }
    to {
        transform: translatex(17em) skewX(-45deg);
    }
}

.blockquote {
    padding: 83px 0 67px 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #F8F8F8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dlockquote__text {
    text-align: center;
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.6px;
}

.blockquote__author {
    display: block;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-align: right;
    margin-left: 590px;
}

.gallary__video {
    background-image: url(..//images/gallary/video-popup.jpg);
    background-size: cover;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: transparent;
}

.gallary__link path {
    transition: fill .5s;
}

.gallary__link:hover path {
    fill: red;
}

.gallary__numbers {
    display: flex;
    justify-content: center;
    margin-top: 150px;
}

.gallary__numbers-item {
    padding: 0 50px 5px 50px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    letter-spacing: 0.6px;
    color: #01353E;
    text-align: center;
}

.gallary__numbers-text {
    display: block;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
}

.blog {
    background-color: #F8F8F8;
    
}

.slider__title {
    padding-top: 100px;
    text-align: center;
    margin-bottom: 100px;
}

.slider__blog {
    background-image: url(../images/slider-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.slider__blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider__blog-item {
    padding: 314px 0 259px 0;
    position: relative;
}

.slider__blog-item__title {
    position: absolute;
    right: 0;
    max-width: 600px;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.6px;
}

.slider__blog-item__link {
    color: #FFFFFF;
}

.slider__blog-item__text {
    position: absolute;
    right: 185px;
    bottom: 130px;
    text-align: right;
    max-width: 410px;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #FFFFFF;
}

.slick-dots {
    display: flex;
    justify-content: center;
}

.slick-dots li+li {
    margin-left: 15px;
}

.slick-dots button {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    padding: 0;
    margin-bottom: 77px;
}

.slick-active button {
    background-color: #007ab2;
    width: 15px;
    height: 15px;
}

.slick-prev,
.slick-next {
    border: none;
    background-color: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 45%;
}

.slick-prev {
    left: -95px;
}

.slick-next {
    right: -95px;
}

.team__title {
    padding-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

.team__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team__item {
    width: 300px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.6px;
}

.team__item-name {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #242121;
    padding: 25px 0 5px 0;
}

.team__item-instructor {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #242121;
    margin-bottom: 200px;
}

.pricing {
    background-color: #F8F8F8;
    padding-bottom: 100px;
}

.pricing__title {
    text-align: center;
    padding-top: 100px;
    margin-bottom: 150px;
}

.pricing__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.pricing__item {
    width: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #242121;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    will-change: transform, box-shadow;
}

.pricing__item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #007ab2;
    box-shadow:
        0 0 10px rgba(0, 122, 178, 0.55),
        0 0 24px rgba(0, 122, 178, 0.35),
        0 0 18px rgba(255, 0, 153, 0.30),
        0 0 36px rgba(255, 0, 153, 0.18),
        0 18px 35px rgba(0, 0, 0, 0.18);
}

.pricing__item li {
    padding: 10px 43px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
}

.pricing__item .pricing__name {
    padding: 45px 0 48px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    line-height: 40px;
    color: #01353E;
}

.pricing__item .pricing__number,
.pricing__number-number {
    margin-top: auto;
    padding: 50px 0 45px !important;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    line-height: 40px;
    color: #01353E;
}

.pricing__item .pricing__number-number {
    padding: 145px 0 45px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #01353E;
}


.map {
    margin: 0;
    padding: 0;
    width: 76.72%;
    height: 640px;
}

.form__title {
    padding-top: 100px;
    margin-bottom: 200px;
    text-align: center;
}

.form__inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
}

.form__item {
    width: 570px;
}

.form__item input,
textarea {
    display: block;
    width: 100%;
    border: none;
    padding: 16px 0;
    border-bottom: 2px solid #DADADA;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.6px;
}

.form__item-textarea {
    margin-top: 37px;
    resize: none;
    padding-bottom: 100px;
}

.form__item-input::placeholder,
.form__item-textarea::placeholder {
    color: #007ab2;
    max-width: 260px;
}

.form__btn-item {
    margin-top: 73px;
    padding: 24px 111px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid #C4C4C4;
    background-color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: all .5s;
}

.form__btn-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    transform: translatex(-4em) skewX(-45deg);
}

.form__btn-item:hover {
    background-color: #007ab2;
    border: 2px solid #000;
    border-radius: 5px;
}

.form__btn-item:hover:before {
    animation: line 1.2s;
}

.form__contacts {
    align-items: center;
    width: 1000px;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.6px;
    color: #242121;
    
    
    display: flex;
    flex-direction: column;   /* Выстраивает строки строго друг под другом */
   
    
}


.form__contacts-text {
    
    padding: 32px 0 32px 52px;
}

.form__contacts-adress {
    
    padding: 32px 0 71px 52px;
}

.form__social-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form__social-list+.form__social-list {
    margin-left: 20px;
}

.form__social-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0.6px;
    color: #242121;
    transition: all .5s;
}

.form__social-link:hover {
    color: #007ab2;
}

.footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

    height: 150px; /* или нужная высота */

    background-image: url("../images/footer-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}