@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    font-family: "Poppins" , sans-serif;
}


body {
  margin: 0;
  overflow-x: hidden;
  background-image: var(--background-img);
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover; 
  background-repeat: no-repeat;
}
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/*-----------PreLoader-----------*/
#preloader{
  background: #000000 url("../Image/loader1.gif") no-repeat center center;
  background-size: 205%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}


/*------------------Header--------------------*/

.header{
    min-height: 85px;
    width: 100%;
    /* background-image: linear-gradient(rgb(255 255 255 / 10%),rgb(255 255 255 / 10%)); */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo{
    height: auto;
  }
  
  nav img{
    width: 190px;
    padding-left: 15px;
  }
  nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    padding: 1% 1%;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .nav-links{
    flex: 1;
    text-align: right;
    padding-top: 16px;
  }
  .nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  }
  .nav-links ul li a{
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
  }
  .nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: rgba(30, 231, 238, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
  }
  .nav-links ul li:hover::after{
    width: 100%;
  }
  
  /* Highlight the Gallery link */

#gallery-link {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(153deg, rgba(255,0,0,1) 0%, rgba(47,71,223,1) 50%, rgba(0,212,255,1) 100%);  /* Highlight color */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
  
  @media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
  }
  
  @media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
  }
  
  nav .fa{
    display: none;
  }
  
  @media(max-width: 700px){
    .text-box h1{
        font-size: 34px;
    }
    .nav-links ul li a{
      color: #0e0e0e;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
      position: absolute;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
      background: rgba(193, 187, 187, 0.3);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8.4px);
      -webkit-backdrop-filter: blur(8.4px);
      border: 1px solid rgba(193, 187, 187, 0.3);

    }
    nav .fa{
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 35px;
        text-align: right;
    }
  }

/* toggle switch  */
#icon{
  width: 45px;
  height: auto;
  cursor: pointer;
  text-align: center;
  padding: 0px 0px 0px 10px;
  margin-bottom: -10px;
}

:root{
  --primary-color: #edfcfc;
  --secondary-color: #212121;
  --background-img: none;
  --review-bg: none;  /*for review bg*/
}
.dark-theme{
  --primary-color: #212121;
  --secondary-color: #edfcfc;
  --background-img: url('../Image/bg1-B.jpg');
  --review-bg: #2828289e; /*for review bg*/
}
/*------------Theme color Switching---------------*/
.serives h1, .title h1, .testimonials h1 {
  color: var(--secondary-color);
}
p, h3{
  color: var(--secondary-color);
}


/*-------------About Us---------------*/

.home-btn{
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  color: var(--secondary-color);
}

.home-btn a{
  text-decoration: none;
  color: #31a3d8;
}


.section{
    width: 100%;
    min-height: 60vh;
}
.section2{
    width: 100%;
    min-height: 70vh;
}
.container{
    width: 90%;
    display: block;
    margin: auto;
    padding-top: 30px;

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

.image-section{
    float: right;
    width: 44%;
}


#box-img{
  height:285px;
  width: auto;
}
#box-img1{
  height: 280px;
  width: auto;
  margin-top: 55px;
  margin-left: 12px;
}
 

.content-section .content p{
  margin-top: 10px;
  margin-bottom: 25px;
  font-family: sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--secondary-color);
  text-align: justify;
  width: 53%;
}
.content-section .content h2{
  color: #38b6ff;
  font-size: 45px;
}
.button *{
  border: 1px solid rgba(0, 0, 0, 0.7);
  text-decoration: none;
  color: #000000;
  padding: 15px 36px;
  border-radius: 60px;
  font-size: 18px;    
}
.button a:hover{
  border: #31a3d8;
  background-color: #31a3d8;
  color: #fff;
}
/*------Mission & Vision----*/
.container2 h2{
  color: #205088;
  font-size: 26px;
}

.container2 p{
  font-size: 15px;
}

.box1{
    width: 480px;
    height: 220px;
    background: radial-gradient(circle at top left,transparent 340px, rgba(255,255,255, .3)),
    radial-gradient(circle at bottom right, transparent 340px, rgba(255,255,255, .3));
    margin: 77px;
    padding: 20px;
    color: hwb(0 0% 100%);
    text-align: center;
    transition: .3s ease-in-out;
    position: bottom;
    margin-left: -530px;
    margin-top: 130px;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.3);
    border-radius: 20px;
}   
.box2{
  width: 480px;
  height: 220px;
  background: radial-gradient(circle at top left,transparent 340px, rgba(255,255,255, .3)),
  radial-gradient(circle at bottom right, transparent 340px, rgba(255,255,255, .3));
  margin: 77px;
  padding: 20px;
  color: hwb(0 0% 100%);
  text-align: center;
  transition: .3s ease-in-out;
  position: bottom;
  margin-left: 670px;  
  margin-top: -297px; 
  box-shadow: -15px 15px 30px rgba(0,0,0,0.3);
  border-radius: 20px;
}
.box3{
  box-shadow: -15px 15px 30px rgba(0, 0, 0, );
  border-radius: 15px;
  border: 1px solid rgba(30, 231, 238, 0.7);
  padding: 20px 30px 30px 30px;
  text-align: justify;
  position: relative;
  box-shadow: -15px 15px 30px rgba(0,0,0,0.3);

  border-radius: 20px;
}

/*------- process-------*/
.process-details{
    width: 100px;
    height: 100px;
    border: 0px solid rgba(30, 231, 238, 0.7);
    border-radius: 50%;
    padding: 18px;
    float: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  
  .title h1{
    font-size: 35px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 7px;
    color: #38b6ff;
  }
  
  .pro-name{
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
    padding-top: 28px;
  }
  
  .border-pro{
    border: 2px solid rgba(30, 231, 238, 0.7);
    /*  border-radius: 5px;  */
    left: 100px;
    top: 10px;
    width: 120px;
    position: relative;
  }
  
  
  .process-details img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    margin: 0 8px;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  
  
  .process-details:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    background-color: rgba(30, 231, 238, 0.7);
    z-index: -1;
  }
  
  .process-details:hover img {
    filter: grayscale(100%);
  }
  
  
  .details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
    padding: 20px;
    padding-top: 40px;
    padding-left: 10%;
    padding-right: 10%;
  }
  .details-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
    padding: 20px;
    padding-left: 9%;
    padding-right: 8%;
    padding-top: 35px;
  }
  
  .por{
    padding: 0px;
    font-size: 10px;
    text-align: center;
    border: 0px solid rgba(30, 231, 238, 0.7);
    border-radius: 20px;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.3);
    padding-bottom: 10px;
    padding-right: 44px;
  }
  
  .por_2 {
    margin: 20px;
    text-align: justify;
  }
.por:hover{
    background-color: rgba(25, 255, 280, .2);
}




/*----- why choose us------*/

.section3{
    width: 98%;
}

.container3{
    width: 90%;
    display: block;
    margin: auto;
    padding-top: 30px;
}

.content-section3 {
  height: 63vh;
}

.image-section3 img{
  float: left;
  margin: 0px 15px 15px 0px;
  width: 100;
}

ul.a {
  list-style-position: outside;
  color: black;
  padding: 10px 20px 0px 30px;
}

.text-choose{
  float: right;
  width: 53.5%;
  padding-top: 10px;
}

.box4 p{
    margin-top: 10px; /*
    margin-bottom: 25px; */
    font-family: "Poppins" , sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color:var(--secondary-color);
    text-align: justify;   
}
.box4 p{
  font-size: 16px;
}

.box4 .points{
  font-size: 16px;
  line-height: 1.4;
  color: var(--secondary-color);
}

.box4 h2{
    color: #38b6ff;
    font-size: 30px;
    text-align: center;
}
.box4{
  box-shadow: -15px 15px 30px rgba(0, 0, 0, );
  border-radius: 15px;
  border: 1px solid rgb(30 96 238 / 70%);
  padding: 30px;
  margin: 0px 20px 0px 60px;
  text-align: justify;
  position: relative;
  box-shadow: -15px 15px 30px rgba(0,0,0,0.3);
  height: 75vh;
}
/*----------------our accureditation-------------------*/ 

 .title4 h1{
    font-size: 35px;
    text-align: center;
   margin-top: 100px;
   margin-bottom: 20px;
   color: #38b6ff;
}

 .section4{
    width: 100%;
}

.container4{
    width: 90%;
    display: block;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 70px;
} 

.image-section4 img{
  width: 35%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*---------auto scroll------------*/
.scroller {
  max-width: 100%;
}

.scroller__inner {
  padding-block: 4rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 9rem;
  /* filter: grayscale(100%); */
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  height: 35vh;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}


/*---------------Footer-----------------*/

footer{
  background: #000000;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 0px;
}
footer::before{
  content: '';
    /*  position:absolute;   */
  left: 0;
  top: 2410px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .content{
  max-width: 1490px;
  margin: auto;
  padding: 10px 0px 5px 0px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;

}

.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #000000;
}
.top .media-icons a:nth-child(1):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #000000;
}
.top .media-icons a:nth-child(2):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #000000;
}
.top .media-icons a:nth-child(3):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #000000;
}
.top .media-icons a:nth-child(4):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #000000;
}
.top .media-icons a:nth-child(5):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(6){
  background: #000000;
}
.top .media-icons a:nth-child(6):hover{
  color: #000000;
  background: #fff;
}
.top .media-icons a:nth-child(7){
  background: #000000;
}
.top .media-icons a:nth-child(7):hover{
  color: #000000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #a4aeb1;;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
  
}
.content .link-boxes .box li a::after{
  content: "";
  position: absolute;
  background-color: #31a3d8;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
}
.hover-footer{
  display: inline-block;
  padding-bottom: 0.25rem;
}

.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #000000;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #000000;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #000000;
}
footer .bottom-details .bottom_text{
  max-width: 1500px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #e5eced;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){

  footer{
    position: relative;
    padding: 10px;
  }


.content .link-boxes .box li a{
  color: #77c7db;
} 
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
    padding: 20px;
  }
  footer .content .link-boxes .input-box{
    width: 70%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}

.content img {
  height: 70px;
  width: 180px;
  align-content:stretch;   
}



#preloader{
  background: #000000 url(../Image/loader1.gif) no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}


/*------Scoial Media Links----*/
.icon-bar {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 10;
}

.icon-bar a {
	text-decoration: none;
	width: 210px;
	/*  background: #3b5999; */
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px;
  padding-right: 7px;
  font-size: 16px;
	transform: translateX(-170px);
	-webkit-transform: translateX(-170px);
	-ms-transform: translateX(-170px);
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
}

.facebook {
	background: #3b5998;
}

.twitter {
	background: #00aced;
}

.instagram {
	background: #e4405f;
}

.youtube {
	background: #cd201f;
}

.linkedin {
	background: #0077B5;
}


.icon-bar a i {
	padding-left: 20px;
	font-size: 30px !important;
	animation: letszoom 3s linear alternate-reverse infinite;
}

@keyframes letszoom {
	from {
		transform: scale(0.8);
	}

	to {
		transform: scale(1);
	}

}

a:hover {
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
}






/*Responsive For mobile*/
@media screen and (max-width: 900px) {
  .icon-bar{
    display: none;
  }
}

@media screen and (max-width: 720px) { 
  .section2 {
    min-height: 60vh;
  }
}


@media screen and (max-width: 768px) {
  .icon-bar{
    display: none;
  }
.home-btn {
  text-decoration: none;
  text-align: center;
  font-size: 25px;
}
  .container{
    width: 90%;
    display: block;
    margin: auto;
    padding-top: 50px;
  }
  .content-section{
      float: none;
      width:100%;
      display: block;
      margin: auto;
  
  }
  .image-section{
      float: none;
      width:55%;
      display: block;
      margin: auto;
  
  }
  .section .title{
      text-align: center;
      font-size: 19px;
  
  }
  .content-section .button{
      text-align: center;
  
  }
  .content-section .button *{
      padding: 9px 30px;
  }
.image-section{
  float: none;
  width: 100%;
}
  #box-img {
    height: auto;
    width: 81vh;
}
.box4{
  height: 150vh;
}
.content-section .content p {
  width: 100%;
  font-family: "Poppins" , sans-serif;
}
.details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 55px;
  padding: 20px;
  padding-top: 35px;
  padding-left: 5%;
  padding-right: 5%;
}
.process-details {
  width: 100px;
  height: 100px;
  border: 0px solid rgba(30, 231, 238, 0.7);
  border-radius: 50%;
  padding: 18px;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  top: 5px;
}
.pro-name {
  font-size: 22px;
  font-weight: 500;
  padding-top: 32px;
}
.box1 {
  width: 480px;
  height: auto;
  left: 52%;
  position: relative;
}
.box2 {
  width: 480px;
  height: auto;
  margin: 50px;
}
.text-choose {
  text-align: justify;
  float: none;
  width: auto;
}
#box-img1 {
  height: 42vh;
  width: auto;
}


.title h1 {
  font-size: 45px;
}
.container2 h2 {
  font-size: 45px;  
}
.box4 h2 {
  font-size: 45px;
}
.title4 h1 {
  font-size: 45px;
  margin-top: 0px;
}


.section4 {
  padding-bottom: 50px;
  min-height: auto;
}
}

@media (max-width: 550px) {


  .aos-animate {

    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;

    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;

    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }



.process {
  padding-bottom: 60px;
  padding-left: 30px;
}

.home-btn {
  font-size: 18px;
}
.content-section .content h2 {
  font-size: 25px;
}
#box-img {
  height: auto;
  width: 295px;
}
.content-section .content p {
  font-size: 15px;
}
.container {
  padding-top: 20px;
  padding-left: 20px;
}
.box3 {
  padding-top: 10px;
  border-radius: 16px;
  padding-bottom: 10px;
}
.button a {
  padding: 8px 25px;
  font-size: 15px;
}
.title h1 {
  font-size: 25px;
  margin-top: 40px;
}
.details {
  display: flex;
  flex-direction: column;
}
.container2 {
  /* top: 0px;
  width: 100%;
  display: flex;
  flex-wrap: wrap; */
  flex-direction: column;
  /* left: 2px; */
  /* padding-right: 0px; */
  align-items: flex-start;
  justify-content: flex-start;
  align-content: center;

}
.box1 {
  width: 360px;
  left: 86%;
  border: 1px solid #44e9ff;
  border-radius: 10px;
  height: auto;
}
.container2 h2 {
  font-size: 30px;
}
.box1 p,
.box2 p {
  font-size: 13px;
  text-align: justify;
}
.box2 {
  width: 360px;
  /* left: 8px; */
  position: relative;
  margin-top: 10px;
  border: 1px solid #44e9ff;
  border-radius: 10px;
}
.section2 {
  width: 100%;
  top: -50px;
  position: relative;
}
.container3 {
  margin-left: 40px;
  width: 87%;
}
.box4 {
  border-radius: 20px;
  height: 122vh;
  margin-left: 30px;
}
.box4 h2 {
  font-size: 30px;
}
#box-img1 {
  height: auto;
  width: 275px;
  margin: 25px 0px 0px 0px;
}
.box4 p {
  font-size: 13px;
}
.box4 .points {
  font-size: 13px;
}
.container4 {
  padding-top: 0px;
}
.section3{
  padding-bottom: 20px;
}
.title4 h1 {
  font-size: 30px;
}
.image-section4 img {
  width: 80%;
  padding-top: 20px;
}



.section4 {
    padding-bottom: 50px;
    min-height: auto;
    padding-top: 45px;
}
footer .content {
  max-width: 1490px;
  padding: 10px 0px 5px 30px;
}
}

@media (max-width: 720px){
 #box-img{
  width: 36.5vh;
 }
}

/* @media (max-width: 520px){
  #box-img{
    width: 45vh;
  }
} */

@media (max-width: 385px){
  #box-mig{
    width:39vh;
  }
  .box1{
    margin-left: 0px;
    left: 10%;
    width: 330px;
  }
  .box2{
    width: 330px;
  }
  .box4{
    height: 130vh;
  }
}