:root{
    --pink:#ba1070;
    --lightPink:#fa93c7
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0px;
    padding: 0px;
    font-family: 'Arimo', sans-serif;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none;
    color: #000;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 10000;
}

.logo{
    width: 300px;
    overflow: hidden;
}
.logo img{
    width: 300px;
    object-fit: cover;
}
.nav_content{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nav_content li {
    list-style: none;
    padding: 12px;
}

.nav_content li a{
    padding: 12px 20px;
    text-decoration: none;
    color:var(--pink);
    font-size: 20px;
    font-weight: 600;
    transition: all 250ms ease-in-out;
    border-bottom: 2px solid white;
}

.nav_content li a:hover{
    transition: all 250ms ease-in-out;
    border-bottom: 2px solid var(--pink);
}

li .btn a{
    text-decoration: none;
    padding:8px 20px;
    background-color: var(--pink);
    color: white;
    border: 1px solid var(--pink);
    transition: all 250ms ease-in-out;
}
.btn a:hover{
    background-color: white;
    transition: all 250ms ease-in-out;
    color: var(--pink);
}

.hamburger {
    display: none;
    margin-right: 15px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.actives a{
    background-color: #ba1070;
    color: white !important;
    border-radius: 40px;
    padding: 8px 20px !important;;
}
@media(max-width:1024px){
    .logo{
        width: 250px;
        overflow: hidden;
    }
    .logo img{
        width: 250px;
        object-fit: cover;
    }
}

@media(max-width:900px){
    li .btn a{
        background-color: white;
        border: none;
        color: var(--pink);
    }
    .logo{
        width: 250px;
        overflow: hidden;
    }
    .logo img{
        width: 250px;
        object-fit: cover;
    }
    nav{
        position: fixed;
        width: 95%;
        background-color: white;
    }
    .nav_content{
        position: fixed;
        left: -100%;
        top: 80px;
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        height: 90vh;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav_content.active {
        left: 0;
    }

    .nav_content li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}


@media(max-width:350px){
    .logo{
        width: 200px;
        overflow: hidden;
    }
    .logo img{
        width: 200px;
        object-fit: cover;
    }
    .nav_content{
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 90vh;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
    }

    .nav_content.active {
        left: 0;
    }

    .nav_content li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* --------------------------------------------- */
/* HOME PAGE */

.home_container{
    display: grid;
    place-content: center;
}

.home_landing{
    width: 85vw;
    margin: 10vh 0px;
    display: flex;
    align-items:start;
    justify-content: space-between;
    /* height: 80vh; */
}
.home_content{
    width: max-content;
    margin-top: -40px;
}
.home_content .home_top p{
    padding: 10px 12px;
    width: max-content;
    background-color: var(--pink);
    border-radius: 40px;
    color: white;
    font-size: 20px;
}

.home_header{
    margin-top: 5vh;
    max-width: 50vw;
}

.home_header  h1{
    font-size: 3vw;
    color: var(--pink);
}

.home_btn {
    margin-top: 5vh;
    display: flex;
    align-items: center;
}
.home_btn .btn{
    padding: 8px 16px;
    display: inline-block;
    color: white;
    border-radius: 40px;
    background-color: var(--pink);
    border: 1px solid var(--pink);
}
.btn a{
    text-decoration: none;
    color: white;
}

.btn_plain a{
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    color: var(--pink);
    border-radius: 40px;
    margin-left: 20px;
    border: 1px solid var(--lightPink);
}

.home_img img{
    width: 40vw;
}
.home_services{
    display: grid;
    place-content: center;
}
.service_header{
    text-align: center;
    display: flex;
    align-items: center;
}
.service_header ion-icon{
    font-size: 28px;
    margin-left: 20px;
    animation: arrowAnimation 4s infinite;
}

@keyframes arrowAnimation {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}
.service_grid{
    width: 85vw;
    /* background-color: aqua; */
}

.service_card{
    /* max-width: 35vw; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: aqua; */
    margin: 5vh 0px;
    height: max-content;
}

.card_img, .card_img img{
    width: 35vw;
    /* height:45vh; */
    object-fit: contain;
}
.card_img img{
    border-radius:12px ;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.cursive img{
    min-height: 25vh;
}
.card_content{
    margin-left: 80px;
}
.card_header{
    margin-top: 20px;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--pink);
}

.right{
    flex-direction: row-reverse;
}
.right .card_content{
    margin-left: -10px;
    margin-right: 15px;
}

.card_para li{
    list-style: none;
    padding: 8px 0px;
    font-size: 18px;
    text-align: justify;
    color: black
}

.recruit img{
    height: max-content;
}

.service_recruit{
    width: 90vw;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,2fr));
    grid-gap: 25px;
    margin-bottom: 10vh;
}

.service_recruit_card{
    padding: 12px 20px;
    border-radius: 12px;
}

.service_recruit_card ion-icon{
    color: var(--pink);
    font-size: 32px;
}
.recruit_content li{
    list-style:circle;
}
@media(max-width:1024px){
    .card_img, .card_img img{
        width: 35vw;
        /* height:55vh; */
        object-fit: cover;
        border-radius: 12px;
    }
    .service_recruit{
        width: 85vw;
        display: grid;
        grid-template-columns: repeat(1,minmax(0,2fr));
        grid-gap: 25px;
        margin-bottom: 10vh;
    }
}
@media(max-width:800px){
    .card_img, .card_img img{
        width: 85vw;
        object-fit: contain;
        border-radius: 12px;
    }
    .home_content{
        margin-top: 20px;
    }

    .service_header{
        margin-top: 12px;
        justify-content: center;
    }    
    .service_card{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-around;
        margin: 8vh 0px;
    }

    .recruit_content li{
        list-style:circle;
        width: 80vw;
    }
}

@media(max-width:964px){
    .home_landing{
        width: 95vw;
    }
}
.service_section{
    display: none;
}
@media(max-width:768px){
    .service_header{
        display: none;
    }
    .service_section {
        margin-top: -5vh;
        display: block;
    }
    .home_landing{
        width: 85vw;
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
    }
    .home_content .home_top{
        display: grid;
        font-size: 18px;
        margin-top: 10vh;
        place-content: center;
    }
    .home_content .home_top p{
        text-wrap:nowrap;
    }
    .home_content{
        width: 85vw;
        display: grid;
        place-content: center;
    }
    .home_header{
        margin-top: -1vh;
        max-width: 85vw;
    }
    .home_header  h1{
        font-size: 7vw;
    }
    .home_btn {
        place-content: center;
    }
    .home_img {
        margin-top: 5vh;
        border-radius: 12px;
    }
    .home_img img{
        width: 85vw;
        object-fit: cover;
        height: 40vh;
        border-radius: 20px;
    }
}

@media(max-width:450px){
    
    .right .card_content, .card_content{
        margin-left: 10px;
    }
    .btn_plain {
        display: none;
    }
    .home_header  h1{
        font-size: 10vw;
    }
    .home_header  p{
        font-size: 16px;
    }
    .home_top p{
        font-size: 14px;
    }
    .home_img img{
        width: 85vw;
        object-fit: contain;
        height: 40vh;
        border-radius: 20px;
    }
}





/* ----------------------------- */
/* Director */

.container{
    width: 100%;
    display: grid;
    place-content: center;
}

.director_container{
    width: 85vw;
    /* background-color: #f3bdd7c5; */
    border-radius: 12px;
    margin-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.director_img{
    width: 40vw;
    object-fit: cover;
    /* height: 80vh; */
}

.director_img img{
    border-radius: 12px;
    height: 80vh;
    border-radius: 12px;
    width: 40vw; 
    object-position:top;
    object-fit: contain;
}

.director_content{
    margin-left: 20px;
    padding: 12px;
}
.name{
    display: block;
    align-items: center;
    justify-content: space-between;
}

.name h2{
    color: var(--pink);
}

.name span{
    color: black;
    font-size: 20px;
    font-weight: 600;
}

.director_content p{
    color: black;
    line-height: 32px;
    text-align: justify;
    font-size: 18px;
}

@media(max-width:968px){
    .director_container{
        flex-direction: column-reverse;
        background-color: white;
    }
    .director_img{
        width: 85vw;
        object-fit: contain;
        height: 70vh;
    }
    
    .director_img img{
        border-radius: 12px;
        height: 70vh;
        width: 85vw;
        object-position:top;
        object-fit: contain;
    }
    .name{
        text-align: center;
    }  
    .name span{
        color: black;
        font-weight: 600;
    }
    .director_content{
        width: 85vw;
    }
    .director_content p{
        line-height: 32px;
        text-align: justify;
        margin-left: -10px;
        font-size: 16px;
        color: black;
    }
    
}

/* _-------------------- */
/* About us */
.about_container{
    /* width: 100vw; */
    display: grid;
    overflow-x: hidden;
    place-content: center;
}

.about_wrapper{
    width: 85vw;
    margin-bottom: 10vh;
    margin-top: 8vh;
}
.about_wrapper img{
    width: 85vw;
    border-radius: 12px;
    /* object-fit: contain; */
    object-fit: fill;
    /* height: max-content; */
    height: 60vh;
}
.about_content{
    text-align: center;
    margin-top: 20px;
}
.about_content h3{
    font-size: 32px;
    color: var(--pink);
}

.about_wrapper p{
    line-height: 32px;
    text-align: justify;
    color: black;
}

@media(max-width:800px){
 
    .about_wrapper p{
        line-height: 32px;
        font-size: 16px;
        text-align: justify;
        color: black;
    }
   
}
/* ------------------ */
/* Contact Us */

.contact_container{
    /* width: 100vw; */
    display: grid;
    place-content: center;
}

.contact_container h2{
    font-size: 42px;
    text-align: center;
    color: var(--pink);
}

.contact_wrapper{
    width: 85vw;
    display: flex;
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
    background-color: #f1c1e4
}

.contact_wrapper form{
    flex:0.5;
}

.contact_page_img{
    background-image: url('https://images.unsplash.com/photo-1521898284481-a5ec348cb555?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    flex:0.5;
    min-height: 60vh;
    background-size: cover;
}

form{
    margin: 20px;
}
.form_content{
    margin: 20px;
    display: grid;
    /* grid-template-columns: repeat(2,minmax(0,2fr)); */
    grid-gap: 10px;
}

form .form_ele{
    text-align: left;
}

form button{
    padding: 8px 17px;
    background-color: transparent;
    outline: none;
    border: none;
    background-color: white;
    color: var(--pink);
    font-weight: 600;
    border: 1px solid var(--pink);
    border-radius: 40px;
    margin-left: 20px;
    margin-top: 15px;
}

label{
    display: block;
    color: var(--pink);
    font-weight: 600;
}

input[type=text],input[type=email], input[type=Number]{
    outline: none;
    border: none;
    width: 60%;
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 8px;
}
.mssg{
    margin-left: 20px;
}
textarea{
    outline: none;
    border: none;
    border-radius: 12px;
    /* padding: 12px 20px; */
    width: 40vw;
}
.radio{
    display: flex;
    margin-top: 10px;
    justify-content: left;
    align-items: center;
}
.radio label{
    color: white;
    margin-left: 12px;
}
.radio input{
    max-width: max-content;
}
.address{
    text-align: justify;
    font-size: 18px;
}
.address strong{
    font-size: 22px;
    font-weight: 600;
}
.contact_address{
    display:flex;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    margin: 5vh 0px;
    font-size: 16px;
}
iframe{
    
    width: 40vw;
}

.contact_info{
    display: flex;
    justify-content: space-between;
    /* width: 35vw; */
    align-items: center;
    /* background-color: #ba1070; */
}
.contact_address ion-icon{
    /* margin-left: 20px; */
    color: var(--pink);
}
.email{
    margin-left: 10px;
}
.email, .phone{
    margin: 8px 0px;
    font-size: 18px;
}
.phone{
    display: flex;
    align-items:center;
}
.phn{
    margin-left: 10px   ;
}

.phn img{
    width:40px;
}
@media(max-width:1300px){
    .contact_wrapper form{
        flex:0.6;
    }
    
    .contact_page_img{
        background-image: url('https://images.unsplash.com/photo-1521898284481-a5ec348cb555?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        flex:0.4;
        min-height: 60vh;
        background-size: cover;
    }


}


@media(max-width:1024px){
    .contact_wrapper form{
        flex:1;
        width: max-content;
    }
    textarea{
        outline: none;
        border: none;
        border-radius: 12px;
        min-width: 70vw;
    }
    .email, .phone{
        margin-top: 30px;
        font-size: 16px;
    }
    .contact_page_img{
        background-image: url('https://images.unsplash.com/photo-1521898284481-a5ec348cb555?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        flex:0.4;
        min-height: 60vh;
        background-size: cover;
        display: none;
    }
    .contact_wrapper{
        margin: 5vh 0px;
    }
    .contact_info, .contact_address{
        display: flex;
        flex-direction: column;
        margin-top: 10vh;
    }
    .contact_det{
        margin-top: 5vh;
    }
    iframe{
        width: 80vw;
    }
}

@media(max-width:650px){
    .contact_wrapper form{
     margin-left: 30px;
    }
    .phn {
        text-align: center;
        justify-content: center;
        display: grid;
        place-content: center;
        width: 80vw;
    }
    .phn ion-icon{
        margin: 8px;
        display: block;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .form_content{
        margin: 20px;
        display: grid;
        grid-template-columns: repeat(1,minmax(0,2fr));
        grid-gap: 10px;
        margin-left: -5px;
    }
    input{
        outline: none;
        border: none;
        width:70vw;
        padding: 8px 15px;
        border-radius: 8px;
    }
    textarea{
        outline: none;
        margin-left: -20px;
        border: none;
        border-radius: 12px;
        width: 70vw;
    }

}


.footer{
    margin-top: 5vh;
    border-top: 1px solid #f1c1e4c9;
    display: grid;
    place-content: center;
}

.ruby{
    margin: 2vh 0px;
    display: flex;
    justify-content: space-between;
    place-content: center;
    align-items: center;
    text-align: center;
}

.ruby .logos{
    display: flex;
    margin-left: 30px;
    align-items: center;
    justify-content: space-around;
}

.logos img{
    padding: 0px 10px;
    width: 50px;
}

.softrate{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #101010a0;
}

.softrate img{
    width: 60px;

}

.logos{
    display: flex;
    align-items: center;
}