@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

p{
  margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar{
  background-color: #fff;
  
}

.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
  }


.navbar-brand{
    display: block;
    width:120px;
}

.logo-img{
    width: 100%;
}
  .call-container ,.call-parent-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-area-container{
    display: flex;
    align-items: center;
    justify-content: center;
  }

.divider{
    width: 1px;
    height: 40px;
    background-color:rgba(207, 201, 201,.4);
}

.left-yellow-border{
  border-left: 4px solid #e5b20a;
    padding-left: 5px;
}

.icon-area{
    font-size: 37px;
    margin-right: 18px;
    color:#E5B20A;
}

.call-info-container h3{
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    margin: 0;
    color:#223645;
}

.call-info-container p{
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
    text-align: left;
    margin: 0;
    color: #E5B20A;
}

.menu-area-container ul{
    position: relative;
}

.menu-area-container li{
     padding:30px 10px;
     position: relative;
    display: inline-block;
}

.menu-area-container li a{
   
    position: relative;
    font-weight: 800;
    display: flex;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    align-items: center;
    justify-content: start;
    gap: 20px;
}



.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color:#E5B20A;
}

.nav-link:hover {
    color:#E5B20A;
}


.about-para {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em; /* Adjust based on your font-size */
  max-height: 6.5em;  /* 3 * line-height */
  text-align: justify;
  font-size: 14px;
}

.main-content p{
  color: #fff;
}

/* font faimily style */

.amiri-regular {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
}

.amiri-bold {
  font-family: "Amiri", serif;
  font-weight: 700;
  font-style: normal;
}

.amiri-regular-italic {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: italic;
}

.amiri-bold-italic {
  font-family: "Amiri", serif;
  font-weight: 700;
  font-style: italic;
}


/* end font faimly */


/* styling dropdown */

.scrollable{
  height: 70vh !important;
  overflow-y: scroll !important;
}
.dropdown {
    perspective: 1000px;
    z-index: 100;
  }
  .dropdown:hover {
    cursor: pointer;
  }

  .dropdown:hover .dropdown_menu li {
    display: block;
  }
  .dropdown_menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    min-width: 250px;
    perspective: 1000px;
    z-index: -1;
    padding-left: 0;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
    padding: 12px;
  }

  .menu-item {
    list-style: none; /* Removes default list styling */
    display: flex;
    align-items: center;
}

.menu-item img {
    margin-right: 10px; /* Adds space between image and text */
}

.menu-item a {
    text-decoration: none;
    color: inherit; /* Keeps the default text color */
    display: flex;
    align-items: center;
}

  .dropdown_menu li {
    display: none;
    color: #fff;
    background-color: #fff;
    padding:0px 20px;
    font-size: 16px;
    opacity: 0;
    
  }

  .dropdown_menu li a{
    border-bottom: 1px dotted #00000047;
    padding: 10px 0px;
    color: #003054;
  }

  .dropdown_menu li a span{
    text-transform: capitalize;
    text-wrap: nowrap;
  }

 

  .dropdown_menu li:nth-last-child(-n+2) a {
   border-bottom: 0;
  }

  .dropdown_menu li:hover a {
    /* background-color: #2980b9; */
    color: #E5B20A;
  }
  .dropdown:hover .dropdown_menu--animated {
    display: grid;
  }
  .dropdown_menu--animated {
    display: none;
  }
  .dropdown_menu--animated li {
    display: block;
    opacity: 1;
  }

  .dropdown_menu-7 {
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
  }

  @keyframes rotateMenu {
    0% {
      transform: rotateX(-90deg);
    }
    70% {
      transform: rotateX(20deg);
    }
    100% {
      transform: rotateX(0deg);
    }
  }
  /* end styling dropdown */



   /* start sub header styling */
.sub-header {
    background-color: #003054;
    color: #fff;
  }
  .sub-header ul{
    margin-bottom: 0;
    padding-left: 0;
  }
  
  .sub-header a{
    text-decoration: none;
  }
  .sub-header li{
    list-style: none;
  }
  
  .info li {
      margin-top: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
  }
  
  .info li i {
    font-size: 14px !important;
  }
  
  .info li a {
    font-size: 15px;
  }
  
  .info span {
    height: 20px;
    display: block;
    width: 2px;
    background-color: #fff !important;
    color: #000;
    margin: 8px 30px;
  }
  
  .socialContainer {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 20px;
  }
  
  .socialContainer .social-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
  }
  
  .socialContainer .social-links li{
    background-color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
  }
  
  .socialContainer .social-links li a i{
    font-size:15px;
    color: #003054;
  }

  .get-quate{
    flex-basis: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }


  .get-quate a{
    color: #fff;
    font-weight: 600;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    background: #E5B20A;
  }
  
  .triangle {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    width:40px;
    height:40px;
    border-bottom: solid 20px #E5B20A;
    border-right: solid 20px #E5B20A;
    border-left: solid 20px transparent;
    border-top: solid 20px transparent;
    margin-right: 0px;
  }

  .menu-image{
    filter: drop-shadow(2px 2px 0px #081622);
  }

  .navbar-toggler{
    outline: none;
    border: none;
    font-size:26px;
  }

  .navbar-toggler:focus{
    outline: none;
    box-shadow: none;
  }
 
  /* end sub header styling */


  /* sidebar form start */

.sidebar-contact {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-sizing: border-box;
    transition: 0.5s;
    z-index: 1114;
    border-radius: 20px 0px 0px 20px;
  }
  
  .sidebar-contact.active {
    right: 0;
  }
  
  .toggle {
    position: absolute;
    text-align: center;
    cursor: pointer;
    background: #e5b20a;
    color: #003054;
    top: 48%;
    left: -74px;
    transform: rotate(90deg);
    padding: 8px 15px;
    border-radius: 0px 0px 10px 10px;
  }
  
  .toggle h6 {
    margin-bottom: .5px;
    font-size: 13px;
    font-weight:bold;
    color: #000000;
    font-family: 'Overpass', sans-serif;
  }
  
  .toggle h6 i{
    margin-right: 5px;
  }
  
  .sidebar-contact input, .sidebar-contact textarea {
    width: 100%;
    height: 36px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .5);
    outline: none;
    border-radius: 5px;
  }
  
  .sidebar-contact .btn{
    background: #003054;
    border: unset;
    font-size: 12px;
  }
  
  /* end sidebar */
  
  /* floating btn */
  .float {
    position: fixed;
    width: 50px;
    line-height: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite;
  }
  
  
  /* Keyframes for the pulsing effect */
  @keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  
  
  
  /* contact section style start */



  /* hero section style start */

  
  .three-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-bottom: 0;
    }


    .contact-form-container {
      width: 70%;
      margin:24px auto;
      margin-top: 60px;
      background: #fff;
      padding: 30px;
      padding-top: 80px;
      border-radius: 12px;
      /* height: 100%; */
      position: relative;

    }    

    .twenty-five-year-experience{
      position: absolute;
      width: 140px;
      top: -60px;
      left: 50%;
      transform: translateX(-50%)
    }


    
    .contact-form-container input{
      border: 0;
      border-bottom: 1px solid lightgray;
      outline: none;
      box-shadow: none;
      border-radius:unset;
      padding-left: 0;
      font-size: 16px;
    }
    .contact-form-container textarea{
      border: 0;
      border-bottom: 1px solid lightgray;
      outline: none;
      box-shadow: none;
      border-radius:unset;
      padding-left: 0;
      font-size: 16px;
    }    
    
    
    .contact-form-container form > div{
      margin: 18px auto;
    }
    
    .contact-form-container .form-control:focus {
      box-shadow: none;
      border-width:1px;
      border-color:#e5b20a;
    }
    
    
    
    .infoControllBtn{
      display: none;
    }
    

    .slider-btn{
      display: inline-block;
      vertical-align: middle;
      font-size: 12px;
      font-family: "Nunito Sans", sans-serif;
      line-height: normal;
      position: relative;
      text-transform: uppercase;
      font-weight: 700;
      overflow: hidden;
      z-index: 1;
      transition: all 0.5s ease 0s;
      padding: 12px 21px 12px 21px;
      background-color: transparent;
      border: 1px solid #003054;
      border-radius: 3px;
      color: #003054;
      cursor: pointer;
      margin-right: 18px;
      margin: 0px auto !important;
    } 
    
    .slider-btn.solid{
      background: #003054;
    }
    
    .slider-btn.solid a{
      color: #fff;
    }
    
    
    .slider-btn a {
      color: #003054;
      text-decoration: none;
      letter-spacing: 1px;
      position: relative;
      left: 0;
      transition: all .35s ease-Out;
    }
    
    
    
    
    .dub-arrow {
      width: 100%;
      height: 100%;
      background: #003054;
      left: -200px;
      position: absolute;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .35s ease-Out;
      bottom: 0;
    }
    
    .slider-btn.solid .dub-arrow{
      background-color:#E6F0F9;
    }
    .slider-btn.solid .dub-arrow i{
      color: #003054;
    }
    .slider-btn i {
      color: #fff;
      font-size: 20px;
    }
    
    .slider-btn:hover .dub-arrow {
      left: 0;
    }
    
    .slider-btn:hover a {
      left: 150px;
    }

    .hero-section{
      background-image: url('../img/lds-banner.jpg');
      position: relative;
      padding:20px 0px;
      background-size: cover;
      background-position: top;
      background-repeat: no-repeat;
    }

    .main-security-guard{
      position: absolute;
      bottom: 0px;
      right:-60px;
    }



    .year {
      font-size: 30px;
      font-weight: bold;
      color: #A8C4D4;
    }

  /* end hero section */

.main-title{
    font-size: 40px;
    /* color: #003054; */
    color: #ffffff;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.highlight-heading-part {
    color: #E5B20A;
    font-weight: bold;
}

.sub-text{
  color: #ffffff;
}

.sub-title-rank{
  color: #fff;
}

.trusted-heading{
  color: #eee;
  background: rgba(255, 255, 255, .09);
  display: inline-block;
  padding: 7px 20px;
  margin: auto;
  margin-bottom: 14px !important;
  border-radius: 40px;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
}

.title-container {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.underline-effect {
  position: relative;
  display: inline-block !important;
  color: #000;
  font-weight: bold;
}

.underline-effect::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 4px;
  background: #003054;
  position: absolute;
  bottom: 0px;
  left: 5px;
}


/* START whyChooseUsSection SECTION */
  .whyChooseUsSection{
    padding: 60px 0px;
    padding-bottom: 0;
    background-color: #003054;
    position: relative;
  }

  .whyChooseUsSection h3,.whyChooseUsSection p{
    color: #ffffff;
  }
  
  .moreHighlightedHeading{
    color: #E5B20A !important;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
  }

  .whyChooseUsCard{
    border: 2px solid #fff;
    padding: 18px;
    position: relative;
    width: 80%;
    margin: auto;

  }

  .whyChooseUsCard p{
    text-align: justify;
    font-size: 14px;
  }

  .cardIconContainer{
    position: absolute;
    top:-20px;
    left: -20px;
    z-index: 1;
    padding: 6px;
    background-color:#003054;
    width: 65px;
  }

  .cardIcon{
    width: 100%;
  }

  .whyChooseUsCard h3{
    padding-left: 40px;
    color: #A8C4D4;
    font-size: 25px;
  }
/* END whyChooseUsSection SECTION */

/* square moving effect start */
.circles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circles li{
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
  
}

.circles li:nth-child(1){
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.circles li:nth-child(2){
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3){
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4){
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5){
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6){
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7){
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8){
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9){
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10){
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {

  0%{
      transform: translateY(0) rotate(0deg);
      opacity: 1;
      border-radius: 0;
  }

  100%{
      transform: translateY(-1000px) rotate(720deg);
      opacity: 0;
      border-radius: 50%;
  }

}

/* square moving effect end */

/* client logo style start */

.client-logo{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.clientImg {
  width: 90%;
  height: 90%;
  border: 1px solid lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.cLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cLogo {
  width: 200px;
  height: 200px;
  /* margin: 12px; */
}

/* end client logo style */

/* styling gallery section */


.section-padding {
  padding-top: 80px;
}

.gallery-section {
  position: relative;
  z-index: 1;
}


.filter {
  text-align: center;
  max-width: 1050px;
  margin: auto;
}

.btn {
  padding: 10px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #003;
  background: #eee;
  border: 1px solid #003054;
  transition: all 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
}
.btn:hover,.btn-active {
  background: #003054;
  color: #fff;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}
.gallery a {
  display: flex;
}
.gallery img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 10px;
}

.gallery img:hover {
  transform: scale(1.1);
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.closeBtn {
  width: 40px;
  height: 40px;
  position: absolute;
  font-size: 22px;
  font-weight: 500;
  line-height: 22px;
  right: 25px;
  top: 25px;
  color:#ffffff;
  transition: 0.5s linear;
  padding: 8px;
  border-radius:100%;
  background:#c40c18;
  border: none;
}
.closeBtn:hover {
  cursor: pointer;
  background: white;
  color: black;
  outline: 2px solid #000;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  width: 70%;
  object-fit: scale-down;
  max-height: 40vw;
  height: auto;
}
.prevButton,
.nextButton {
  transition: 1s linear;
  padding: 10px 35px;
  font-size: 18px;
  border: none;
  color: white;
  background: #0005;
  border-radius: 10px;
  border: 1px solid white;
  margin: 10px;
}
.prevButton:hover,
.nextButton:hover {
  background: #fff;
  color: black;
}
/* end gallery used for certification */

/* start FAQ */

.accordion {
  width: 80%;
  margin: auto;
  padding: 1.2rem 0;
  border-radius: 1rem;
  background: white;
/*   box-shadow: 0 0 5rem lightgrey; */
}

.accordion__heading {
  margin-bottom: 1rem;
  padding: 0 1.4rem;
}

.accordion__item:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}

.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: white;
  border: none;
  outline: none;
  color: hsl(248, 10%, 40%);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}
.accordion__btn:hover {
  color: #003054;
  background:#E8F2FB;
}

.accordion__item--active .accordion__btn {
  color: #003054;
  border-bottom: 2px solid #003054;
  background:#E8F2FB;
}

.fa-lightbulb {
  padding-right: 1rem;
}
.accordion__icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}
.accordion__item--active .accordion__icon {
  transform: rotate(135deg);
}

.accordion__content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: hsl(248, 10%, 40%);
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.accordion__content p {
  padding: 1rem 1.8rem;
}

.accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}



/* end FAQ */


/* contact section style start */

.keyResponsibiltyImg{
  width: 100%;
  filter: drop-shadow(-8px 3px 8px rgb(185, 184, 184));
}

.contact-section{
  position: relative;
  overflow: hidden;
}

.contact-section .contactAreaContainer{
  background-color:#01233d;
  position: relative;
  border-radius: 12px;
  margin: 50px auto;
  padding: 30px 30px;

}

.contact-section .career-section .contactAreaContainer {
  background-color: transparent;
}

.contact-section .contact-container{
  display: flex;
  align-items:start;
  justify-content: center;
  gap: 30px;
}

.contact-section .contact-info-container,.contact-section .contact-form-container{
   width: 48%;
   transition: all .5s ease-in;
}

.contact-section .contact-info-container{
  display: flex;
  flex-direction: column;
  align-items:start;
  justify-content: space-between;
}

.contact-section .contact-info-container h3{
  font-size: 45px;
  margin-bottom: 20px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-section .contact-info-container ul li{
  padding: 12px;
  border-radius: 9px;
  margin: 12px auto;
}



.contact-section .contact-info-container ul li span{
  margin-right:8px;
  color: #E5B20A;
  
}

.contact-section .contact-info-container ul li a{
  color: #fff;
}

.contact-section .contact-info-container .f_social_icon a {
  font-size: 25px;
  color: #E5B20A;
  background:transparent; 
}

.contact-section .career-section .contact-form-container{
  box-shadow: 1px 2px 3px 3px #d9d2d2;
}

.contact-section .contact-form-container{
  background: #fff;
  padding:30px;
  border-radius: 12px;
}

.contact-section .contact-form-container input{
  border: 0;
  border-bottom: 1px solid lightgray;
  outline: none;
  box-shadow: none;
  border-radius:unset;
  padding-left: 0;
  font-size: 16px;
}


.contact-section .contact-form-container form > div{
  margin: 18px auto;
}

.contact-section .contact-form-container .form-control:focus {
  box-shadow: none;
  border-width:2px;
  border-color:#e5b20a;
}



.contact-section .infoControllBtn{
  display: none;
}

/* end contact section style */


/* strat footer style */
.new_footer_area {
  background-image: url('../img/footer-bg.jpg');
  background-size: cover;
  background-repeat: repeat;
}


.new_footer_top {
  padding: 25px 0px 8px;
  position: relative;
  overflow-x: hidden;
}
.new_footer_area .footer_bottom {
  padding-top: 5px;
}
.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #ffffff;
  background: #003054;
}
.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #000000;
  margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.btn_get_two:hover {
  background: transparent;
  color: #003054;
}
.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  text-decoration: none;
  outline: none;
}



.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #003054;
  font-weight: 800;
}
.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}
.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ti-facebook:before {
  content: "\e741";
}
.ti-twitter-alt:before {
  content: "\e74b";
}
.ti-vimeo-alt:before {
  content: "\e74a";
}
.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #003054;
  border-color: #003054;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #003054;
}

.new_footer_top .f_social_icon a:hover {
  background: #003054;
  border-color: #003054;
color:white;
}
.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #000000;
}
.f_600 {
  font-weight: 600;
}
.f_size_18 {
  font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #000000;
}




/* for right side style */
@-moz-keyframes rightToLeft {
0% {
  right: 0%;
}
100% {
  right: 100%;
}
}

@-webkit-keyframes rightToLeft {
0% {
  right: 0%;
}
100% {
  right: 100%;
}
}

@keyframes rightToLeft {
0% {
  right: 0%;
}
100% {
  right: 100%;
}
}

/*************footer End*****************/

  /* start style for hiresection */

  .hireBanner-section{
    padding: 0;
    background:#003054;
    margin: 60px auto;
    border-radius: 12px;
    box-shadow: 1px 2px 30px 10px lightgray;
}

.hireSecImgContainer{
    position: relative;
    background: #000;
    height: 100%;
}

.hireSecImgContainer .main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customPositonImg{
    width: 120px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right:-50px;
}

.hireSecInfoContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 90%;
    margin-left: auto;
}

.hireSecInfoContainer .main-title{
    font-size:35px;
    width: 85%;
}

.hireBanner-section .slider-btn.solid {
    background: #e5b20a;
    margin: 12px auto;
}

.hireBanner-section .slider-btn.solid a {
    color: #003054;
}
  /* end style for hire section */


  /* cta section start */
  .ctaInfoContainer{
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background:url('../img/ctaBlurBg.jpg');
    border-radius: 50px 0px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12px;  
  }

  .ctaTeamConatiner{
    background-color: #E4ECFC;
    padding: 12px;
    border-radius: 0px 0px 50px 0px;
  }

  .ctaTeamConatiner .teamPic{
    width: 100% !important;
    margin: auto;
  }

  .ctaInfoContainer p{
    color: #fff;
  }

  .ctaInfoContainer h3{
    color: #fff;
  }

  .ctaInfoContainer .call-info-container h3 {
    font-size: 22px;
  }

  .ctaInfoContainer .call-info-container p {
    font-size: 18px;
  }

  .ctaInfoContainer .callNumber{
    color: #e5b20a;
  }

  .ctaInfoContainer .slider-btn.solid {
    background: #e5b20a;
}

.ctaInfoContainer .slider-btn.solid a {
    color: #01233D;
}


  /* end cta section */


  /* responsive code start */

  @media (max-width:991px) {
    .main-security-guard {
     display: none;
    }

    .contact-form-container {
      width: 100%;
    }

    .whyChooseUsCard {
      width: 100%;
    }
    .whyChooseUsCard h3 {
      font-size: 19px;
    }

    .whyChooseUsCard p {
      font-size: 13px;
    }

    .customPositonImg {
      width: 90px !important;
      right: -43px !important;
  }

  .slider-btn {
    padding: 6px 15px;
  }

  .hireSecInfoContainer .main-title {
    font-size: 18px !important;
    padding-top: 12px !important;
}

.hireSecImgContainer .main-img {
  height: 199px !important;
}

  .contact-section .contact-info-container h3 {
    font-size: 28px;
  }

  .contact-section .contact-info-container ul li {
    margin: 6px auto;
  }

  }

  @media (max-width: 767px) {
    .info li {
        margin-right: 15px;
        border: 1px solid #fff;
        padding: 2px 5px;
        border-radius: 5px;
    }

    .info span {
        display: none;
    }

    .cLogo {
      width: 172px;
      height: 172px;
  }
  .main-title {
    font-size: 34px;
  }

  .hireSecInfoContainer {
    width: 95%;
}

  .hireSecImgContainer .main-img {
    height: 100% !important;
}

.ctaInfoContainer{
  gap: 30px;
  padding: 30px;

}

.hireImgContainer{
  display: none;
}

.hireSecInfoContainer .main-title {
  margin: auto;
}

.hireSecInfoContainer {
  width: 100%;
  text-align: center;
  background-image: url('../img/hireImgPhone.jpg');
  background-position: center;
  background-repeat:no-repeat;
  background-size: cover;
  padding: 60px 0px;
}
.contact-container {
  position: relative;
  padding: 20px 20px 20px 36px;
  overflow: hidden;
}
.contact-section .contactAreaContainer {
  padding: 0px;
  margin: 24px auto;
}



.contact-section .infoControllBtn {
  display: block;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 12;
}

.infoControllBtn button {
  background: #e5b20a;
  border: none;
  color: #000000;
  font-weight: bold;
  padding: 4px 6px;
  border-radius: 3px;
}

.contact-info-container {
  position: absolute;
  left: -100%;
  width: 90%;
  transform: translateY(-50%);
  top: 50%;
}

.contact-section .contact-info-container, .contact-section .contact-form-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-info-container.show {
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  background: #01233d;
}

.contact-form-container.hide {
  transform: translateX(200%);
}

.sidebar-contact {
  width: 100%;
  height: 100%;
  right: -100%;
  border-radius: 0;
}

.sidebar-contact .toggle {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.sidebar-contact.active .toggle {
  top: 15px;
  left: 22px;
  transform: translateY(0);
  border-radius: 10px;
}

.toggle.active::before {
  content: '\f00d';
  font-family: fontAwesome;
  font-size: 18px;
  color: #000000;
}
.sidebar-contact.active .toggle h6 {
  display: none;
}

.accordion {
  width: 95%;
}

}

@media (max-width:740px) {
  .customPositonImg {
    top: -35px ;
    right: unset ;
    left: 50%;
    transform:translateX(-50%);
}
  
}


@media (max-width: 725px) {
    .get-quate {
        flex-basis: 30%;
    }
}


@media (max-width: 625px) {
    .get-quate {
        flex-basis: 45%;
    }

    .accordion__btn {
      font-size: 15px;
      padding: 1.2rem .4rem;
    }
}

@media (max-width: 570px) {
    .socialContainer .social-links {
        display: none;
    }

    .get-quate {
        flex-basis: 79%;
    }
}

@media (max-width:539px){
  .cLogo {
    width: 160px;
    height: 160px;
}
}

@media (max-width:498px) {
  .whyChooseUsCard h3 {
    font-size: 18px;
}
.whyChooseUsCard p {
  font-size: 12px;
}
}

@media (max-width:343px) {
  .cLogo {
    width: 145px;
    height: 145px;
}
}
/* our presenceContainer style start */
.presenceContainer .main-title{
    color: #003054;
    font-size: 20px;
}

.presenceContainer .clientImg{
    flex-direction: column;
    width: 97%;
    gap: 12px;
}

.presenceContainer i{
    color: #e5b20a;
    font-size: 40px;
}
/* end presenceContainer */
#full_name::placeholder, #full_name_below::placeholder, #full_name_side::placeholder {
    color: #B22222;
}
#phone_number::placeholder, #phone_number_below::placeholder, #phone_number_side::placeholder {
    color: #B22222;
}