
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ThinItalic.ttf");
  font-style: italic;
  font-weight: 100;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraLightItalic.ttf");
  font-style: italic;
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-LightItalic.ttf");
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Italic.ttf");
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-MediumItalic.ttf");
  font-style: italic;
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-SemiBoldItalic.ttf");
  font-style: italic;
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-BoldItalic.ttf");
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-ExtraBoldItalic.ttf");
  font-style: italic;
  font-weight: 800;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-BlackItalic.ttf");
  font-style: italic;
  font-weight: 900;
}

body{
    font-family: 'Montserrat';
    overflow-x: hidden;
}
#preloader {
    background: #fff;
    height: 100%;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999999;
}


.preloader {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    position: absolute;
}

    .preloader span {
        position: absolute;
        display: block;
        bottom: 0;
        width: 9px;
        height: 5px;
        border-radius: 5px;
        background: #fff;
        -webkit-animation: preloader 2s infinite ease-in-out;
        animation: preloader 2s infinite ease-in-out;
    }

        .preloader span:nth-child(2) {
            left: 11px;
            -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
        }

        .preloader span:nth-child(3) {
            left: 22px;
            -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
        }

        .preloader span:nth-child(4) {
            left: 33px;
            -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
        }

        .preloader span:nth-child(5) {
            left: 44px;
            -webkit-animation-delay: 800ms;
            animation-delay: 800ms;
        }

        .preloader span:nth-child(6) {
            left: 55px;
            -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
        }

@-webkit-keyframes preloader {
    0% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }

    25% {
        height: 30px;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        background: #EE1B24;
    }

    50%, 100% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.1);
    }
}

@keyframes preloader {
    0% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #fff;
    }

    25% {
        height: 30px;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        background: #EE1B24;
    }

    50%, 100% {
        height: 5px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        background: #fff;
    }
}


.bg-black{
    background-color: black;
} 
.opacity-1{
    opacity: 1;
}
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
    text-decoration: none;
    transition: 0.3s ease;
}
a:hover{
    color: #fdd500
}

.text-primary{
  color: #EE1B24 !important;
}

.btn{
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background-color: #EE1B24;
  border-color: #EE1B24;
}

.btn-primary:hover {
  color: #fff;
  background-color: #cf0e17;
  border-color: #cf0e17;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #EE1B24;
  border-color: #EE1B24;
  box-shadow: 0 0 0 .25rem #ee1b244f;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem #ee1b244f;
}

.icon-img-30 img{
    width: 32px;
}

.header{
    padding: 15px 0;
}
.logo{
    width: 140px;
}

.navbar.nav-scroll {
    background: #ffffff;
    position: sticky;
    top: -80px;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    width: 100%;
    z-index: 99;
    box-shadow: 0 0px 8px #0000000d;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.topbar .nav-link {
  color: #606060;
  position: relative;
  transition: 0.3s ease;
  font-weight: 600;
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  font-size: 16px;
  padding: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.topbar .nav-link:hover, .topbar .nav-link.active{
  color: black;
}
.topbar .nav-link.trans::after{
    transition: 0.3s ease;
    content: '';
    height: 2px;
    width: 0px;
    background-color: black;
    position: absolute;
    display: block;
    left: 10%;
}

.topbar .nav-link.trans:hover::after{
    transition: 0.3s ease;
    content: '';
    height: 2px;
    width: 80%;
    background-color: black;
    position: absolute;
    display: block;
    left: 10%;
}

.section{
  padding: 70px 0;
}

.footer{
  background: #ad0910;
  padding: 50px 0;
  color: #ffffff;
}
.logo-footer{
  width: 190px;
}
.footer-title {
  font-size: 20px;
  font-weight: 500;
}
.footer-menu .seperator{
  opacity: 1;
  display: block;
  width: 45px;
  height: 3px;
  border-radius: 25px;
  background-color: #ffffff;
}
.footer-menu li a {
  font-size: 16px;
  line-height: 36px;
  text-transform: capitalize;
  display: block;
  color: #e7e7e7;
  transition: 0.3s ease;
}
.footer-menu li a:hover{
  color: #ffffff;
}

.footer-menu li a i {
  /* line-height: 0; */
  vertical-align: middle;
}
.social-icons {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: black;
  background: white;
  font-size: 18px;
}
.social-icons i{
  line-height: 0;
}

.social-icons:hover{
  color: #EE1B24;
}

.bottom-footer {
  background: #9d080e;
  color: white;
}

.bottom-footer a{
  color: white;
}
.bottom-footer p {
  font-size: 14px;
}

/* .banner .overlay{
  padding: 200px 0;
}
 */
 .banner-slider .slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}
.banner-slider .overlay{
  height: 100%;
  background-color: #000000ba;
  display: flex;
  align-items: center;
  color: white;
} 

.banner-slider .owl-dots{
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.banner-slider .owl-nav {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  padding: 0 10%;
}

.banner-slider .owl-nav .owl-prev{
  float: left;
}
.banner-slider .owl-nav .owl-next{
  float: right;
}
.banner-slider .owl-nav .owl-prev, .banner-slider .owl-nav .owl-next {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  background: #EE1B24 !important;
  border-radius: 50%;
  font-size: 18px !important;
  transition: 0.3s ease;
}
.banner-slider .owl-nav .owl-prev:hover, .banner-slider .owl-nav .owl-next:hover {
  background: #cf0e17 !important;
}
.banner-slider .owl-nav button i{
  line-height: 0;
}

.banner-title h6{
  font-size: 18px;
  color: #EE1B24;
  font-weight: 600;
}
.banner-title h1{
  font-size: 42px;
  font-weight: 700;
}
.banner-title p{
  font-size: 16px;
}

.small-title {
  color: #EE1B24;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.title {
  font-size: 32px;
  font-weight: 700;
}
.med-title {
  font-size: 30px;
  font-weight: 600;
}

.service-card .card-body{
  box-shadow: 0px 2px 13px 0px #00000026;
  border-radius: 16px;
  padding-top: 60px;
}
.service-img {
    text-align: center;
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
}
.service-img img {
    width: 90%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}
.stats-card{
  background-color: #EE1B24;
  border: none;
  border-radius: 16px;
}
.why-us{
  background-image: url('../images/banner1.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.why-us .overlay {
  background: linear-gradient(180deg, rgba(85, 85, 85, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.stats-section {
  margin-bottom: -40px;
}
.whyus{
  margin-bottom: -70px;
}

.testi-card {
  border: none;
  border-left: 4px solid transparent;
  background-color: #F6F7F9;
  border-radius: 12px;
  border-image: linear-gradient(#EE1B24,  transparent);
  border-image-slice: 1;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
}

span.user-img {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

/* .user-img img {
  height: 60px;
  width: 60px !important;
  border-radius: 50%;
  object-fit: cover;
} */

.testi-slider-nav .owl-nav .owl-prev, .testi-slider-nav .owl-nav .owl-next {
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  background: #EE1B24 !important;
  border-radius: 50%;
  font-size: 18px !important;
  transition: 0.3s ease;
  border: 0;
}
.testi-slider-nav .owl-nav .owl-prev i, .testi-slider-nav .owl-nav .owl-next i{
  line-height: 0;
}

.brand-img img{
  width: 100px !important;
  margin: auto;
}

.brand-slider.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.brand-slider .owl-stage-outer::before {
  content: '';
  height: 100%;
  width: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, white, transparent);
  z-index: 99;
}

.brand-slider .owl-stage-outer::after {
  content: '';
  height: 100%;
  width: 40px;
  position: absolute;
 right: 0;
  top: 0;
  background: linear-gradient(90deg, transparent, white);
  z-index: 99;
}

.contact-banner{
    background-image: url('../images/contact-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-banner{
    background-image: url('../images/banner1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-overlay{
    padding: 100px 0;
    background: #00000085;
}
.contact-card {
    background: #FEE9EA;
    border: none;
    border-radius: 16px;
}

.contact-det-card{
    background: white;
    border: 1px solid #EE1B2433;
    border-radius: 12px;
}

.icon-sm {
    color: white;
    background: #EE1B24;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
}
.contact-form label{
    font-weight: 600;
}
.contact-form .form-control {
    background: #F5F5F5;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
}

.icon-sm i {
    line-height: 0;
}

.contact-map iframe{
    border: 1px solid #EE1B2433;
    border-radius: 12px;
}

.icon-img {
    height: 62px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-bottom: 20px;
    background: #EE1B24;
    margin-right: auto;
    margin-top: -50px;
}
.icon-img img{
    width: 32px;
}
.mission-card{
    background: #FEE9EA;
    border-radius: 16px;
}

.service-bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-desc-img img {
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0px 2px 13px 0px #0000002b;
}

.service-desc-img{
    position: relative;
}

.service-desc-img::after{
    content: '';
    display: block;
    height: 60%;
    width: 40%;
    position: absolute;
    z-index: -1;
    background: red;
    border-radius: 16px;
    box-shadow: 0px 2px 13px 0px #0000002b;
    top: -5%;
    right: -5%;
}

.benefits-card .card-body {
    border-radius: 16px;
    padding-top: 65px;
    background: #fde8e9;
}
.benefits-img {
    text-align: center;
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
}
.benefits-img img {
    width: 80%;
    height: 350px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0px 2px 13px 0px #00000026;
}

.icon-xs {
    color: white;
    background: #EE1B24;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 12px;
    justify-content: center;
}
.icon-xs i{
    line-height: 0;
}


/*========================== Media Query ==========================*/

@media screen and (max-width: 1199px){
  .banner-slider .owl-nav {
      padding: 0 1%;
  }
}
@media screen and (max-width: 991px){
  .logo {
    width: 100px;
  }
  .banner-title h1 {
    font-size: 36px;
  }
  .med-title {
    font-size: 26px;
}
  .title {
    font-size: 28px;
  }
  .banner-slider .slide {
    height: 60vh;
}
.navbar-nav {
  padding-top: 16px;
}
}
@media screen and (max-width: 767px){
  .stats-section {
      margin: 0px;
      padding: 70px 0;
  }
}
@media screen and (max-width: 479px){
  .banner-title h1 {
    font-size: 32px;
  }
  .banner-title p {
    font-size: 14px;
  }
  .title {
    font-size: 24px;
  }
  .small-title {
    color: #EE1B24;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
  }

  .banner-overlay {
    padding: 70px 0;
    background: #00000085;
}
}
@media screen and (max-width: 320px){
  .banner-title h6 {
    font-size: 14px;
  }
  .banner-title h1 {
    font-size: 24px;
  }
  body {
    font-size: 14px;
  }
  .section {
    padding: 50px 0;
  }
}