/********** Template CSS **********/
:root {
  --primary: #015fc9;
  --secondary: #0dd3f1;
  --light: #f6f7fc;
  --dark: #15233c;
}

.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 {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.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-brand img {
  max-height: 60px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 10px 0;
  color: #696e77;
  font-weight: 500;
  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-brand img {
    max-height: 45px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@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;
  z-index: 1;
}

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

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

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 80vh;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #696e77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

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

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

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

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

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

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

.footer .btn.btn-square {
  color: #a7a8b4;
  border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

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

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

.footer .copyright a:hover {
  color: #ffffff;
}

/* ///////////////////////////////////////////////////////////////////// */

body {
  color: #fff;

  /* 2. Opcional: Evita que la imagen se repita */
  background-repeat: no-repeat;

  /* 3. Opcional: Posiciona la imagen (por ejemplo, en el centro) */
  background-position: center center !important;

  /* 4. Opcional: Ajusta el tamaño para que cubra todo el elemento */
  background-size: cover;

  /* 5. Opcional: Fija la imagen para que no se desplace con el contenido (útil en <body>) */
  background-attachment: fixed;
  /* background: -webkit-linear-gradient(bottom right, #060606, #039116);
    background: -moz-linear-gradient(bottom right, #060606, #039116);
    background: linear-gradient(to top left, #060606, #039116); */
  height: 100vh;
}
html,
body {
  height: 100% !important;
  width: 100% !important;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  display: none !important;
}

.profile-picture {
  display: block;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  height: auto;
  max-width: 150px;
  border-radius: 50%;
}

.name {
  font-family: "Fugaz One", cursive;
  text-align: center;
  font-size: 30px;
}

.links {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-align: center;
  margin-top: 15px;
  padding: 15px;
  background-color: #000000ab;
  /* border: 1px solid #00000080; */
  border-width: 2px;
  width: 38vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  font-size: 25px;
}

a {
  text-decoration: none;
  color: #cdcdcd;

  transition: color 0.5s;
}

a:hover {
  color: #000;
  background: #fff;
}

/*----------------------------------------*/
/*  6.7 Footer Style 7
/*----------------------------------------*/
@media (max-width: 767px) {
  .ai-footer-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.ai-footer-widget-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: -0.04em;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ai-footer-widget-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ai-footer-widget-title {
    font-size: 45px;
  }
}
.ai-footer-widget-shape {
  position: absolute;
  bottom: -7%;
  right: 20%;
  z-index: -1;
}
.ai-footer-widget-title-sm {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.ai-footer-input input {
  padding: 0 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border: none;
  border-radius: 0;
  letter-spacing: -0.02em;
  background-color: transparent;
  color: var(--tp-common-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ai-footer-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.ai-footer-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.ai-footer-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.ai-footer-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.ai-footer-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.ai-footer-input input:focus {
  border-color: var(--tp-common-white);
}
.ai-footer-newsletter label {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.ai-footer-icon-1 {
  position: absolute;
  top: 14px;
  left: 0;
}
.ai-footer-icon-2 {
  position: absolute;
  top: 15px;
  right: 0;
}
.ai-footer-menu ul li {
  list-style-type: none;
}
.ai-footer-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ai-footer-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}
.ai-footer-menu ul li a:hover {
  color: var(--tp-common-white);
}
.ai-footer-contact-item a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.6);
}
.ai-footer-contact-item a:hover {
  color: var(--tp-common-white);
}
.ai-footer-col-2 {
  margin-left: 78px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ai-footer-col-2 {
    margin-left: 0;
    margin-top: 40px;
  }
}
.ai-footer-col-3 {
  margin-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ai-footer-col-3 {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ai-footer-col-3 {
    margin-left: 0;
    margin-top: 40px;
  }
}
.ai-footer-col-4 {
  margin-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ai-footer-col-4 {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ai-footer-col-4 {
    margin-left: 0;
    margin-top: 40px;
  }
}

.ai-copyright-content p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.ai-copyright-ptb {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .ai-copyright-logo {
    margin-bottom: 20px;
  }
}
.ai-copyright-shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/*----------------------------------------*/
/*  6.8 Footer Style 8
/*----------------------------------------*/
.ar-footer-widget-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 33px;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .ar-footer-widget-content p br {
    display: none;
  }
}
.ar-footer-widget-input input {
  padding-left: 55px;
  padding-right: 145px;
  font-weight: 500;
  font-size: 16px;
  height: 60px;
  color: var(--tp-common-white);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
}
.ar-footer-widget-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-btn {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
  transition: 0.3s;
  font-size: 16px;
  padding: 22px 23px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-clash-medium);
  background-color: var(--tp-common-red-2);
}
.ar-footer-widget-btn:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}
.ar-footer-widget-envelop {
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateY(-50%);
}
.ar-footer-widget-envelop svg {
  transform: translateY(-2px);
}
.ar-footer-widget-title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 33px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-clash-semibold);
}
.ar-footer-widget-menu ul li {
  padding-left: 13px;
  list-style-type: none;
  position: relative;
  display: block;
}
.ar-footer-widget-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ar-footer-widget-menu ul li::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  transition: 0.3s;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}
.ar-footer-widget-menu ul li a {
  font-size: 15px;
  line-height: 1;
  transition: 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--tp-ff-clash-medium);
}
.ar-footer-widget-menu ul li:hover::after {
  background-color: var(--tp-common-white);
}
.ar-footer-widget-menu ul li:hover a {
  color: var(--tp-common-white);
}
.ar-footer-widget-info a {
  display: block;
  font-size: 15px;
  line-height: 1.67;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--tp-ff-clash-medium);
}
.ar-footer-widget-info a:hover {
  color: var(--tp-common-white);
}
.ar-footer-col-1 {
  margin-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  (max-width: 767px) {
  .ar-footer-col-1 {
    margin-right: 0;
  }
}
.ar-footer-col-2 {
  margin-left: 85px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .ar-footer-col-2 {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .ar-footer-col-2 {
    margin-left: 0;
  }
}
.ar-footer-col-3 {
  margin-left: 165px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ar-footer-col-3 {
    margin-left: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ar-footer-col-3 {
    margin-left: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ar-footer-col-3 {
    margin-left: 0px;
  }
}
.ar-footer-col-4 {
  margin-left: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ar-footer-col-4 {
    margin-left: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ar-footer-col-4 {
    margin-left: 0px;
  }
}

.ar-copyright-text p,
.ar-copyright-text a,
.ar-copyright-social p,
.ar-copyright-social a {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--tp-ff-clash-medium);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ar-copyright-text p,
  .ar-copyright-text a,
  .ar-copyright-social p,
  .ar-copyright-social a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .ar-copyright-text p,
  .ar-copyright-text a,
  .ar-copyright-social p,
  .ar-copyright-social a {
    font-size: 13px;
  }
}
.ar-copyright-social a:not(:first-child) {
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ar-copyright-social a:not(:first-child) {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ar-copyright-social a:not(:first-child) {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .ar-copyright-social a:not(:first-child) {
    margin-left: 8px;
  }
}
.ar-copyright-social a:hover {
  color: var(--tp-common-white);
}
.ar-copyright-ptb {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-body {
  color: rgb(0, 0, 87);
  padding: 2rem !important;
}
