/********** Template CSS **********/
body {
    color: #646464;}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}

.bg-dark {
    background-color: #0a1221 !important;
}
.bg-primary {
    background-color: #0a1c2e !important;
} 
/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.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;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-gray);
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
    background: #fa2311 !important;
}
.navbar {background: #fa2311 !important}
.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 20px 18px;
    color: var(--bs-light);
    font-size: 14px;
    font-weight: 500;
    outline: none; text-transform: uppercase;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #000;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.2rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: rgba(0,0,0,0);
    border: 0;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }

    .navbar {
        height: 68px;
    }

    .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 ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(3, 27, 78, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-primary);
    border: 15px solid var(--bs-primary);
}

@media (max-width: 767.98px) {
    #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: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}


/*** Features ***/
.feature {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/feature.jpg) left center no-repeat fixed;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.experience .nav-pills .nav-link {
    color: var(--dark);
}

.experience .nav-pills .nav-link.active {
    color: #FFFFFF;
}

.experience .tab-content hr {
    width: 30px;
}


/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    margin: 0 auto;
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 20px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: url(../img/testimonial.jpg) left center no-repeat fixed;
    background-size: cover;
}

.testimonial-item img {
    /* width: 60px !important; */
    /* height: 60px !important; */
    /* border-radius: 60px; */
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 33%;
    display: block;
    width: 100%;
}

.testimonial-carousel .owl-nav .owl-prev{ position:absolute; left:0;top:33%; }
.testimonial-carousel .owl-nav .owl-next{position:absolute; right:0;top:33%;}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 0;
    transition: .5s;
    width: 42px;
    height: 42px;
    background: #333;
    text-align: center;
    padding: 14px 0 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #33333385;
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(255 255 255 / 89%);
    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;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #fa2311;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
    background: #050c16 !important;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: #fa2311;
}

.sb-sec{ margin:15px 0 0; position:relative; z-index:9 }
.pnt-br{
    position: relative; overflow: hidden;
}
.pnt-br img{width: 100%; transform: scale(1.2); position: relative; transition: all 0.3s; left: 0;top: 38px;}
.pnt-br:hover img{left: -20px; transition: all 0.3s;}


.pnt-bx{
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    height: 100%;
}
.pnt-bx h3{
    color: #fff;
    padding: 15px 0;
    font-size: 34px;
}
.pnt-bx p{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.pnt-bx a{
    position: absolute;
    bottom: 50px;
}
.pnt-bx a:hover{}

.prd-p{ position:relative; }
.prd-p:before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(to right,#4c4c4c 1px,transparent 1px) 0 0,linear-gradient(to bottom,#4c4c4c 1px,transparent 1px) 0 0,linear-gradient(to left,#4c4c4c 1px,transparent 1px) 100% 0,linear-gradient(to bottom,#4c4c4c 1px,transparent 1px) 100% 0,linear-gradient(to left,#4c4c4c 1px,transparent 1px) 100% 100%,linear-gradient(to top,#4c4c4c 1px,transparent 1px) 100% 100%,linear-gradient(to right,#4c4c4c 1px,transparent 1px) 0 100%,linear-gradient(to top,#4c4c4c 1px,transparent 1px) 0 100%;
    background-repeat: no-repeat;
    background-size: 7px 7px;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-size .3s cubic-bezier(.455,.03,.515,.955);
    z-index: 0;
}

.prd-p:after {
    content: "";
    height: 100%;
    width: 100%;
    border: 1px solid rgba(255,255,255,.2);
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-item:hover .prd-p:before {
    background-size: 100% 100%;
}

.testimonial-item h4{ padding:5px 0; text-align:center; }
.testimonial-item a h6{transition: all 0.3s;}
.testimonial-item a:hover h6{background: #fa2311 !important; transition: all 0.3s;}
.cntsec{ background:url(../img/cont-bg.jpg)no-repeat center center fixed; background-size:cover; }
.pd-cate{min-height: 450px;position: relative;display: flex;overflow: hidden;}
.pd-cate img{
    object-fit: cover;
    position: relative;
    right: -80px;
    width: 100%;
    transform: scale(1.3); transition: all 0.3s;
}
.pd-cate:hover img{
    right: -20px;
    transform: scale(1.3);transition: all 0.3s;
}
.pd-cnt{
    position: absolute;
    left: 80px;
    bottom: 120px;
}
.pd-cnt h2{}
.pd-cnt a{}

.contc-info{}
.contc-info ul{ margin:0; padding:0 }
.contc-info ul li{list-style: none; color: #333; font-weight: 700;}
.contc-info ul li p{ font-weight:500; }
.contc-info ul li i{}

.text-justify{ text-align:justify; }

/* Contact Form */
.form-b{
    background: #fff;
    box-shadow: 0 0 40px #e7e7e7;
    padding: 50px;
}
.form-b label{color:#333;font-size: 14px;display: none;}
.form-b input, .form-b textarea {
    border: none;
    border: 1px solid #c1c1c1;
    box-shadow:
    none;
    padding: 10px 15px;
    border-radius: 0;
    /* background: #efefef87; */
    font-size: 14px;
}
.form-b ::placeholder{ color:#999999;}
.form-b .dee{
    padding: 10px 15px;
    background: #262626;
    color: #ebebeb;
    font-weight: 600;
    text-transform: uppercase;
    border: none; cursor: pointer;
}


.form-b .form-control:focus {
    color: #495057;
    /* background-color: #fff; */
    border-color: #c1c1c1;
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #d4d4d4;
}
.table th, .table td {
    padding: 0.3rem 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 0.8rem;
    color: #181818;
}
tr.tb-titl td {
    background: #040f28!important;
    color: #fff !important;
}


.mb-lo{width: 56px; padding: 0 10px;}
.mb-lo img{ width:100%; }

@media (max-width: 767px) {
    .mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 9;
  }
}

.slicknav_menu .slicknav_nav {
  background: #fff;
  float: right;
  margin-top: 0;
  padding: 0;
  width: 95%;
  padding: 0;
  border-radius: 0px;
  margin-top: 5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 11px;
}

.slicknav_menu .slicknav_nav a:hover {
  background: transparent;
  color: #FDAE5C;
}

.slicknav_menu .slicknav_nav a.active {
  color: #a70000;
}

@media (max-width: 767px) {
    .slicknav_menu .slicknav_nav a i {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slicknav_menu .slicknav_nav a i {
    display: none;
  }
}

.slicknav_menu .slicknav_nav .slicknav_btn {
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: -40px;
  position: relative;
  z-index: 99;
  border: 1px solid #ddd;
  top: 3px;
  right: 5px;
  top: -36px;
}

.slicknav_menu .slicknav_nav .slicknav_btn .slicknav_icon {
  margin-right: 6px;
  margin-top: 3px;
  position: relative;
  padding-bottom: 3px;
  top: -11px;
  right: -5px;
}

@media (max-width: 767px) {
    .slicknav_menu {
    margin-right: 0px;
  }
}

.slicknav_nav .slicknav_arrow {
  float: right;
  font-size: 22px;
  position: relative;
  top: -9px;
}

.slicknav_btn {
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  z-index: 99;
  border: none;
  border-radius: 3px;
  top: 5px;
  padding: 5px;
  right: 5px;
  margin-top: -5px;
  top: -31px;
}

.slicknav_btn {
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  z-index: 99;
  border: none;
  border-radius: 3px;
  top: 5px;
  padding: 5px;
  right: 0;
  margin-top: -5px;
  top: -41px;
}

.slicknav_menu .slicknav_nav {
  top: 12px;
}

.slicknav_btn {
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  z-index: 99;
  border: none;
  border-radius: 3px;
  top: 5px;
  padding: 5px;
  right: 0;
  margin-top: -5px;
  top: -32px;
}
.header-area {
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 99;
  position: relative;
}

@media (max-width: 767px) {
    .header-area {
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area {
    padding-top: 0;
  }
}

.header-area .main-header-area {
  background: #fff;
  background: transparent;
}

@media (max-width: 767px) {
    .header-area .main-header-area {
    background: #fa2311;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area {
    background: #040E27;
  }
}

.header-area .main-header-area .white_bg_bar {
  background: #fa2311;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  margin-top: -35px;
  padding: 10px 20px;
}

@media (max-width: 767px) {
    .header-area .main-header-area .white_bg_bar {
    margin-top: 0;
    background: #fa2311;
    padding: 10px 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area .white_bg_bar {
    margin-top: 0;
    background: #040E27;
    padding: 10px 0;
  }
}

.header-area .main-header-area .search_icon a {
  width: 45px;
  height: 45px;
  background: #FFF5F2;
  display: inline-block;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  color: #F0542C;
  font-size: 15px;
}

.header-area .main-header-area .logo-img {
  text-align: center;
}

@media (max-width: 767px) {
    .header-area .main-header-area .logo-img {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area .logo-img {
    text-align: left;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area .logo-img {
    text-align: left;
  }
}

@media (max-width: 767px) {
    .header-area .main-header-area .logo-img img {
    width: 70px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area .logo-img img {
    width: 70px;
  }
}

.header-area .main-header-area .Appointment {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area .Appointment .search_button {
    margin-right: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .header-area .main-header-area .Appointment .search_button {
    margin-right: 15px;
  }
}

.header-area .main-header-area .Appointment .search_button a i {
  color: #E8E8E8;
}

.header-area .main-header-area .Appointment .socail_links ul li {
  display: inline-block;
}

.header-area .main-header-area .Appointment .socail_links ul li a {
  color: #A8A7A0;
  margin: 0 10px;
  font-size: 15px;
}

.header-area .main-header-area .Appointment .socail_links ul li a:hover {
  color: #fff;
}

.header-area .main-header-area .Appointment .book_btn {
  margin-left: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area .Appointment .book_btn {
    margin-left: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .header-area .main-header-area .Appointment .book_btn {
    margin-left: 0;
  }
}

.header-area .main-header-area .Appointment .book_btn a {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0181f5+0,5db2ff+100 */
  background: #0181f5;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0181f5', endColorstr='#5db2ff',GradientType=1 );
  /* IE6-9 */
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid transparent;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area .Appointment .book_btn a {
    padding: 12px 20px;
  }
}

.header-area .main-header-area .Appointment .book_btn a:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0181f5+0,5db2ff+100&0.96+0,0.96+100 */
  background: -moz-linear-gradient(right, rgba(1, 129, 245, 0.96) 0%, rgba(93, 178, 255, 0.96) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(right, rgba(1, 129, 245, 0.96) 0%, rgba(93, 178, 255, 0.96) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, rgba(1, 129, 245, 0.96) 0%, rgba(93, 178, 255, 0.96) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f50181f5', endColorstr='#f55db2ff',GradientType=0 );
  /* IE6-9 */
  color: #fff;
  border: 1px solid #5DB2FF;
}

.header-area .main-header-area .main-menu {
  padding: 8px 0;
}

.header-area .main-header-area .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

.header-area .main-header-area .main-menu ul li > a {
  color: #ffffff;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  padding: 0px 6px 0px 6px;
  position: relative;
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-area .main-header-area .main-menu ul li a {
    font-size: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .header-area .main-header-area .main-menu ul li a {
    font-size: 15px;
  }
}

.header-area .main-header-area .main-menu ul li a i {
  font-size: 14px;
  margin-left: 5px;
}

@media (max-width: 767px) {
    .header-area .main-header-area .main-menu ul li a i {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area .main-menu ul li a i {
    display: none !important;
  }
}

.header-area .main-header-area .main-menu ul li a::before {
  position: absolute;
  content: "";
  /* background: #a70000; */
  width: 100%;
  height: 3px;
  bottom: -24px;
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-area .main-header-area .main-menu ul li a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li a.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li a:hover {
  color: #a70000;
}

.header-area .main-header-area .main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 160%;
  background: #ddd;
  width: 220px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  opacity: 0;
  visibility: hidden;
  text-align: left;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  padding: 0px 0 5px;
}

.header-area .main-header-area .main-menu ul li .submenu li {
  display: block;
  margin: 0;
}

.header-area .main-header-area .main-menu ul li .submenu li a {
  padding: 10px 10px;
  position: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  color: #000;
  text-transform: none;
}

.header-area .main-header-area .main-menu ul li .submenu li a::before {
  display: none;
}

.header-area .main-header-area .main-menu ul li .submenu li:hover a {
  color: #ffffff;
  background: #0a1c2e;
}

.header-area .main-header-area .main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 177%;
}

.header-area .main-header-area .main-menu ul li .submenu .submenu2 {
  top: 50px;
  left: 205px !important;
  background: #d3d3d3;
  width: 330px;
}

.header-area .main-header-area .main-menu ul li .submenu .submenu2 li a{color:#000;background: transparent;padding: 4px 15px;}
.header-area .main-header-area .main-menu ul li .submenu .submenu2 li a:hover{color: #ffffff;background: #303030;}

.header-area .main-header-area .main-menu ul li .submenu:hover .submenu2 {
  top: 0 !important;
}

.header-area .main-header-area .main-menu ul li:hover > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.header-area .main-header-area .main-menu ul li:first-child a {
  padding-left: 0;
}

.header-area .main-header-area.sticky {
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(70px);
  transition: transform 500ms ease, background 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  background: rgb(250 35 17);
}

@media (max-width: 767px) {
    .header-area .main-header-area.sticky {
    background: #fa2311;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header-area.sticky {
    background: #040E27;
  }
}

@media (max-width: 767px) {
    .header-area .main-header-area.sticky {
    padding: 0;
  }
}

.header-area .main-header-area.sticky .white_bg_bar {
  margin-top: 0px;
}

.header-area .main-header-area.sticky .header_bottom_border {
  border-bottom: none;
}

.header-area .main-header-area.sticky .header_bottom_border.white_border {
  border-bottom: none !important;
}

.header-area .main-header-area.sticky ul li a::before {
  position: absolute;
  content: "";
  /* background: #F0542C; */
  width: 100%;
  height: 3px;
  bottom: -24px;
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-area .header-top_area {
  padding: 0;
  background: #000000;
}

.header-area .header-top_area .boxed-btn3 {
  padding: 12px 20px; font-size: 12px;
}

@media (max-width: 767px) {
    .header-area .header-top_area .social_media_links {
    text-align: center;
  }
}

.header-area .header-top_area .social_media_links a {
  font-size: 15px;
  color: #C7C7C7;
  margin-right: 12px;
}

.header-area .header-top_area .social_media_links a:hover {
  color: #5DB2FF;
}

.header-area .header-top_area .header_left p {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
}

.header-area .header-top_area .short_contact_list {
  text-align: right;
}

@media (max-width: 767px) {
    .header-area .header-top_area .short_contact_list {
    text-align: center;
  }
}

.header-area .header-top_area .short_contact_list ul li {
  display: inline-block;
}

.header-area .header-top_area .short_contact_list ul li a {
  font-size: 13px;
  color: #919191;
  margin-right: 50px;
}

@media (max-width: 767px) {
    .header-area .header-top_area .short_contact_list ul li a {
    margin-left: 0;
    margin: 0 5px;
  }
}

.header-area .header-top_area .short_contact_list ul li a i {
  color: #5DB2FF;
  margin-right: 7px;
}

.header-area .header-top_area .header_right.d-flex {
  display: flex;
  justify-content: flex-end;
}

.header-area .address_bar {
  background: rgb(0 0 0 / 50%);
  padding-top: 29px;
  padding-bottom: 64px;
}

.header-area .address_bar .address_menu .single_address {
  margin-left: 80px;
}

.header-area .address_bar .address_menu .single_address .icon {
  margin-right: 15px;
}

.header-area .address_bar .address_menu .single_address .address_info h3 {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.header-area .address_bar .address_menu .single_address .address_info p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
#navigation{margin-bottom: 0;padding-left: 0;}
.logo{ width:42px; }
.logo img{ width:100%; }

tr.tb-titl {
    background: #040f28!important;
    color: #fff !important;
}
.table th, .table td {
    padding: 0.3rem 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
    height: 550px;
}

.carousel-item img{object-fit: cover; height: 100%;}

.pagination {
    display: block;
    padding-left: 0;
    list-style: none;
}
.pagination .page-item { display:inline-block; }
.page-link {
    position: relative;
    display: block;
    color: #08142e;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #fa2311;
    border-color: #fa2311;
}
.inf-list{
    margin: 0;
    padding: 0;
}
.inf-list li{
    list-style: none;
    padding: 5px 15px;
    margin: 0 0 8px;
    font-weight: 500;
    background: #ebebeb;
    display: inline-block;
    color: #000;
}

.cyl-pd{
    position: relative;
}
.cyl-pd a{}
.cyl-pd h3{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    font-size: 20px;
}
.cyl-pd:hover h3{
    background: #fa2311;
}

.cyl-bx{
    position: relative;
}
.cyl-bx h3{
    position: absolute;
    bottom: -20px; display: inline-block;
    left: 0px; right: 0; 
    background: #333;
    color: #fff;
    padding: 8px 12px;
    font-size: 20px;
}

.table th, .table td {
    padding: 0.2rem 0.45rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 0.8rem;
}
tr.tb-titl {
    background: #040f28!important;
    color: #fff !important;
}
.ab-lst{ margin:0; padding:0; }
.ab-lst li{list-style: none; background: #f7f7f7; margin-bottom: 5px; padding: 6px 10px;}

.msn-lst{margin: 0; padding: 0;}
.msn-lst li{list-style: none; background: #333; color: #fff; margin-bottom: 5px; padding: 6px 10px; display: inline-block;}

.msn-cnt strong{ font-size:16px; font-weight:500; }
.msn-cnt{background:#f8f8f8;padding:25px 15px;border:1px solid #fff;margin:0px;}
.msn-cnt p{ font-size:16px; }
.ms-icn{
    width: 92px;
    margin: 0 auto;
    background: #f8f8f8;
    border-radius: 50px 50px;
    margin-top: 0px;
    margin-bottom: 15px;
    padding: 10px;
    border: 7px solid #fff;
    box-shadow: 3px 6px 10px #e7e7e7;transition: all 0.3s;
}
.msn-cnt:hover .ms-icn{
    border: 7px solid #fa2311;
    transition: all 0.3s;
}
.mobmn {
    display: none !important;
}
@media (max-width: 991px){
.desk{display: none;}
    .mobmn{display: list-item;}
}