
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  /* background-color: var(--palette-2-lavender-blush); */
  /* background-color: #ede0d4; */
  height: 300vh;
  font-family:  "Poppins", Arial, sans-serif;
}

/* 
/*-----------------------------------*\
   TOP BAR
  \*-----------------------------------*/

/*.topbar .top-info {
  letter-spacing: 1px;
}*/

.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
}

#note {
  width: 500px;
  overflow: hidden;
}

#note small {
  position: relative;
  display: inline-block;
  animation: mymove 10s infinite;
  animation-timing-function: all;
}

@keyframes mymove {
  from {left: -100%;}
  to {left: 100%;}
}

/*-----------------------------------*\
   NAV BAR
  \*-----------------------------------*/

  .navbar{
    background-color: #03045e;
  }
  .navbar-brand {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
  }
  
  .navbar-nav .nav-item:hover {
    background-color: rgba(19, 108, 224, 0.4);
  }
  
  .navbar-custom .dropdown-item {
    color: #03045e;
  }
  
  .navbar-custom .dropdown-item:hover,
  .navbar-custom .dropdown-item:focus {
    background-color:#caf0f8;
    font-weight: 700;
  }
  .company {
    font-size:28px;
  }
    
  .dropdown-menu .dropdown-submenu {
    display: none;
    /* position: absolute; */
    left: 100%;
    top: -7px;
    } 
    .dropdown-menu .dropdown-submenu-left {
   right: 100%;
    left: auto;
    }
    .dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
    }

  /*-----------------------------------*\
   CAROUSEL
  \*-----------------------------------*/

/* .carousel-item img{
    width: 100%;
    height: 85vh;
    opacity: 1;
} */

.carousel-item {
  transition: transform 1s ease-in-out;
}

.carousel-caption {
  top: 48%;
  transform: translate(0, -50%);
  bottom: auto;
  left: 0;
  right: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  text-align: left;
}

.carousel-item.active .carousel-caption {
  animation: widthSlide 5s 1;
  opacity: 1;
  z-index: 999;
  width: 100%;
}

@keyframes widthSlide {
  0% {
    width: 0%;
    opacity: 0;
  }

  50% {
    width: 100%;
    opacity: 1;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

.carousel-caption h5 {
  font-size: 45px;
  /* text-transform: uppercase; */
  font-weight: 600;
  /* -webkit-text-stroke: 2px #E2FADB; */
  color: white;
  position: relative;
  width: fit-content;
  padding-right: 10px;
}

.carousel-caption h5:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  bottom: -20px;
  opacity: 1;
}

.carousel-item.active .carousel-caption h5:after {
  width: 10%;
  height: 4px;
  /* animation: titleCover 2.5s 1; */
  opacity: 0;
}

/* @keyframes titleCover {
  0% {
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
    opacity: 1;
 }
20% {
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
    opacity: 1;
 }
30% {
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
     opacity: 1;
 }
 55% {
     left: 0;
     right: 0;
     width: 100%;
     height: 5px;
     opacity: 1;
 }
95% {
     left: 0;
     right: 0;
     width: 10%;
 }
  100% {
     left: 0;
     right: 0;
     width: 10%;
     opacity: 0.5;
 }
} */
.carousel-item>img {
  height: 75vh;
  object-fit: cover;
  transform: scale(1);
}

.carousel-item.active>img {
  transform: scale(4);
  animation: bgScale 200s 1;
}

@keyframes bgScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(4);
  }
}

.carousel-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 40%);
  z-index: 99;
}

.carousel-caption p {
  font-size: 1.35em;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.carousel-caption * {
  white-space: nowrap;
}

.carousel-indicators {
  right: 10px;
  left: auto;
  margin: 0;
  width: 25px;
  flex-wrap: wrap;
  bottom: auto;
  top: 45%;
  transform: translate(0, -50%);
  gap: 10px;
  z-index: 9999;
}

.carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  border: none;
}




  /*-----------------------------------*\
   ABOUT US
  \*-----------------------------------*/
/* .col-lg-5 img {
  border: 5px solid #f8f8f8;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  height: 500px;
} */

#about-us-text {
  text-align: justify;
  font-size: 15px;
}

#aboutimageone{
  border: 5px solid #f8f8f8;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  height: 500px;
}

#aboutimagetwo{
  border: 5px solid #f8f8f8;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  height: 500px;
}

/*-----------------------------------*\
   About US MOBILE RESPSONSIVE
  \*-----------------------------------*/

@media screen and (max-width: 768px) {
  .col-lg-5 img {
    height: 300px;
  }
}

/*-----------------------------------*\
   SERVICES
  \*-----------------------------------*/
/*-----------------------------------*\
  SERVICE SECTION
  \*-----------------------------------*/

  .service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
    background-color:#f5ebe0;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, rgba(255,255,255,1) 30%, rgba(187,208,255,1) 100%);
}

.service-item:hover {
  -ms-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  transform: scale(1.1); 
}

/*-----------------------------------*\
   Assistance tag
  \*-----------------------------------*/

.ad-intro {
  position: relative;
  padding: 8em 0;
  z-index: 0; }

  .ad-intro:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: 0.2;
    background:#caf0f8;
    background: #184e77;
    background: -moz-linear-gradient(45deg, #caf0f8 0%, #184e77 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #caf0f8), color-stop(100%, #184e77));
    background: -webkit-linear-gradient(45deg, #caf0f8 0%, #184e77 100%);
    background: -o-linear-gradient(45deg, #caf0f8 0%, #184e77 100%);
    background: -ms-linear-gradient(45deg, #caf0f8 0%, #184e77 100%);
    background: linear-gradient(45deg, #caf0f8 0%, #184e77 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#caf0f8', endColorstr='#184e77', GradientType=1 ); }

  /* .ftco-intro .btn {
    width: 80%; 
    background-color: #03045e;
    color: white;
    border-radius: 20px;
    font-weight: 500;
  }

  .ftco-intro h3 {
    color:black;
    position: relative;
    display: inline-block;
    animation: ftcointro 8s infinite;
    animation-timing-function: all;
    font-size: 25px;
  } */

  /* @keyframes ftcointro {
    from {left: -100%;}
    to {left: 30%;}
  }  */

  .content {

    background: linear-gradient(270deg, rgba(3,4,94,1) 30%, rgba(2,62,138,1) 50%);
    border-radius:15px;
    box-shadow:0 0 20px white;
    box-sizing:border-box;
    text-align:center;
    left:50%;
    top:25%;
    padding:10vmin;
    /* transform:translate(-50%,-50%);  */
  }
  
  @media screen and (max-width: 885px) {
  
    .content {
      left:50%;
      padding:10vmin;
      top:28%;
      width:600px;
    }
  .content h3{
  font-size: 25px;
  }
  
  .content h5{
    font-size: 18px;
    }
  
  }
  @media screen and (max-width: 650px) {
  
    .content {
      padding:10vmin;
      top:28%;
      height: 275px;
      width:500px;
    }
  .content h3{
  font-size: 22px;
  }
  
  .content h5{
    font-size: 15px;
    }
  
  }
  
  @media screen and (max-width: 540px) {
    
    .content {
      padding:10vmin;
      width:350px;
      height: 255px;
    }
  .content h3{
  font-size: 20px;
  }
  
  .content h5{
    font-size: 15px;
    }
  
  }
  
  @media screen and (max-width: 376px) {
    
    .content {
      padding:10vmin;
      width:275px;
      height: 200px;
    }
  .content h3{
  font-size: 18px;
  }
  
  .content h5{
    font-size: 12px;
    }

  }
  
/*-----------------------------------*\
   Support Section
  \*-----------------------------------*/
.support-team{
  background: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(245,202,195,1) 45%, rgba(187,208,255,1) 100%);
  box-shadow:5px 5px 20px #5e548e;
}
.contactusbtn{
  background-color: #03045e;
  margin-left:38%;
  border-radius: 15px;
}

/*-----------------------------------*\
   Testimonial Section
  \*-----------------------------------*/

.testimonial{
  background: linear-gradient(90deg, rgba(3,4,94,1) 30%, rgba(2,62,138,1) 50%);
  padding: 30px 32px 30px 90px;
  margin: 50px 20px 50px 120px;
  border-radius: 0 100px 100px 0;
  color: #fff;
  position: relative;
  border: 5px solid #fec89a;
  /* border: 5px solid #D0AB6D; */
}
.testimonial .pic{
  width: 210px;
  height: 210px;
  line-height: 200px;
  border-radius: 50%;
  border: 14px solid #fec89a;
  position: absolute;
  top: -15px;
  left: -120px;
  overflow: hidden;
}
.testimonial .pic img{
  width: 100%;
  height: 100%;
}
.testimonial .testimonial-info{
  display: inline-block;
  width: 35%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 28px 25px;
  margin: 0;
  border-right: 1px solid #fec89a;
}
.testimonial .testimonial-info small{
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}
.testimonial .description{
  display: inline-block;
  width: 65%;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 28px 0 28px 28px;
  position: relative;
}
.testimonial .description:before{
  content: "\f10d";
  font-family: fontawesome;
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
  color: #fec89a;
}
.testimonial .description:after{
  content: "\f10e";
  font-family: fontawesome;
  font-size: 20px;
  color: #fec89a;
  position: absolute;
  bottom: 5px;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page span{
  width: 25px !important;
  height: 7px !important;
  background: #001a3d !important;
  box-sizing: content-box;
}
.owl-theme .owl-controls .owl-page span{
  border: 4px solid transparent;
  background: #415a77 !important;
}
@media only screen and (max-width: 767px){
  .testimonial{
      border-radius: 40px;
      margin: 90px 15px 0;
      padding: 100px 40px 30px 40px;
  }
  .testimonial .pic{
      position: absolute;
      top: -85px;
      left: 0;
      right: 0;
      margin: 0 auto;
  }
  .testimonial .testimonial-info{
      width: 100%;
      float: none;
      border-right: none;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .testimonial .description{
      width: 100%;
  }
}
@media only screen and (max-width: 480px){
  .testimonial{ padding: 100px 30px 30px; }
}

/*-----------------------------------*\
  FOOTER DISCLAIMER SECTION
  \*-----------------------------------*/

 .footer-disclaimer {
            background-color: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #0d6efd;
            color: #e9ecef;
        }
        .footer-disclaimer p {
            margin: 0.25rem 0 0.5rem 0;
            line-height: 1.4;
            font-size: 0.95rem;
        }
        .footer-disclaimer strong {
            display: block;
            margin-bottom: 0.25rem;
            color: #ffffff;
        }
        .footer-disclaimer small {
            color: #adb5bd;
        }
/*-----------------------------------*\
  FOOTER SECTION
  \*-----------------------------------*/
  .footer{
    background-color: #000814;
  }

/*-----------------------------------*\
  MOBILE RESPONSIVE
  \*-----------------------------------*/
  
  @media screen and (max-width: 992px) {
  
    .carousel-item img {
      height: 70vh;
    }
    .carousel-caption h5 {
      font-size: 35px;
    }
   
  }
  
  @media only screen and (max-width: 769px){
    .carousel-item img {
      height: 70vh;
    }
    .carousel-caption h5 {
      font-size: 30px;
      margin-left: 20px;
    }
    .carousel-caption p {
      margin-left: 20px;
    }

    .banner-btn .btn{
      /* background-color: red; */
      margin-left: 20px;
      width:25%;
    }

    .carousel-indicators {
      right: 0;
      bottom: 0;
      left: 0;
      padding: 0;
      margin-right: 15%;
      margin-bottom: 1rem;
      margin-left: 15%;
      flex-wrap: nowrap;
      top: auto;
      transform: unset;
      width: auto;
      gap: 5px;
    }
  
    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
    }
  
    .carousel-item.active .carousel-caption {
      animation: sample 2.5s 1;
      opacity: 1;
    }
  
    .carousel-caption * {
      white-space: unset;
    }
  
    @keyframes sample {
      0% {
        opacity: 0;
      }
  
      50% {
        opacity: 1;
      }
  
      100% {
        opacity: 1;
      }
    }
  
    hr.border-light {
      max-width: 500px;
    }
  
  }
  
  
  @media only screen and (max-width: 670px){
    .carousel-item img {
      height: 60vh;
    }
    .carousel-caption h5 {
      font-size: 25px;
 
    }

    .carousel-caption p {
      font-size: 20px;
 
    }

    hr.border-light {
      max-width: 500px;
    }

    .contactusbtn{
     
      margin-left:32%;
    
    }

  
  }
  
    
  @media only screen and (max-width: 541px){
    .carousel-item img {
      height: 50vh;
    }
    .carousel-caption h5 {
      font-size: 22px;
 
    }

    .carousel-caption p {
      font-size: 15px;
 
    }

    hr.border-light {
      max-width: 400px;
    }
    .company {
      font-size:25px;
    }
 
  
  }

  @media only screen and (max-width: 442px){

  .company {
    font-size: 20px;
  }
    .carousel-item img {
      height: 40vh;
    }
    .carousel-caption h5 {
      font-size: 18px;
 
    }

    .carousel-caption p {
      font-size: 12px;
 
    }

    hr.border-light {
      max-width: 375px;
    }

    .banner-btn .btn{
      display: none;
    }

    
    #aboutimageone{
      height: 300px;
    }

    #aboutimagetwo{
      height: 300px;
    }
    .contactusbtn{
      margin-left:28%;
    }
  }
  
  @media only screen and (max-width: 390px){
    .contactusbtn{
      margin-left:20%;
    }

    .support-text{
      font-size: 15px;
    }
    .company {
      font-size:16px;
    }
    .servicetext{
      font-size: 14px;
    }
  
  }
   
  