html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-size: 62.5%;
    overflow-x: hidden;
}
.my-body-noscroll-class {
    overflow: hidden;
}
.color-black{
    color: #212121 !important;
    transition: color 0.3s ease;
}
.color-black:hover{
    color: #a8a8a8 !important;
    text-decoration: none;
}
.main-page-wrap{
    background-color: #ededed;
    min-height: 100vh;
    overflow: hidden;
    width: 100vw;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
}
.menu-top-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 20rem;
}
.menu-logo-wrap{
    /* font-size: 3.3rem; */
    display: flex;
    align-self: center;
    /* height: 7vh; */
    width: 8rem;
    margin-right: 0;
    align-items: center;
    margin: 0 2rem 0 0;
}
.menu-logo-wrap img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.menu-nav{
    margin: 2rem;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    overflow:hidden;
}
.menu-nav ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin: 0 3rem;
    align-items: center;
}
.menu-options{
    display: flex;
    align-items: center;
}
/* menu toggle button */
.menu-toggle{
    width: 5rem;
    height: 5rem;
    display: none;
    border-radius: 10px;
    transition: background 0.3s ease;
}
.menu-toggle:hover{
    background: #93939392;
}
.menu-toggle img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* end */
.menu-options a{
    padding: 2.3rem 2.8rem;
    text-decoration: none;
    color: white;
    font-size: 1.6rem;
    transition: color 0.3s ease;
    font-family: 'Aboreto', serif;
    white-space: nowrap;
}
.menu-options a:hover{
    color: #b5c0cd;
    text-decoration: none;
}
.main-preview-wrap{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}
.main-preview-wrap > div{
    width: 100%;
}
.main-preview-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-preview-wrap video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-desc-wrap{
    z-index: 1;
    position: absolute;
    width: 47%;
    height: auto;
    align-self: flex-end;
    text-align: center;
    color: white;
    margin: 6vh;
    box-sizing: border-box;
    overflow: hidden;
}
.main-desc-wrap h2{
    font-size: 5.6rem;
    white-space: nowrap;
    margin: 2vh;
    font-weight: 400;
    font-family: 'Aboreto', serif;
}
.main-page-wrap h4{
    margin: 2vh;
    font-size: 2.3rem;
    font-weight: 400;
    color: #ffffffcb;
    margin-bottom: 6vh;
    font-family: 'Montserrat', sans-serif;
}
.main-back-filter{
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.3);
}
.btn-cont-wrap{
    height: max-content;
    box-sizing: border-box;
    margin: 4vh;
}
.btn-contact{
    font-size: 1.7rem;
    border-radius: 4rem;
    color: #ffffff;
    background: #ffffff83;
    margin: 2vh;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 3vh 6vh;
    transition: color 0.3s ease, background 0.3s ease;
}
.btn-contact:hover{
    color: #212121;
    text-decoration: none;
    background: white;
}
/* purpose section  */
.purpose-section{
    margin-top: 5vw;
    height: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.purpose-inner{
    /* border: 2px solid red; */
    width: 75%;
    display: flex;
    height: auto;
    margin: 8rem;
    justify-content: space-between;
    box-sizing: border-box;
}
.purpose-paragraph{
    width: 45%;
    /* border: 2px solid orange; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.purpose-img{
    /* border: 2px solid firebrick; */
    height: 40vw;
    /* width: 50%; */
    box-sizing: border-box;
}
.purpose-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.purpose-paragraph h2{
    font-size: 1.1vw;
    margin: 0;
    color: #4C4B63;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.purpose-paragraph h3{
    font-size: 1.4vw;
    margin:  1.3vw 0;
    color: #212121 ;
    font-family: 'Exo 2', serif;
    font-weight: 400;
    text-align: justify;
}
.purpose-paragraph p{
    text-align: justify;
    font-size: 1.1vw;
    margin:  1.3vw 0;
    color: #212121 ;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.purpose-btn-cont{
    border-radius: 3rem;
    text-decoration: none;
    color: white;
    padding: 1vw 5vw;
    background: #397085b5;
    text-align: center;
    font-size: 1.2vw;
    font-family:'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}
.purpose-btn-cont:hover{
    background: #3970854d;
    color: #212121;
}
.slogan-main{
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slogan-main h2{
    font-family: 'Aboreto', serif;
    font-size: 1.4vw;
    color: #212121;
}
/* Footer */

.main-footer{
    background: #ededed;
    padding: 4vw 2vw 3vw 2vw;
}
.line{
    height: 2px;
    background: #b5c0cd;
    margin: 2vw 1vw 3vw 1vw;
}
.footer-top{
    display: grid;
    /* border: 2px solid red; */
    grid-template-columns: 1fr 1.5fr 1fr;
}
.ft-top-nav{
    padding: 1rem;
    /* border: 2px solid green; */
    display: flex;
    align-items: center;
}
.ft-reach-info{
    display: flex;
}
.ft-reach-info h3{
    margin: 0;
    color: #212121;
    font-size: 1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0.5rem;
    white-space: nowrap;
    width: 10vw;
}
.ft-reach-info h4{
    margin: 0;
    color: #4C4B63;
    font-size: 1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0.5rem;
}
.ft-nav{
    /* border: 2px solid hotpink; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 2rem 0 0 0;
}
.footer-nav-options{
    text-decoration: none;
    font-size: 1.4vw;
    font-family: 'Aboreto', serif;
    margin: 0.6rem 1rem;
    color: #212121;
    transition: color 0.3s ease;
}
.footer-nav-options:hover{
    color: #b1b1bc;
}
.ft-logo-inner{
    height: 3vw;
    display: flex;
    align-items: center;
}
.ft-top-logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-logo-inner img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ft-top-social{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.ft-top-social a{
    text-decoration: none;
}
.ft-social{
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3vw;
    transition: opacity 0.3s ease;
}
.ft-social img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.ft-social:hover{
    opacity: 0.3;
}
.footer-bottom h4{
    padding: 2rem;
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.7vw;
    color: #212121;
}
.ft-reach-info a{
    text-decoration: none;
}
/* menu toggle modal */
.menu-toggle-list{
    display: flex !important;
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    right: 0;
    top: 0;
    background: #a4aeba;
    height: 100vh;
    width: 0;
    z-index: 2;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    overflow: scroll;
    /* visibility:hidden; */
    transition: width 0.3s ease;
}
.show{
    /* display: flex !important; */
    /* height: 100vh; */
    width: 100vw;
    /* visibility: visible; */
}
.menu-options-l{
    height: max-content;
    padding: 3vw 4vw;
    border-bottom: 1px solid #ededed;
    width: 90%;
    box-sizing: border-box;
}
.menu-options-l a{
    text-decoration:none;
    color: white;
    padding: 2vw 4vw;
    font-size: 3vw;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    width: 90vw;
    transition: color 0.3s ease;
}   
.menu-toggle-list li:last-child{
    border: none;
}
.menu-options-l a:hover{
    color: #939393;
}
.modal-wrap{
    display: flex;
    width: 100%;
    height: 20rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5vw;
    padding: 2rem 5rem;
    box-sizing: border-box;
}
.menu-logo-wrap-modal{
    font-size: 3.3rem;
    display: flex;
    align-self: center;
    /* height: 7vh; */
    width: 8vw;
    margin-right: 0;
    align-items: center;
}
.menu-logo-wrap-modal img{
    height: 100%;
    width: 100%;
    object-fit: contain;
} 
.menu-close{
    width: 5vw;
    height: 5vw;
    transition: background 0.3s ease;
    border-radius: 10px;
}
.menu-close img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.menu-close:hover{
    background: #93939392;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++ */
.modal_wp{
    font-weight: 400;
    text-decoration: none;
}
.wpcf7-response-output{
    font-size: 1.1vw;
    color:#212121; 
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2vw;
}
/* end */
@media screen and (max-width: 1100px) {
    .menu-options{
        display: none;
    }
    .menu-toggle{
        display: block;
        width: 5vw;
        height: 5vw;
    }
}
@media screen and (max-width: 860px){
    
    .menu-top-wrap{
        height: 20rem;
    }
    .menu-nav{
        margin: 2rem 5rem;
    }
    /* toggle button */
    /* end */
    .menu-nav ul{
        margin: 0;
    }
    .menu-logo-wrap{
        width: 8vw;
    }
    .main-desc-wrap{
        width: 95%;
    }
    .main-desc-wrap h2{
        font-size: 8vw;
    }
    .main-page-wrap h4{
        font-size: 2.5vw;
    }
    .btn-contact{
        font-size: 2vw;
        padding: 3vw 5vw;
    }
    /* second page */
    .purpose-section{
        height: auto;
        margin: 4vw 0;
    }
    .purpose-inner{
        display: block;
        width: 90%;
        margin: 0;
        margin-bottom: 4vw;
    }
    .purpose-paragraph{
        width: 90%;
        margin: 9vw auto;
    }
    .purpose-img{
        height: auto;
        width: 90%;
        margin: 6vw auto;
    }
    .purpose-paragraph h2{
        font-size: 3.9vw;
    }
    .purpose-paragraph h3{
        font-size: 4.2vw;
        margin: 2.2vw 0;
    }
    .purpose-paragraph p{
        font-size: 3.9vw;
        margin: 4.3vw 0;
    }
    .purpose-btn-cont{
        margin: 5vw 0;
        font-size: 3.5vw;
        padding: 2vw 6vw;
        white-space: normal;
        border-radius: 8vw;
    }
    /* end */
    .slogan-main{
        height: 20vw;
    }
    .slogan-main h2{
        font-size: 3vw;
    }
    /* footer */
    .ft-reach-info h3{
        font-size: 1.5vw;
        width: 11vw;
    }
    .ft-reach-info h4{
        font-size: 1.5vw;
    }
    .ft-nav{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ft-top-nav{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        order: 2;
    }
    .ft-reach{
        width: max-content;
    }
    .footer-nav-options{
        font-size: 3.4vw;
    }
    .ft-logo-inner{
        height: 5vw;
        margin: 3vw 0;
    }
    .ft-top-social{
        flex-direction: row;
        margin: 2vw 0;
        order: 3;
    }
    .ft-social{
        width: 5vw;
    }
}
@media screen and (max-width: 600px){
    .menu-nav{
        margin: 2rem;
    }
    .menu-top-wrap{
        height: 10rem;
    }
    /* toggle button */
    .menu-toggle{
        display: block;
        width: 7vw;
        height: 7vw;
    }
    /* end */
    .menu-logo-wrap{
        width: 12vw;
    }
    .main-desc-wrap{
        width: 100%;
    }
    .main-desc-wrap h2{
        font-size: 12vw;
    }
    .main-page-wrap h4{
        font-size: 4.5vw;
    }
    .btn-contact{
        font-size: 3vw;
        padding: 4.5vw 6.5vw;
    }
    .ft-reach-info h3{
        font-size: 2vw;
        width: 14vw;
    }
    .ft-reach-info h4{
        font-size: 2vw;
    }
    /* menu toggle modal */
    .menu-logo-wrap-modal{
        width: 12vw;
    }
    .menu-close{
        height: 7vw;
        width: 7vw;
    }
    .menu-options-l a{
        font-size: 4.5vw;
    }
    .modal-wrap{
        padding: 2rem;
        height: 10rem;
    }
    /* end */
    .ft-social{
        width: 5.2vw;
    }
}
