/********** 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: 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: 701;
    /*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: 18px;
    /*padding: 25px 0;*/
    color: #FFFFFF;
    font-size: 16px;
    /*text-transform: uppercase;*/
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #00abea;
}

@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;
        background: #000;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-weight: 501;
}

.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(23, 18, 18, 0.87);
    z-index: 1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.64)),url(../img/bg4.jpg);
  background-size: cover;
  margin-bottom: -100px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 990px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 810px;
    }
    }

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 950px;
    }
    
    #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;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(53, 109, 190, 0.88), rgb(37, 85, 102)), url(../img/bg5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** 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(../img/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: #00abea !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !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 #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #00abea;
    border-color: #00abea;
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/bg1.jpg) 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: #00ABEA;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    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);
}

.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;
}

.bglight1{
    background-color: #3977c3;
    margin-bottom: -9px;
  margin-top: -9px;
}
.whitext{
    color: #fff!important;
    font-size: 16px;
}
.textweight{
    font-weight: 800;
}

.menubtn{
    background: #00abea;
  border-radius: 50px;
  padding: 10px;
  padding-left: 30px!important;
  padding-right: 30px!important;
}

.menubtn:hover,
.menubtn.active {
    background: #fff;
    color: #00abea;
}

.mobileandesk{
    max-width: 190px;width: 100%;
}

.formbanner{
  background: #f6faff;
  border-radius: 9px;
  padding: 35px!important;
}

.text-color{
    color: #356dbe !important;
    font-family: 'Lato', sans-serif;
    font-weight: 701;
    font-size: 20px;
}

.text-left{
    text-align: left!important;
}

.bannertext{
    font-size: 60px;
    text-transform: capitalize;
    font-family: 'Lato', sans-serif;
}

.labels{
    text-align: left !important;
  float: left;
  color: #484444;
  padding-bottom: 5px;
}

.bannerbtncontact{
    float: left;
}

.paras1{
    line-height: 30px;
  font-size: 15px;
  text-align: justify;
}

.ps32{
    padding-top: 16px;
}

.aboutt1{
    color: #3c3939!important;
}
#md-center{
    justify-content: center;
}
.bordercircle{
    width: 45px;
  height: 45px;
  background-color: #00abea !important;
  border-radius: 50px;
}



.news-block{
    position:relative;
    margin-bottom: 30px;
}

.news-block .inner-box{
    position:relative;
}

.news-block .inner-box .image{
    position:relative;
    overflow:hidden;
    padding-left:100px;
}

.news-block .inner-box .image img{
    position:relative;
    width:100%;
    display:block;
    background-color:#f1f7f9;
    -webkit-transition:all 600ms ease;
    -moz-transition:all 600ms ease;
    -ms-transition:all 600ms ease;
    -o-transition:all 600ms ease;
    transition:all 600ms ease;
}

.news-block .inner-box:hover .image img{
    opacity:1;
    transform:scale(1.05,1.05);
}

.news-block .inner-box .lower-content{
    position:relative;
    padding:30px 30px;
    margin-right:100px;
    margin-top:-20px;
    margin-left:15px;
    background-color:#ffffff;
    box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.news-block .inner-box .lower-content:before{
    position:absolute;
    content:'';
    top:0px;
    right:-100px;
    width:374px;
    height:249px;
    z-index:-2;
    background:url(../img/pattern-3.png) no-repeat;
}

.news-block .inner-box .lower-content .post-meta{
    position:relative;
}

.news-block .inner-box .lower-content .post-meta li{
    position:relative;
    color:#777777;
    font-size:14px;
    padding-right:10px; 
    margin-right:8px;
    line-height:1.1em;
    display:inline-block;
    border-right:1px solid #777777;
}

.news-block .inner-box .lower-content .post-meta li:last-child{
    margin-right:0px;
    padding-right:0px;
    border:none;
}

.news-block .inner-box .lower-content h3{
    position:relative;
    color:#322f2f;
    font-size:24px;
    font-weight:700;
    line-height:1.4em;
    margin-top:15px;
}

.news-block .inner-box .lower-content h3 a{
    position:relative;
    color:#322f2f;
    -webkit-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    transition:all 300ms ease;
}

.news-block .inner-box .lower-content h3 a:hover{
    color:#356dbe;
}

.news-block .inner-box .lower-content .read-more{
   position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 12px;
  display: inline-block;
  background: #00abea;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-right: 5px;
}


@media only screen and (max-width: 767px) {
  .news-block .inner-box .image {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .news-block .inner-box .lower-content {
    margin-right: 15px;
  }
}

.rightbtn{
    background: #fff!important;
  color: #356dbe!important;
  box-shadow: 0px 0px 3px #c8c0c0;
  margin-right: 0px!important;
}

.bglightcolors{
    background: #d6e4f9;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #356dbe03;
}

.newcirlces{
    color: #201d1d;
  margin-bottom: 28px;
}

.parsnew{
    color: #201d1d;
}

.btnsred{
    color: red;
}

.greenred{
    color: green;
}

.bglightcolors1{
    border-radius: 10px;
  box-shadow: 0px 0px 3px #356dbe03;
}

.boxes{
   background: #fff;
  padding: 18px !important;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #867f7f6e;
}




/*.floating_btn {
  position: relative;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}*/

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  /*background-color: #42db87;*/
  color: #fff;
  width: 45px;
  height: 45px;
  /*font-size:25px;*/
  border-radius: 50px;
  /*text-align: center;*/
  box-shadow: 2px 2px 3px #999;
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #6294dbc7;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.zoom-in-zoom-out {
  width: 100%;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1); /* Smaller zoom effect */
  }
  100% {
    transform: scale(1, 1);
  }
}

.parasshort{
    font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #596277;
}

.innerboxtext {
  background: #fff;
  padding: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  box-shadow: 0px 0px 3px #e6e4e4;
  padding-top: 12px;
  padding-bottom: 12px;
}

.blogbtns{
    font-weight: 701;
    color: #00abea;
  border-bottom: 1px solid #00abea;
}



.faq-section-title {
  text-transform: capitalize;
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .faq-section-title {
      margin-bottom: 25px; } }

.faq-wrapper {
  margin-bottom: -20px; }
  .faq-wrapper .faq-item .faq-title {
    padding: 16px 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(212, 211, 244, 0.14);
    position: relative;
    border: 1px solid #939090;
    cursor: pointer;
    background: #fff; }
    .faq-wrapper .faq-item .faq-title .title {
        color: #000;
      margin: 0;
      font-size: 16px;
      text-transform: capitalize;
      width: calc(100% - 40px); }
  .faq-wrapper .faq-item .faq-content {
    margin-top: -20px;
  padding: 20px;
  background: #fff;
    /*padding: 10px 0 40px;*/
    display: none; }
    .faq-wrapper .faq-item .faq-content p {
      /*max-width: 715px;*/ }
  .faq-wrapper .faq-item.active .faq-content {
    display: block; 
  margin-top: -20px;
  padding: 20px;
background: #fff;}
  .faq-wrapper .faq-item:last-child .faq-content {
    padding-bottom: 20px; }
  .faq-wrapper .faq-item .right-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    .faq-wrapper .faq-item .right-icon::before, .faq-wrapper .faq-item .right-icon::after {
      position: absolute;
      content: '';
      background: #0d112b;
      top: 50%;
      -webkit-transition: all ease 0.3s;
      -moz-transition: all ease 0.3s;
      transition: all ease 0.3s;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .faq-wrapper .faq-item .right-icon::before {
      width: 2px;
      height: 20px; }
    .faq-wrapper .faq-item .right-icon::after {
      width: 20px;
      height: 2px; }
  .faq-wrapper .faq-item.open .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg); }

.faq-area .main-title {
  text-transform: capitalize;
  margin-right: -12px;
  margin-bottom: 15px; }
  @media (min-width: 576px) {
    .faq-area .main-title {
      margin-top: -14px; } }
  @media (min-width: 768px) {
    .faq-area .main-title:first-child {
      margin-top: -9px; } }
  @media (min-width: 768px) {
    .faq-area .main-title {
      margin-bottom: 25px; } }
.faq-area .faq-wrapper {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .faq-area .faq-wrapper {
      margin-bottom: 60px; } }
  .faq-area .faq-wrapper:last-child {
    margin-bottom: -20px; }


    .bglight4.text-center {
  background: #fff;
  padding: 50px;
  box-shadow: 0px 0px 3px #5e575742;
  border-radius: 10px;
  padding-bottom: 15px;
}

.fontssize{
    margin-top: -25px;
  padding-bottom: 16px;
  color: #356dbe ;
  font-size: 48px;
}

.anchortext{
    font-size: 18px;
  color: #3c3a3a;
}

.blacktext{
    color: #000!important;
}

.tarriff{
    color: #000;
  /*font-weight: 700;*/
  margin-bottom: 18px;
  display: inline-block;
}

.tarriff1{
    color: #000;
  /*font-weight: 700;*/
  float: right;
  margin-bottom: 5px;
}

.borders{
    border-bottom: 1px dotted #555;
}

.bglightcolors22 {
  background: #d6e4f9;
  border-radius: 10px;
  box-shadow: 0px 0px 3px #356dbe03;
  }

  .loader {
    display: block;
    z-index: 99;
/*    margin-top: 1vh;*/
    margin-left: auto;
    margin-right: auto;
    width: 20px;
    height: 20px;
    border: 2px solid #e68a00;
    border-radius: 100%;
    animation: spin 7s ease-in-out;
    animation-iteration-count: infinite;
    transition-duration: 0.1s;
}
.loader:hover {
    scale: 0.95;
}
.loader:active {
    scale: 1.2;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
        border-bottom: solid 3px transparent;
        border-top: solid 3px transparent;
    }
    50% {
        transform: rotate(1800deg);
        border: 3px solid white;
        border-left: solid 3px transparent;
        border-right: solid 3px transparent;
    }
    100% {
        transform: rotate(0deg);
        border-bottom: solid 3px transparent;
        border-top: solid 3px transparent;
    }
}


.btnsss:disabled {
 opacity: 0.65;
 display: none;
 }

 .statusheading{
    color: green;
    font-weight: 700;
    margin-top: -28px;
  margin-bottom: -18px;
 }

 .statusheading2{
    color: red;
    font-weight: 700;
    margin-top: -28px;
  margin-bottom: -18px; 
 }

 .error_img{
    max-width: 460px;
    width: 100%;
 }
 .error_text{
    font-size: 58px;
    margin-top: 10px;
 }

 .error_text1{
    font-size: 25px;
  margin-top: -35px;
  /*color: #000!important;*/
  font-weight: 600;
 }
 .errtext1{
    margin-bottom: 35px;
 }