/********** Template CSS **********/
:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 100px;
    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: 500;
    text-transform: uppercase;
    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;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 15px 25px;
    color: #FFFFFF;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    border-radius: 50px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #E41D22;
    font-weight: 600;
    background-color: transparent;
  border-radius: 0;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #383b84;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
}

.page-header-inner {
    background: rgba(0, 0, 0, .55);
    min-height: 300px;
}
.page-header-inner .text-center {
  text-align: center !important;
  padding-top: 40px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/bg-image.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.fact.serv-bg {
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(../images/ban1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 360px;
}
.fact.hom-bg {
    background: url(../images/hom-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 720px;
    background-attachment: fixed;
}
.fact.team-bg {
    background: url(../images/team-bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 720px;
}
.serv-bg .col-lg-12
{
 padding: 100px 0 120px 0;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../images/carousel-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #E41D22 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #fff !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    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;
    border: 1px solid #E41D22;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #E41D22;
    border-color: #E41D22;
}


/*** Footer ***/
/*.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../images/foot-bg.jpg) center center no-repeat;
    background-size: cover;
}*/

.footer .btn.btn-social {
    margin-right: 25px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383B84;
    border: 2px solid #383B84;
    border-radius: 35px;
    transition: .3s;
}
.ft-soci .btn-outline-light:hover {
  background-color: #383B84;
}

.footer .btn.btn-social:hover {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
  margin-bottom: 18px;
  padding: 0;
  text-align: left;
  color: #E41D22;
  font-size: 19px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  width: fit-content;
  font-weight: 500;
}
.footer .btn.btn-link:hover {
  color: #383b84;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #383B84;
}
.footer .fa {
  color: #383B84;
}
.footer .btn.btn-link:hover {
    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);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/*********************************************************/

.intro-box .col-lg-6
{
margin: -150px auto 0 auto;
  display: block;
  z-index: 2;
}
.hom-bg-1 p
{
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  margin: 15px auto !important;
}
.hom-bg-1 h2
{
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 1.7;
  margin: 20px auto !important;
}
.testimonial-item img
{
 width: 140px !important;
 height: 57px;
}
.testi-sec .btn.btn-primary
{
 margin: 60px auto 20px auto;
  display: table;
  }
.ft-soci
{
 justify-content: left;
  margin-top: 0;
}
.footer .fa-map-marker-alt
{
 margin-top: 9px;
  float: left;
  height: 45px;
}
.ft-cont p
{
  font-size: 18px;
  margin-bottom: 15px !important;
  line-height: 1.7;
  color: #E41D22 !important;
}
.ft-cont a
{
  font-size: 18px;
  margin-bottom: 20px !important;
  line-height: 1.7 ;
  color: #E41D22;
}
.ft-cont a:hover
{
 color: #383b84;
}
.ft-open .text-light {
  color: #FBB931 !important;
}
.opens h6
{
 color: #E41D22 !important;
}
.opens p
{
 color: #E41D22 !important;
 margin-bottom: 10px !important;
 font-size: 17px;
}
.footer h4 {
  color: #383b84 !important;
  font-size: 26px;
  line-height: 1.7;
  margin-bottom: 10px !important;
  font-weight: 600;
  text-transform: uppercase;
}
.logo-sec img
{
 width: 360px;
 height: 96px;
}
.top-head.bg-light {
  background-color: #E41D22 !important;
}
.top-head .text-primary {
  color: #fff !important;
  font-size: 17px;
  line-height: 1.7;
}
.top-head a {
  color: #fff !important;
  font-size: 17px;
  line-height: 1.7;
}
.top-head a:hover {
  color: #f0e7e7 !important;
}
.top-head .py-3 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
small, .small {
  font-size: 17px;
  font-weight: 500;
  color: #fefefe;
}
.navbar .btn-primary {
  color: #fbb931 !important;
  background-color: #000;
  border-color: #000;
}
.btn-primary {
  background-color: #E41D22;
  border-color: #E41D22;
  color: #fff;
}
.btn-primary.back-to-top {
  background-color: #E41D22;
  border-color: #E41D22;
  color: #fff;
  border-radius: 50%;
}
.btn.btn-primary, .btn.btn-secondary {
  color: #fff;
}
.btn.btn-primary:hover, .btn.btn-secondary:hover {
  color: #fff;
}
.btn-primary:hover {
  background-color: #383b84;
  border-color: #383b84;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  /*font-family: "Barlow",sans-serif;*/
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  font-family: "Ubuntu", sans-serif;
}
.intro-box .col-lg-6 .bg-light {
  background-color: #f0e68c !important;
}
.review-box 
{
 box-shadow: 0 0 4px #000;
  padding: 20px;
  background-color: #ffe4c4;
}
.review-box h3
{
  font-size: 28px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}
.flexx img
{
 width: 120px;
 height: 40px;
}
.italic-p
{
 font-size: 16px;
  font-style: italic;
  font-weight: 500;
  color: #fbb931;
  text-shadow: 0px 1px 1px #000;
  margin-bottom: 0 !important;
  line-height: 2.2;
  letter-spacing: 0.2px;
}
.flexx
{
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 15px;
}
.rev-txt h4
{
 font-size: 22px;
  font-style: italic;
  font-weight: 800;
  color: #000;
  text-align: center;
}
.rev-txt p
{
  font-size: 16px;
  font-weight: 400;
  color: #3a3b3f;
  text-align: left;
  height: 120px;
}
.form-p .italic-p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: #3a3b3f;
  line-height: 2;
  letter-spacing: 0.2px;
  text-align: center;
}
.form-p
{
 margin-bottom: 30px;
 margin-top: 20px;
}
.book-form-sec h4 {
  text-align: center;
  margin-top: 50px;
  font-size: 33px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.book-form-sec h5 {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #3a3b3f;
  line-height: 1.7;
  letter-spacing: 0.2px;
  text-align: left;
}
.form-2.col-md-6, .form-2.col-12, .form-2.col-md-4
{
 margin: 0 auto 20px auto;
}
.book-form-sec p {
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  color: #3a3b3f;
  line-height: 1.7;
  letter-spacing: 0.2px;
  text-align: left;
}
.form-2 .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: .625rem;
  padding-bottom: .625rem;
}
.form-btn a
{
 margin: 0 auto;
  display: table;
}
.cont-detail a
{
 color: #3a3b3f;
}
.cont-detail a:hover
{
 color: #E41D22;
}
.cont-detail .bg-light {
  background-color: #fefefe !important;
  box-shadow: 0 0 3px #000;
}
.c-form
{
 margin: 60px auto;
  display: block;
}
.c-form h2 {
  text-align: center;
  margin-top: 30px;
  font-size: 33px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #383b84;
  text-transform: uppercase;
}
.c-form .form-btn a {
  margin: 40px auto 0 auto;
  display: table;
  padding: 10px 24px;
}
.map-sec
{
 display: flex;
}
.map-sec iframe
{
  width: 600px;
  height: 450px;
  border: 0;
  margin: 0 auto;
  display: block;
}
.rate-form  h5 {
  font-size: 18px;
  font-weight: 500;
  color: #3a3b3f;
  line-height: 1.7;
  letter-spacing: 0.2px;
  text-align: left;
}
.rate-form .form-floating
{
 margin-bottom: 40px;
}
.rate-form .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: .625rem;
  padding-bottom: .625rem;
}
.bx-star::before {
  content: "\ec27";
  color: #fbb931 !important;
}
.rate-form .form-btn
{
 margin-top: 30px;
}
.fa-star::before {
  content: "\f005";
  color: #FBB931;
}
.rate-sec .bg-success {
  background-color: firebrick !important;
}
.rev-container
{
 padding: 80px 0 30px 0 !important;
}
.testimonial-carousel .owl-item .testimonial-text
{
 height: 240px;
}
.intro-box .text-secondary {
  color: #fff !important;
  font-size: 17px;
  font-weight: 500;
  text-align: center !important;
  margin: 0 auto;
  display: table;
  padding: 5px 25px;
  border: 2px solid #383b84;
  background-color: #383b84;
}
.intro-box .text-secondary:hover {
  color: #383b84 !important;
  background-color: #f2f2f2;
}
/* =============================== Site Map ================================ */
.sitemapul
{
    list-style-type: none;
    padding: 20px;
    width: 60%;
    margin: 20px auto;
    background: #383b84;
    /*border: 1px solid;*/
    border-radius: 10px;
}
.sitemapul ul
{
    list-style-type: none;
    padding: 20px;
    width: 60%;
    margin: 20px auto;
    background: #0094d9;
    border: 1px solid #0094d9;
    border-radius: 10px;
    color: #000;
}

.sitemapul li
{
    background: #f2f2f2;
    border: 1px solid;
    padding: 5px 20px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.sitemapul li a
{
    font-weight: bold;
    font-size: 20px;
    color: #383b84 !important;
    text-decoration: none;
}
.sitemapul li a:hover
{
    color: #E41D22 !important;
}

/*****************************/
.navbar.bg-white {
  background-color: #fff !important;
  box-shadow: 0 1px 1px #383b84;
  padding: 0 30px !important;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #E41D22;
}
.intro-boxx img
{
 width: 320px;
  height: 213px;
  margin: 0 auto 20px auto;
  display: block;
  max-width: 100%;
}
.intro-boxx
{
  background-color: #f2f2f2;
  padding: 40px;
  box-shadow: 0 0 2px #383b84;
  width: 400px;
  margin: 0 auto;
}
.intro-boxx h5
{
 font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  color: #383b84;
  margin-bottom: 10px !important;
}
.intr-p
{
 height: 180px;
}
.intro-box .text-secondary:hover {
  color: #383b84 !important;
}
.footer.bg-dark {
  background-color: #f2f2f2 !important;
  box-shadow: 0 0 4px #383b84;
}
.foot-logo img
{
  width: 360px;
  height: 96px;
  margin: 0 auto;
}
.ft-links
{
 padding-left: 80px;
}
.copyright
{
  padding: 20px 0;
  background-color: #e41d22;
}
.copyright p
{
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 0 !important;
  color: #fff;
  text-align: center;
}
.copyright p a
{
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0 !important;
  color: #fff !important;
  text-align: center;
}
.copyright p a:hover
{
  color: #f0e7e7;
}
.testi-sec h1
{
 font-size: 45px;
  color: #fff;
  line-height: 1.7;
  text-transform: uppercase;
}
.testi-sec h5
{
 font-size: 20px;
  color: #f0e7e7;
  line-height: 1.7;
  margin-bottom: 15px !important;
}
.testi-sec .p-w
{
 color: #fff;
  font-size: 15px;
  line-height: 1.7;
}
.testimonial-text.bg-light {
  background: rgba(255, 255, 255, 0.5) !important;
}
.footer .op-h4 {
  color: #383b84 !important;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px !important;
  font-weight: 600;
}
.opens
{
 margin: 25px auto 0 auto;
}
.div-hifen
{
 margin: 0 12px;
}
.serv-txt .text-primary {
  color: #E41D22 !important;
  line-height: 1.7;
  text-align: center;
}
.serv-txt h1 {
  text-align: center;
}
.serv-txt h5
{
 font-size: 24px;
  color: #000;
  padding-left: 15px;
  line-height: 1.5;
}
.serv-li li
{
 font-size: 17px;
  color: #373435;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style-type: disclosure-closed;
}
.serv-bg-li li
{
  font-size: 18px;
  font-weight: 500;
  color: #fefefe;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style-type: disclosure-closed;
  text-shadow: 1px 1px 2px #000;
}
.serv-bg-li
{
  column-count: 3;
  margin: 30px auto;
}
.serv-pg
{
 padding-bottom: 80px !important
}
.serv-bg-sec.hom-bg-1 p {
  font-size: 24px;
  color: #fff !important;
  font-weight: 500;
  line-height: 1.7;
  margin: 15px auto !important;
  text-shadow: 2px 2px 2px #000;
}
.serv-bg-sec .text-white {
  color: #E41D22 !important;
}
.card-header img {
  width: 100% !important;
  height: 168px !important;
}
.prod-li li
{
 font-size: 17px;
  color: #373435;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style-type: disclosure-closed;
}
.carousel-sec
{
 margin-bottom: 40px;
}
.gal-img img
{
 width: 391px;
  height: 220px;
  margin: 0 auto;
  display: block;
}
.gallery-sec h1
{
 text-align: center;
 margin-bottom: 40px !important;
 color: #383b84;
}
.cont-detail .text-primary {
  color: #E41D22 !important;
}
.cont-detail h5
{
 color: #E41D22 !important;
}
.breadcrumb a
{
 color: #E41D22 !important;
}
.breadcrumb a:hover
{
 color: #fff !important;
}
.rw2
{
 margin-top: 20px;
}
.cont-detail .fa-map-marker
{
 float: left;
  margin-top: 5px;
  height: 30px;
}
.cont-detail .col-md-4 .p-4
{
 height: 140px;
}
.cont-detail .col-md-4 p
{
  line-height: 1.7;
  margin-bottom: 4px !important;
}
.testimonial-text p
{
 color: #000;
}
/*************************************/
.wel-hom .col-lg-6 img 
{
  width: 100% !important;
  height: 430px !important;
  margin: 0 auto;
  display: block;
}
.wel-abt .col-lg-6 img 
{
  width: 540px !important;
  height: 540px !important;
  margin: 0 auto;
  display: block;
}
.wel-ser .col-lg-6 img 
{
  width: 100% !important;
  height: 520px !important;
  margin: 0 auto;
  display: block;
}
.wel-pro .col-lg-6 img 
{
  width: 100% !important;
  height: 397px !important;
  margin: 0 auto;
  display: block;
}

.top-head .soci-ico .text-primary {
  color: #fff !important;
  background-color: transparent !important;
  border: 3px solid #fff;
  border-radius: 50%;
}
.soci-ico
{
 margin-right: 30px;
}
.top-head .soci-ico .text-primary:hover {
  color: #E41D22 !important;
  background-color: #fff !important;
}
.intr-p p
{
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  color: #3a3b3f;
}
.wel-abt p
{
  font-size: 17px;
  line-height: 1.7;
}
.title-sec h6
{
  color: #e41d22;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title-sec h1
{
  color: #383b84;
  font-size: 36px;
  line-height: 1.7;
  margin-bottom: 15px !important;
  text-transform: uppercase;
}
.wel-abt .title-sec h1 {
  color: #383b84;
  font-size: 36px;
  line-height: 1.7;
  margin-bottom: 40px !important;
  text-transform: uppercase;
}
.col-r
{
 color: #e41d22;
}
.col-b
{
 color: #383b84;
}
.wel-abt.serv-pg .title-sec p
{
 font-size: 21px;
 font-weight: 500;
 line-height: 1.7;
 margin-bottom: 15px;
 color: #3a3b3f;
}
.serv-box
{
  background-color: #f2f2f2;
  padding: 40px;
  box-shadow: 0 0 3px #383b84;
  margin-top: 40px;
}
.flexxi
{
 display: flex;
}
.serv-img img
{
  width: 480px;
  height: 270px;
}
.serv-txt
{
 padding: 45px;
}
.serv-txt h4
{
  font-size: 23px;
  color: #383b84;
  line-height: 1.5;
  margin-bottom: 10px;
}
.serv-txt p
{
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
}
.g-map iframe
{
 width: 100%;
 height: 450px;
 border: 0;
}
.cont-pg .row.g-4 .bg-light {
  background-color: #F2F2F2 !important;
  box-shadow: 0 0 2px #383b84;
}
.cont-pg .row.g-4 .bg-light h5 {
  color: #383b84;
  font-size: 20px;
}
.cont-pg .row.g-4 .bg-light p
{
  font-size: 17px;
  font-weight: 500;
  color: #3a3b3f;
}
.cont-pg .row.g-4 .bg-light p a
{
  font-size: 17px;
  font-weight: 500;
  color: #e41d22;
}
.cont-pg .row.g-4 .bg-light p a:hover
{
  color: #3a3b3f;
}
.cont-pg .title-sec p
{
  font-size: 17px;
  line-height: 1.7;
  color: #3a3b3f;
  font-weight: 500;
}
.page-header-inner .display-3 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    line-height: 1.5;
  }
.wel-bullet .d-flex {
  display: flex !important;
  align-items: center;
}
.wel-bullet .d-flex h6
{
  font-size: 17px;
  margin: 0 !important;
  color: #383b84;
  line-height: 1.7;
  font-weight: 600;
}
.wel-bullet .d-flex .text-secondary {
  color: #383B84 !important;
}
#header-carousel img {
  width: 100%;
  height: 699px;
}


/***** Media Queries *****/

@media (max-width: 1199px)
{
.navbar
{
 display: grid;
 justify-content: center;
}
.logo-sec img {
  width: 330px;
  height: 66px;
  margin: 0 auto;
  display: block;
}
.navbar-light .navbar-nav .nav-link {
  margin-right: 20px;
  padding: 8px 20px;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}
.intro-boxx {
  padding: 30px 25px;
  width: 100%;
}
.intr-p p
{
 font-size: 15px;
}
.intro-boxx h5 {
  font-size: 24px;
}
.intro-box .text-secondary {
  font-size: 17px;
}
.wel-hom .col-lg-6 img {
  width: 100% !important;
  height: 445px !important;
}
h1.mb-4
{
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 15px !important;
}
.wel-hom .col-lg-6 p
{
  margin-bottom: 12px !important;
  font-size: 16px;
}
.testimonial-text p {
  color: #000;
  font-size: 15px;
}
.testimonial-carousel .owl-item .testimonial-text {
  height: 280px;
}
.ft-cont p {
  font-size: 16px;
  margin-bottom: 20px !important;
  line-height: 1.7;
}
.ft-cont a {
  font-size: 16px;
}
.foot-logo img {
  width: 100%;
  height: 56px;
  margin: 0 auto;
  display: block;
}
.footer .btn.btn-link
{
 font-size: 16px;
}
.wel-abt .col-lg-6 img {
  width: 100% !important;
  height: 444px !important;
}
.wel-abt .col-lg-6 p
{
  margin-bottom: 12px !important;
  font-size: 16px;
}
.wel-ser .col-lg-6 img {
  width: 100% !important;
  height: 444px !important;
  margin: 0 auto;
  display: block;
}
.serv-txt .text-primary {
  font-size: 15px;
}
.serv-li li {
  font-size: 16px;
  margin-bottom: 6px;
}
.serv-txt h5 {
  font-size: 22px;
  padding-left: 15px;
}
.serv-bg-li {
  column-count: 2;
  margin: 30px auto;
}
.wel-pro .col-lg-6 img {
  width: 100% !important;
  height: 444px !important;
}
.card-header img {
  width: 100% !important;
  height: 110px !important;
}
.display-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.breadcrumb-item
{
 font-size: 14px;
}
.gal-img img {
  width: 100% !important;
  height: 230px;
}
.gal-img.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%;
    padding: 0 10px;
    margin-top: 8px;
  }
.gallery-sec  h1.mb-4 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 60px !important;
  }
.page-header.mb-5 {
  margin-bottom: 0 !important;
}
.map-sec iframe {
  width: 48%;
  height: 360px;
}
.cont-detail .col-md-4 p {
  line-height: 1.7;
  margin-bottom: 4px !important;
  font-size: 15px;
}
.cont-detail .p-4 {
  padding: 20px 14px !important;
}
.cont-detail .fa-map-marker {
  margin-top: 5px;
  height: 50px;
}
.navbar {
    display: flex;
    justify-content: space-between;
  }
#header-carousel img {
  height: 471px;
}
.intro-boxx img
{
  width: 245px;
  height: 163px;
}
.opens p
{
  font-size: 14px;
}
.fact.team-bg
{
  background-size: contain;
  min-height: 539px;
}
.serv-img img
{
  width: 442px;
  height: 248px;
}
.cont-pg .row.g-4 .bg-light p
{
  font-size: 16px;
}
}

@media (max-width: 1023px)
{
.intro-box .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
  }
.intr-p {
  height: auto;
}
.intro-boxx {
    padding: 30px 25px;
    width: 540px;
  }
.wel-hom .position-absolute {
  position: inherit !important;
}
.wel-abt .position-absolute {
  position: inherit !important;
}
.wel-ser .position-absolute {
  position: inherit !important;
}
.wel-pro .position-absolute {
  position: inherit !important;
}
.wel-pro .col-lg-6 img {
    width: 100% !important;
    height: 696px !important;
  }
.wel-hom .col-lg-6 img {
    width: 100% !important;
    height: 696px !important;
  }
.footer .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
 .foot-logo img {
    width: 400px;
    height: 80px;
    margin: 0 auto;
    display: inherit;
  }
.ft-links {
  padding-left: 25px;
}
 .wel-abt .col-lg-6 img {
    width: 100% !important;
    height: 696px !important;
  }
.wel-ser .col-lg-6 img {
    width: 100% !important;
    height: 696px !important;
  }
 .serv-txt .text-primary {
    font-size: 14px;
    letter-spacing: 0.2px;
  }
 .serv-bg-li {
    column-count: 1;
    margin: 30px auto;
    display: table;
  }
.gal-img.col-lg-4 {
    flex: 0 0 auto;
    width: 50%;
  }
 .gal-img img {
    width: 100% !important;
    height: 264px;
  }
.cont-detail .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
  }
.cont-detail .bg-light {
  width: 450px;
  margin: 0 auto;
}
.c-form .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }
.opens {
  margin: 25px 0 0 0;
  display: table;
}
.ft-soci {
  justify-content: flex-start;
  margin-top: 0;
}
.intro-boxx img
{
  width: 490px;
  height: 326px;
}
.fact.hom-bg
{
    min-height: auto;
    background-size: contain;
    min-height: 404px;
    background-attachment: scroll;
}
.fact.team-bg
{
  min-height: 404px;
}
.flexxi
{
  gap: 20px;
}
.serv-txt {
  padding: 0;
}
 .serv-img img {
    width: 280px;
    height: 157px;
  }
  
}

@media (max-width: 767px)
{
.intro-boxx {
    padding: 30px 25px;
    width: 100%;
  }
 .wel-hom .col-lg-6 img {
    width: 100% !important;
    height: 516px !important;
  }
.testimonial-carousel .owl-item .testimonial-text {
    height: 180px;
  }
.wel-abt .col-lg-6 img {
    width: 100% !important;
    height: 516px !important;
  }
.display-3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
  }
.wel-ser .col-lg-6 img {
    width: 100% !important;
    height: 516px !important;
  }
.footer .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 15px !important;
  }
.wel-pro .col-lg-6 img {
    width: 100% !important;
    height: 516px !important;
  }
.card-header img {
    width: 100% !important;
    height: 176px !important;
  }
.gal-img.col-lg-4 {
    flex: 0 0 auto;
    width: 100%;
  }
.gal-img img {
    width: 100% !important;
    height: 408px;
  }
.map-sec {
  display: grid;
}
.map-sec iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
.testi-sec h1 {
  font-size: 36px;
}
.serv-bg .col-lg-12 {
  padding: 10px 0 20px 0;
}
.serv-bg-sec.hom-bg-1 p, .wel-abt.serv-pg .title-sec p
{
  font-size: 21px;
  font-weight: 400;
}
 .intro-boxx img {
    width: 466px;
    height: 310px;
  }
  .fact.hom-bg
{
  min-height: 337px;
}
.fact.team-bg
{
  min-height: 337px;
}
.flexxi
{
  display: block;
}
.serv-img img
{
  width: 436px;
  height: 245px;
}
.serv-txt
{
  margin-top: 20px;
}
}

@media (max-width: 639px)
{
.logo-sec img {
    width: 280px;
    height: 56px;
  }
.wel-hom .col-lg-6 img, .wel-abt .col-lg-6 img, .wel-ser .col-lg-6 img, .wel-pro .col-lg-6 img {
    width: 100% !important;
    height: 432px !important;
  }
.testimonial-carousel .owl-item .testimonial-text {
    height: 210px;
  }
.hom-bg-1 h2 {
  font-size: 33px;
  margin: 20px auto !important;
}
.serv-bg-sec.hom-bg-1 p {
  font-size: 18px;
  margin: 15px auto !important;
}
.serv-bg-li li {
  font-size: 17px;
  margin-bottom: 8px;
}
.ft-cont p {
    font-size: 17px;
    margin-bottom: 12px !important;
  }
.ft-cont a {
    font-size: 17px;
  }
 .card-header img {
    width: 100% !important;
    height: 132px !important;
  }
.copyright p {
  font-size: 15px;
}
.footer h4 {
  font-size: 25px;
  margin-bottom: 10px !important;
}
.gal-img img {
    width: 100% !important;
    height: 330px;
  }
 .gal-img.col-lg-4 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 20px;
  }
.navbar-toggler-icon {
  width: 22px;
  height: 22px;
}
.cont-detail .bg-light {
    width: 100%;
    margin: 0 auto;
  }
.c-form h2 {
  margin-top: 20px;
  font-size: 33px;
  margin-bottom: 20px;
}
.form-btn .px-5 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}
.form-btn .py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.sitemapul {
  width: 80%;
}
h1.mb-5 {
  margin-bottom: 20px !important;
}
.foot-logo img {
    width: 340px;
    height: 68px;
  }
.btn.px-5 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}
.btn.py-3 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.btn
{
 font-size: 15px;
}
.testi-sec h1 {
  font-size: 33px;
}
.copyright p a {
    font-size: 15px;
  }
.intro-boxx img
{
  width: 382px;
  height: 254px;
}
  .fact.hom-bg {
    min-height: 253px;
  }
   .fact.team-bg {
    min-height: 253px;
  }
  .serv-img img
  {
    width: 100%;
    height: 198px;
  }
  .fact.serv-bg
  {
    min-height: 270px;
  }
}

@media (max-width: 479px)
{
.logo-sec img {
    width: 200px;
    height: 40px;
  }
.navbar-toggler-icon {
    width: 18px;
    height: 18px;
  }
.navbar-toggler {
  padding: 3px 6px;
  font-size: 14px;
  line-height: 1;
}
.navbar-toggler.me-4 {
  margin-right: 0 !important;
}
.intro-boxx h5 {
    font-size: 22px;
  }
.intro-box .text-secondary {
    font-size: 16px;
  }
.wel-hom .col-lg-6 img, .wel-abt .col-lg-6 img, .wel-ser .col-lg-6 img, .wel-pro .col-lg-6 img {
    width: 100% !important;
    height: 312px !important;
  }
h1.mb-4 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 15px !important;
  }
.wel-hom .col-lg-6 p {
    margin-bottom: 12px !important;
    font-size: 15px;
  }
.testi-sec h5 {
  font-size: 18px;
  margin-bottom: 15px !important;
}
.testimonial-carousel .owl-item .testimonial-text {
    height: 270px;
  }
.foot-logo img {
    width: 100%;
    height: 62px;
  }
.back-to-top {
  right: 20px;
  bottom: 65px;
}
.ft-cont p {
    font-size: 16px;
    margin-bottom: 8px !important;
  }
 .ft-cont a {
    font-size: 16px;
  }
.footer .btn.btn-link {
    font-size: 17px;
  }
.display-3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
  }
.breadcrumb-item {
    font-size: 13px;
  }
.hom-bg-1 h2 {
    font-size: 30px;
    margin: 20px auto !important;
  }
.serv-bg-sec.hom-bg-1 p {
    font-size: 17px;
    margin: 10px auto !important;
  }
.serv-bg-li li {
    font-size: 16px;
    margin-bottom: 8px;
  }
.prod-li li {
  font-size: 16px;
  margin-bottom: 6px;
}
.card-header img {
    width: 100% !important;
    height: 71px !important;
  }
.slick-dots
{
  display: none !important;
}
.carousel-sec .py-5 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.gal-img img {
    width: 100% !important;
    height: 240px;
  }
 .sitemapul {
    width: 90%;
  }
.gallery-sec h1.mb-4 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 60px !important;
  }
.btn-lg-square {
  width: 30px;
  height: 30px;
}
#header-carousel .carousel-item img
{
  height: 280px;
    object-fit: cover;
}
  #header-carousel .carousel-item {
    position: relative;
    min-height: 280px;
  }
  .title-sec h6
  {
    font-size: 18px;
  }
  .wel-abt .title-sec h1
  {
    font-size: 23px;
  }
  .intro-boxx img
  {
    width: 100%;
  }
  .fact.hom-bg
  {
    min-height: 190px;
  }
    .fact.team-bg {
    min-height: 180px;
    background-position: center center;
  }
  .serv-img img
  {
    height: 110px;
  }
  .serv-txt h4
  {
    font-size: 18px;
  }
  .serv-txt p
  {
    font-size: 16px;
  }
  .page-header-inner .display-3
  {
    font-size: 35px;
  }
  .cont-pg .row.g-4 .bg-light p, .cont-pg .row.g-4 .bg-light p a {
    font-size: 14px;
  }
}

@media (max-width: 359px)
{
.wel-hom .col-lg-6 img, .wel-abt .col-lg-6 img, .wel-ser .col-lg-6 img, .wel-pro .col-lg-6 img {
    width: 100% !important;
    height: 272px !important;
  }
h1.mb-4 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px !important;
  }
 .testimonial-carousel .owl-item .testimonial-text {
    height: 310px;
  }
.wel-abt .col-lg-6 p {
    margin-bottom: 10px !important;
    font-size: 15px;
  }
.serv-li li {
    font-size: 15px;
    margin-bottom: 6px;
  }
 .serv-txt .text-primary {
    font-size: 13px;
    letter-spacing: 0.2px;
  }
 .hom-bg-1 h2 {
    font-size: 25px;
    margin: 20px auto !important;
  }
.prod-li li {
    font-size: 15px;
    margin-bottom: 6px;
  }
.card-header img {
    width: 100% !important;
    height: 51px !important;
  }
.gal-img img {
    width: 100% !important;
    height: 210px;
  }
.copyright p {
    font-size: 14px;
  }
.copyright p a {
    font-size: 14px;
  }
.map-sec iframe {
    width: 100%;
    height: 240px;
    margin-bottom: 30px;
  }
.sitemapul li a {
  font-size: 16px;
}
.intro-boxx img
{
  height: 148px;
}

}