*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root{
    --bg-color: #F9F9F9;
    --text-color:#FFFFFF;
    --l-blue: #046EA8;
    --blue: #113548;
    --light-grey:#424040;
    --dark-grey: #333333;
    --black:#000000;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
  }
  
  #loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--blue);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #content {
    display: none;
  }
  

header{
    background: var(--text-color);
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 100px;
    justify-content: space-between;
    align-items: center;
    padding: 0px 130px;
    z-index: 1000;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  
}

p{
   line-height: 2;
   font-size:13px
}

.logo{
    width: 150px;
    height: 150px;
}
.logo img{
   width: 100%;
   height: 100%;
}

#menu-icon{
    font-size: 2rem;
    color:var(--black);
    cursor: pointer;
    display: none;
}

.navbar form{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 38px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 4px 4px 20px 2px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.search-bx{
    width: 100%;
    position: relative;
    padding: 10px 20px 10px 10px;
    
}

.search-bx input{
    width: 100%;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.58);

}


.search-bx input::placeholder{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.58);
}




button[type="submit"]{
    background-image: url(../img/search.png);
    background-repeat: no-repeat;
    background-color: var(--text-color);
    border: none;
    overflow: hidden;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 15px;
    right: 10px;
}


.navbar{
    display: flex;
    justify-content: stretch;
    align-items: center;
    text-align: center;
    gap:10px;
 
}

.navbar li{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--black);
    gap: 2px;
    width: 100px;
}


.navbar li a{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
    line-height: 16px;
    color: var(--black);
    transition: all .20s ease;
    width: 100%;
    padding: 9px 5px;
    transition: .30s all ease-in;
}
.navbar li a:hover{
    color: var(--bg-color);
    background-color: var(--blue);
    border-radius: 10px;
    
}

.dropdown {
    position: relative;
  }


  
  .dropdown-content {
    text-align: center;
    display: none;
    position: absolute;
    top: 35px;
    background-color: #f9f9f9;
    width: 200px;
    border-radius: 10px;
    z-index: 1;
  }
  .dropdown-content li{
    list-style-type:disc;
    width: 100%;
  }
  .dropdown-content  li a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: inline-flex;
    font-size: 10px;
    font-weight: 400;
    text-transform: capitalize;
  }
 
  .dropdown:hover .dropdown-content {
    display: block;
    
  }

.advise-btn{
    color: var(--text-color);
    background-color: var(--blue);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    text-transform: capitalize;
    width: 100px;
}


.advise-btn:hover{
    border: 2px solid var(--blue);
    background-color: var(--bg-color);
    color: var(--black);
    transition: all .3s ease-in;
    
}
.main{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    background-image: url(../img/main3.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 95vh;
    padding:9% 10%;
    position: relative;
    z-index: 2;
    }

.main::before{
    content: "";
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgb(41 45 54 / 51%)
 
}
/* carousel background */
.site-content{
    display:flex;
    flex-direction:column;
    gap: 20px;
    z-index: 2;
    
}
.site-content span{
    font-weight: 600;
   font-size: 47px;
   line-height: 57px;
   color: var(--bg-color);
}

h1{
    font-weight: 500;
    font-size: 60px;
    line-height: 73px;
    color: #cbd0d8;
}

h2{
    font-weight: 700;
    font-size: 60px;
    line-height: 73px;
}

.site-content p{
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.5px;
}

.main-btn{
    display: inline-block;
    color: var(--text-color);
    background-color: var(--blue);
    padding: 10px 15px;
    border-radius: 0.6rem;
    font-size: 15px;
    width: 150px;
    z-index: 2;
    text-transform: capitalize;
    text-align: center;
}

.main-btn:hover{
    transform: scale(1.1) translateY(10px);
    transition: .4s;
}

/* marquee slider*/
.marquee{
    height: 50px;
    margin: 0px 10%;
    overflow: hidden;
    position:relative;
    width: auto;
}

.marquee-content{
    animation: scroll 20s linear infinite;
    display: flex;
    gap: 20px;
    width: calc(250px * 14);
}

.marquee-item{
    height: 50px;
    width: 150px;
}

@keyframes scroll{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

section{
    padding:5% 10%;
}

.home{
    background-color: #E2E2E2;
}

.home h2, .university h2{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 35px;
    line-height: 43px;
    position: relative;
    margin-bottom:30px;
}

.home h2::before , .university h2::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--blue);
}

.home .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 5rem;
    margin-top: 10%;
}

.home .container-body{
    margin-top: 10%;
    display:flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.home .container .circle{
    justify-content: center;
    background-color: var(--blue);
    border-radius: 50%;
    padding: 10px 20px;
    height: 50px;
    width:  50px;
    display: flex;
    align-items: center
}

.home .container .card{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--bg-color);
    border-radius: 40px 0 40px 0;
    width: 300px;
    height: 300px;
    
}

.home .container .card-text{
    text-align: center;
    color: var(--light-grey);
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.home .container .card-text a {
   color: var(--blue);
}


.home .container .card-text h3 {
    font-weight: 700;
 }
 /* university section*/
.university-body{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1rem;
    margin-top: 10%;
}

.uni-card{
    position: relative;
    color: var(--bg-color);
    width: 100%;
    height: 250px;
    border-radius: 20px;
    transition: .4s all ease-in;
}

.uni-card:hover {
    transform: scale(1.04) translateY(-5px);
}

.uni-card .card-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 10%;
    display: flex;
    align-items: flex-end;
    background-color: #00000082;
    border-radius: 20px;
}

.card-text h4{
   font-size: 1rem;
}
.uni-img{
    width: 100%;
    height:100%;
}
 .uni-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;

}
/* Testimonial section */
 .testimonial{
    background-color: var(--blue);
    position: relative;
 }


.testimonial-body{
    overflow: hidden;
    margin-top: 10%;
    
}
 .testimonial h2{
    color: var(--bg-color);
    font-weight: 500;
    font-size: 35px;
    line-height: 43px;
    position: relative;
}

.testimonial h2::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--bg-color);
}

.testimonial .image{
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial .slide{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap:30px;
}

.slide p{
    text-align: center;
    padding:0 100px;
    font-size: 14px;
    font-weight:  400;
    color:var(--bg-color);
    width: 500px;
}

.slide .quote-icon{
    font-size: 30px;
    color: #6BC4D7;
}

.slide .details{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide .name{
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.slide .place {
    font-size: 12px;
    font-weight: 200;
    color:  var(--text-color);
}

/* swiper button css */

  .nav-btn::after,
  .nav-btn::before {
    font-size: 20px;
    color: #fff;
  } 


.footer{
    background-color: var(--black);
}
  
.footer-body{
    padding: 10px 0;
}

 .container{
    display: flex;
    gap: 2rem;
}

.col {
    width: 25%;
}

.col h4{
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
}

.col h4::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    left: 0;
    bottom: -8px;
    background: var(--blue);
}

.col ul li{
   list-style: none;
}

.col ul li:not(:last-child){
    margin-bottom: 15px;
}
.col ul li a{
    color: #9897a9;
    font-size: 1rem;
    display: block;
    text-transform: capitalize;
    transition: .4s;
}

.col ul li a:hover{
    color: var(--blue);
    transform:  translateX(-12px);
}

.col .social{
    width:220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col .social a{
    height: 40px;
    width: 40px;
    background: var(--main-color);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: .4s;
}

.col .social a:hover{
    transform: scale(1.2);
    color: var(--bg-color);
    background: var(--blue);
}

.end-text {
    color: var(--black);
    text-align: center;
    padding: 20px;
}
/* INDEX PAGE END  */
/* ------------------------------------------------------------------------------ */
/* UNIVERSITY PAGE */
.uni-banner{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    background-image: url(../img/uni-banner.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 50vh;
    padding:9% 10%;
    position: relative;
    z-index: 2;
    }

.uni-banner::before{
    content: "";
    background-size: cover;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #113548bd;
}

.uni-banner-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    margin-top: 10%
}

.uni-banner-content  h1{
    color: var(--bg-color);
    font-weight: 700;
}

.uni-banner-content p{
    color: var(--bg-color);
    font-weight: 500;
}
.uni-text{
    color: var(--light-grey);
    padding: 3% 10%;
    display: flex;
    background-color: #E2E2E2;
    align-items: center
}
.uni-text a{
    color: var(--dark-grey);
    font-size: 15px;
    z-index: 1;
    transition: .3s all ease;
    font-weight:600;
}

.uni-text a:hover{
    color: var(--blue);
}

.uni-text a.active{
    color: var(--blue);
  
}
.uni-body{
    padding: 2% 10%;
}

.uni-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-bar form {
    width: 100%;
    box-shadow: none;
    background-color: var(--blue);
    border-radius: 10px;
}

.search-bar  input{
    background-color: var(--blue);
    color: var(--bg-color);
}

.search-bar button{
    background: url(../img/search2.png);
    background-color: var(--blue);
}

.search-bar input::placeholder{
    color:#6b7280;
}

.card-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1rem;
}

.card{
    display: flex;
    flex-direction:column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: 400px;
    background: #FFFFFF;
    border-radius: 20px;
    transition: all .35s ease;
    text-align: center;
    box-shadow: 20px 20px 20px #0000001a;
}

.card:hover{
    transform: scale(1.04) translateY(-5px);
}


.card-img{
    width: 100%;
    height: 200px;
    position: relative;
}

.card-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.card-img span{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2px;
    background-color: var(--blue);
    width: 60px;
    text-align: center;
    border-radius: 0px 20px 0px 20px;
    font-weight: 600;
}
.card h3{
    color: var(--light-grey);
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
}

.card-container .card a{
    color: var(--text-color);
    background-color: var(--text-color);
    border:2px solid var(--blue);
    padding: 10px;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color:black;
}
/* UNIVERSITY PAGE END */

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------- */

/* HOW TO APPLY PAGE */

.apply{
    position: relative;    
    width: 100%;
    height: 50vh;

}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:50vh;
    background-color: #1135489e;
}

.apply img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}



.apply-container{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: absolute;
    top: 65%;
    left: 50%;
    transform:translate(-50%, -50%);
    width: 100%;
    padding: 10%;
}

.apply-content{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.apply-content p{
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
}
.apply-content h2{
    color: var(--bg-color);
    font-size: 40px;
    font-weight: 700;
}

.apply-content h2 span{
    color:#6a64f1;
    font-weight: 600;
}
.apply-body{
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}
.apply-box-container{
    display: flex;
    flex-direction:column;
    width: 100%;
    gap: 10px;
}

.apply-wrapper{
    display: flex;
    justify-content: flex-start;
}

.apply-wrapper-m{
    display:flex;
    justify-content: center;
}

.apply-box{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: 350px;
    padding: 10px;
    border-radius: 60% 40% 53% 47% / 31% 61% 39% 69% ;
    background-color: var(--bg-color);
}

.apply-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    
}

.apply-card-text{
    display: flex;
    flex-direction: column;
    gap:1rem;
}

.apply-card-text h4{
    font-weight: 600;
    font-size: 18px;
    color: var(--blue);
    text-transform: capitalize;
}

.apply-card-text .details p, .apply-card-text .details span{
    font-weight: 500;
    font-size: 12px;
    color: var(--black)
}

.apply-card-text .details{
    display:flex;
    align-items: center;
   gap: 0.5rem;
}


.apply-card-img{
    width: 150px;
    height: 150px;
}
.apply-card-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.arrow{
   display: flex;
   justify-content: center;
   align-items: center;
    
}

.apply-body .btn{
    color: var(--text-color);
    background-color: #6a64f1;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.apply-body .btn:hover{
    transform: scale(1.1) translateY(5px);
    transition: .4s;
}



/* HOW TO APPLY PAGE END */
/* ----------------------------------------------------------------------------- */
/* VISAS ADVISORY PAGE START */
.visas-body h3{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 30px;
    line-height: 43px;
    position: relative;
    margin-bottom:30px;
}

.visas-body h3::before{
     content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--blue);
}

.visas-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding:5%  0;
    
}

.visas-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}
.visas-img{
    width: 100%;
    height: auto;
}
.visas-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.visas-container p{
    font-size: 0.9rem;
    color: var(--black);
    letter-spacing: 0.5px;
    text-align: left;
}

.visas-container p span{
    font-size: 0.9rem;
    font-weight: 600;
}


/* VISAS ADVISORY PAGE END */
/* ----------------------------------------------------------------------------- */
/* 

/* ----------------------------------------------------------------------------- */
/* ACOMODATION  PAGE START */
.accomodation-body h3{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 30px;
    line-height: 43px;
    position: relative;
    margin-bottom:30px;
}

.accomodation-details{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--dark-grey);
    padding: 10px;
}
.accomodation-details ul{
    line-height: 2;
}
h5{
    font-size: 1rem;
    font-weight: 500;
}
.accomodation-details li{
    font-size: 0.9rem;
}

.accomodation-body h3::before{
     content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--blue);
}

.accomodation-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 3%;
    padding-bottom: 10%;
    
}

.accomodation-text{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.accomodation-img{
    width: 100%;
    height: auto;
}
.accomodation-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.accomodation-container p{
    font-size: 1rem;
    color: var(--black);
    letter-spacing: 0.5px;
    text-align: left;
}

.accomodation-container  p a{
  color: var(--l-blue);
}

.accomodation-container p span{
    font-size: 12px;
    font-weight: 600;
}
.accomodation-body h4{
    color: var(--dark-grey);
    font-size: 20px;
    line-height: 43px;
    position: relative;
}


/* ACCOMODATION PAGE END */
/* ----------------------------------------------------------------------------- */
/* 

/* GET ADVISE PAGE START */
.advise-body h3{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 30px;
    line-height: 43px;
    position: relative;
    margin-bottom:30px;
}

.advise-body h3::before{
     content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--blue);
}

.advise-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding:5%  0;
    
}


.advise-left, .advise-right{
    width: 100%;
    height: auto;
}


.advise-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: #07074d;
    padding: 12px;
  }
  .formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
  }

  .formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 14px;
    color: #6b7280;
    outline: none;
    resize: none;
  }
  .formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

  select{
     width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 14px;
    color: #6b7280;
    outline: none;
    resize: none;
  }
  .formbold-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #6a64f1;
    color: white;
    width: 100%;
    cursor: pointer;
    margin-top: 12px;
    display: block;
  }
  .formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }





/* GET ADVISE END */
/* ----------------------------------------------------------------------------- */
/* 



/* CONTACT US PAGE START */
.contact-body h3{
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 30px;
    line-height: 43px;
    position: relative;
    margin-bottom:30px;
}

.contact-body h3::before{
     content: "";
    position: absolute;
    height: 2px;
    width: 59px;
    left: 0;
    bottom: -20px;
    background: var(--blue);
}

.contact-container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding:5%  0;
    
}


.contact-left, .contact-right{
    width: 100%;
    height: auto;
}


.contact-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.content{
    color: var(--dark-grey);
    display: flex;
    gap: 1rem;
}
.content-text{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}


.content p, .content a{
    color: var(--blue);
    font-size: 1rem;
    font-weight: 500;
}

.icon i {
    padding: 10px;
    color: var(--bg-color);
    background-color: var(--blue);
    border-radius: 50%;
}

/* CONTACT US  END */
/* ----------------------------------------------------------------------------- */
/* 



------------------------------------------------------------------------------- */
  /* large screen size : from 1140px to 1560px */


@media (max-width:1350px){
    header{
        padding: 0 5px;
        transition: .3s;
    }
}

/* small tablet to desktop screen : from 720px to 1140px */
@media (max-width: 1140px) {
    header{
        padding: 0 20px;
        transition: .3s;
    }

   .navbar form{
        width: 260px;
    }
    #menu-icon{
        display: block;
        color: var(--black);
    }
    
  
    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 280px;
        height: 120vh;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        background: var(--bg-color);
        transition:  all .45s ease;
    }

   

    header .navbar.active{
        left: 0;
        background-color: var(--bg-color);
        padding: 10px;

    }

 

  

    .navbar li{
        width: 100%;
    }

   .navbar .dropdown {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 7px;
    color: var(--black);
    gap: 2px;
    font-size: 10px;
   }

    .dropdown {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        width:100%;
    
      }
      .dropdown-content {
        display: none;
        position: static;
        width: 100%;
        height: 150px;
        overflow-y: auto;
      }

      .dropdown-content::-webkit-scrollbar{
        display: none;
      }
     
    .advise-btn{
        width: 100%;
    }
   
    .main{
        align-items: center;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 10%;
        height: 90vh;
    }
    
    
.visas-container, .accomodation-container, .advise-container{
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding:5%  0;
    
}

.flip{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding:5%  0;
}

    .col{
        width: 50%;
        
    }

    .container{
        flex-wrap: wrap;
    }

}
/* small phone screen to small tablet : from 575px to 720 */
@media (max-width:720px) {
    header{
        padding: 0 5px;
        transition: .3s;
        /* height: 80px; */
    }
  


    .main{
        align-items: center;
    }
    
    .site-content{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    }

    .site-content span{
        font-size: 40px;
    }
    
    h1{
        font-size: 40px;
    }
    
    h2{
        font-size: 40px;
    }

    .site-content p{
        font-size: 12px
    }
    
    .main-btn{
        text-align: center;
        font-size: 13px;
        padding: 15px 20px;
        width: 150px;
    }

    .testimonial-body{
        margin-top: 30%;
        margin-bottom:20px;
    }
    
      
      .swiper-button-next::after,
      .swiper-button-prev::after{
        display: none;
        
      }

 
      .apply-box{
        height: 450px;
        width: 100%;
        border-radius: 30px;
      }


      .apply-card{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        width: 300px;
        gap: 1rem;
        
    }
    
    .apply-card-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    }

     .apply-content h2{
        font-size: 2rem;
    }
}
/* small phone screen : from 0 to 575px */
@media (max-width: 575px) {
    /* header{
        height: 80px;
    } */

    .logo{
        width: 80px;
        height:80px;
    }
    .logo img{
        width: 80px;
        height: auto
    }
    .main{
        padding: 0;

    }
    .site-content{
        display:flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .site-content span{
        font-size: 30px;
    }
    
    h1{
        font-size: 30px;
    }
    
    h2{
        font-size: 30px;
    }
    
    .site-content p{
        font-size: 10px
    }

    .main-btn{
        text-align: center;
        font-size: 10px;
        padding: 15px 10px;
    }

    .home h2, .testimonial h2, .university h2{
        font-size:16px;
    }

    .slide p {
        font-size: 12px;
    }
    .col{
        width: 100%;
    }

    .uni-banner-content {
        margin-top: 30%;
    }

    .uni-banner-content p {
        font-size: 10px;

    }

    .uni-text a{
        font-size: 9px;
    }

    
.visas-body h3, .accomodation-body h3, .advise-body h3, .contact-body h3{
    font-size: 20px;
}
.visas-container p,.visas-container p span, .accomodation-container p{
    font-size: 0.7rem;
}

.accomodation-details li {
    font-size: 0.6rem;
}

    .apply-content h2{
        font-size: 1.2rem;
    }

    .apply-content p{
            font-size: 10px;
    }

    .content p, .content a{
      
        font-size: 0.65rem;
       
    }
}


