/* mobile*/
@media only screen and (min-width: 350px) and (max-width: 501px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
  }
  .navbar.show .menu-list{
    left: 0%;
  }
  .navbar .menu-list li{
    margin-top: 45px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a{
    margin-left: 1px;
  }

.navbar.sticky img{
  width: 70px;
  height: 75px;
}

.logo img{
  margin-left: 0px;
  margin-top: 1px;
}

.nav-section{
  width: 100%;
  height: 100px;
}
.section1{
  width: 100%;
  height: 100%;
}

#section1-header{
  position: absolute;
  margin-top: 45%;
  margin-left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  font-size: 3.5rem;
  font-family: sans-serif;
  color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}

.section2{
  width: 100%;
  height: 100%;
}

.section2-top{
  width: 100%;
  height: 500px;
  margin-top: 10%;
  margin-left: 0%;
      background-size: cover;
    background-repeat: no-repeat;
}

.section2-top-box{
  width: 80px;
  height: 80px;
  margin-left: 8%;
  background-color: #fc9206;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.section2-top-box h1{
  position: relative;
  padding-top: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.section2-top-box h2{
  padding-top: 0px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.section2-mid{
  width: 100%;
  max-height: 100%;
  display: flex;
}
.section2-mid-box{
  width: 90px;
  height: 90px;
  background-color: #081467;
  border-radius: 8px;
  margin-top: 5%;
  margin-left: 0%;
}

.section2-mid-box h1{
  position: relative;
  color: white;
  font-size: 75px;
  text-align: center;
  font-family: sans-serif;
}

.section2-mid p{
  font-size: 18px;
  position: relative;
  width: 98%;
  margin-top: 4.5%;
  margin-left: 2%;
  line-height: 32px;
}
.section2-end{
  margin-top: 5%;
  width: 99%;
  margin-left: 1%;
}

.section2-end h1{
  margin-top: 3%;
  font-size: 18px;
  font-weight: normal;
}

.section2-end p{
  font-size: 18px;
  margin-top: 1%;
}

.section2-end img{
  width: 100%;
  height: auto;
  margin-top: 3%;
}

.section3{
  width: 100%;
  height: 100%;
  margin-top: 35%;
  margin-left: 0%;
}

.section3{
  color: #081467;
}

.section3-cont{
  width: 100%;
  margin-top: 2%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
}

.section3-card{
  width: 100%;
  height: 100%;
}

.section3-card img{
  width: 100%;
  height: 300px;
}
.section3-card span{
  display: flex;
  margin-top: 1%;
}
.section3-card span .fa-calendar-days{
  color: #5f5d5e;
  font-size: 18px;
  margin-top: 0.5%;
}
.section3-card span h2{
  font-size: 18px;
  font-weight: 600;
  margin-left: 1.5%;
  width: 100%;
  color: #fc9306;
}

.section3-card h3{
  color: #081468;
  margin-top: 0.5%;
}

.section3-card p{
  margin-top: 1%;
  color: black;
}

.section3-card a{
  display: inline-block;
  text-decoration: none;
  position: absolute;
  margin-top: 1%;
  margin-left: 0.5%;
  color: black;
  font-size: 18px;
  font-weight: 500;
  color: #081468;
}

.section3-card a .fa-arrow-right{
  font-size: 16px;
}

.section3-card a:hover{
  color: #fc9306;
}

.section3-card a::after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fc9306;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.section3-card a:hover::after{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.section3-blank{
  width: 100%;
  height: 150px;
}

.footer{
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
}


.footer-cont{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:10px;
  width: 100%;
  margin-top: 0%;
  margin-left: 0%;
}

.footer-sec{
  width: 100%;
  height: 100%;
}
}