
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/** header-top **/

 .header-top{
  position: relative;
  display: block;
  background: #162e40;
  padding: 10px 3rem;
}

.header-top .top-left ul li{
  position: relative;
  display: inline-block;
  color: #fff;
  margin-right: 40px;
}

.header-top .top-left ul li:last-child{
  margin-right: 0px;
}

.header-top .top-left ul li a{
  color: #fff;
}
.header-top .top-left ul li i{
  margin-right: 10px;
  font-size: 18px;
  color:#ff494a;
}

.header-top .top-left ul li:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255,0.2);
  width: 1px;
  height: 20px;
  top: 6px;
  right: -20px;
}

.header-top .top-left ul li:last-child:before{
  display: none;
}

.header-top .top-right .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 25px;
}
.header-top .top-right .social-links li:last-child{
  margin-right: 0px;
}

.header-top .top-right .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
   color:#ff494a;
}
@media (max-width: 991.98px) {
.header-top .top-right .social-links {
    display:none;
}

}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 35px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}
.navbar-light .logo-black{
    display: none;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}
.sticky-top.navbar-light  .logo-white{
    display: none;

}
.sticky-top.navbar-light .logo-black{
    display: block;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
        .logo-white{
        display:none;
    }
    .logo-black{
        display:block !important;
    }
}

@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 40px;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
            background: rgb(0 0 0 /0.35);
}
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
        top: 0px;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}
.banner-shape{
    position: absolute;
    content: "";
    right:0;
    bottom: 0;
    background: url(../img/right-shape.png) no-repeat right;
    width: 300px;
    height: 300px;
    background-size: contain;
    z-index: 9;


}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:transparent;
    transition: 0.5s;
    border-radius: 50% !important;
    border: 1px solid #9498b1;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;

}
.carousel-header  h4{
    color: #ffeb3b;
}
 

@media (max-width: 992px) {
    .banner-shape{
        display:none;
    }
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/
/*** Section Title Start ***/
.section-title {
    max-width: 900px;
}


.section-title .sub-title {
        position: relative;
    color: #121c41;
    padding-left: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    word-spacing: 5px;
}
.section-title .sub-title:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "/";
    color: var(--bs-primary);
}

.section-title .sub-title::after {
    position: absolute;
    left: 5px;
    top: 0;
    content: "/";
    color: var(--bs-primary);
}
.section-title .title {
   line-height: 1.3;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #121c41;
    font-size: 2.5rem;
}


/*** About Start ***/
.about:before{
  position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 50%;
    height: 30%;
    background: url(../img/bg-dot.png) no-repeat left top;
    background-size: contain;
}
.about .about-img {
    position: relative;
    
}

/*.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 30px;
    border:5px solid var(--bs-primary);
}*/
.about-img1{
    width: 80%;
}
.about-img2{
    position: absolute;
    content: "";
    right: 0;
    bottom: 50px;
    border: 10px solid #fff;
}
.about .about-img .about-exp {
   position: absolute;
    top: 40px;
    right: 0;
    padding: 20px 14px 20px 15px;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
    display: flex;
    gap: 15px;
    align-items: center;
}
.about .about-img .about-exp .rate-text{
    display: block;
    font-size: 14px;
}
.about .funfact-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 50%;
    background-color: var(--bs-primary);
    /*margin: -20px 0px 0px 0px;*/
}
.about .funfact-icon img{ filter: brightness(0) invert(1); width: 45px}
@media (max-width: 992px) {
    .about-img2{
        width:50%;
        bottom:10px;
    }
    .about .about-img .about-exp {
         padding: 10px 10px 10px 10px;
    }
    .about .funfact-icon {
    width: 40px;
    height: 40px;
    }
    .about .funfact-icon img{ width: 35px}
}

/*** About End ***/

/*** Service Start ***/
.service:before{
    background: #1D2F41;
    position: absolute;
    content: "";
    width: 100%;
    height: 518px;
    left: 0;
    top:0;
}
.service-item-current-style1 {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.07);
}
.service-item-current-style1 .inner-box {
  position: relative;
  background-color: #ffffff;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .image-box {
  position: relative;
}
.service-item-current-style1 .inner-box .image-box .image {
  overflow: hidden;
  margin-bottom: 0;
}
.service-item-current-style1 .inner-box .image-box .image img {
  width: 100%;
  transition: all 300ms ease;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box .image-box .image img {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .image-box .image:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
  transition: all 400ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box .image-box .image:after {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .content-box {
  position: relative;
  padding: 25px 40px 30px;
  transition: all 300ms ease;
  position: relative;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box .content-box {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .content-box:before {
  background-image: url(../img/service1-bg-pattern.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.service-item-current-style1 .inner-box .content-box .icon-box {
     position: absolute;
    right: 0px;
    top: -50px;
    height: 90px;
    width: 90px;
    background: #ffffff;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box .content-box .icon-box {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .content-box .icon-box .icon {
  height: 60px;
  width: 60px;
  background-color: var(--bs-primary);
  color: #ffffff;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.service-item-current-style1 .inner-box .content-box .icon-box .icon img {
  width: 40px;
  filter: brightness(0) invert(1)
}
.service-item-current-style1 .inner-box .content-box .title a{
  margin-bottom: 14px;
  color: #001442 !important;
  font-weight: 600;

}
.service-item-current-style1 .inner-box:hover .content-box .title a {
  color: var(--bs-primary) !important;
}
.service-item-current-style1 .inner-box .content-box .text {
  position: relative;
  margin-bottom: 0;
}
.service-item-current-style1 .inner-box .content-box .read-more {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  color: #73787d;
  background-color: #ecf0f4;
  padding: 10px 30px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .service-item-current-style1 .inner-box .content-box .read-more {
    transition: none;
  }
}
.service-item-current-style1 .inner-box .content-box .read-more i {
  margin-left: 10px;
  color: #73787d;
  font-size: 16px;
  transition: all 100ms linear;
}
.service-item-current-style1 .inner-box .content-box .read-more:hover {
  color: #ffffff;
  background-color: var(--theme-color2);
}
.service-item-current-style1 .inner-box .content-box .read-more:hover i {
  color: #ffffff;
}
.service-item-current-style1 .inner-box:hover {
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
}
.service-item-current-style1 .inner-box:hover .image-box img {
  transform: scale(1.1);
}
.service-item-current-style1 .inner-box:hover .image-box .image:after {
  left: 0;
  right: 0;
  opacity: 0;
}
/*===========================================*/
.country-img {
   
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #ddd;
    z-index: 2;
    position: relative;
    margin-bottom: 15px; 
    overflow: hidden;
    flex-shrink: 0;
}
.country-img img{
     object-fit: cover;
    border-radius: 50%;
    /*margin-bottom: -6px */
}
.country-content {
    margin-top: -75px;
    position: relative;
    /*background: var(--bs-white);*/
    padding: 20px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    z-index: 0;
    padding-top:85px;
    border-radius: 20px;
    height: 100%

}

.country-content::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    border-bottom: 3px solid  var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.country-content:hover::after {
    width: 100%;
    height: 100%;
}

.country-item:hover .country-content {
    position: relative;
    z-index: 2;
}

.country-item .country-content h4,
.country-item .country-content p {
    transition: 0.5s;
    position: relative;
}

.country-item:hover .country-content h4 {
    color: var(--bs-primary);
}

.country-item .country-img img {
    transition: 0.5s;
}

.country-item:hover .country-img img {
    transform: rotate(360deg);
}
.country-item .txt-list li{
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    padding-bottom: 10px;
}
.country-item .txt-list li i{
    margin-left: -20px;
    color: var(--bs-primary);
}
.list-style-none{
    list-style: none;
}
.country-item .display-6 {
    font-size: 1.7rem;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(5, 30, 88, 1)), url(../img/carousel-3.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial:before{
    position: absolute;
    content: "";
    right: -20px;
    top: -50px;
    width: 300px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    background-image: url(../img/testi-bg-shape.png);
    
}
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


.service-carousel .owl-nav .owl-next, .service-carousel .owl-nav .owl-prev{
    position: absolute;
    content: "";
    top: 40%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--bs-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #c5c4c4;

} 
.service-carousel .owl-nav .owl-next{left: -20px}
.service-carousel .owl-nav .owl-prev{ right:-58px}
/*===========================================*/

.sec-why{
    width: 100%; 
    float: left;
    padding: 60px 0px;
    background: #f5f3f3;
    position: relative;

}
.sec-why h2{
    margin-bottom: 0px;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
}
.sec-why h5{
    font-weight: 500;
    font-size: 16px; 
    line-height: 28px;  
    color: var(--bs-primary);
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}
.sec-why h5:before {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    left: 50%;
    top: 90%;
    transform: translateX(-50%) translateY(-90%);
    bottom: 0px;
    background: var(--bs-primary);
}
.sec-why  h5:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-100%);
    background-color: #fff;
    border: 1px solid var(--bs-primary);
}

.sec-why .item a{
   
    padding: 10px 20px 10px 20px;
    text-align: center;
    border-right: 1px solid #ddd;
    -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
}
.sec-why .item .why-img{
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 10%);
    border-style: solid;
    border-width: 5px 0px 0px 0px;
    border-color: var(--bs-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec-why .item img{
    margin-bottom: 0px;
    width: 45px;
}
.sec-why  .item h4{
    font-weight: 600;
    font-size: 18px; 
    line-height: 28px;  
    color: #000;
    position: relative;    
    text-align: center;
}
.sec-why  .item  p{
    color: #888;
    font-size: 15px;
    line-height: 30px;
}
.sec-why  .item a:hover{
    background: #ffe5e5;
}
.why-block-shape{
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 280px;
    height: 250px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    background-image: url(../img/callto-acction-sahpe.png);
}
@media (max-width: 992px) {
    .why-block-shape{ display:none;}
    .sec-why h2 {
    font-size: 34px;
    line-height: 50px;
    }
}
/*===========================*/
.callto-action{
    width: 100%;
    float: left;
    padding: 60px 50px;
    background: url(../img/callaction-image.jpg) no-repeat center;
    background-size:cover;
    position: relative;
    margin-top: 70px;
    border-radius: 5px;
}
.callaction-item{
   
}
.callaction-item h3{
    display: block;
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;   
    letter-spacing: 0.3px;
}
.callaction-item  h6{
    color: #999;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 30px;
    font-weight: 400;
}
.callaction-item span{
    color: var(--bs-primary);
    font-style: italic;
}
/*=====================================*/
.border-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 15px;
  line-height: 26px;
  color: #d10101 !important;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 12px 30px;
  border-radius: 0px;
  z-index: 1;
  transition: all 500ms ease;
  border:1px solid var(--bs-primary);
  text-transform: capitalize; letter-spacing: 0.3px;
}

.border-btn i{  
  font-size: 16px;
  line-height: 26px;
}

.border-btn:before{
  webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  bottom: 110%;
  left: 50%;
  background-color: var(--bs-primary);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.border-btn:hover:before{
  bottom: -40%;
}
.border-btn:hover{
    color: #fff !important;
}
/*=======================================*/

.li-before-arrow li{
    position: relative;
    padding-left: 20px;
    /*font-size: 14px;*/
    padding-bottom: 10px;
}
.li-before-arrow li i{
    margin-left: -20px;
    color: var(--bs-primary);
    margin-right: 5px;
}
.wbout-choose-item{
  padding: 20px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: 100%;
}
.about-why{
 background: linear-gradient(to right, rgba(0, 20, 66, 0.9), rgba(0, 20, 66, 0.7)), url(../img/about-why-bg.jpg) no-repeat center;
 background-size:  cover;
}
.page-countries .country-img {
    width: 85px;
    height: 85px;
}
.page-countries .country-img img {
    width: 85px;
    height: 85px;
}

.contactpage-left h2{
     margin-bottom: 30px;
    color: #000;
    font-size: 35px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
}
.address-item{
  width: 100%;
  float: left;
  display: flex;align-items: center;  
}
.address-item + .address-item{margin-top: 40px;}

.contact-image {
  float: left;
  margin-right: 30px;
}
.address-details{ 
  float: left;
  border-left: 2px solid #e81d22;
  padding-left: 30px;
}
.contact-image img{
  width:38px;
  height:38px;
}
.address-details h3{
  color:var(--bs-primary);
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
}
.address-details p{
  font-size:16px;
}
.contactpage-form{
  width: 100%;
    float: left;
    position: relative;
    box-shadow: 0px 0px 16px 1px rgb(0 0 0 / 30%);
    padding: 30px 35px 30px 55px;
    background: #333;
} 
.contactpage-form h4{
  color:#fff;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.contactpage-form:before {
    width: 45px;
    height: 80%;
    background:var(--bs-primary);
    transform: skewY(30deg);
    position: absolute;
    content: "";
    bottom: 20px;
    top: 30px;
    left: -20px;
}
.contactpage-form .submit{  
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 15px;
  line-height: 26px;
  color: #fff !important;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 12px 30px;
  border-radius: 0px;
  z-index: 1;
  transition: all 500ms ease;
  border:1px solid var(--bs-primary);
  background: var(--bs-primary);
  text-transform: capitalize; 
  letter-spacing: 0.3px;
  margin-top: 15px;
}

.contactpage-form .submit:before{
  webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  bottom: 110%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}

.contactpage-form .submit:hover:before{
  bottom: -40%;
}
.contactpage-form .submit:hover{
  color: var(--bs-primary) !important;
}