*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    user-select: none;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image:  url(images/bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

body{
    background: #fff;
}
.logo{
    padding-top: 20px;
}
nav{
    display: flex;
    padding: 0% 6%;
    justify-content: space-between;
    align-items: center;
}
.nav img{
    width: 120px;
    
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li h1{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}
.nav-links ul li h1::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #2da444;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li h1:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.aboutd h1{
    color: black;
    user-select: none;
}
.text-box h1{
    font-size: 62px;
    user-select: none;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    user-select: none;
}
nav .fa{
    display: none;
}
@media(max-width: 700px) and (min-width:500px){
    sideright{
        padding-top: 18%;
    }
}

@media(max-width: 700px){
    full{
        height: 20%;
    }
    .hidetext{
        font-size: 10px;
        user-select: none;
    }
    .text-box h1{
        font-size: 30px;
        user-select: none;
    }
      .ourdiv{
       width: 60%;
       display: flex;
    }
    .ourdiv h1{
        font-size: 20px;
       padding-top: 10%;
       padding-left: 22%;
       user-select: none;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: rgba(90, 90, 90, 0.5);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .icon{
     opacity: 1;
     margin: 10px;
     cursor: pointer;
     width: 8%;
     height: 2%;
     }
    .nav-links ul{
        padding: 30px;
        
    }
    .row{
        grid-gap: 100%;
    }
    .email{
        width: 24%;
        height: 20%;
    }
    .sideleft{
        padding-top: 14%;
    }
    #pres{
        padding-top: 3%;
    }
    #sweet{
        padding-top: 5%;
    }
   

    #Excipients{
        width: 100%;
        display: flex;
        align-items: center;
    }
    #arrow{
        width: 3%;
        height: 3%;
        position: fixed;
        margin-right: 5%;
        margin-bottom: 5%;
        right: 0;
        bottom: 0;
       display: none;
    }

    .layer h2{
        width: 100%;
        font-weight: 500;
        font-size: 16px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }

}

@media(min-width: 1200px){
    .header{
        background-size: cover;
        min-height: 130vh;
    }

    .campus-col{
        flex-basis: 32%;
        border-radius: 10px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        height: 400px;
        width: 400px;
    }

    .sideleft{
        margin-top: 5%;
    }

    #pres{
        margin-top: 10%;
    }
    #Excipients{
        width: 75%;
        height: 50%;
    }

    #arrow{
        width: 5%;
        height: 5%;
        position: fixed;
        margin-right: 0%;
        margin-bottom: 3%;
        right: 0;
        bottom: 0;
       display: none;
    }
    .layer h2{
        width: 100%;
        font-weight: 500;
        font-size: 26px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }
    
}
.row{
    display: grid;
    grid-auto-rows: minmax(200px,auto);
    grid-template-areas: 
    "sl sl sl sr sr sr"
    "sl sl sl sr sr sr"
    "sl sl sl sr sr sr"
    "sl sl sl sr sr sr"
    "sl sl sl sr sr sr"
    "sl sl sl sr sr sr";
    grid-gap: 10px;
}
.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
   width: 100%;
   height: 100%;
}
.layer{
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(90, 90, 90, 0.1),rgba(90, 90, 90, 0.1));
    color: rgba(46, 137, 223,0);
    transition: 0.5s;
}
.layer:hover{
    background: linear-gradient(rgba(90, 90, 90, 0.7),rgba(90, 90, 90, 0.7));
    color: #fff;
}

.ourservices{
    font-size: 30px;
}
.ourdiv{
    width: 40%;
    border-radius: 30px;
    background: linear-gradient(rgba(90, 90, 90, 0.5),rgba(90, 90, 90, 0.5));
}
.icon{
    width: 0.1%;
    height: 0.1%;
   opacity: 0;
}
.sideleft{
    grid-area: sl;
    margin-top: 0%;
}
.sideright{
    grid-area: sr;
}
.nav{
    grid-area: nav;
}
.m-ourdiv{
    display: flex;
}
.text{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    background-image: linear-gradient(rgb(22, 34, 83),rgba(4, 9, 30,1));
}
h1{
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
    user-select: none;
}
h2{
    user-select: none;
}
p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    user-select: none;
}
.icon{
    width: 0.1%;
    height: 0.1%;
   opacity: 0;
}
.icon{
    width: 0.1%;
    height: 0.1%;
   opacity: 0;
}
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.loca{
    width: 4%;
    height: 4%;
    margin: 10px;
    margin-right: 30px;
}
.phone{
    width: 3%;
    height: 4%;
    margin: 10px;
    margin-right: 35px;
}
.email{
    width: 12%;
    height: 10%;
    margin: 10px;
 
}
.contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contact-col {
    width: 100%;
    text-align: center;
}
.contact-col div{
    display: flex;
    align-items: center;
}
.dp{
    color: rgba(97, 97, 97, 0.7);
    padding: 0;
    user-select: none;
}
.dh{
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(85, 85, 85);
    font-weight: 400;
    user-select: none;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    outline: none;
    border-radius: 5px #ccc;
}
.hero-btn{
    width: 150px;
    height: 60spx;
    border-radius: 15px;
    margin-bottom: 2%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}
.cdiv{
    margin-bottom: 5%;
    margin-left: 5%;
    width: 90%;
    background: rgb(209, 208, 208);
    border-radius: 20px;
}



#arrow img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.title{
    color: #000;
}
@media screen and (min-width: 700px) and (max-width: 1200px) {
    
    #arrow{
        width: 3%;
        height: 3%;
        position: fixed;
        margin-right: 3%;
        margin-bottom: 5%;
        right: 0;
        bottom: 0;
       display: none;
    }
    .layer h2{
        width: 100%;
        font-weight: 500;
        font-size: 26px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
    }

}