*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --blue: #212546;
    --teal: #02586c;
    --white: #fff;
    --dark_secondary: #333333;
}

.txt_teal{
    color: var(--teal);
}

.txt_blue{
    color: var(--blue);
}

.txt_dark_secondary{
    color: var(--dark_secondary);
}

body{
    font-family: 'Poppins', sans-serif;
}

.f_quickstand{
    font-family: 'Quicksand', sans-serif;
}

.px_md{
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.main_btn,
.main_btn_w{
    text-align: center;
    display: block;
    text-decoration: none;
    width: 150px;
    background: #01576B;
    font-weight: 300;
    color: var(--white);
    padding: 8px 30px;
    outline: none;
    border: 2px solid var(--teal);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.main_btn:hover{
    background: transparent;
    color: var(--teal);
}

.main_btn_w{
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--white);
}

.main_btn_w:hover{
    background: var(--teal);
    color: var(--white);
}

/* ---------header---------- */

.header {
    background: url("../images/header_bg.png") no-repeat;
    background-size: 100% 520px;
    background-position: top center;
}

.site_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --------- */


/* ------about----- */
.sec_about{
    margin-top: -40px;
}
/*  */

/* ------Registration-------- */
.registration_form input:focus,
.registration_form input:hover,
.registration_form input:active{
    box-shadow: none;
    border: 1px solid #7CA7B1;
}

.registration_form input{
    padding: 8px 20px;
    border: 1px solid #7CA7B1;
    color: #7CA7B1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.registration_form input::placeholder{
    color: #7CA7B1;
}

.registration_after{
    position: absolute;
    top: 3%;
    left: -10%;
    z-index: -1;
    height: 80%;
}

.registration_after img{
    height: 100%;
}

/* ------------ */

/* --------Gallery---------- */
.g_box1{ 
    grid-area: g_box1; 
}
.g_box2{ 
    grid-area: g_box2; 
}
.g_box3{ 
    grid-area: g_box3; 
}
.g_box4{ 
    grid-area: g_box4; 
}

.gallery_boxes{
    display: grid;
    grid-template-areas:
    'g_box1 g_box2 g_box2'
    'g_box1 g_box3 g_box4';
    gap: 20px;    
}

.g_box{
    min-height: 250px;
}

.g_box img{
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.gallery_modal_after{
    background: #33333363;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s ease-in-out;
}

.gallery_modal_after.active{
    opacity: 1;
    visibility: visible;
}

.gallery_after_btn{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: var(--white);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    box-shadow: 0 4px 8px #3333334b;
}

.gallery_modal{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    min-width: 400px;
    max-width: 800px;
    aspect-ratio: 1.5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-40%) translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transform: translateY(-40%) translateX(-50%);
    -moz-transform: translateY(-40%) translateX(-50%);
    -ms-transform: translateY(-40%) translateX(-50%);
    -o-transform: translateY(-40%) translateX(-50%);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.192);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.gallery_modal.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    z-index: 9999;
}

.gallery_modal img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* -------testimonial------------- */
.testimonial_slider .swiper-slide{
    padding: 40px;
    padding-top: 50px;
    background: #E5EEF0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.slide_top{
    display: flex;
}

.slide_top_left img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.slide_top_right{
    margin-left: auto;
    padding-top: 25px;
    font-size: 18px;
}

.slide_top_right i{
    color: #FF9702;
}

.wrap_testimonial_btns{
    top: 62%;
    left: 0;
    right: 0;
    position: absolute;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 99;
}

.wrap_testimonial_btns > div{
    position: unset;
    margin: 0;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: var(--dark_secondary);
    font-size: 18px;
}

.wrap_testimonial_btns .swiper-button-prev::after,
.wrap_testimonial_btns .swiper-button-next::after{
    display: none;
}

.wrap_testimonial_btns .swiper-button-next{
    transform: translateX(-30px);
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
}

.wrap_testimonial_btns .swiper-button-prev{
    transform: translateX(30px);
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
}

.testimonial_slider .swiper-pagination{
    position: unset;
    margin-top: 10px;
    display: none;
}

.testimonial_slider .swiper-pagination .swiper-pagination-bullet-active{
    background: var(--teal) !important;
}

/* -------footer--------- */
.footer{
    background: var(--teal);
    color: var(--white);
    text-align: center;
}