@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{
    scroll-behavior: smooth;
}


/* Page transition */

body {
    background-color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.fade-in {
    opacity: 1;
}





a {
    cursor: pointer;
}

.header-main {
    top: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    background-color: white;
    position: relative;
}

.header-main-logo {
    width: 40%;
    height: 100%;
    padding-left: 80px;
    display: flex;
}

.header-main-logo img {
    height: 70%;
    align-self: center;
    padding-top: 20px;
}

.header-main-nav {
    width: fit-content;
    height: 100%;
    padding-right: 80px;
}

.header-main-nav ul li {
    display: inline;
    float: left;
    margin-inline: 0px;
}

.header-main-nav ul li a {
    padding: 0 50px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 150px;
    position: relative;
}

.header-main-nav ul li a::after {
    content: "";
    height: 4px;
    width: 100%;
    background: #CD9BFC;
    position: absolute;
    left: 1px;
    bottom: -8px;
    transform: scaleX(0);
    transition: 0.3s ease;
  
}

.header-main-nav ul li a:hover::after {
    transform: scaleX(0.40);
  
}

.circle-1 {
    height: 50px;
    width: 50px;
    border-radius: 5000px;
    background-color: #FF99A1;
    position: absolute;
    left: 1%;
    top: 18%;
    z-index: 25;
    opacity: 0.7;
}

.circle-2 {
    height: 30px;
    width: 30px;
    border-radius: 5000px;
    background-color: #FF99A1;
    position: absolute;
    left: 2%;
    top: 54%;
    z-index: 25;
    opacity: 0.7;
}

.circle-3 {
    height: 80px;
    width: 80px;
    border-radius: 5000px;
    background-color: #FF99A1;
    position: absolute;
    left: -25px;
    top: 75%;
    z-index: 25;
    opacity: 0.7;
}



.hero-main {
    width: 96%;
    height: 730px;
    display: flex;
    justify-content: space-between;
}

.hero-text {
    width: 60%;
    height: 700px;
    padding-left: 80px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8%;
    position: relative;
}

.hero-text h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: clamp(4.3rem, 5vw, 2rem);
    padding-bottom: 0.5em;
    line-height: 9vh;
}

span{
    font-weight: 300;
}

.hero-map {
    width: 100%;
    height: 700px;
    padding-right: 40px;
    padding-top: 2%;
}

.hero-text p{
    color: #707070;
    font-size: 1.3rem;
}

.btn {
    padding: 0.5em 1em;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    background-image: linear-gradient(to bottom, #732aba, #8F55C8);
    text-align: center;
    position: relative;
    top: 50px;
}

.btn:hover {
    background-image: linear-gradient(to bottom, #732aba, #5a1f92);
    color: white;
    transition: 0.3s ease
}

.sub-heading{
    font-size: 2.6rem;
    font-weight: 600;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.sub-heading::after {
    position: absolute;
    content: '';
    width: 6%;
    height: 4px;
    left: 50%;
    bottom: -5px;
    background-image: linear-gradient(to left, #732aba, #8F55C8);
    transform: translateX(-50%);
}

/* Timeline Starts Here */

.wrapper ,.wrapper-main {
    max-width: 1500px;
    margin: 0px auto;
    padding: 0 20px;
    position: relative;
}

.wrapper .center-line{
    position: absolute;
    height: 92%;
    width: 4px;
    background: #732ABA;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
}

.wrapper .row{
    display: flex;
    justify-content: flex-start;
    
}

.wrapper .row-1{
    justify-content: flex-start;
    padding: 80px 0;
}

.wrapper .row-2{
    justify-content: flex-end;
}

.wrapper .row section{
    background-color: #ffffff;
    box-shadow: 0.3px 0.3px 10px #d1d0d0;
    border-radius: 5px;
    width: 45%;
    padding: 20px;
    position: relative;
    border: #e2e2e2 1px solid;
}


.wrapper .row section::before{
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #732ABA;
    top: 28px;
    z-index: -1;
    transform: rotate(45deg);

}

.row-1 section::before{
    right: -7px;
}

.row-2 section::before{
    left: -7px;
}

.row section .icon{
    position: absolute;
    background-image: linear-gradient(to top, #732aba, #8F55C8);
    height: 75px;
    width: 75px;
    line-height: 40px;
    border-radius: 50%;
    top: 0px;
    padding: 10px;
    display: flex;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}


.row-1 section .icon{
    right: -111px;
    
}

.row-2 section .icon{
   left: -111px;
   
}

.row section .details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.row section .details .title{
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.row section p{
    margin: 10px 0 17px 0;
    font-size: 1.3rem;
    color: #707070;
    font-family: "Roboto", sans-serif;
}

.row section ul li{
    margin: 14px 0 12px 0;
    font-size: 1.1rem;
    color: #707070;
    font-style: italic;
    list-style: disc;
}

.row section ul{
    padding-left: 30px;
}

/* Footer Starts Here */

.footer-main {
    width: 100%;
    padding: 60px 0 100px;
    background-image: linear-gradient(to top, #732aba, #8F55C8);
}

.footer-main-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.above-footer {
    width: 100%;
    padding: 200px;
}

.above-footer a {
    border: 2.5px solid #8F55C8;
    padding: 0.5em 1em;;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    color: #732ABA;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 500;

}

.above-footer a:hover {
    background-image: linear-gradient(to top, #732aba, #8F55C8);
    color: white;
    transition: 0.2s ease

}

.footer-sitemap a {
    line-height: 30px;
    color: white;
}

.footer-sitemap a:hover {
    opacity: 0.7;
}
.footer-sitemap p {
    color: white;
    text-align: center;
    line-height: 30px;
}

.footer-sitemap .address {
    color: white;
    text-align: center;
    line-height: 30px;
    padding-top: 45px;
}

.footer-sitemap {
    flex-basis: 100%;
    display: flex;
}

.footer-sitemap ul:nth-child(1),.footer-sitemap ul:nth-child(2) {
    flex-basis: 280px;
}

.footer-sitemap ul:nth-child(3) {
    flex-basis: 360px;
}

.footer-sitemap ul:nth-child(4) {
    flex-grow: 1;
}

.footer-sitemap ul:nth-child(4) p {
    text-align: right;
}

.footer-sitemap ul:nth-child(4) li {
    clear: both;
    float: right;
}


/* Footer Ends Here */










/* New Media Query */

@media only screen and (min-width: 1900px) and (max-width: 2500px) {
    
    .hero-text h1 {
        font-size: clamp(4.2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 9vh;
    }

    .hero-text {
        
        width: 64%;
        padding-left: 160px;
    }

    .header-main-logo {
        padding-left: 160px;
    }

    .hero-map {
        height: 550px;
    }

    .circle-2 {
        height: 30px;
        width: 30px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: 5%;
        top: 54%;
        z-index: 25;
        opacity: 0.7;
    }
}



@media only screen and (max-width: 1752px) {

    .hero-text {
        padding-top: 9%;
        width: 64%;
    }
}

@media only screen and (max-width: 1690px) {

    .hero-map {
        height: 570px;
    }
}

@media only screen and (max-width: 1650px) {
    
    .hero-text h1 {
        font-size: clamp(4.1rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 8.8vh;
    }

    .hero-map {
        height: 550px;
    }
}

@media only screen and (max-width: 1610px) {
    
    .hero-text h1 {
        font-size: clamp(3.9rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 8.5vh;
    }

    .hero-text {
        padding-top: 8%;
        width: 63%;
    }
}

@media only screen and (max-width: 1570px) {
    
    .hero-text h1 {
        font-size: clamp(3.8rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 8.2vh;
    }

    .hero-text {
        padding-top: 9%;
        width: 63%;
    }

    .hero-map {
        height: 560px;
    }
}

@media only screen and (max-width: 1530px) {
    
    .hero-text h1 {
        font-size: clamp(3.7rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7.8vh;
    }

    .hero-text {
        padding-top: 9%;
        width: 64%;
    }

    .hero-map {
        height: 570px;
    }
}

@media only screen and (max-width: 1489px) {
    
    .hero-text h1 {
        font-size: clamp(3.6rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7.4vh;
    }
}

@media only screen and (max-width: 1449px) {
    
    .hero-text h1 {
        font-size: clamp(3.5rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7.4vh;
    }

    .hero-text {
        padding-top: 10%;
        width: 64%;
    }

    .row-1 section .icon {
        right: -106px;
        
    }
    
    .row-2 section .icon {
       left: -106px;
       
    }
}

@media only screen and (max-width: 1409px) {
    
    .hero-text h1 {
        font-size: clamp(3.4rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7.4vh;
    }

    .hero-text {
        padding-top: 10%;
        width: 62%;
    }

    .hero-map {
        height: 580px;
    }

    .row-1 section .icon {
        right: -105px;
        
    }
    
    .row-2 section .icon {
       left: -105px;
       
    }
}

@media only screen and (max-width: 1400px) {
    
    .hero-text h1 {
        font-size: clamp(3.2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7.2vh;
    }

    .hero-text {
        padding-top: 10%;
        width: 60%;
    }
    
    
    .header-main-nav ul li {
        display: inline;
        float: left;
        margin-inline: 15px;
    }
    
    .header-main-nav ul li a {
        padding: 0 30px;
    }

    .row-1 section .icon {
        right: -104px;
        
    }
    
    .row-2 section .icon {
       left: -104px;
       
    }
}

@media only screen and (max-width: 1369px) {
    
    .hero-main {
        height: 700px;
    }

    .hero-text h1 {
        font-size: clamp(3rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 7vh;
    }

    .hero-text {
        padding-top: 10%;
        width: 58%;
    }

    .hero-map {
        height: 550px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.55);
      
    }

    .sub-heading::after {
        width: 12%;
    }

    .sub-heading {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 1329px) {
    
    .hero-text h1 {
        font-size: clamp(2.8rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 6.1vh;
    }

    .hero-text {
        padding-top: 9%;
        width: 55%;
    }

        .hero-map {
            height: 500px;
        }

        .btn {
            font-size: 1.3rem;
        }
    
        .header-main-logo img {
            height: 70%;
        }
    
        .hero-main {
            height: 650px;
        }
        
        .sub-heading::after {
            width: 15%;
        }
    
        .row section .icon {
            height: 75px;
            width: 75px;
            top: 0px;
        }
    
        .row-1 section .icon {
            right: -102px;
            
        }
        
        .row-2 section .icon {
           left: -102px;
           
        }
    
        .row section .details .title{
            font-size: 1.6rem;
        }
        
        .row section p{
            font-size: 1.3rem;
        }
        
        .row section ul li{
            font-size: 1.1rem;
        }
    
        .above-footer a {
            font-size: 1.3rem;
        }
}       

@media only screen and (max-width: 1288px) {
    
        .hero-text h1 {
            font-size: clamp(2.8rem, 5vw, 2rem);
            padding-bottom: 0.8em;
            line-height: 6.4vh;
        }

        .hero-text {
            padding-top: 11%;
            width: 58%;
        } 
        
        .hero-map {
            height: 550px;
        }
    
        .sub-heading{
            font-size: 2.4rem;
        }
    
        .row-1 section .icon {
            right: -99px;
            
        }
        
        .row-2 section .icon {
           left: -99px;
           
        }
}
        
@media only screen and (max-width: 1248px) {
    
        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 2rem);
            padding-bottom: 0.8em;
            line-height: 5.4vh;
        }
    
        .hero-text {
            padding-top: 10%;
            
        }
        .hero-map {
            height: 520px;
        }
        
         .header-main-logo {
            padding-left: 80px;
            width: 65%;
        }
    
        .header-main-nav {
            width: 100%;
            padding-right: 10px;
        }
        .header-main-nav ul li a {
            padding: 0 40px;
        }
    
        .row-1 section .icon {
            right: -97px;
            
        }
        
        .row-2 section .icon {
           left: -97px;
           
        }
}

@media only screen and (max-width: 1208px) {
    
    .header-main-nav {
        width: 100%;
        padding-right: 10px;
    }
    .header-main-nav ul li a {
        padding: 0 39px;
    }

    .circle-1 {
        height: 50px;
        width: 50px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: 1%;
        top: 14%;
    }
    
    .circle-2 {
        height: 30px;
        width: 30px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: 2%;
        top: 40%;
    }
    
    .circle-3 {
        height: 80px;
        width: 80px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: -25px;
        top: 65%;
    }
    
    .hero-text h1 {
        font-size: clamp(2.4rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 5.4vh;
    }

    .hero-map {
        height: 450px;
    }

    .row-1 section .icon {
        right: -95px;
        
    }
    
    .row-2 section .icon {
       left: -95px;
       
    }

    .row section .details .title{
        font-size: 1.6rem;
    }
    
    .row section p{
        font-size: 1.3rem;
    }
    
    .row section ul li{
        font-size: 1.1rem;
    }

    .above-footer a {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 1168px) {
    
    .header-main-nav ul li a {
        padding: 0 36px;
    }
    
    .hero-text h1 {
        font-size: clamp(2.3rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 5.2vh;
    }

    .hero-map {
        height: 500px;
    }
    
    .header-main-logo {
        padding-left: 80px;
    }

    .hero-text {
        width: 55%;
        height: 700px;
        padding-left: 80px;
    }
    
    .btn {
        font-size: 1.3rem;
    }

    .hero-main {
        height: 640px;
    }

    .row section .icon {
        height: 75px;
        width: 75px;
        top: 1px;
    }

    .row-1 section .icon {
        right: -93px;
        
    }
    
    .row-2 section .icon {
       left: -93px;
       
    }

    
    .circle-1 {
        display: none;
    }
    
    .circle-2 {
        display: none;
    }
    
    .circle-3 {
        display: none;
    }
}

@media only screen and (max-width: 1159px) {
    
    .header-main-nav ul li a {
        padding: 0 35px;
    }
    
    .hero-text h1 {
        font-size: clamp(2.3rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 5.1vh;
    }

    .hero-text {
        padding-top: 11%;
    }
    .hero-map {
        height: 470px;
    }
    .hero-text p{
        font-size: 1.2rem;
    }

    .hero-main {
        height: 620px;
    }

    .sub-heading{
        font-size: 2.3rem;
    }
    
    .sub-heading::after {
        width: 14%;
    }

    .row-1 section .icon {
        right: -92px;
        
    }
    
    .row-2 section .icon {
       left: -92px;
       
    }
}

@media only screen and (max-width: 1127px) {
    
    .header-main-nav ul li a {
        padding: 0 31px;
    }
    
    .hero-text h1 {
        font-size: clamp(2.3rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 5vh;
    }

    .hero-text {
        padding-top: 12%;
    }
    .hero-map {
        height: 450px;
    }

    .btn {
        font-size: 1.29rem;
    }

    .hero-main {
        height: 585px;
    }

    .row-1 section .icon {
        right: -91px;
        
    }
    
    .row-2 section .icon {
       left: -91px;
       
    }
}

@media only screen and (max-width: 1115px) {
    
    .header-main-nav ul li a {
        padding: 0 30px;
    }

    .hero-map {
        height: 420px;
    }

    .hero-text {
        padding-top: 10%;
        width: 60%;
    }

    .btn {
        font-size: 1.28rem;
    }

    .header-main-logo img {
        height: 69%;
    }

    .sub-heading{
        font-size: 2.2rem;
    }
    
    .row section .icon {
        height: 74px;
        width: 74px;
        top: 1px;
    }

    .row-1 section .icon {
        right: -90px;
        
    }
    
    .row-2 section .icon {
       left: -90px;
       
    }
}

@media only screen and (max-width: 1087px) {
    
    .header-main-nav ul li a {
        padding: 0 26px;
    }

    
    .hero-text h1 {
        font-size: clamp(2.35rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height:5vh;
    }

    .hero-text {
        padding-top: 10%;
    }
    .hero-map {
        height: 430px;
    }
    .hero-text p{
        font-size: 1.1rem;
    }

    .header-main-logo img {
        height: 67%;
    }

    .hero-main {
        height: 530px;
    }

    .sub-heading{
        font-size: 2.1rem;
    }
    
    .row section .icon {
        height: 73px;
        width: 73px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -88px;
        
    }
    
    .row-2 section .icon {
       left: -88px;
       
    }
}

@media only screen and (max-width: 1047px) {
   
    .header-main-nav ul li a {
        padding: 0 23px;
    }
    
    .hero-text h1 {
        font-size: clamp(2.3rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 4.9vh;
    }

    .hero-map {
        height: 410px;
    }

    .btn {
        font-size: 1.25rem;
    }

    .hero-main {
        height: 500px;
    }

    .row section .icon {
        height: 72px;
        width: 72px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -86px;
        
    }
    
    .row-2 section .icon {
       left: -86px;
       
    }
}

@media only screen and (max-width: 1024px) {
    
    .header-main-nav ul li a {
        padding: 0 23px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.60);
      
    }

    .hero-text h1 {
        font-size: clamp(2.4rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 44px;
    }

    .header-main-logo {
        padding-left: 50px;
    }

    .hero-text {
        width: 62%;
        padding-left: 50px;
    }
    .hero-map {
        height: 380px;
    }
    
    .btn {
        font-size: 1.15rem;
    }

    .header-main-logo img {
        height: 65%;
    }

    .hero-main {
        height: 550px;
    }

    .sub-heading{
        font-size: 2rem;
    }
    
    .sub-heading::after {
        width: 11%;
    }

    .row-1 section .icon {
        right: -84px;
        
    }
    
    .row-2 section .icon {
       left: -84px;
       
    }

    .above-footer {
        padding: 120px;
     }
}

@media only screen and (max-width: 982px) {
    
    .header-main-nav ul li a {
        padding: 0 18px;
    }

    .header-main-logo {
        padding-left: 40px;
    }

    .hero-text {
        width: 62%;
        padding-left: 40px;
    }

    .btn {
        font-size: 1.2rem;
    }

    .header-main-logo img {
        height: 67%;
    }

    .hero-main {
        height: 500px;
    }

    .sub-heading{
        font-size: 2.2rem;
    }
    
    .sub-heading::after {
        width: 12%;
    }

    .row section .icon {
        height: 70px;
        width: 70px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -82px;
        
    }
    
    .row-2 section .icon {
       left: -79px;
       
    }

    .row section .details .title{
        font-size: 1.55rem;
    }
    
    .row section p{
        font-size: 1.29rem;
    }
    
    .row section ul li{
        font-size: 1.1rem;
    }

    .above-footer a {
        font-size: 1.3rem;
    }
    
    .above-footer {
       padding: 150px;
    }
}

@media only screen and (max-width: 938px) {
    
    .header-main-nav ul li a {
        padding: 0 16x;
    }
    
    .hero-text h1 {
        font-size: clamp(2.2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 42px;
    }

    .hero-text {
        width: 61%;
        padding-left: 40px;
    }
    .hero-map {
        height: 360px;
    }
    .hero-text p{
        font-size: 0.95rem;
    }

    .header-main-logo img {
        height: 65%;
    }

    .sub-heading{
        font-size: 2rem;
    }
    
    .row section .icon {
        height: 68px;
        width: 68px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -79px;
        
    }

    .row section .details .title{
        font-size: 1.5rem;
    }
    
    .row section p{
        font-size: 1.25rem;
    }
    
    .row section ul li{
        font-size: 1.1rem;
    }

    .above-footer a {
        font-size: 1.2rem;
    }

    .above-footer {
        padding: 120px;
     }
}

@media only screen and (max-width: 915px) {
  
    .header-main-nav ul li a {
        padding: 0 14px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.70);
      
    }
    
    .hero-text h1 {
        font-size: clamp(2.25rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 40px;
    }

    .header-main-logo {
        padding-left: 40px;
    }

    .hero-text {
        width: 63%;
        padding-left: 40px;
    }

    .hero-map {
        height: 300px;
    }

    .btn {
        font-size: 1.08rem;
    }

    .header-main-logo img {
        height: 63%;
    }

    .hero-main {
        height: 480px;
    }

    .sub-heading{
        font-size: 1.9rem;
    }

    .row section .icon {
        height: 66px;
        width: 66px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -76px;
        
    }
    
    .row-2 section .icon {
       left: -76px;
       
    }

    .row section .details .title{
        font-size: 1.4rem;
    }
    
    .row section p{
        font-size: 1.2rem;
    }
    
    .row section ul li{
        font-size: 1rem;
    }

    .above-footer a {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 901px) {
    
    .header-main-nav ul li a {
        padding: 0 13px;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 40px;
    }

    .hero-text {
        width: 65%;
        padding-left: 40px;
    }
    
    .hero-text p{
        font-size: 0.92rem;
    }

    .btn {
        font-size: 1.15rem;
    }

    .hero-main {
        height: 470px;
    }

    .sub-heading{
        font-size: 1.9rem;
    }
    
    .row section .icon {
        height: 64px;
        width: 64px;
        top: 3px;
    }

    .row-1 section .icon {
        right: -75px;
        
    }
    
    .row-2 section .icon {
       left: -75px;
       
    }
}

@media only screen and (max-width: 879px) {
 
    .header-main-nav ul li a {
        padding: 0 12px;
    }

    .hero-text {
        width: 67%;
        padding-left: 40px;
    }
    
    .hero-text p{
        font-size: 0.90rem;
    }

    .btn {
        font-size: 1.1rem;
    }

    .header-main-logo img {
        height: 62%;
    }

    .hero-main {
        height: 460px;
    }

    .sub-heading{
        font-size: 1.6rem;
    }
    
    .sub-heading::after {
        width: 15%;
    }

    .row section .icon {
        height: 62px;
        width: 62px;
        top: 5px;
    }

    .row-1 section .icon {
        right: -72px;
        
    }
    
    .row-2 section .icon {
       left: -72px;
       
    }
}

@media only screen and (max-width: 864px) {
   
    .header-main-nav ul li a {
        padding: 0 13px;
    }

    .hero-text {
        width: 68%;
        padding-left: 40px;
    }
    
    .hero-text p{
        font-size: 0.85rem;
    }

    .header-main-logo img {
        height: 60%;
    }

    .btn {
        font-size: 1.1rem;
    }

    .row section .icon {
        height: 60px;
        width: 60px;
        top: 5px;
    }

    .row-1 section .icon {
        right: -70px;
        
    }
    
    .row-2 section .icon {
       left: -70px;
       
    }
}

@media only screen and (max-width: 849px) {
   
    .header-main-nav ul li a {
        padding: 0 14px;
    }

    .header-main-logo img {
        height: 58%;
    }

    .hero-map {
        height: 300px;
    }

    .hero-text h1 {
        font-size: clamp(2.1rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 40px;
    }

    .sub-heading{
        font-size: 1.6rem;
    }
    

    .row section .icon {
        height: 58px;
        width: 58px;
        top: 5px;
    }

    .row-1 section .icon {
        right: -68px;
        
    }
    
    .row-2 section .icon {
       left: -68px;
       
    }
}

@media only screen and (max-width: 827px) {
   
    .header-main-nav ul li a {
        padding: 0 12px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.70);
      
    }

    .hero-text {
        width: 67%;
        padding-left: 40px;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 37px;
    }
    
    .hero-text p{
        font-size: 0.80rem;
    }

    .btn {
        font-size: 1rem;
    }

    .hero-main {
        height: 450px;
    }

    .sub-heading::after {
        width: 11%;
    }

    .wrapper .center-line {
        left: 35px;
        
    }

    .wrapper .row {
        margin: 10px 0 3px 60px;
    }
    
    .wrapper .row section {
        width: 100%;
    }
    
    .row-1 section::before{
        left: -7px;
    }
    
    .row section .icon {
        height: 50px;
        width: 50px;
        top: 10px;
    }

    .row-1 section .icon {
        left: -70px;
    }

    .row-2 section .icon {
        left: -70px;
    }

    .row section .details .title{
        font-size: 1.4rem;
    }
    
    .row section p{
        font-size: 1.2rem;
    }
    
    .row section ul li{
        font-size: 1rem;
    }

    .above-footer a {
        font-size: 1.2rem;
    }
    
}

@media only screen and (max-width: 809px) {
  
    .hero-text h1 {
        font-size: clamp(2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 38px;
    }

    .hero-text {
        width: 69%;
        padding-left: 40px;
    }

    .hero-map {
        height: 300px;
    }

    .sub-heading::after {
        width: 15%;
    }

    .wrapper .center-line{
        left: 37px;
        
    }

    .row section .icon {
        height: 55px;
        width: 55px;
        top: 8px;
    }

    .row-1 section .icon {
        right: -65px;
        
    }
    
    .row-2 section .icon {
       left: -70px;
       
    }
}

@media only screen and (max-width: 782px) {
    
    .header-main-nav ul li a {
        padding: 0 9px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.70);
      
    }

    .hero-text {
        width: 74%;
        padding-left: 40px;
    }
    
    .hero-text h1 {
        font-size: clamp(2.1rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 37px;
    }

    .hero-text p{
        font-size: 0.75rem;
    }

    .hero-map {
        height: 280px;
    }

    .sub-heading::after {
        width: 10%;
    }

    .row section .icon {
        height: 53px;
        width: 53px;
        top: 8px;
    }

    .wrapper .center-line {
        left: 35px;
    }

    .wrapper .row {
        margin: 10px 0 3px 60px;
    }
    
    .wrapper .row section {
        width: 100%;
    }
    
    .row-1 section::before{
        left: -7px;
    }
    
    .row section .icon {
        height: 50px;
        width: 50px;
        top: 10px;
    }

    .row-1 section .icon {
        left: -70px;
    }

    .row-2 section .icon {
        left: -70px;
    }

    .row section .details .title{
        font-size: 1.3rem;
    }
    
    .row section p{
        font-size: 1.1rem;
    }
    
    .row section ul li{
        font-size: 0.9rem;
    }

    .above-footer a {
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 755px) {
    
    .header-main-nav {
        width: 100%;
        padding-right: 10px;
    }

    .header-main-nav ul li a {
        padding: 0 8px;
    }

    .hero-text {
        width: 76%;
    }

    .hero-text h1 {
        font-size: clamp(2.1rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 38px;
    }

    .hero-text p{
        font-size: 0.70rem;
    }

    .hero-main {
        height: 450px;
    }

    .sub-heading::after {
        width: 15%;
    }

    .row section .icon {
        height: 50px;
        width: 50px;
        top: 12px;
    }

    .row-1 section .icon {
        right: -60px;
    }
    
    .row-2 section .icon {
       left: -70px;
    }

    .row section .details .title{
        font-size: 1.3rem;
    }
    
    .row section p{
        font-size: 1.1rem;
    }
    
    .row section ul li{
        font-size: 0.9rem;
    }

    .above-footer a {
        font-size: 1.1rem;
    }

    .footer-sitemap ul:nth-child(2) {
        display: none;
    }
}

@media only screen and (width: 744px) {
    
    .header-main-nav {
        width: 100%;
        padding-right: 7px;
    }

    .header-main-nav ul li a {
        padding: 0 5px;
    }

    
}

@media only screen and (max-width: 742px) {
    
    .header-main-nav {
        width: 100%;
        padding-right: 10px;
    }
    
    .header-main-nav ul li a {
        padding: 0 8px;
    }

    .hero-text h1{
        font-size: 2rem;
        line-height: 38px;
    }

    .hero-text p{
        font-size: 0.70rem;
    }

    .hero-main {
        height: 390px;
    }

    .row section .icon {
        height: 50px;
        width: 50px;
        top: 12px;
    }

    .row-1 section .icon {
        right: -60px;
        
    }
    
    .row-2 section .icon {
       left: -70px;
       
    }

    .row section .details .title{
        font-size: 1.3rem;
    }
    
    .row section p{
        font-size: 1.1rem;
    }
    
    .row section ul li{
        font-size: 0.9rem;
    }

    .above-footer a {
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 729px) {
    
    .header-main-nav ul li a {
        padding: 0 6px;
    }

    .hero-text p{
        font-size: 0.65rem;
    }

    .hero-main {
        height: 390px;
    }

    .hero-text h1{
        font-size: 2rem;
        line-height: 38px;
    }

    .row section .icon {
        height: 45px;
        width: 45px;
        top: 12px;
    }

    .row-1 section .icon {
        right: -57px;
        
    }
    
    .row-2 section .icon {
       left: -68px;
       
    }

    .row section .details .title{
        font-size: 1.2rem;
    }
    
    .row section p{
        font-size: 1rem;
    }
    
    .row section ul li{
        font-size: 0.9rem;
    }

    .above-footer a {
        font-size: 1.1rem;
    }

    .above-footer {
        padding: 90px;
     }
}

@media only screen and (max-width: 715px) {
    
    .header-main-nav ul li a {
        padding: 0 3px;
    }
    
    .header-main-nav ul li {
        margin-inline: 17px;
    }

    .hero-text p{
        font-size: 0.85rem;
        width: 80%;
    }

    .header-main-logo {
        padding-left: 30px;
    }
    
    .header-main-logo img {
        height: 60%;
    }

    .hero-text {
        width: 75%;
        height: 700px;
        padding-left: 30px;
    } 
    
    .hero-text h1{
        font-size: 2rem;
        line-height: 38px;
    }

    .hero-map {
        height: 250px;
    }

    .hero-main {
        height: 380px;
    }

    .wrapper .center-line{
        left: 33px;
    }

    .row section .icon {
        height: 45px;
        width: 45px;
        top: 13px;
    }

    .row-1 section .icon {
        right: -50px;
        
    }
    
    .row-2 section .icon {
       left: -69px;
       
    }

    .row section .details .title{
        font-size: 1rem;
    }
    
    .row section p{
        font-size: 0.8rem;
    }
    
    .row section ul li{
        font-size: 0.7rem;
    }

    .above-footer a {
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 712px) {
    
    .header-main-nav ul li a {
        padding: 0 1px;
    }
    
    .header-main-nav ul li {
        margin-inline: 16px;
    }
    
    .hero-text h1{
        font-size: 2rem;
        line-height: 39px;
    }

    .hero-main {
        height: 400px;
    }

    .sub-heading::after {
        width: 13%;
    }

    .row-1 section .icon {
        right: -56px;
        
    }
    
    .row-2 section .icon {
       left: -68px;
       
    }
}

@media only screen and (max-width: 698px) {
  
    .header-main-nav ul li {
        margin-inline: 12px;
    }

    .header-main-logo img {
        height: 55%;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 37px
    }

    .hero-text {
        width: 87%;
        height: 700px;
        padding-left: 30px;
    }    

    .hero-map {
        height: 200px;
        padding-right: 5px;
    }

    .hero-main {
        height: 380px;
    }

    .sub-heading{
        font-size: 1.5rem;
    }
    
    .wrapper .center-line {
        left: 32px;
    }

    .row section .icon {
        height: 42px;
        width: 42px;
        top: 15px;
    }

    .row-1 section .icon {
        right: -49px;
        
    }
    
    .row-2 section .icon {
       left: -69px;
       
    }

    .row section .details .title{
        font-size: 1.2rem;
    }
    
    .row section p{
        font-size: 1rem;
    }
    
    .row section ul li{
        font-size: 0.9rem;
    }
}


@media only screen and (max-width: 628px) {
    
    .header-main-nav ul li a {
        padding-left: 1px;
    }
    
    .header-main-nav ul li {
        margin-inline: 12px;
    }

    .hero-text h1{
        font-size: 30px;
        line-height: 33px;
    }

    .hero-text {
        width: 60%;
    } 
}

@media only screen and (max-width: 611px) {
    
    .hero-text h1{
        font-size: 29px;
        line-height: 31px;
    } 
}

@media only screen and (max-width: 600px) {
    
    .header-main-nav ul li {
        margin-inline: 10px;
    }

    .header-main-logo img {
        height: 55%;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 5vw, 2rem);
        padding-bottom: 0.8em;
        line-height: 4.2vh;
    }

    .hero-text {
        width: 70%;
        padding-top: 8%;
        height: 700px;
        padding-left: 30px;
    }    

    .hero-map {
        height: 200px;
        padding-right: 5px;
    }

    .hero-main {
        height: 400px;
    }

    .wrapper .center-line {
        left: 31px;
    }

    .row-1 section .icon {
        right: -49px;
        
    }
    
    .row-2 section .icon {
       left: -70px;
       
    }

    .above-footer a {
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 589px) {
    
   
    .hero-text h1{
        font-size: 27px;
        line-height: 31px;
    }

    .hero-text {
        width: 60%;
    } 
}






/* Mobile Version Starts here */
 

.off-screen-menu , .ham-menu span {
    display: none;
}

@media only screen and (max-width: 565px)

{   
    .off-screen-menu {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-left: 2px solid whitesmoke;
        height: 100vh;
        width: 80%;
        max-width: 565px;
        position: fixed;
        top: 8%;
        right: -565px;
        display: flex;
        flex-direction: column;
        align-items: center;    
        justify-content: center;
        font-size: 30px;
        transition: .3s ease;
        z-index: 900;
        color: #ffffff;
        padding: 0 10vw;
        }
        
        .off-screen-menu.active {
            right: 0;
        }
    
        .off-screen-menu ul li{
            display: block;
            height: 15%;
            padding: 15px 0;
            flex-basis: 100%;
        }

        .off-screen-menu ul li a{
            display: block;
            margin: 20px auto;
            width: 100%;
            max-width: 240px;
            text-align: center;
            padding: 8px 25px;
            background-color: #732ABA;
            box-shadow: 0.3px 0.3px 10px #d1d0d0;
            border-radius: 5px;
        }

        .off-screen-menu ul li a:hover {
            background-color: #CD9BFC;
            color: #000;
        }


        

    
    
/*nav */
    
        nav {
            padding: 1rem;
            display: flex;
        }



/* ham menu */
    
        
        .ham-menu {
            height: 50px;
            width: 40px;
            margin-left: auto;
            position: relative;
        }
        .ham-menu span {
            height: 5px;
            width: 100%;
            background-color: #732ABA;
            border-radius: 25px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(230px, 20px);
            transition: .3s ease;
            display: block;
        }
        .ham-menu span:nth-child(1) {
            top: 25%;
        }
        .ham-menu span:nth-child(3) {
            top: 75%;
        }
        .ham-menu.active span {
            background-color: #732ABA;
        }
        .ham-menu.active span:nth-child(1) {
            top: 50%;
            transform: translate(230px, 20px) rotate(45deg);
        }
        .ham-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .ham-menu.active span:nth-child(3) {
            top: 50%;
            transform: translate(230px, 20px) rotate(-45deg);
        }
        
        .wrapper , .wrapper-main {
            max-width: calc(100% - 10px);
        }

        .header-main {
            position: fixed;
            opacity: 0.99;
            
        }

        .header-main-logo {
            padding-left: 5vw;
            width: 60%;
        }

        .header-main-logo img {
            height: 65%;
        }

        .header-main-nav {
            display: none;
        }

        .wrapper .row section::before{
            display: none;
        }

        .wrapper .row section{
            width: 100%;
            padding: 15px;
        }

        .btn {
            font-size: 22px;
            top: 300px;
            text-align: center;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
        }

        .hero-main {
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            height: 630px;
            align-items: flex-end;
        }

        .hero-text {
            margin: 0 auto;
            width: 100%;
            top: 38%;
            align-items: center;
            position: relative;
            text-align: center;
            
        }

        .hero-text  h1 {
            font-size: 40px;
            align-self: center;
            line-height: 45px;
            position: absolute;
            
        }

        .hero-text p{
            font-size: 20px;
            align-items: center;
            width: 85%;
            top: 210px;
            position: absolute;
            
        }

        .hero-map {
            display: none;
        }

        .wrapper .center-line {
            display: none;
        }

        .row section .icon {
            display: none;
        }

        .row-1 section .icon {
            right: -49px;
            
        }
        
        .row-2 section .icon {
        left: -70px;
        
        }

        .row section .details .title{
            font-size: 1.2rem;
        }
        
        .row section p{
            font-size: 1rem;
        }
        
        .row section ul li{
            font-size: 0.9rem;
        }


        .sub-heading{
            font-size: 35px;
            padding-bottom: 10px;
            align-items: center;
        }

        .sub-heading::after {
            width: 25%;
            bottom: 2%;
        }

        .above-footer {
            padding: 15%;
        }

        .footer-sitemap {
            flex-wrap: wrap;
        }

        .footer-sitemap ul:nth-child(2) {
            display: none;
        }

        .footer-sitemap ul:nth-child(1),
        .footer-sitemap ul:nth-child(3),
        .footer-sitemap ul:nth-child(4) {
            flex-basis: 100%;
            text-align: center;
            padding-bottom: 10px;
            font-size: 18px;

        }

        .footer-sitemap ul:nth-child(4) p {
            text-align: center;
        }

        .footer-sitemap ul:nth-child(4) li {
            float: none;
        
        }

        .footer-sitemap ul:nth-child(3) p {
            position: absolute;
            text-align: center;
            top: 99%;
            display: grid;
            padding-top: 30px;
        }

        .footer-button {
            margin: -8% auto;
        }
}

@media only screen and (max-width: 540px)

{   
    .ham-menu span {
        transform: translate(210px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        transform: translate(210px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(210px, 20px) rotate(-45deg);
    }
}

@media only screen and (max-width: 520px)

{   
    .ham-menu span {
        transform: translate(190px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        transform: translate(190px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(190px, 20px) rotate(-45deg);
    }
}

@media only screen and (max-width: 500px)

{   
    .ham-menu span {
        transform: translate(170px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        transform: translate(170px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(170px, 20px) rotate(-45deg);
    }
}

@media only screen and (max-width: 480px)

{   
    .ham-menu span {
        transform: translate(150px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        transform: translate(150px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(150px, 20px) rotate(-45deg);
    }
}

@media only screen and (max-width: 460px)

{   
    .ham-menu span {
        transform: translate(135px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        transform: translate(135px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(135px, 20px) rotate(-45deg);
    }
}


@media only screen and (max-width: 440px)

{   
    .ham-menu span {
        transform: translate(110px, 20px);
    }
    .ham-menu.active span:nth-child(1) {
        
        transform: translate(110px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(110px, 20px) rotate(-45deg);
    }
   

    .wrapper .row{
        margin: 10px 0;
        padding: 20px 0;
    }

    .row section .details .title{
        margin: 0 auto;
        font-size: 23px;
    }

    .row section p{
        text-align: center;
        font-size: 18px;
    }

    .row section ul li{
        font-size: 16px;
    }
    
}

@media only screen and (max-width: 420px) {

.ham-menu span {
    transform: translate(90px, 20px);
}

.ham-menu.active span:nth-child(1) {
    transform: translate(90px, 20px) rotate(45deg);
}

.ham-menu.active span:nth-child(3) {
    transform: translate(90px, 20px) rotate(-45deg);
}




@media only screen and (max-width: 390px) {
    
    .header-main-logo img {
        height: 60%;
    }
    
    .wrapper-main {
        width: 100%;
    }

    .ham-menu span {
        transform: translate(80px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(80px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(80px, 20px) rotate(-45deg);
    }
    }
    .hero-text h1 {
        line-height: 45px;
    }

    .hero-text p {
        font-size: 18px;
        top: 210px;
    }
}

@media only screen and (max-width: 370px) {

    .ham-menu span {
        transform: translate(70px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(70px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(70px, 20px) rotate(-45deg);
    }
    
    .hero-text h1 {
        line-height: 40px;
        font-size: 35px;
    }

    .btn {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 18px;
        top: 180px;
    }
    
}

@media only screen and (max-width: 350px) {
    
    .header-main-logo img {
        height: 59%;
    }

    .ham-menu span {
        transform: translate(65px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(65px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(65px, 20px) rotate(-45deg);
    }
   
    .btn {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 16px;
        top: 220px;
    }
}

@media only screen and (max-width: 330px) {
    
    .ham-menu span {
        transform: translate(50px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(50px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(50px, 20px) rotate(-45deg);
    }
    
}


@media only screen and (max-width: 310px) {
    
    .ham-menu span {
        transform: translate(35px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(35px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(35px, 20px) rotate(-45deg);
    }
}


@media only screen and (max-width: 289px) {
    
    .header-main-logo img {
        height: 56%;
    }

    .ham-menu span {
        transform: translate(30px, 20px);
    }

    .ham-menu.active span:nth-child(1) {
        transform: translate(30px, 20px) rotate(45deg);
    }
    .ham-menu.active span:nth-child(3) {
        transform: translate(30px, 20px) rotate(-45deg);
    }
   
    .btn {
        font-size: 16px;
    }

    .hero-text p {
        font-size: 16px;
        top: 240px;
    }
}






/* iPad Pro Version */


@media only screen and (width: 1024px) and (height: 1366px) {
 
    .header-main-nav ul li a {
        padding: 0 23px;
    }

    .header-main-nav ul li a:hover::after {
        transform: scaleX(0.60);
      
    }

    .header-main-logo {
        padding-left: 50px;
    }

    .header-main-logo img {
        height: 65%;
    }

    .circle-1 {
        display: block;
        height: 50px;
        width: 50px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: 1%;
        top: 11%;
        z-index: 25;
        opacity: 0.7;
    }
    
    .circle-2 {
        display: block;
        height: 30px;
        width: 30px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: 1%;
        top: 30%;
        z-index: 25;
        opacity: 0.7;
    }
    
    .circle-3 {
        display: block;
        height: 80px;
        width: 80px;
        border-radius: 5000px;
        background-color: #FF99A1;
        position: absolute;
        left: -25px;
        top: 40%;
        z-index: 25;
        opacity: 0.7;
    }
}




/* Mobile Versions */


@media only screen and (width: 353px) and (height: 745px)

{   
    .off-screen-menu {
        top: 14%;
    }
        
}


@media only screen and (width: 375px) and (height: 812px)

{   
    .off-screen-menu {
        top: 8%;
    }
        
}

@media only screen and (width: 412px) and (height: 732px)

{   
    .off-screen-menu {
        top: 12%;
    }
        
}

@media only screen and (width: 414px) and (max-height: 896px)

{   
    .off-screen-menu {
        top: 4%;
    }
        
}

@media only screen and (width: 430px) and (max-height: 932px)

{   
    .off-screen-menu {
        top: 2%;
    }
        
}

@media only screen and (width: 360px) and (max-height: 740px)

{   
    .off-screen-menu {
        top: 12%;
    }
        
}

@media only screen and (width: 412px) and (height: 915px)

{   
    .off-screen-menu {
        top: 2%;
    }
        
}

@media only screen and (width: 412px) and (height: 914px)

{   
    .off-screen-menu {
        top: 4%;
    }
        
}

@media only screen and (width: 320px) and (height: 658px)

{   
    .off-screen-menu {
        top: 18%;
    }
        
}

@media only screen and (width: 414px) and (height: 736px)

{   
    .off-screen-menu {
        top: 15%;
    }
        
}

@media only screen and (width: 375px) and (height: 667px)

{   
    .off-screen-menu {
        top: 18%;
    }
        
}

@media only screen and (width: 320px) and (height: 568px)

{   
    .off-screen-menu {
        top: 14%;
        font-size: 20px;
    }
       
    .off-screen-menu ul li{
        display: block;
        height: 18%;
        padding: 20px 0;
        
    }
}


@media only screen and (width: 320px) and (height: 533px)

{   
    .off-screen-menu {
        top: 16%;
        font-size: 20px;
    }
       
    .off-screen-menu ul li{
        display: block;
        height: 18%;
        padding: 20px 0;
        
    }
}


@media only screen and (width: 411px) and (height: 731px)

{   
    .off-screen-menu {
        top: 12%;
    }
        
}

@media only screen and (width: 360px) and (height: 640px)

{   
    .off-screen-menu {
        top: 18%;
    }
        
}

@media only screen and (width: 540px) and (height: 720px)

{   
    .off-screen-menu {
        top: 14%;
    }
        
}





