/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --primary: #FF3E41;
    --secondary: #0E355B;
    --light: #F8F2F0;
    --dark: #00173C;
}

body {
    background-color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}
/*h1{
    color: #00173C;
}*/
ol, ul {
    padding-left: 0rem!important;
}
.bg-light{
    background: #f3f5f9!important;
}
.bg-navy{
    background: #0E355B;
}

.modal-dialog {
    top: 200px;
}
.jumbotron {
    padding: 25px;
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}
.bg-gray-img{
    background: url(../images/bg-gray.jpg);
    background-attachment: fixed;
    background-size: cover;
}
.navbar.bgactive {
    background: rgba(30,7,7,0.5);
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-menu{
    background: rgba(30,7,7,0.5)!important;
}
.dropdown-item{
    color: #fff!important;
}

/*.navbar.active .nav-link {
    color: #fff!important;
}
*/
.company {
    background: #0E355B;
    padding: 13px;
}
.company h4{
    color: #ffc107;
    text-align: center;
}
.price-item {
  position: relative;
  width: 100%;
  /*max-width: 400px;*/
}
.price-item:hover .overlay {
  opacity: 1;
}
.price-item.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(255, 62, 65, 0.5);
}

.icon {
  color: white;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
a.dropdown-item:before{
    content: '\f105';
    font-weight: 600;
    font-family: 'Font Awesome 5 free';
    margin-right: 10px;
    color: #FF3E41;
}

.fa-user:hover {
  color: #eee;
}
.certificate{
    background: #f3f5f9;
}
.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
 .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: transparent;
  -webkit-transition: background 300ms ease;
  -o-transition: background 300ms ease;
  transition: background 300ms ease;
  z-index: 100;
}

/* .header.hometrans{
  background: rgba(255, 255, 255, 0.3);
} */

@media (min-width: 1200px) {
  .header {
    padding: 33px 20px;
  }
}

.header:hover, .header.is-active {
  background: rgba(0, 23, 60, 0.8);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .header__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  .header__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__item--primaryLogo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  margin-right: auto;
}

@media (max-width: 991px) {
  .header__item--primaryLogo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
  }
}

.header__item--navigation {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1199px) {
  .header__item--navigation {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 10px;
  }
}
.header__item.header__item--secondaryLogo img{
    width: 100px;
}
.header__item--secondaryLogo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  /*.header__item--secondaryLogo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }*/
}

.header__navigationToggler {
  border: 1px solid #ffc107;
  background: #ffc107;
  width: 42px;
  margin-right: 5px;
}

.header__navigationToggler > img {
  max-width: 100%;
}

.navigation__link:hover:after, .navigation__item--dropdown:hover > .navigation__link:after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -2px;
  left: 0;
  border: 2px solid #eb262d;
}

.navigation.is-active .navigation__dropdownMenuLink {
  color: #fff;
}

.navigation {
  background: rgba(0, 23, 60, 0.8);
}

@media (min-width: 1200px) {
  .navigation {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    background: transparent;
  }
}

.navigation__item {
  -webkit-transition: opacity 200ms ease, visibility 200ms ease;
  -o-transition: opacity 200ms ease, visibility 200ms ease;
  transition: opacity 200ms ease, visibility 200ms ease;
}

@media (min-width: 1200px) {
  .navigation__item:not(:first-of-type) {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1199px) {
  .navigation__item:first-of-type {
    display: none;
  }
}

.navigation__item--dropdown {
  position: relative;
}

.navigation.is-active .navigation__item {
  opacity: 1;
  visibility: visible;
}

.navigation__link {
  display: block;
  padding: 10px;
  font-family: "Locator", helvetica, arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  border-bottom: 1px solid #ff3e41;
  position: relative;
  -webkit-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
}

.navigation__link:hover, .navigation__link:focus {
  text-decoration: none;
}

@media (max-width: 1199px) {
  .navigation__link:hover, .navigation__link:focus {
    color: #eb262d;
  }
}

@media (min-width: 1200px) {
  .navigation.is-active .navigation__link {
    color: #fff;
  }
}

.navigation__dropdownMenu {
  display: none;
  padding: 3px 0;
}

@media (min-width: 1200px) {
  .navigation__dropdownMenu {
    position: absolute;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .navigation__item--dropdown:hover > .navigation__dropdownMenu {
    display: block !important;
  }
}

.navigation__dropdownMenuLink {
  display: block;
  padding: 4px 10px;
  font-family: "Locator", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.navigation__dropdownMenuLink:hover, .navigation__dropdownMenuLink:focus {
  color: #e0e0e0 !important;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .navigation__dropdownMenuLink:hover, .navigation__dropdownMenuLink:focus {
    color: #eb262d !important;
  }
}

.mobilenav{
  display: none;
}
.desktopnav{
  display: block;
}
@media screen and (max-width: 1199px) and (min-width: 320px) {
  .desktopnav{
    display: none;
  }
  .mobilenav{
    display: block;
    color: #fff;
  }
}
@media screen and (min-width: 320px) {
  .desktopnav{
    display: none;
  }
  .mobilenav{
    display: block;
    color: #fff;
  }
  .awards-carousel img {
    width: 100%;
    /* float: left; */
    }
}



/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 23, 60, .9), rgba(0, 23, 60, .9)), url(../images/about-page-title-bg.jpg) center center no-repeat;
    background-size: cover;
}
.page-top-heading{
    padding: 75px 50px 0px 50px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
.breadcrumb{
    font-size: 14px!important;
}
.breadcrumb-item.active {
    color: #FFC107!important;
}


/*** About ***/
.awards-carousel img {
    width: 300px;
   /* float: left;*/
}

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.products{
    background: url(../images/bg-products.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-top: 4px solid #ffc107;
    border-radius: 10px;
    background: #fff;
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}

.enquiry-section{
    background:  #F2F2F4;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
.contact-info-section{
    background-color: #00173C;
    padding: 30px;
    color: #fff;
}
.sec-title h2 {
    color: #00173C;
}
.contcat-form input[type="text"]{
    background: #f3f5f9;
}
.form-select:focus, .form-control:focus{
    border-color: #B3CFFF!important;
    box-shadow: 0 0 0 0.25rem rgb(179 207 255 / 25%);
}

/*@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}*/


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../images/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

/*certificate owl arrow left -right*/
.ceritificate-carousel .owl-nav {
    top: -300px;
    position: absolute;
    margin-left: 25px;
}
.owl-carousel .nav-arrow-btn {
    /*height: 47px;*/
    position: absolute;
    /*width: 26px;*/
    cursor: pointer;
    top: 312px !important;
}
.owl-carousel .nav-arrow-btn i.fas.fa-angle-left{
    background: red;
    left: 0px;
    padding: 10px;
    position: relative;
    font-size: 30px;
}
.owl-carousel .nav-arrow-btn i.fas.fa-angle-right{
   background: #FFC107;
    right: -40px;
    padding: 10px;
    position: relative;
    font-size: 30px;
}
.owl-carousel .prev-nav-slide:hover{
 background-position: 0px -53px;
}
.owl-carousel .next-nav-slide:hover{
background-position: -24px -53px;
}

/*owl arrow left - right*/
.owl-carousel .nav-btn{
      height: 47px;
      position: absolute;
      width: 26px;
      cursor: pointer;
      top: 100px !important;
  }

  .owl-carousel .owl-prev.disabled,
  .owl-carousel .owl-next.disabled{
    pointer-events: none;
    opacity: 0.2;
  }
.owl-carousel .prev-slide{
      background: url(../images/nav-icon.png) no-repeat scroll 0 0;
      left: -33px;
}
.owl-carousel .next-slide{
  background: url(../images/nav-icon.png) no-repeat scroll -24px 0px;
  right: -33px;
}
.owl-carousel .prev-slide:hover{
 background-position: 0px -53px;
}
.owl-carousel .next-slide:hover{
background-position: -24px -53px;
}

.owl-carousel.ceritificate-carousel {
    height: 565px;
}
.testimonial-carousel{
    height: 200px;
}
/*about page*/
.welcom-to-section h2{
    font-size: 3rem;
}
.img-colarge2 {
    position: relative;
    height: 100%;
    margin-bottom: 110px;
}
.colarge-2 {
    position: relative;
    margin-right: 240px;
    z-index: 1;
    left: 20px;
    border: 10px solid #ffc107;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 50%);
}
.colarge-2-1 {
    position: absolute;
    left: 170px;
    bottom: 10px;
    max-width: 370px;
}
.since-year-outer2 {
    position: relative;
}
.since-year2 {
    position: absolute;
    left: 20px;
    top: -5px;
    z-index: 1;
}
.since-year2 span {
    color: #00173C;
    font-size: 50px;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    display: block;
    line-height: 70px;
    position: relative;
    text-transform: uppercase;
}
.since-year2 strong {
    color: #FF3E41;
    font-size: 78px;
    font-weight: 500;
    font-family: 'Teko', sans-serif;
    display: block;
    line-height: 30px;
}
ul.checklist {
    margin: 0;
    list-style: none;
    float: left;
    width: 50%;
    display: inline-block;
    margin-bottom: 30px;
}
ul.checklist li:before {
    content: "\f14a";
    font-family: 'Font Awesome 5 free';
    margin-right: 10px;
    color: #FF3E41;
}
ul.checklist2 li{
    list-style: none;
}
ul.checklist2 li:before {
    content: "\f14a";
    font-family: 'Font Awesome 5 free';
    margin-right: 10px;
    color: #FF3E41;
}
.profile {
    padding: 80px 20px;
    text-align: center;
    font-weight: 400;
}
.quality-section .profile img {
    padding: 20px 0px;
}
.quality-section .content-box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    text-align: justify;
    padding: 65px 70px 60px;
}
.mytabe .nav-link{
    font-weight: 600;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #000!important;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.quality-section .nav-link{
    color: #000!important;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    background: #ffc107;
}
.products-tab .nav-link{
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 20px;
}
.bullet li i {
    color: #ff3e41;
}


.wt-small-separator div.sep-leaf-right:before, .wt-small-separator div.sep-leaf-left:before {
    position: absolute;
    content: '';
    background-color: #1c63b8;
    width: 40px;
    height: 3px;
    bottom: 3px;
}
.wt-small-separator div.sep-leaf-right {
    position: relative;
    margin-left: 13px;
}
.wt-small-separator div.sep-leaf-left {
    position: relative;
    margin-right: 50px;
}
.wt-small-separator div {
    display: inline-block;
}
.wt-small-separator div.sep-leaf-left::before, .wt-small-separator div.sep-leaf-right::before{
    background: #FF3E41;
}

