/* Define color variables */
:root {
    --text: #1f1f1f; /*dark color, used for texts, footer and top header backgrounds*/
    --primary: #FF9800; /*bright yellow, used for main popup buttons and other interactive elements such as links*/
    --white: #FFF; /*white color, used to contrast on some elements*/
    --blue: #00D1FF; /*sky blue color, used in menu*/
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
p{
    font-size: 21px;
    line-height: 29px;
    color: var(--text);
}
button{
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
}
h2{
    font-size: 42px;
    line-height: 50px;
    color: var(--text);
    margin-bottom: 25px;
}
.wrapper{
    width: 85%;
}
header.header{
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99;
    border-bottom: 1px solid var(--white);
    transition: .35s ease-out;
}
header.scrolled-down {
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: .35s ease-out;
  }
.header .wrapper{
    margin: 0 auto;
}
.logo_link, .logo{
    width: 100px;
    height: 100px;
}
nav.menu ul{
    display: flex;
    align-items: center;
    gap: 25px;
    list-style-type: none;
}
nav.menu ul li a{
    text-decoration: none;
    font-weight: 300;
    font-size: 19px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 3px;
    transition: .35s ease-out;
}
header.scrolled-down nav.menu ul li a{
    color: var(--text);
    transition: .35s ease-out;
}
nav.menu ul li a::before, header.scrolled-down nav.menu ul li a::before{
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--blue);
    transition: .35s ease-out;
}
nav.menu ul li a.active, nav.menu ul li a:hover, header.scrolled-down nav.menu ul li a:hover, header.scrolled-down nav.menu ul li a.active{
    color: var(--blue);
    transition: .35s ease-out;
}
nav.menu ul li a.active::before, nav.menu ul li a:hover::before, header.scrolled-down nav.menu ul li a:hover::before, header.scrolled-down nav.menu ul li a.active::before{
    width: 100%;
    transition: .35s ease-out;
}
.menu_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.initial_section{
    position: relative;
    height: 740px;
}
.initial_section .wrapper{
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.initial_section .background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(.5);
    z-index: -1;
}
.initial_content{
    width: 920px;
    text-align: center;
}
.initial_content h1{
    font-size: 56px;
    line-height: 66px;
    color: var(--white);
    margin-bottom: 20px;
}
.initial_content p{
    color: var(--white);
}
.initial_section .background::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.initial_buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.btn_quote{
    background: #007BFF;
    padding: 15px 20px;
    font-size: 21px;
    color: var(--white);
}
.btn_book{
    background-color: var(--primary);
    padding: 15px 20px;
    font-size: 21px;
    color: var(--white);
}
.menu_open, .menu_close{
    display: none;
}
@keyframes colorChange {
    0% {
        background-color: var(--primary);
    }
    50% {
        background-color: var(--blue);
    }
    100% {
        background-color: var(--primary);
    }
}
.btn_call {
    font-size: 19px;
    text-transform: uppercase;
    padding: 15px 20px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    animation: colorChange 5s infinite; /* Color changing effect */
}
.services{
    margin: 120px 0;
}
.services .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.section_title{
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 25px;
}
.block_content{
    width: 46%;
}
.services_accordion{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.accordion_item{
    box-shadow: 0px 0px 8px 3px #1f1f1f42;
}
.accordion_item.active .accordion_title, .accordion_item.sub-active .accordion_title{
    background-color: var(--primary);
    color: var(--white);
    transition: .35s ease-out;
}
.accordion_title{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    font-size: 21px;
    color: var(--text);
    transition: .35s ease-out;
}
.accordion_icon{
    width: 50px;
    height: 50px;
    padding: 12px;
    background-color: var(--primary);
    transition: .35s ease-out;
}
.accordion_item.active .accordion_icon, .accordion_item.sub-active .accordion_icon{
    background-color: var(--white);
}
.accordion_txt{
    display: none;
}
.accordion_item.active .accordion_txt{
    padding: 20px;
    border: 2px solid var(--primary);
    display: block;
}
.accordion_icon path{
    fill: var(--white);
    transition: .35s ease-out;
}
.accordion_item.active .accordion_icon path, .accordion_item.sub-active .accordion_icon path{
    fill: var(--text);
    transition: .35s ease-out;
}
.block_content.media img{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.block_content.media div {
    box-shadow: 0px 0px 8px 3px #1f1f1f42;
    padding: 20px;
    z-index: -1;
}
.why_us{
    padding: 120px 0;
    background-color: var(--text);
}
.why_us .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.why_us .heading{
    width: 100%;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why_us .heading .section_title, .why_us .heading p{
    color: var(--white);
    width: 80%;
    text-align: center;
} 
.why_us .heading p strong{
    color: var(--primary);
}
.why_item{
    width: 19%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why_item svg{
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: .35s ease-out;
}
.why_item svg path{
    fill: var(--primary);
}
.why_item p{
    color: var(--white);
    text-align: center;
    font-weight: 500;
    width: 89%;
}
.why_item.active p{
    color: var(--primary);
    transition: .35s ease-out;
}
.why_item.active svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    transform: scale(1.04);
    transition: .35s ease-out;
}
.stages{
    margin: 120px 0;
}
.stages .wrapper{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.stages_content{
    width: 54%;
}
.stages_container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 25px;
}
.stage_item{
    width: calc(50% - 17.5px);
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 6px 6px 15px 0px #1f1f1f3b;
    padding: 20px;
    position: relative;
    transition: .35s ease-out;
}
.stage_item.active{
    box-shadow: none;
    transition: .35s ease-out;
    box-shadow: 6px 6px 15px -5px #1f1f1f3b;
}
@keyframes stage-width {
    0%{
        width: 0%;
    }100%{
        width: 100%;
    }
}
@keyframes stage-height {
    0%{
        height: 0%;
    }100%{
        height: 100%;
    }
}
.stage_item::before{
    content: '';
    display: block;
    height: 1px;
    width: 0%;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    bottom: 0;
}
.stage_item::after{
    content: '';
    display: block;
    height: 0%;
    width: 1px;
    background-color: var(--primary);
    position: absolute;
    right: 0;
    bottom: 0;
}
.stage_item.active::before{
    animation-name: stage-width;
    animation-duration: .35s;
    animation-fill-mode: forwards;
}
.stage_item.active::after{
    animation-name: stage-height;
    animation-duration: .35s;
    animation-delay: .35s;
    animation-fill-mode: forwards;
}
.stage_item p{
    font-size: 19px;
    line-height: 27px;
}
.stage_item div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stage_item span{
    font-size: 41px;
    font-weight: 600;
    display: block;
    box-shadow: 6px 6px 0px 0px var(--primary);
    height: fit-content;
    width: fit-content;
    border: 1px solid var(--text);
    padding: 15px;
    transition: .35s ease-out;
}
.stage_item.active span{
    box-shadow: 6px -6px 0px 0px var(--primary);
    transition: .35s ease-out;
}
.stage_item .item_title{
    font-size: 26px;
    font-weight: 600;
    width: calc(100% - 100px);
    transition: .35s ease-out;
}
.stage_item.active .item_title{
    color: var(--primary);
    transition: .35s ease-out;
}
.stages_media{
    width: 40%;
    height: auto;
    position: relative;
}
.stage_media_item{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease-out;
}
.stage_media_item.active{
    opacity: 1;
    visibility: visible;
    transition: .35s ease-out;
}
.testimonials{
    margin: 120px 0;
}
.testimonials .wrapper{
    margin: 0 auto;
}
.reviews_content{
    width: 100%;
}
.reviews_content .heading{
    width: 54%;
    margin-bottom: 25px;
}
.reviews_slider .swiper-slide{
    position: relative;
    height: 31vw;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    cursor: pointer;
    transition: .35s ease-out;
}
.reviews_slider .swiper-slide::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 65%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
    transition: .35s ease-out;
}
.reviews_slider .swiper-slide:hover::before{
    height: 100%;
    transition: .35s ease-out;
}
.reviews_slider .swiper-slide blockquote{
    position: relative;
    z-index: 2;
}
.reviews_slider .swiper-slide blockquote p{
    font-style: italic;
    color: var(--white);
    margin-bottom: 15px;
}
.reviews_slider .swiper-slide blockquote span{
    font-weight: 600;
    display: block;
    font-size: 21px;
    color: var(--white);
}
.reviews_slider .swiper-button-next, .reviews_slider .swiper-button-prev{   
    padding: 30px;
    background-color: var(--white);
}
.reviews_slider .swiper-button-next::after, .reviews_slider .swiper-button-prev::after{
    font-size: 28px;
    color: var(--primary);
}
.contacts{
    padding-top: 120px;
    background-color: var(--text);
}
.contacts .wrapper{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contacts .heading .section_title{
    color: var(--white);
}
.contacts .heading{
    margin-bottom: 25px;
}
.contacts .heading p{
    color: var(--white);
}
.faq_block h3{
    font-size: 29px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}
.faq_item{
    margin-bottom: 15px;
}
.faq_title{
    position: relative;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    padding: 25px;
    border: 1px solid var(--white);
}
.faq_item.active .faq_title{
    color: var(--primary);
    border-color: var(--primary);
}
.faq_content{
    overflow: hidden;
    display: none; 
    transition:  0.35s ease-out; 
}
.faq_item.active .faq_content{
    padding: 25px;
    display: block;
    background: linear-gradient(to bottom, rgb(64 63 63), rgba(0, 0, 0, 0));
}
.faq_content p{
    color: var(--white);
}
.form_block h4{
    font-size: 26px;
    color: var(--white);
}
.form_block form{
    margin-top: 25px;
}
.form_block .contact_form_block{
    width: 100%;
    margin-bottom: 25px;
}
.contact_form_block input, .contact_form_block textarea{
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-size: 21px;
}
.contact_form_block span{
    display: none;
    padding-left: 15px;
    font-size: 17px;
}
.form_block form .submit_btn{
    background: none;
    border: none;
    outline: none;
    border: 1px solid var(--white);
    font-size: 21px;
    color: var(--white);
    padding: 15px 25px;
}
.contact_info{
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.c_info_item{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 0;
    padding: 25px;
    box-shadow: 0px 0px 6px 0px #8d8d8d3b;
}
.c_info_item svg{
    width: 25px;
    height: 25px;
}
.c_info_item svg path{
    fill: var(--white);
}
.c_info_item span{
    color: var(--white);
    font-size: 21px;
    font-weight: 600;
    display: block;
    margin-left: 12px;
    margin-right: 15px;
}
.c_info_item a, .c_info_item p{
    text-decoration: none;
    color: var(--white);
    font-size: 21px;
}
.contacts_map{
    width: 100%;
    height: 39vw;
    margin-top: 50px;
}
.map{
    width: 100%;
    height: 100%;
}
.footer{
    padding: 25px;
    background-color: var(--text);
}
.footer .wrapper{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer p{
    color: var(--white);
    font-weight: 300;
    font-size: 16px;
}
.footer p a{
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: .35s ease-out;
}
.footer p a:hover{
    color: var(--primary);
    transition: .35s ease-out;
}
.quick_form{
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}
.quick_form_bg{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--text);
    opacity: .85;
    z-index: 2;
}
.quick_form .wrapper{
    margin: 0 auto;
}
.quick_form .heading{
    position: relative;
    width: 720px;
    margin: 0 auto;
    z-index: 3;
}
.quick_form .section_title{
    color: var(--white);
    text-align: center;
}
.quick_form p{
    color: var(--white);
    text-align: center;
}
.quick_form form{
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.quick_form form .contact_form_block{
    width: fit-content;
}
.quick_form form .contact_form_block input{
    color: var(--white);
    padding: 15px;
    border-bottom: 1px solid var(--white);
    text-align: center;
    font-size: 21px;
}
.quick_form form .contact_form_block input::placeholder{
    color: var(--white);
}
.mssg_success{
    display: none;
}
.quick_form form .submit_btn{
    padding: 15px;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 21px;
}
.popup_book, .popup_quote{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1fb7;
    z-index: 99;
}
.popup_content{
    display: block;
    width: 720px;
    background-color: var(--white);
    padding: 45px;
    position: relative;
}
.popup_quote .popup_content{
    width: 500px;
}
.popup_heading h2{
    font-size: 38px;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}
.popup_heading p{
    text-align: center;
    font-size: 19px;
    color: var(--text);
}
.popup_content form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}
.popup_form_block{
    width: calc(50% - 15px);
    margin-bottom: 25px;
}
.popup_quote .popup_form_block{
    width: 100%;
}
.popup_form_block input, .popup_form_block.fl textarea{
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--text);
    padding: 15px;
    font-size: 19px;
    color: var(--text);
}
.popup_form_block.fl, .popup_form_block.select{
    width: 100%;
}
.popup_form_block.select{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.popup_form_block span{
    display: none;
    font-size: 17px;
}
.popup_form_block.select p{
    width: 100%;
    text-align: left;
    font-weight: 500;
    margin-bottom: 15px;
}
.popup_form_block.select input{
    display: none;
}
.popup_form_block.select label{
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-direction: row-reverse;
    width: fit-content;
    cursor: pointer;
}
.popup_form_block.select label::before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid var(--text);
}
.popup_form_block.select label.active::before{
    content: '\2713';
    color: var(--primary);
    border-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_form_block.select label.active{
    color: var(--primary);
}
.close_popup{
    position: absolute;
    right: 15px;
    top: 15px;
    width: 19px;
    height: 19px;
    cursor: pointer;
}
.close_popup path{
    fill: #1f1f1f;
    transition: .35s ease-out;
}
.close_popup:hover path{
    fill: var(--primary);
    transition: .35s ease-out;
}
.popup_content .submit_btn{
    padding: 15px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 19px;
    cursor: pointer;
}
@media screen and (max-width: 1640px){
    nav.menu ul li a{
        font-size: 17px;
    }
    .btn_call{
        font-size: 17px;
    }
    .initial_content h1 {
        font-size: 46px;
        line-height: 56px;
        margin-bottom: 15px;
    }
    p {
        font-size: 19px;
        line-height: 27px;
    }
    .btn_book{
        font-size: 19px;
    }
    .initial_section{
        height: 690px;
    }
    .section_title {
        font-size: 39px;
        line-height: 47px;
        margin-bottom: 20px;
    }
    .accordion_icon {
        width: 45px;
        height: 45px;
        padding: 11px;
    }
    .accordion_title {
        padding: 17px;
        font-size: 19px;
    }
    .why_item svg {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    .stage_item span{
        font-size: 36px;
        padding: 12px;
    }
    .stage_item .item_title {
        font-size: 22px; 
        width: calc(100% - 95px);
    }
    .stage_item p {
        font-size: 17px;
        line-height: 25px;
    }
    .stages_container{
        gap: 25px;
        margin-top: 25px;
    }
    .stage_item {
        width: calc(50% - 12.5px);
    }
    .quick_form form .submit_btn{
        font-size: 19px;
    }
    .quick_form form .contact_form_block input{
        font-size: 19px;
    }
    .reviews_slider .swiper-button-next, .reviews_slider .swiper-button-prev {
        padding: 25px;
    }
    .reviews_slider .swiper-button-next::after, .reviews_slider .swiper-button-prev::after {
        font-size: 21px;
    }
    .reviews_slider .swiper-slide blockquote span{
        font-size: 19px;
    }
    .faq_block h3{
        font-size: 26px;
    }
    .faq_title {
        font-size: 21px;
        padding: 20px;
    }
    .faq_item.active .faq_content {
        padding: 20px;
    }
    .c_info_item span{
        font-size: 19px;
    }
    .c_info_item svg {
        width: 20px;
        height: 20px;
    }    
    .c_info_item a, .c_info_item p {
        font-size: 19px;
    }
    .form_block h4{
        font-size: 24px;
    }
    .contact_form_block input, .contact_form_block textarea{
        font-size: 19px;
    }
    .form_block form .submit_btn{
        font-size: 19px;
    }
    .popup_heading h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .popup_heading p{
        font-size: 17px;
    }
    .popup_form_block input, .popup_form_block.fl textarea{
        font-size: 17px;
    }
    .popup_form_block.select p{
        margin-bottom: 0;
    }
    .popup_form_block.select label{
        font-size: 17px;
    }
    .popup_form_block.select label::before{
        width: 14px;
        height: 14px;
    }
    .popup_content .submit_btn{
        font-size: 17px;
    }
    .btn_quote{
        font-size: 19px;
    }
    .contact_form_block span{
        font-size: 15px;
    }
    .popup_form_block span{
        font-size: 15px;
    }
}
@media screen and (max-width: 1440px){
    nav.menu ul li a {
        font-size: 15px;
    }
    .btn_call {
        font-size: 15px;
        padding: 13px 17px;
    }
    .logo, .logo_link{
        width: 85px;
        height: 85px;
    }
    .initial_content h1 {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 10px;
    }
    .initial_content {
        width: 790px;
    }
    p {
        font-size: 17px;
        line-height: 24px;
    }
    .btn_quote, .btn_book{
        padding: 13px 17px;
        font-size: 17px;
    }
    .initial_section {
        height: 620px;
    }
    .popup_content {
        width: 640px;
        padding: 35px;
    }
    .popup_heading h2 {
        font-size: 31px;
        margin-bottom: 5px;
    }
    .popup_heading p {
        font-size: 16px;
    }
    .popup_form_block input, .popup_form_block.fl textarea {
        font-size: 16px;
    }
    .popup_form_block.select label {
        font-size: 16px;
    }
    .popup_form_block.select label::before {
        width: 13px;
        height: 13px;
    }
    .popup_content .submit_btn {
        font-size: 16px;
        padding: 13px;
    }
    .services {
        margin: 100px 0;
    }
    .section_title {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    .accordion_icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    .accordion_title {
        padding: 15px;
        font-size: 17px;
        gap: 13px;
    }
    .accordion_item.active .accordion_txt{
        padding: 15px;
    }
    .block_content.media div{
        padding: 15px;
    }
    .why_us {
        padding: 100px 0;
    }
    .why_us .heading{
        margin-bottom: 50px;
    }
    .why_item svg {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    .why_item p{
        font-size: 16px;
    }
    .stages {
        margin: 100px 0;
    }
    .stage_item span {
        font-size: 31px;
        padding: 10px;
    }
    .stage_item .item_title {
        font-size: 20px;
        width: calc(100% - 85px);
    }
    .stages_container {
        gap: 20px;
        margin-top: 20px;
    }
    .stage_item {
        width: calc(50% - 10px);
        padding: 15px;
        gap: 15px;
    }
    .stage_item p {
        font-size: 16px;
        line-height: 24px;
    }
    .quick_form{
        padding: 100px 0;
    }
    .quick_form form .contact_form_block input {
        font-size: 17px;
    }
    .quick_form form .submit_btn {
        font-size: 17px;
    }
    .testimonials {
        margin: 100px 0;
    }
    .reviews_slider .swiper-button-next, .reviews_slider .swiper-button-prev {
        padding: 20px;
    }
    .reviews_slider .swiper-button-next::after, .reviews_slider .swiper-button-prev::after {
        font-size: 18px;
    }
    .reviews_slider .swiper-slide blockquote span {
        font-size: 17px;
    }
    .reviews_slider .swiper-slide{
        padding: 25px;
    }
    .contacts {
        padding-top: 100px;
    }
    .faq_block h3 {
        font-size: 24px;
    }
    .faq_title {
        font-size: 19px;
        padding: 15px;
    }
    .faq_item.active .faq_content {
        padding: 15px;
    }
    .c_info_item span {
        font-size: 17px;
    }
    .c_info_item svg {
        width: 17px;
        height: 17px;
    }
    .c_info_item a, .c_info_item p {
        font-size: 17px;
    }
    .c_info_item{
        gap: 10px 0;
        padding: 15px;
    }
    .form_block h4 {
        font-size: 21px;
    }
    .contact_form_block input, .contact_form_block textarea {
        font-size: 17px;
    }
    .form_block form {
        margin-top: 15px;
    }
    .form_block form .submit_btn {
        font-size: 17px;
    }
    .footer p {
        font-size: 15px;
    }
    .footer{
        padding: 20px 0;
    }
}
@media screen and (max-width: 1240px){
    .initial_section {
        height: 590px;
    }
    .wrapper {
        width: calc(100% - 100px);
    }
    nav.menu ul li a {
        font-size: 14px;
    }
    .btn_call {
        font-size: 14px;
        padding: 11px 15px;
    }
    .logo, .logo_link{
        width: 75px;
        height: 75px;
    }
    .initial_content h1 {
        font-size: 39px;
        line-height: 49px;
        margin-bottom: 5px;
    }
    p {
        font-size: 16px;
        line-height: 22px;
    }
    .initial_buttons{
        margin-top: 20px;
    }
    .btn_quote, .btn_book {
        padding: 11px 15px;
        font-size: 16px;
    }
    .services {
        margin: 80px 0;
    }
    .section_title {
        font-size: 31px;
        line-height: 41px;
        margin-bottom: 10px;
    }
    .accordion_title {
        padding: 12px;
        font-size: 16px;
        gap: 10px;
    }
    .accordion_icon {
        width: 35px;
        height: 35px;
        padding: 8px;
    }
    .why_us {
        padding: 80px 0;
    }
    .why_item svg {
        width: 35px;
        height: 35px;
        margin-bottom: 7px;
    }
    .why_item p {
        font-size: 15px;
    }
    .stages {
        margin: 80px 0;
    }
    .stage_item span {
        font-size: 26px;
        padding: 10px;
    }
    .stage_item .item_title {
        font-size: 17px;
        width: calc(100% - 75px);
    }
    .stage_item p {
        font-size: 14px;
        line-height: 21px;
    }
    .quick_form {
        padding: 80px 0;
    }
    .quick_form form .contact_form_block input {
        font-size: 15px;
        padding: 10px;
    }
    .quick_form form .submit_btn {
        font-size: 15px;
    }
    .reviews_content .heading {
        width: 64%;
        margin-bottom: 20px;
    }
    .reviews_slider .swiper-slide {
        padding: 20px;
        height: 36vw;
    }
    .reviews_slider .swiper-slide blockquote span {
        font-size: 16px;
    }
    .reviews_slider .swiper-button-next::after, .reviews_slider .swiper-button-prev::after {
        font-size: 16px;
    }
    .reviews_slider .swiper-button-next, .reviews_slider .swiper-button-prev {
        padding: 0;
        width: 37px;
        height: 37px;
    }
    .contacts {
        padding-top: 80px;
    }
    .faq_block h3 {
        font-size: 21px;
        margin-bottom: 15px;
    }
    .faq_title{
        font-size: 17px;
    }
    .c_info_item span {
        font-size: 15px;
        margin-left: 9px;
        margin-right: 10px;
    }
    .c_info_item svg {
        width: 15px;
        height: 15px;
    }
    .c_info_item a, .c_info_item p {
        font-size: 15px;
    }
    .form_block h4 {
        font-size: 19px;
    }
    .contact_form_block input, .contact_form_block textarea {
        font-size: 16px;
        padding: 10px;
    }
    .form_block .contact_form_block {
        margin-bottom: 20px;
    }
    .form_block form .submit_btn {
        font-size: 16px;
        padding: 13px 20px;
    }
    .footer p {
        font-size: 13px;
    }
    .footer {
        padding: 15px 0;
    }
    .initial_content {
        width: 720px;
    }
    .popup_heading h2 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .popup_heading p {
        font-size: 15px;
    }
    .popup_form_block input, .popup_form_block.fl textarea {
        font-size: 15px;
        padding: 10px;
    }
    .popup_form_block {
        margin-bottom: 20px;
    }
    .popup_form_block.select{
        gap: 5px 15px;
    }
    .popup_form_block.select label {
        font-size: 15px;
        gap: 7px;
    }
    .popup_form_block.select label::before {
        width: 11px;
        height: 11px;
    }
    .popup_content .submit_btn {
        font-size: 15px;
        padding: 11px;
    }
    .close_popup{
        width: 15px;
        height: 15px;
    }
    .popup_content {
        width: 590px;
        padding: 30px;
    }
    .popup_quote .popup_content {
        width: 420px;
    }
    .contact_form_block span{
        font-size: 13px;
    }
    .popup_form_block span{
        font-size: 13px;
    }
}
@media screen and (max-width: 992px){
    .wrapper {
        width: calc(100% - 70px);
    }
    nav.menu ul li a {
        font-size: 13px;
    }
    nav.menu ul{
        gap: 20px;
    }
    .btn_call {
        font-size: 13px;
        padding: 10px 13px;
    }
    .logo, .logo_link{
        width: 70px;
        height: 70px;
    }
    .initial_content h1 {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 0;
    }
    p {
        font-size: 15px;
        line-height: 20px;
    }
    .initial_content {
        width: 640px;
    }
    .btn_quote, .btn_book {
        padding: 10px 13px;
        font-size: 15px;
    }
    .initial_buttons {
        margin-top: 15px;
    }
    .initial_section {
        height: 520px;
    }
    .popup_heading h2 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .popup_heading p {
        font-size: 14px;
    }
    .popup_form_block input, .popup_form_block.fl textarea {
        font-size: 14px;
        padding: 7px;
    }
    .popup_form_block.select label {
        font-size: 14px;
        gap: 7px;
    }
    .popup_content .submit_btn {
        font-size: 14px;
        padding: 10px;
    }
    .popup_content {
        width: 540px;
        padding: 20px;
    }
    .services .wrapper{
        flex-wrap: wrap;
    }
    .block_content {
        width: 100%;
    }
    .block_content.media{
        margin-top: 25px;
    }
    .section_title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 10px;
    }
    .services {
        margin: 60px 0;
    }
    .why_us {
        padding: 60px 0;
    }
    .why_us .wrapper{
        justify-content: center;
        gap: 20px;
    }
    .why_item{
        width: 27%;
    }
    .why_us .heading {
        margin-bottom: 30px;
    }
    .why_item p {
        font-size: 14px;
    }
    .stages {
        margin: 60px 0;
    }
    .stages .wrapper{
        flex-wrap: wrap;
    }
    .stages_content {
        width: 100%;
    }
    .stages_media {
        width: 100%;
        height: 51vw;
        margin-top: 25px;
    }
    .quick_form form .submit_btn {
        font-size: 14px;
        padding: 13px;
    }
    .quick_form form .contact_form_block input {
        font-size: 14px;
        padding: 10px;
    }
    .reviews_content .heading {
        width: 100%;
        margin-bottom: 15px;
    }
    .reviews_content .heading {
        width: 100%;
        margin-bottom: 15px;
    } 
    .reviews_slider .swiper-slide blockquote p{
        margin-bottom: 10px;
    }
    .reviews_slider .swiper-slide blockquote span {
        font-size: 15px;
    }
    .contacts {
        padding-top: 60px;
    }
}
@media screen and (max-width: 800px){
    nav.menu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 70px;
        left: 0;
        background-color: #1f1f1f96;
        transform: translate(100%);
        transition: .5s;
    }
    nav.menu.active{
        transform: translate(0);
        transition: .5s;
    }
    nav.menu ul {
        gap: 20px;
        flex-direction: column;
        height: 100%;
        background-color: #FFF;
        width: 400px;
        margin-left: auto;
        padding: 20px;
    }
    nav.menu ul li{
        width: 100%;
    }
    nav.menu ul li a{
        display: block;
        width: 100%;
        color: #1f1f1f;
        text-align: left;
        border: 1px solid #1f1f1f;
        padding: 20px;
    }
    nav.menu ul li a.active, nav.menu ul li a:hover, header.scrolled-down nav.menu ul li a:hover, header.scrolled-down nav.menu ul li a.active{
        background-color: #00D1FF;
        color: #FFF;
        border: none;
    }
    nav.menu ul li a.active::before, nav.menu ul li a:hover::before, header.scrolled-down nav.menu ul li a:hover::before, header.scrolled-down nav.menu ul li a.active::before{
        display: none;
    }
    .menu_open{
        display: block;
        cursor: pointer;
        padding: 0;
        background: none;
        outline: none;
        margin-left: auto;
        margin-right: 25px;
    }
    .menu_close{
        cursor: pointer;
        padding: 0;
        background: none;
        outline: none;
        margin-left: auto;
        margin-right: 25px;
    }
    .menu_open svg, .menu_close svg{
        width: 30px;
        height: 30px;
    }
    .menu_open svg path, .menu_close svg path{
        fill: #FF9800;
    }
    .reviews_slider .swiper-slide {
        padding: 15px;
        height: 49vw;
    }
    .contacts_map {
        width: 100%;
        height: 320px;
        margin-top: 35px;
    }
    .quick_form .heading{
        width: 100%;
    }
}
@media screen and (max-width: 600px){
    .menu_open svg, .menu_close svg {
        width: 25px;
        height: 25px;
    }
    .logo, .logo_link {
        width: 60px;
        height: 60px;
    }
    .btn_call {
        font-size: 12px;
        padding: 8px 10px;
    }
    nav.menu{
        top: 61px;
    }
    nav.menu ul li a{
        padding: 15px;
        font-size: 12px;
    }
    nav.menu ul {
        gap: 15px;
        width: 290px;
        padding: 15px;
    }
    .initial_content h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    p {
        font-size: 14px;
        line-height: 19px;
    }
    .btn_quote, .btn_book {
        padding: 10px 13px;
        font-size: 14px;
    }
    .initial_content {
        width: 100%;
    }
    .wrapper {
        width: calc(100% - 50px);
    }
    .initial_section {
        height: 440px;
    }
    .services {
        margin: 40px 0;
    }
    .section_title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .services_accordion{
        margin-top: 20px;
    }
    .accordion_title {
        padding: 10px;
        font-size: 14px;
        gap: 10px;
    }
    .popup_heading h2 {
        font-size: 18px;
        margin-bottom: 0;
        line-height: 28px;
    }
    .popup_form_block {
        margin-bottom: 15px;
        width: 100%;
    }
    .popup_content {
        width: calc(100% - 50px);
        padding: 20px;
    }
    .popup_quote .popup_content {
        width: calc(100% - 50px);
    }
    .why_us {
        padding: 40px 0;
    }
    .why_item svg {
        width: 30px;
        height: 30px;
        margin-bottom: 7px;
    }
    .why_item p {
        font-size: 12px;
    }
    .why_item {
        width: 48%;
    }
    .stage_item span {
        font-size: 22px;
        padding: 10px;
    }
    .stage_item .item_title {
        font-size: 16px;
        width: calc(100% - 65px);
    }
    .stage_item {
        width: 100%;
        padding: 15px;
        gap: 15px;
    }
    .stages_media {
        height: 320px;
    }
    .quick_form {
        padding: 40px 0;
    }
    .quick_form form .submit_btn {
        font-size: 13px;
        padding: 13px;
    }
    .quick_form form .contact_form_block input {
        font-size: 13px;
        padding: 10px;
    }
    .testimonials {
        margin: 40px 0;
    }
    .reviews_slider .swiper-slide {
        padding: 15px;
        height: 320px;
    }
    .contacts {
        padding-top: 40px;
    }
    .faq_block h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .faq_title {
        font-size: 15px;
    }
    .c_info_item span{
        font-size: 14px;
    }
    .c_info_item a, .c_info_item p {
        font-size: 14px;
    }
    .form_block h4 {
        font-size: 17px;
    }
    .contact_form_block input, .contact_form_block textarea {
        font-size: 14px;
        padding: 10px;
    }
    .form_block form .submit_btn {
        font-size: 14px;
        padding: 13px 20px;
    }
    .footer .wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer p {
        font-size: 11px;
    }
}
@media screen and (max-width: 425px){
    .initial_content h1 {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 10px;
    }
    .wrapper {
        width: calc(100% - 30px);
    }
    .why_item {
        width: 68%;
    }
    .quick_form form .contact_form_block {
        width: 100%;
    }
    .quick_form form .submit_btn{
        margin-left: auto;
        margin-right: auto;
    }
    .section_title {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 10px;
    }
}
