/********** Template CSS **********/
:root {
  --primary: #fda12b;
  --secondary: #8d9297;
  --light: #f8f9fa;
  --dark: #182333;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** 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 {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  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;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-left: 30px;
  padding: 25px 0;
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.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-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 25px;
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    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;
  text-align: start;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--dark);
  border: 15px solid var(--dark);
  border-radius: 50px;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
}

@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;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-width: 12px;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Facts ***/
.facts-overlay {
  position: absolute;
  padding: 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
}

.facts-overlay h1 {
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
  color: var(--primary) !important;
}

/*** Service ***/
.service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: var(--primary);
  opacity: 0;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  height: 100%;
  opacity: 1;
}

.service-text * {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover .service-text * {
  color: #ffffff !important;
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-text {
  position: absolute;
  width: 75%;
  bottom: 30px;
  left: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  width: 100%;
}

.team-text * {
  transition: 0.5s;
}

.team-item:hover .team-text * {
  letter-spacing: 2px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Footer ***/
.footer {
  color: #999999;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #999999;
  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;
  color: #999999;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

section {
  padding: 60px 0;
  min-height: 100vh;
}
.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.contact-info-icon {
  margin-bottom: 15px;
}
.contact-info-item {
  background: #071c34;
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}
.contact-info-text p {
  margin-bottom: 0px;
}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
  /* font-weight: 15 ; */
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34;
}
.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
  padding: 20px 15px 0;
}

.call-to-us {
  position: fixed;
  display: block;
  bottom: 0px;
  left: 0px;
  margin: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-decoration: none;
  animation: rotating 1.5s infinite;
  background-color: #4bc2ce;
  z-index: 9999;
}
.call-to-us:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  border: 2px solid #4bc2ce;
  border-radius: 50%;
  animation: squeeze 2s infinite;
}
.call-to-us:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25d366
    url("https://cdn-icons-png.flaticon.com/512/733/733585.png") center
    no-repeat;
  background-size: 52px 52px; /* adjust icon size */
  border-radius: 50%;
}
.call-to-us__label {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(121, 208, 0, 1);
  width: 100%;
  height: 100%;
  padding-top: 20px;
  font-size: 12px;
  font-family: Tahoma, sans-serif;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.call-to-us:hover {
  animation: none;
}
.call-to-us:hover .call-to-us__label {
  opacity: 1;
  z-index: 2;
}
.call-to-us:hover:before {
  border-color: rgba(121, 208, 0, 1);
}
@keyframes squeeze {
  0% {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
  }
  50% {
    width: 90px;
    height: 90px;
    margin-top: -47px;
    margin-left: -47px;
  }
  100% {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
  }
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-45deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-45deg);
  }
  65% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}











.radial {
  position: relative;
  z-index: 9;
}
.radial .triggerButton {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border: none;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  background-color: #4b40cc;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease-in-out;
  transform: translate(-50%, -50%);
}
.radial .triggerButton i {
  transition: all 0.2s ease-in-out;
}
.radial .radialMenu {
  --width: 300px;
  width: var(--width);
  height: var(--width);
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%);
}
.radial .radialItem {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.radial .radialItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 50%;
  background-color: #232e50;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.25s;
}
.radial .radialItem a:hover {
  transition-delay: 0s;
  background-color: #1b243e;
}
.radial.active .triggerButton i {
  transform: rotateZ(135deg) translate(-1px, 3px);
}
.radial.active .radialItem {
  --angle: 0deg;
  --star-angle: 0deg;
  --point-size: 60px;
  --countItem: 8;
  /* we subtract the point size to place point inside circle */
  --radius: calc((var(--width) / 2) - (var(--point-size) / 2));
  --x: calc(var(--radius) * cos(var(--angle) + var(--star-angle)));
  --y: calc(var(--radius) * sin(var(--angle) + var(--star-angle)));
  /* position point at center of circle with radius. We add x and y values to move to edge of circle. */
  top: calc(var(--radius) + var(--y) + (var(--point-size) / 2));
  left: calc(var(--radius) + var(--x) + (var(--point-size) / 2));
  width: var(--point-size);
  height: var(--point-size);
}
.radial.active .radialItem:nth-child(1) {
  --angle: calc((360deg / var(--countItem)) * 0);
  transition-delay: 0.05s;
}
.radial.active .radialItem:nth-child(2) {
  --angle: calc((360deg / var(--countItem)) * 1);
  transition-delay: 0.1s;
}
.radial.active .radialItem:nth-child(3) {
  --angle: calc((360deg / var(--countItem)) * 2);
  transition-delay: 0.15s;
}
.radial.active .radialItem:nth-child(4) {
  --angle: calc((360deg / var(--countItem)) * 3);
  transition-delay: 0.2s;
}
.radial.active .radialItem:nth-child(5) {
  --angle: calc((360deg / var(--countItem)) * 4);
  transition-delay: 0.25s;
}
.radial.active .radialItem:nth-child(6) {
  --angle: calc((360deg / var(--countItem)) * 5);
  transition-delay: 0.3s;
}
.radial.active .radialItem:nth-child(7) {
  --angle: calc((360deg / var(--countItem)) * 6);
  transition-delay: 0.35s;
}
.radial.active .radialItem:nth-child(8) {
  --angle: calc((360deg / var(--countItem)) * 7);
  transition-delay: 0.4s;
}

.radial.half-bottom {
  position: relative;
}
.radial.half-bottom.active .radialItem {
  --angle: 0deg;
  --star-angle: 0deg;
  --point-size: 60px;
  --countItem: 8;
  width: var(--point-size);
  height: var(--point-size);
}
.radial.half-bottom.active .radialItem:nth-child(1) {
  --angle: calc((360deg / var(--countItem)) * 0);
  transition-delay: 0.05s;
}
.radial.half-bottom.active .radialItem:nth-child(2) {
  --angle: calc((360deg / var(--countItem)) * 1);
  transition-delay: 0.1s;
}
.radial.half-bottom.active .radialItem:nth-child(3) {
  --angle: calc((360deg / var(--countItem)) * 2);
  transition-delay: 0.15s;
}
.radial.half-bottom.active .radialItem:nth-child(4) {
  --angle: calc((360deg / var(--countItem)) * 3);
  transition-delay: 0.2s;
}
.radial.half-bottom.active .radialItem:nth-child(5) {
  --angle: calc((360deg / var(--countItem)) * 4);
  transition-delay: 0.25s;
}
.radial.half-bottom .triggerButton {
  background: #1609f0;
  background: linear-gradient(0deg, #1609f0 0%, #316ef4 100%);
}
.radial.half-bottom .radialItem a {
  transform: scale(1);
  background: #00acee;
  background: linear-gradient(0deg, #00acee 0%, #027efb 100%);
}
.radial.half-bottom .radialItem a:hover {
  transform: scale(1.2);
}