/********** Template CSS **********/
:root {
  --primary: #00529d;
  --secondary: #555555;
  --light: #f1f3fa;
  --dark: #1c2035;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 26px;
}

li {
  list-style: none;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-20 {
  padding-top: 20px;
}
.text-justify {
  text-align: justify;
}
a {
  color: #fff;
}
a:hover {
  color: #fff;
}
.fw-medium {
  font-weight: 500;
}
.text-yellow {
  color: #f5cb17;
}
.bg-blue {
  background-color: #00529d;
}
.bg-black {
  background-color: #242424;
}
.bg-grey {
  background-color: #53555c !important;
}
.text-blue {
  color: #00529d !important;
}
.text-orange {
  color: #f49c02 !important;
}
.outlined-btn {
  border: 3px solid #f5cb17 !important;
  background-color: transparent !important;
  color: #00529d !important;
  font-weight: 600 !important;
  padding: 10px 25px !important;
  font-size: 18px !important;
}
.display-9 {
  color: #00529d;
  font-size: 1.5rem;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-fill,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 40px;
  height: 40px;
}
.btn-white {
  background-color: #fff;
  border-color: #fff;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.btn-theme {
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: #00529d;
  color: #fff;
  padding: 10px 26px;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  min-width: 170px;
  text-align: center;
  font-weight: 400;
}

/*** Navbar ***/
.sticky-top {
  top: -100px;
  transition: 0.5s;
  background-color: #fff;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}
.navbar {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.navbar .navbar-nav .nav-item .nav-link {
  margin-right: 35px;
  padding: 10px 0;
  color: #00529d;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}
/* .navbar-light .navbar-brand{
    width: 34%;
} */
.navbar-brand {
  margin-right: 0px !important;
}
.navbar-brand img {
  width: 355px;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #f5cb17;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    /* margin-top: 15px; */
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
    
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  /* background: rgba(0, 0, 0, .1); */
  z-index: 1;
}
.carousel-caption h1 {
  font-family: inherit;
  font-size: 56px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 80px;
  margin-bottom: 0;
}
.carousel-caption p {
  font-size: 22px;
  color: #48535c;
  line-height: 34px;
  margin-bottom: 30px;
}
.carousel-indicators [data-bs-target] {
  background-color: #2caee2;
}
.carousel-indicators .active {
  background-color: #00529d;
}
.carousel-indicators {
  left: 60%;
  margin-right: 0px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 220px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .our-contact-banner {
      background-position: 85% center !important;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Features ***/
.feature-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature-item {
  border-color: rgba(0, 0, 0, 0.03) !important;
}

/*** About ***/
.about {
  background: linear-gradient(#00529d, #00529db3),
    url(../img/about.webp) left center no-repeat;
  background-size: cover;
  height: 530px;
  padding-left: 100px;
  padding-right: 150px;
}
.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(--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(--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(--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 ***/
.service-item .service-text {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
  transition: 0.5s;
  z-index: 2;
}

.service-item:hover .service-text {
  top: -1.5rem;
}

.service-item .service-text h5 {
  transition: 0.5s;
}

.service-item:hover .service-text h5 {
  color: var(--primary);
}

.service-item .service-btn {
  position: absolute;
  width: 80%;
  height: 3rem;
  left: 10%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-btn {
  bottom: -1.5rem;
}

/*** Project ***/
.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.project-item .project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding-top: 60px;
  transition: 0.5s;
}

.project-item:hover .project-overlay {
  opacity: 1;
  padding-top: 0;
}

.project-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  font-size: 25px;
  transition: 0.5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .project-carousel .owl-nav {
    top: -70px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .project-carousel .owl-nav .owl-prev,
  .project-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .carousel-indicators{
      margin-bottom: 0px !important;
  }
}

/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .team-social {
  position: absolute;
  padding: 0;
  top: 15px;
  left: 0;
  overflow: hidden;
}

.team-item .team-social li {
  list-style-type: none;
  margin-bottom: 10px;
  margin-left: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social li {
  margin-left: 15px;
  opacity: 1;
}

.team-item .team-social li .btn {
  background: #ffffff;
  color: var(--primary);
  border-radius: 40px;
  transition: 0.5s;
}

.team-item .team-social li .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
  transition-delay: 0.1s;
}

.team-item .team-social li:nth-child(2) {
  transition-delay: 0.2s;
}

.team-item .team-social li:nth-child(3) {
  transition-delay: 0.3s;
}

.team-item .team-social li:nth-child(4) {
  transition-delay: 0.4s;
}

.team-item .team-social li:nth-child(5) {
  transition-delay: 0.5s;
}

/*** Testimonial ***/
.testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  transition: 0.5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
  transition: 0.5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
  background: var(--primary);
}

.testimonial-item img {
  width: 150px !important;
  height: 150px !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-left: 15px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 55px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.15);
  font-size: 25px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-nav {
    top: -70px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-carousel .owl-nav .owl-prev,
  .testimonial-carousel .owl-nav .owl-next {
    margin: 0 7px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/*** Footer ***/
.footer {
  /* color: #B0B9AE; */
  padding: 50px 0px;
  background: #636363;
}
.footer-logo {
  width: 250px;
}
.footer p {
  /* text-align: justify; */
  color: #fff;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.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 {
  color: #fff;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
}

.copyright {
  background: #111111;
}

.copyright a:hover {
  color: var(--primary) !important;
}

/* changes */
.brand {
  position: relative;
  /* width: 270px; */
}
.buton-height {
  height: 100px;
}
.book-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.book-btn img {
  width: 30px;
  padding-right: 3px;
}
.abt-text ul {
  padding-left: 0px;
}
.abt-text h5 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}
.abt-text ul li {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px dashed #fff;
  margin-bottom: 20px;
  padding: 5px 0;
}
.abt-text ul li p {
  margin-bottom: 0px;
  font-size: 15px;
}
.abt-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}
.abt-content p {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 25px;
  color: #fff;
}
.abt-content a {
  font-size: 17px;
}
.quote img {
  width: 100%;
  object-fit: cover;
  height: 410px;
}
.nav-pills .nav-item .nav-link {
  float: left;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  padding: 20px 10px;
  width: 250px;
  height: 175px;
  font-weight: bold;
  color: #00529d;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 5px 7px;
  margin-right: 9px;
  justify-content: center;
}
.bg-light-blue {
  background-color: aliceblue;
}
.nav-pills .nav-item a span {
  padding: 6px;
  margin-bottom: 12px;
  border-radius: 50%;
}
.nav-item a h3{
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    line-height: 26px;  
    font-weight: bold;
    color: #00529d;
}
.nav-item a:hover h3{
  color: #fff;
}
.tab-pane img {
  width: 100%;
  /* height: 300px;
  object-fit: cover; */
}
.nav-pills .nav-link {
  border-radius: 0px;
}
.tab-text h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #00529d;
}
.tab-text h3 span {
  color: #f5cb17;
}
.quote-icon {
  left: 0px;
  right: 0px;
  top: -37px;
  border-radius: 50%;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  z-index: 2;
  background-color: #00529d;
  /* opacity: 0.85; */
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
}

.quote-icon svg {
  width: 75px;
  height: 75px;
}
.quote {
  position: relative;
  background-color: aliceblue;
}
.quote-text ul {
  text-align: left;
  padding-left: 20px;
}
.quote-text ul li {
  font-size: 17px;
  line-height: 40px;
}
.quote-text a {
  color: #555;
}
.quote-text h3 {
  color: #fff;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: center; */
  position: relative;
}
.quote-text {
  overflow: hidden;
  position: relative;
  /* min-height: calc(100% - 200px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    position: relative; */
  /*padding: 10px 25px 10px;*/
  margin-top: 0px;
}
.quote-text p {
  line-height: 26px;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}
.pl-130 {
  padding-left: 130px;
}
.form-control {
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
}
.form-floating > label {
  color: #000;
  font-weight: 600;
}
.form-control:disabled,
.form-control:read-only {
  background-color: transparent;
}
.form-content {
  margin-bottom: 20px;
}
.form-content label {
  color: #000;
}
.testimonial-thumb {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 230px;
  height: 215px;
  position: relative;
  z-index: 1;
}
.testimonial-item {
    height: 310px;
  text-align: justify;
  background: var(--primary);
  padding: 30px 15px 30px 15px;
  min-height: 245px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.testimonial-item blockquote {
  font-size: 17px !important;
  line-height: 26px;
  margin: 15px 0;
  background: transparent;
  font-size: initial;
  padding: 0;
  font-style: normal;
  border: none;
  font-weight: 400;
  color: #fff;
}
.testimonial-meta h3 {
  font-size: 24px;
  margin-bottom: 0;
  color: #f5cb17 !important;
}
.testimonial-meta span {
  font-size: 18px;
  color: #fff;
}
.testimonial-item i {
  font-size: 36px;
  color: #fff;
}

.nav-pills .nav-item .nav-link:hover {
  background-color: #00529d;
  color: #fff;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #00529d !important;
  color: #fff !important;
}
.owl-dots {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
  display: flex;
}
.owl-dot {
  margin: 0 5px;
  padding: 3px 0 4px;
}
.owl-dot span {
  height: 3px;
  width: 30px;
  background-color: #2caee2;
  display: block;
  position: relative;
}
.owl-dot span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #00529d;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-dot .active span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #00529d;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-dot.active span {
  background-color: #00529d;
}
small i {
  font-size: 16px;
}
.testi {
  font-size: 30px;
}
.fill-color {
  background-color: #f5cb17;
  color: #000;
}
.footerho h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.footerho p span{
    display: block;
}
.testimonial-meta span {
  display: block;
  margin: 5px 0px 0px;
  font-weight: 400;
  font-size: 16px;
}
.bloginf img {
  width: 150px !important;
  height: auto !important;
}
.bloginf h6 {
  font-size: 20px;
  font-weight: 600;
  color: #53555c;
}
.bloginf {
  margin-bottom: 15px;
}
.newslatest {
  padding: 0px;
  margin: 0px;
}
.newslatest li {
  list-style: none;
  margin-bottom: 22px;
}
.newslatest li h3 {
  color: #00529d;
  font-size: 17px;
  line-height: 24px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 15px;
}
.testbg {
  padding: 50px 0px;
  margin-top: 50px;
  /*background: #fdfaf4 !important;*/
}
/* CONTACT */
.our-contact-banner {
  background: url("../img/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  /*background-color: #cdd8e2;*/
}

.bradcrumb h1 {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
}

.title-section h2 {
  color: #00529d;
  font-weight: 600;
  font-size: 37px;
  letter-spacing: -0.01em;
  padding-bottom: 20px;
}

.title-section h1 {
  color: #00529d;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.01em;
  padding-bottom: 20px;
}

.title-section span {
  color: #f5cb17;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 7px 24px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff !important;
  background-clip: padding-box;
  border: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select {
  border: 1px solid #000;
}
.contact-details ul {
  display: flex;
  /* align-items: center; */
  justify-content: space-around;
}

.contact-details ul {
  display: flex;
  justify-content: space-around;
  border: 1px solid #f5cb1757;
  padding: 40px 10px 30px;
  border-radius: 15px;
}

.main-contact li h6 {
  color: #0e2b5c;
  font-size: 18px;
}

.main-contact li p {
  color: #0e2b5c;
  font-size: 16px;
}

.main-contact li {
  display: flex;
  align-items: flex-start;
}

.main-contact .text {
  margin-left: 10px;
}

img {
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

button.btn.btn-form {
  background: #05c36c;
  padding: 10px 60px;
  color: #fff;
}
/* pre-footer */
.contact-box {
  display: flex;
  align-items: center;
}

.contact-box .contact-details {
  padding-left: 20px;
}

.row.pre-footer {
  position: relative;
  top: -60px;
  background: #f5cb17;
  padding: 30px 40px;
}

.contact-box .contact-details {
  padding-left: 20px;
}
/* pre-footer end */
.abt-img-1 {
  height: 364px;
  object-fit: cover;
}
.cont-img img {
  height: 520px;
  object-fit: cover;
}
.about-section {
  padding: 55px 0px 35px;
}
.about-section p {
  color: #000;
  padding-top: 10px;
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 10px;
}
.btn.btn-lg.btn-primary.btn-lg-square.rounded-circle.back-to-top {
  background: #f5cb17;
  border: #f5cb17;
}
/* Service */
.service-tab {
  position: relative;
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  background-color: aliceblue;
}
.service-tab h3 {
  font-size: 19px;
  margin-bottom: 23px;
}
.service-tab #v-pills-tab button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  padding: 3px 30px;
  text-transform: capitalize;
  border-radius: 50px;
  color: #213360;
  background-color: #ffffff;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  width: 100%;
}
.service-tab::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: #f5cb17;
}
.service-tab #v-pills-tab button i {
  padding-left: 20px;
}
.btn-link {
  color: #00529d;
}
.btn-link:hover {
  color: #00529d;
}
ul {
  padding-left: 0px;
}
.btn-link i {
  color: #f5cb17;
}
#v-pills-tab span {
  padding: 6px;
  border-radius: 50%;
}
.form-floating > label {
  top: -40px;
}
.form-floating > .form-control,
.form-floating > .form-select {
  margin-top: 18px;
}
.form-floating > label {
  padding: 0.4rem 0;
  height: auto;
}
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 1 !important;
  transform: scale(1);
  color: #000;
  font-weight: 600;
}
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 0.625rem !important;
}
.form-floating > .form-control:focus {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem;
}
.form-floating {
  margin-bottom: 10px;
}
/* .form-floating>.form-control{
    height: calc(3rem + 2px) !important;
} */
.form-floating > .form-control:focus ~ label {
  opacity: 1 !important;
  transform: scale(1);
  color: #fff;
}
.testimonial-bg {
  background: var(--primary);
}
.gallery-tab {
  height: 100px !important;
  width: 150px !important;
}
.nav-pills .nav-item .nav-link.gallery-tab {
  background-color: #f5cb17 !important;
  width: 180px !important;
  height: 58px !important;
}
.nav-pills .nav-item .nav-link.gallery-tab:hover {
  background-color: #00529d !important;
}
.nav-pills .nav-item .nav-link.gallery-tab.active {
  background-color: #00529d !important;
}
.title-section-seperator {
  height: 15px;
  width: 170px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.title-section-seperator:before {
  content: "";
  height: 2px;
  background-color: #2caee2;
  width: 70px;
  position: absolute;
  left: 0;
  top: 6px;
}
.title-section-seperator:after {
  content: "";
  height: 2px;
  background-color: #2caee2;
  width: 70px;
  position: absolute;
  right: 0;
  top: 6px;
}
.nav-pills .nav-item .nav-link:hover span {
  background-color: #fff;
  display: flex;
  border-radius: 50%;
  /* width: 100px;
    height: 100px; */
  align-items: center;
  justify-content: center;
}
.nav-pills .nav-link.active span,
.nav-pills .show > .nav-link {
  background-color: #fff;
}
.abt-img ul li {
  font-size: 16px;
  line-height: 35px;
}
.abt-img ul li i {
  color: #f5cb17;
}
.abt-img h3 {
  font-size: 30px;
}
.service-tab .nav-pills .nav-link.active svg,
.nav-pills .show > .nav-link {
  background-color: transparent;
}
.quote-app h3,
.quote-app p {
  color: #fff;
}
.quote-app ul li a {
  color: #555;
}
.img-right .btn:hover {
  color: #fff;
}
.btn-square:hover {
  background-color: #00529d;
  border: 1px solid #00529d;
}
.btn-square:hover i {
  color: #fff;
}
.sticky-top.shadow-sm img {
  width: 225px;
}
.service-section p {
  color: #000;
}
.service-section .card {
  border: 4px solid #f5cb17;
  margin-bottom: 20px;
}
.service-section .card p {
  margin-bottom: 0px;
}
.partner img {
  height: auto;
}
.icon span {
  background-color: #fff;
  display: flex;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-slot h5 {
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
}
.book-slot p {
  color: #fff !important;
}
.icon span img {
  width: 50px;
  height: 50px;
}
.about-section h3 {
  line-height: 35px;
}
.project-overlay img {
  height: auto;
  width: 100px;
}
.sidebaris a.active button {
  background-color: #00529d !important;
  color: #fff !important;
}
.sidebaris a.active button span {
  background-color: #fff !important;
}
.partner-logo i {
  margin-top: 4px;
  font-size: 30px;
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-logo img {
  width: 170px;
  height: auto;
}
.partner-logo:hover .shown-img{
  display: none;
}
.partner-logo .hover-img{
  display: none;
}
.partner-logo:hover .hover-img{
  display: block;
}
.partner-logo span {
  font-size: 22px;
}
.nuerology-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.footerho img {
  width: 185px;
}
.tab-pane a {
  color: #000;
  font-size: 18px;
}
.needs-validation .form-label {
  color: #000;
}
.nav-link span img {
  width: 40px;
}
.footerho i {
  margin-top: 5px;
}
.widtorder {
  /*width: 610px;*/
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.font17 {
  font-size: 17px;
}
.itop {
  margin-top: 2px;
}
.text-orange2 {
  color: #f5cb17 !important;
}
.navbar-toggler:focus {
  box-shadow: 0px 0px 3px 0rem;
}

/* Preloder */
#preloder {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffffbd;
}

.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #056d4d;
    /* border: 4px solid #f44336; */
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #056d4d;
    /* border: 4px solid #673ab7; */
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #056d4d;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #056d4d;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #056d4d;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #056d4d;
    border-left-color: transparent;
  }
}

/* slider */
.home-banner .slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 450px;
  width: 100%;
}

.home-banner .slider-container h1 {
  color: #fff;
  font-size: 100px;
  letter-spacing: 5px;
  position: relative;
  z-index: 100;
  text-align: center;
}

.home-banner .slider-container::after {
  background-color: #000;
  content: "";
  position: absolute;
  opacity: 0.3;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.home-banner .slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.1);
  transition: opacity 0.6s ease;
}

.home-banner  .slide.active {
  animation: grow 5s linear forwards;
  opacity: 1;
}

@keyframes grow {
  0%,
  20% {
    transform: scale(1.9);
  }
  	
	75%, 100% {
		transform: scale(1.15);
	}
}

.home-banner .controls-container {
  position: absolute;
  top: auto;
  right: 100px;
  display: flex;
  transform: translateY(-50%);
  z-index: 2;
  bottom: 20px;
}

.home-banner .control {
  background-color: #fff;
  cursor: pointer;
  opacity: 0.5;
  margin: 6px;
  height: 5px;
  width: 35px;
  transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.home-banner .control.active,
.home-banner .control:hover {
  background-color: #00529d;
  opacity: 1;
  transform: scale(1.2);
}
/* slider end */

.gallery-img .row{
    justify-content: center;
}

.blogcoloumn {
    background:aliceblue;
}
.blog-img {

}
.prod-info {
  border-bottom: 2px solid #00529d;
}
.prod-info p {
    margin:0px;
}
.prod-info h4 {
  font-size: 20px;
  margin: 8px 0px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
}
.prod-info h4 a{
  color: #00529d;
}
.prod-info .pricespan {
  font-size: 17px;
}
.prod-info span {
  display: block;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.spantags a {
  display: inline-block;
  padding: 2px 10px;
  background: #f1f1f1;
  margin: 0px 8px 5px 0px;
  font-size: 13px;
  color: #000;
}
.blogtagsall li {
  display: inline-block;
}
.blogtagsall li a {
  display: inline-block;
  padding: 5px 16px;
  background: #9ea0a1;
  border-radius: 20px;
  margin: 4px 3px;
  font-size: 14px;
  color: #fff;
}
.blogcata li:nth-child(2n+1) {
  background: #fff;
}
.blogcata li {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blogcata li span {
  background: #999;
  width: 28px;
  text-align: center;
  font-size: 13px;
  line-height: 22px;
  border-radius: 5px 5px;
  color: #fff;
}
.blogcata li a{
    color:#333;
}
.blog-details-info p {
  margin-bottom: 15px;
}
.spantags {
  display: none !important;
}

/* news */
      .news-bottom h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #00529d;
  font-weight:600;
}

      .news-side a {
        color: #333;
        text-decoration: none;
        display: block;
      }
      .news-side {
        align-items: center;
      }
      .news-side a p {
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        -webkit-box-orient: vertical;
        margin-bottom: 0px;
      }

      .news-side a h5 {
        color: #333;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        -webkit-box-orient: vertical;
      }
      .linkblog {
        color: #333;
        text-decoration: none;
      }
      .linkblog:hover {
        color: #333;
        text-decoration: none;
      }
      .linkblog .timedate {
  color: #b7a5a5;
  font-weight: 600;
  font-size: 14px;
}
      .linkblog p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  color: #666;
  margin: 0px 0px 8px;
}
      .news-side-bar h5 {
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        -webkit-box-orient: vertical;
      }
      
      .textover p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 26px;
  font-size: 15px;
  color: #666;
}
.prod-info .date {
  margin-top: 8px;
  color: #b7a5a5;
  font-weight: 600;
  font-size: 14px;
}
    .news-side-bar h5 {
  color: #00529d;
  font-weight: 600;
  font-size: 16px;
}
      .news-side-bar a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
}
      .news-side-bar {
  padding-bottom: 14px;
  border-bottom: 2px solid #dedede;
}
      .catagory-list a {
  display: flex;
  text-decoration: none;
  background: #F6D134;
  align-items: center;
  color: #000;
  justify-content: center;
  padding:10px 22px 12px;
  border-radius: 35px;
}

      .tag-list a {
  display: flex;
  text-decoration: none;
  background: #D8EDFF;
  align-items: center;
  color: #000;
  justify-content: center;
  padding: 7px 20px 9px;
  border-radius: 35px;
  margin: 0px 4px 15px;
  font-size: 14px;
  font-weight: 600;
}
      .tag-list .col-md-12 {
        flex-wrap: wrap;
      }
      .linkblog.lintop {
  display: block;
  background: aliceblue;
}
.date-side.mb-0, .date-author.mb-0 {

  font-size: 15px;
  opacity: 0.7;
}
.mread {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 20px;
}
.prod-info .date {
  margin-top: 8px;
  color: #b7a5a5;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.no-records-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

.no-records-found img {
  width: 120px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.blog-img img {
  height: 275px;
  object-fit: cover;
  background: #fff;
  width: 100%;
}
.blog-img a {
border: 1px solid #F0F8FF;
}
.news-top .img-fluid {
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1200px) {
    .catagory-list .col-auto.mb-3 {
  width: 16.66%;
}

}
@media (min-width: 1200px){
    h1, .h1 {
     font-size: 60px !important;
    }
}

.italianno-regular {
  font-family: "Italianno", cursive;
  font-style: normal;
  font-size: 60px !important;
  letter-spacing: 1px;
  font-weight: 600;
}

.italianno-regular > h1{
  font-family: "Italianno", cursive;
  font-style: normal;
  font-size: 60px !important;
  letter-spacing: 1px;
  font-weight: 600;
}
li.mobview {
    display: none;
}
/* For mobile devices */
@media only screen and (max-width: 600px) {
  .italianno-regular > h1{
    font-size: 40px !important; /* Adjust font size for mobile */
    letter-spacing: 0.5px !important; /* Adjust letter spacing for mobile */
    font-weight: 600; /* Adjust font weight for mobile if needed */
  }
  li.mobview {
    display: block;
}
li.webview {
    display: none;
}
}