:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --primary-background-color:#01397E;
    --secondary-background-color:#F7F7F7;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-sans-serif);
}
nav{
  position: sticky;
  z-index: 99;
  width: 100%;
  background: var(--light);
}
nav .wrapper{
  position: relative;
  max-width: 1480px;
  height: 80px;
  line-height: 70px;
  padding: 10px 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a img{
  text-decoration: none;
  text-align: left;
}
.wrapper .nav-links{
  display: inline-flex;
  padding-top: 10px;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: var(--cyan);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: var(--blue);
  color: var(--light);
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: var(--light);
  visibility: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  border-radius: 10px;
  opacity: 0;
  width: 320px;

}

.desktop-item i{
    padding: 0 5px;
}


.nav-links .drop-menu a{
    padding: 20px ;
    text-align: start;
    line-height: 25px;
  
}
.nav-links .drop-menu a:hover{
    background-color: transparent;
    color: var(--blue);
    font-weight: 600;
    transition: all 0.1s ease;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: cover;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: var(--light);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items:start;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(30% - 20px);
  line-height: 45px;
}
.content .first-lane header{
    display: block;
} 
.content .row header{
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -8px;
  border-left: 1px solid rgb(209, 209, 209);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 10px 10px;
  color: var(--cyan);
  font-size: 16px;
  line-height: 28px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.content header i{
    color: var(--dark);
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
.mega-box .header{
  background-color: var(--light);
  align-items: center;
  padding: 0 20px ;
  display: flex;
  align-items: baseline;
  height: 50px;
}
  .mega-box .header .head{
    color: var(--dark);
    padding: 0 5px;
  }
  .mega-box .header p{
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
  }
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 80%;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #1d889a;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    /* background: var(--blue); */
    color: var(--light);
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    background-color: var(--secondary-background-color);
    /* padding: 20px 20px 0 20px; */
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 18px;
  }
  .mega-box .header p{
    line-height: 28px;
    padding-top: 20px;
  }
}
nav input{
  display: none;
}
.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 36px;
  font-weight: 600;
}
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --col-primary: #296eb3;
  --col-secondary: #003b81;
  --col-background: #e8e8e8;
  --col-light: #e8e8e8;
  --col-dark: #022f64;

  --col-free: #7dbaff;
  --col-bronze: #b85a24;
  --col-silver: #8a8a8a;
  --col-gold: #e2a922;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

/* Scrollbar section start */
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}

::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
background-color: #126d9d;	
background-image: -webkit-linear-gradient(45deg,
                                          rgba(255, 255, 255, .2) 25%,
                      transparent 25%,
                      transparent 50%,
                      rgba(255, 255, 255, .2) 50%,
                      rgba(255, 255, 255, .2) 75%,
                      transparent 75%,
                      transparent)
}


/* Scrollbar section end */

/*accordion section start*/
.faq-heading{
  text-align:start;
}
.faq-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 80%;
  margin:50px auto;
}
.accordion {
  max-width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}
.accordion:last-child{
  margin-bottom: 0;
}
.accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 16px;
  background: rgba(4,57,94,.8);
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}
.accordion-label:hover {
  background: rgba(4,57,94,1);
}
.accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: rgba(4,57,94,1);
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-content p{
  margin: 0;
  color: rgba(4,57,94,.7);
  font-size: 16px;
}
.faq-input:checked + .accordion-label {
  background: rgba(4,57,94,1);
}
.faq-input:checked + .accordion-label::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 16px;
}

/* Accordion section end */




/* Packages section start */
.price_table {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  align-items: start;
  column-gap: 2rem;
  row-gap: 3rem;
  max-width: 80em;
  padding: 2.5rem 0.5rem;
}
.package_bronze ul{
  height: 290px;
  overflow-y: scroll;
}
.package_gold ul{
  height: 250px;
  overflow-y: scroll;
}
.package_silver ul{
  height: 310px;
  overflow-y: scroll;
}
#package-free ul{
height: 240px;
overflow-y: scroll;
}
#dds-package ul{
  height: 255px;
  overflow-y: scroll;
}
.package {
  border-radius: 4px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;

  h2 {
    margin: 0;
    padding: 1rem;
    background: var(--col-primary);
    font-size: 1.2em;
    text-align: center;
    font-weight: normal;
    color: white;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 0.4rem;
      left: 0;
      bottom: 0;
    }
  }
  .price {
    padding: 0.2rem 1rem;
    background: linear-gradient(
      45deg,
      var(--col-secondary) 0%,
      var(--col-dark) 100%
    );
    color: white;
    text-shadow: 0 4px 0 var(--col-dark);
  }
  p {
    padding: 1rem;
  }
  .price {
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
    box-shadow: inset 0 10px 4px -6px rgba(0, 0, 0, 0.1);
  }
  .big {
    display: inline;
    font-size: 4em;
    font-weight: 700;
  }
  ul {
    list-style: none;
    padding: 0 0 1rem 0;
    margin: 0;
    border-bottom: 1px solid var(--col-primary);
  }
  li {
    padding: 0.8em 1em;
    font-size: 0.9em;
    &:nth-child(odd) {
      background: var(--col-light);
    }
  }
  button {
    cursor: pointer;
    padding: 1em 2em;
    font-size: 1rem;
    display: block;
    color: white;
    margin: 1rem auto;
    border: none;
    border-radius: 5px;
    background: linear-gradient(
      0deg,
      var(--col-secondary) 0%,
      var(--col-primary) 100%
    );
    transition: all 0.2s;
    &:hover,
    &:focus {
      background: linear-gradient(
        0deg,
        var(--col-secondary) 0%,
        var(--col-dark) 100%
      );
      box-shadow: 0 0 0 4px white, 0 0 0 8px var(--col-primary);
      outline: 0;
    }
  }
  .banner {
    background: linear-gradient(90deg, #33a530 0%, #4eee49 50%, #33a530 100%);
    transform: rotate(-45deg);
    position: absolute;
    z-index: 1;
    padding: 0.5rem 4rem;
    top: 2rem;
    left: -4rem;
    border: 2px solid #91ff69;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    color: var(--bs-white);
  }
}
@media (max-width:720px) {
  .package .banner{
    top: 1.3rem;
    font-size: 14px;
  }
}
@media (max-width:1024px){
  .package .banner{
    top: 1.3rem;
    left: -4.3rem;
    font-size: 14px;
    padding: .1rem 4rem;
  }
  .package h2{
    font-size: 24px;
  }
}
.package_free h2::after {
  background: var(--col-free);
  background: linear-gradient(
    90deg,
    var(--col-free) 0%,
    white 50%,
    var(--col-free) 100%
  );
}

.package_bronze h2::after {
  background: linear-gradient(
    90deg,
    var(--col-bronze) 0%,
    white 50%,
    var(--col-bronze) 100%
  );
}

.package_silver h2::after {
  background: linear-gradient(
    90deg,
    var(--col-silver) 0%,
    white 50%,
    var(--col-silver) 100%
  );
}

.package_gold h2::after {
  background: linear-gradient(
    90deg,
    var(--col-gold) 0%,
    white 50%,
    var(--col-gold) 100%
  );
}
.packages-wrap{
  padding: 100px 0;
}
.packages-wrap .info{
  margin-top: -30px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-family-sans-serif);
}
/* Packages section end */



/* ** Spinner Start ***/

/* #spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s var(--blue);
  z-index: 99999;
}

#spinner.show {
   transition: opacity .8s ease-out, visibility 0s linear .0s;
   visibility: visible;
   opacity: 1;
} */

/*** Spinner End ** */


/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
  background-color: var(--blue);
  outline-color: var(--blue);
}
.btn:hover{
  background-color: var(--blue);
}
.btn:active{
  background-color: var(--blue);
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-md-square {
  width: 46px;
  height: 46px;
}

.btn-lg-square {
  width: 58px;
  height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.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 5s infinite;
  animation-timing-function: all;
  color: var(--white);
}

@keyframes mymove {
  from {left: -100%;}
  to {left: 100%;}
}

/*** Topbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
  max-height: 720px;
}

.carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .6);
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-item p {
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.carousel-control-prev {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--info);
  border-radius: 0 50px 50px 0;
  opacity: 1;
}

.carousel-control-prev:hover {
  background: var(--blue);
  transition: .8s;
}

.carousel-control-next {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--info);
  border-radius: 50px 0 0 50px;
  opacity: 1;
}

.carousel-control-next:hover {
  background: var(--blue);
  transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
  background: var(--info);
  color: var(--bs-dark);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
  background: var(--blue);
  color: #ffffff;
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
  background: var(--blue);
  color: var(--bs-white);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
  background: var(--info);
  color: var(--bs-dark);
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

#carouselId .carousel-indicators li {
  width: 20px;
  background: var(--blue);
  margin: 10px;
  border-radius: 30px;
  opacity: 1;
  display: none;
}

#carouselId .carousel-indicators li:hover {
  background: var(--blue);
  opacity: 1;
}

@media (max-width: 992px) {
  .carousel-item {
      min-height: 500px;
  }
  
  .carousel-item img {
      min-height: 500px;
      object-fit: cover;
  }

  .carousel-item h1 {
      font-size: 40px !important;
  }

  .carousel-item p {
      font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .carousel-item {
      min-height: 400px;
  }
  
  .carousel-item img {
      min-height: 400px;
      object-fit: cover;
  }

  .carousel-item h1 {
      font-size: 28px !important;
  }

  .carousel-item p {
      font-size: 14px !important;
  }

}

/* Banner Area Start */
.banner-area{
  background-color: var(--cyan);
}
.banner-area h5{
  font-size: 14px;
}
/* Banner Area end */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
  height: auto;
  align-items: center;
  justify-content: center;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  line-height: 28px;
  color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/
#services{
  background-color: var(--secondary-background-color);
}
#services-3{
  background-color: var(--primary-background-color);
}
#services-3 #h1{
  color: var(--bs-white)!important;
}
#cts-section{
  background-color: var(--secondary-background-color);
}
.services .services-inner{
  padding-top: 100px;
  padding-bottom: 100px;
}
.services .services-item {
  box-shadow: 0 0 60px rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 0;
  position: relative;
  align-items: center;
  justify-content: center;

}
#services-cts{
  background-color: var(--primary-background-color);
}
#services-cts .h1{
  color: var(--bs-white);
}


.services-item .services-content-icon i,
.services-item .services-content-icon p {
  transition: .5s;
}
.agreement li{
  text-decoration: none;
  list-style: none;
}
.price-amazon{
  font-size: 64px;
}
#Standard-Service{
  padding: 30px;
  display:grid;
  align-items: center!important;
  justify-content: center!important;
}
#Standard-Service h1{
  font-size: 56px;
}
@media(max-width:1024px){
  #Standard-Service h1{
    font-size: 32px;
  }
}


/*** Services End ***/






/*** Project Start ***/

.project-img {
  position: relative;
  padding: 15px;
}

.project-img::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  background: var(--bs-secondary);
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: .5s;
}

.project-img::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--bs-white);
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: .5s;
}

.project-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.project-content a {
  display: inline-block;
  padding: 20px 25px;
  background: var(--bs-primary);
  border-radius: 10px;
}

.project-item:hover .project-content {
  opacity: 1;
  transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
  opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
  z-index: 2;
}

.blog-btn .blog-btn-icon {
  height: 50px;
  position: relative;
  overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
  display: flex;
  position: absolute;
  top: 6px;
  left: -140px;
  
}

.blog-btn-icon:hover .blog-icon-2 {
  transition: 1s;
  left: 5px;
  top: 6px;
  padding-bottom: 5px;
}
.blog-icon-1 {
  position: relative;
  top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
  top: 0;
  right: -140px;
  transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
  border-top: 30px solid var(--bs-secondary) !important;
  background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
  height: 200px;
  display: block;
  content: "";
  position: relative;
  top: -101px;
  background: var(--bs-secondary);
  clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  padding: 60px;
  opacity: 1;
}

.team-img-icon {
  position: relative;
  margin-top: -200px;
  padding: 30px;
  padding-bottom: 0;
}

.team-img {
  border: 15px solid var(--bs-white);
}

.team-img img {
  border: 10px solid var(--bs-secondary);
  transition: .5s;
}

.team-item:hover h4 {
  color: var(--bs-primary);
  transition: .5s;
}

.team-item:hover .team-img img {
  transform: scale(1.05);
  border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 50px;
  display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  width: 56px;
  height: 56px;
  border-radius: 56px;
  margin-left: 15px;
  background: var(--bs-secondary);
  color: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .team-carousel {
      margin-top: 3rem;
  }

  .team-carousel .owl-nav {
      top: -85px;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      margin-left: -15px;
  }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
  background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #c1dad0;
  border-radius: 15px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 10px;
  z-index: -1;
}

.contact-map {
  background: var(--blue);
}

.contact-form {
  background: var(--blue);
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
  transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
  letter-spacing: 1px;
}

.footer .hightech-link a:hover {
  background: var(--bs-blue) !important;
  border: 0;
}

/*** Footer End ***/
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #01B2FF;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}


/* ** Spinner Start ***/

/* #spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s var(--blue);
  z-index: 99999;
}

#spinner.show {
   transition: opacity .8s ease-out, visibility 0s linear .0s;
   visibility: visible;
   opacity: 1;
} */

/*** Spinner End ** */


/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
  background-color: var(--blue);
  outline-color: var(--blue);
  font-size: 14px;
}
.btn:hover{
  background-color: var(--blue);
}
.btn:active{
  background-color: var(--blue);
}
.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}



.btn-lg-square {
  width: 58px;
  height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
@media (max-width:1020px){
  .box .btn {
      font-weight: 600;
      transition: .5s;
      background-color: var(--blue);
      outline-color: var(--blue);
      font-size: 8px!important;
      padding: 15px 8px 15px 8px!important;
  }
  .navbar .navbar-nav .nav-link{
      padding: 8px;
      
  }
}
/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
  letter-spacing: 1px;
}

.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
  padding-top: 0px;
}

#note {
  width: 500px;
  overflow: hidden;
}

#note small {
  position: relative;
  display: inline-block;
  padding-top: 5px;
  animation: mymove 10s infinite;
  animation-timing-function: all;
  color: var(--white);
}

@keyframes mymove {
  from {left: -100%;}
  to {left: 100%;}
}

/*** Topbar End ***/

/* ABout section start */
.about-card ol li::marker{
  color: var(--white);
  font-weight: 700;
}
.about-card ol li{
  color: var(--white);
}
/* ABout section end */



/* popup css */

.c-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%
}

.c-popup .popup {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  width: 100%;
  opacity: 0;
  top: 40%;
  -webkit-transition: all .3s 0s;
  transition: all .3s 0s;
  border: 1px solid #fff9e9;
  border-radius: 4px
}

.c-popup .popup .popup-wrap {
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.25)
}

.c-popup .popup .popupContent {
  padding: 20px
}

.c-popup .popup .c-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 999;
  font-size: 24px;
  color: #fff;
  background-color: #0eacff;
  text-align: center;
  line-height: 34px;
  border-radius: 50%;
  font-weight: bold
}

.c-popup .popup .c-close:hover {
  color: #000
}

.c-popup .popup.popup--full-screen {
  top: 0;
  left: 0;
  -webkit-transform: none;
  transform: none;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: none
}

.c-popup .popup.active {
  top: 50%;
  opacity: 1;
  -webkit-transition-delay: .3s;
  transition-delay: .3s
}

.c-popup .overlay {
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
  -webkit-transition: all .3s;
  transition: all .3s
}

.c-popup.popup--open .overlay {
  background: rgba(0, 0, 0, 0.6)
}

.c-close {
  display: inline-block;
  width: 38px;
  height: 38px
}

.c-popup .popup.sm-popup {
  width: 500px
}

.c-popup .popup.md-popup {
  width: 750px
}

.c-popup .popup.lg-popup {
  width: 1220px
}
.form-group {
  margin-bottom: 20px
}
.popupContent h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  padding-bottom: 14px;
}

.popupContent input {
  height: 45px;
  border-radius: 5px;
}
.popupContent button {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  background-color: #1aacfc;
  height: 45px;
  width: 100%;
  border-radius: 5px;
}