/* Golbal Styles */

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  word-break: break-word;
  scroll-behavior: smooth;
}

:root {
  --red: #e60000;
  --blue: #032e8c;
  --gray: #5e5e5e;
}

body {
  overflow-x: hidden;
  background: white;
}

img,
svg {
  max-width: 100%;
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: 0.25s;
}

button {
  cursor: pointer;
}

button,
i {
  transition: 0.25s;
}

section {
  width: 100%;
  padding: 6vw 10vw 5vw 10vw;
}

h1,
h2,
h3,
h4 {
  color: var(--gray);
  font-weight: 700;
  line-height: 1;
}

p {
  color: #435255;
  font-size: 16px;
  margin: 10px 0;
}
.title-index{
  color: #435255 !important;
  font-size: 18px;
  margin: 10px 0;
}

.title-index2{
  color: #032e8c !important;
  font-size: 18px;
  margin: 10px 0;
}
.title-index3{
      color: var(--blue);
      padding-top: 10%;
      font-size: 35px!important;
    
}
.title-index4{
      color: var(--blue);
      padding-top: 10%;
      font-size: 35px!important;
    
}

@keyframes background_animation {
  from {
    background-size: 0%;
  }
  to {
    background-size: 400%;
  }
}

@media (max-width: 996px) {
  section {
    padding: 26% 10%;
  }
  h1,
  h2 {
    font-size: 30px;
  }
  p,
  ol,
  ul {
    text-align: left;
  }
}

/* breadcrumb-style */

.breadcrumb-section{
  padding: 2vw 2vw 0 10vw;
}

.breadcrumb-locat{
  padding: 2vw 2vw 0 2vw;
}

.breadcrumb-style {
  list-style: none;
  display: flex;
  border-radius: 5px;
}

.breadcrumb-style li {
  margin: 0 5px;
}

.breadcrumb-style li a {
  text-decoration: none;
  color: var(--blue);
}

.breadcrumb-style li::after {
  content: " » ";
  margin-left: 5px;
  color: #888;
}

.breadcrumb-style li:last-child::after {
  content: "";
}
.breadcrumb-style li.active-style {
  font-weight: bold;
  color: #555;
}

@media (max-width: 768px) {
  .breadcrumb-style {
      font-size: 14px;
      justify-content: left;
  }
}

@media (max-width: 992px) {
  .breadcrumb-style {
      font-size: 16px;
      padding: 6vw 10vw 0 0;
      text-align: left;
      flex-wrap: wrap;
  }
  
  .breadcrumb-style li {
      margin-bottom: 5px;
      padding: 0;
  }

  .breadcrumb-style li.active-style{
    min-width: fit-content;
  } 

  
}

/* ----------------------------------------------------------------------- */
/* old breadcrumbs */

/* .breadcrumb {
  display:none;
  width: 60%;
  padding: 15px 15px;
  margin: 50px auto 20px auto; 
  list-style: none;
  background-color: #002c91f0;
  border-radius: 4px;text-align: center;
}
  
  .breadcrumb-item {
  display: inline-block;
  }
  
  .breadcrumb-item + .breadcrumb-item:before {
  content: ">";
  margin: 0 5px;
  color: #ccc;
  }
  
  .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  }
  
  .breadcrumb-item.active {
  color: #555;
  }

  @media screen and (max-width: 996px) {
      .title-index3{
        font-size: 30px!important;
    
}
      .title-index{
          font-size: 16px;
        }
      .title-index2{
  
        font-size: 22px !important;
        }
      
      
    .breadcrumb {
    margin: 20px;
    width: 89%;
    }
    
    .breadcrumb-item + .breadcrumb-item:before {
    content: ">";
    margin: 0 2px;
    font-size: 12px;
    color: #ccc;
    }
    
    .breadcrumb-item {
    font-size: 14px;
    }
    
    .breadcrumb-item a {
    font-size: 14px;
    }
    } */
/* ----------------------------------------------------------------------- */

/** Header **/

main {
    padding-top: 7.4vw;
}

header {
    position: fixed;
    z-index: 99;
    background: white;
    width: 100%;
}

header .desktop-header {
  padding: 0;
}

header .mobile-header {
  display: none;
}

header .header-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

header .header-container .first-section-header {
  display: flex;
  padding: 20px 50px;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

header .header-container .first-section-header .request-button a {
  background: var(--red);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.make-payment a {
  background: var(--red);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 10px;
  font-weight: 600;
  position: relative;
}

header .header-container .first-section-header .request-button a:hover {
  background: white;
  box-shadow: 3px 3px 10px #00000030;
  color: var(--blue);
}

.make-payment a:hover {
  background: white;
  box-shadow: 3px 3px 10px #00000030;
  color: var(--red);
}

header .header-container .first-section-header .phone-button a {
  background: var(--blue);
  padding: 10px 20px;
  border-radius: 50px ;
  color: white;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

header .header-container .first-section-header .phone-button a:hover {
  background: white;
  box-shadow: 3px 3px 10px #00000030;
  color: var(--blue);
}
/* header .header-container .first-section-header .request-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  clip-path: polygon(100% 0, 50% 100%, 100% 100%);
  width: 30px;
  height: 100%;
  background: #032e8c;
  transition: 0.25s;
} */

header .header-container .first-section-header .request-button a:hover::before {
  background: white;
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

header .header-container .first-section-header .social-icons {
  display: flex;
  gap: 10px;
}

header .header-container .first-section-header .social-icons a {
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 50%;
  background-color: var(--blue);
}

header .header-container .first-section-header .social-icons a:hover {
  box-shadow: -1px 1px 3px #00000090;
  background-color: white;
}

header .header-container .first-section-header .social-icons i {
  color: white;
}

header .header-container .first-section-header .social-icons a:hover > i {
  color: var(--blue);
}

header .header-container .second-section-header {
  display: flex;
  flex-direction: column;
}

header .header-container .second-section-header .logo-box {
  display: block;
  top: 0;
  z-index: 1;
  left: 10%;
  padding: 40px 20px;
  width: 200px;
  box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.75);
  background: white;
  position: absolute;
}

header .header-container .second-section-header .nav {
  padding: 15px 150px;
  background-color: var(--blue);
}


header .header-container .second-section-header .menu .menu-item {
  padding: 0 10px;
  border-right: 2px solid white;
}

header .header-container .second-section-header .menu .menu-item:hover a {
  color: #d8e3fa;
}

header .header-container .second-section-header .menu li a {
  position: relative;
}


header .header-container .second-section-header .nav .menu {
  list-style: none;
  gap: 10px;
  justify-content: flex-end;
  display: flex;
}

header .header-container .second-section-header .nav ul li a {
  color: white;
  font-weight: 500;
}

header .header-container .second-section-header .btn-especialities {
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  background: none;
}

header .header-container .second-section-header .menu li ul {
  border-radius: 5px;
  box-shadow: 3px 3px 10px #00000020;
  display: none;
  list-style: none;
  position: absolute;
  z-index: 999;
  background: var(--blue);
  min-width: 100px;
}

header .header-container .second-section-header .menu li:hover > ul {
  display: flex;
  flex-direction: column;
}

header .header-container .second-section-header .menu .especialities-items li {
  padding: 10px;
}

header .header-container .second-section-header .menu .especialities-items a {
  color: white;
}

header
  .header-container
  .second-section-header
  .menu
  .especialities-items
  li:hover {
  background-color: #314b85;
}

header
  .header-container
  .second-section-header
  .menu
  .especialities-items
  li
  a:hover::before {
  transform: scaleX(0);
}

header .header-container .second-section-header .nav-second-line {
  height: 15px;
  width: 100%;
  background-color: rgb(230, 0, 0);
}

@media (max-width: 996px) {
  .desktop-header {
    display: none;
  }

  header .mobile-header {
    padding: 8%;
    display: block;
  }

  .mobile-header {
    background: rgb(230, 0, 0);
    background: linear-gradient(
      0deg,
      rgba(230, 0, 0, 1) 34%,
      rgba(3, 46, 140, 1) 34%
    );
  }

  .mobile-header .header-mobile-container {
    position: relative;
  }

  .mobile-header .mobile-header-container .logo-box {
    top: 0;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 10px;
    width: 100px;
    box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.75);
    background: white;
    position: absolute;
  }

  .mobile-header .mobile-header-container .first-section-header .menu a {
    position: relative;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    button {
    font-size: 16px;
    color: var(--gray);
    background: none;
    border: none;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    li
    ul {
    display: none;
    list-style: none;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    .btn:hover
    > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 92%;
    box-shadow: 3px 3px 10px #00000020;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    .especialities-items {
    display: none;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    .especialities-items
    a {
    color: white;
    width: 100%;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    .especialities-items
    li {
    text-align: center;
    margin: 0;
    background: var(--blue);
    font-size: 12px;
    padding: 6px;
  }

  .mobile-header
    .mobile-header-container
    .first-section-mobile-header
    .menu
    .especialities-items
    a:hover {
    background: #c2d2f5;
  }

  .mobile-header .sidebar-box {
    position: fixed;
    width: 70%;
    height: 100%;
    z-index: 99;
    top: 0;
    right: 0;
    transform: translateX(150%);
    background: white;
    padding: 20px 25px;
    transition: all 400ms;
  }

  .sidebar-box .sidebar-items .menu {
    list-style: none;
    text-align: center;
  }

  .sidebar-box .sidebar-items .menu li {
    margin-bottom: 12px;
  }

  .sidebar-box .sidebar-items .menu li a {
    color: var(--gray);
  }

  .sidebar-box .sidebar-items .menu li a:hover {
    color: var(--blue);
  }

  .sidebar-box .sidebar-items .menu li ul a:hover {
    color: none;
  }

  header .toggle_active .sidebar-box {
    transform: translateX(0);
  }

  .sidebar-active .sidebar-box {
    right: 0;
  }

  header .mobile-header .mobile_toggle {
    width: fit-content;
    position: absolute;
    display: flex;
    right: 4%;
    top: 28%;
    border-radius: 50px;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px;
    background: white;
    box-shadow: -1px 1px 3px #00000030;
    z-index: 99;
  }
  
  header .mobile-header hr {
    margin: 2px 0;
    width: 20px;
    height: 3px;
    border: 0;
    background: var(--blue);
    transition: 0.25s;
  }

  header .mobile-header hr:last-child {
    width: 100%;
  }
  header .mobile-header .close_toggle hr:first-child {
    transform: rotate(-40deg) translate(-5px, 5px);
    width: 20px;
  }
  header .mobile-header .close_toggle hr:nth-child(2) {
    opacity: 0;
  }
  header .mobile-header .close_toggle hr:last-child {
    width: 20px;
    transform: rotate(40deg) translate(-5px, -5px);
  }

  header .mobile-header .mobile_blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000060;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 1;
    visibility: hidden;
    z-index: 95;
    transition: 0.25s;
  }
  header .toggle_active .mobile_blur {
    opacity: 1;
    visibility: visible;
  }

  header
    .mobile-header-container
    .sidebar-box
    .sidebar-items
    ul
    li
    .request-button
    a {
    background: var(--blue);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 600;
  }

  header
    .mobile-header-container
    .sidebar-box
    .sidebar-items
    ul
    li
    .request-button
    a:hover {
    background: white;
    box-shadow: -1px 1px 3px #00000020;
    color: var(--blue);
  }

  header
    .mobile-header-container
    .sidebar-box
    .sidebar-items
    ul
    li
    .social-icons
    a {
    background: var(--blue);
    padding: 10px 20px;
    border-radius: 50%;
    color: white;
    font-size: 15px;
    font-weight: 600;
  }

  header
    .mobile-header-container
    .sidebar-box
    .sidebar-items
    ul
    li
    .social-icons
    a:hover {
    background-color: white;
    box-shadow: -1px 1px 8px 1px rgba(0, 0, 0, 0.75);
  }

  header
    .mobile-header-container
    .sidebar-box
    .sidebar-items
    ul
    li
    .social-icons
    a:hover
    > i {
    color: var(--blue);
  }
}

/** Footer **/

footer ul {
  list-style: none;
}

.footer-section {
  padding: 0;
}

footer .footer-section .footer-container {
  padding: 3% 5%;
  display: grid;
  gap: 30px;
  justify-items: center;
  align-items: flex-start;
  justify-content: center;
  justify-items: start;
  grid-template-columns: 25% 55% 20%;
}

footer .footer-section .footer-container .footer-contact {
  padding: 0% 20%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

footer .footer-section .footer-container .footer-contact .contact-info h4 {
  color: var(--blue);
  margin-bottom: 10px;
}

footer .footer-section .footer-container .footer-contact .contact-info {
  text-align: center;
}

footer .footer-section .footer-container .footer-contact .contact-info a {
  color: var(--gray);
  font-size: 16px;
}

footer .footer-section .footer-container .footer-contact a:hover {
  color: var(--blue);
}

footer
  .footer-section
  .footer-container
  .footer-contact
  .footer-social-icons
  i {
  color: var(--blue);
  font-size: 23px;
  margin-right: 10px;
}

footer
  .footer-section
  .footer-container
  .footer-contact
  .footer-social-icons
  i:hover {
  color: var(--gray);
}

footer .footer-section .footer-container .footer-contact .footer-privacy  {
  text-align: center;
}


footer .footer-section .footer-container .footer-contact .footer-privacy a {
  color: var(--gray);
  font-size: 16px;
}

footer
  .footer-section
  .footer-container
  .footer-contact
  .footer-privacy
  a:hover {
  color: var(--blue);
}

.footer-section .footer-container .bussines-hours {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-section .footer-container .bussines-hours .location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.footer-section .footer-container .bussines-hours .location .location-box {

  min-height: 200px;
  max-height: 200px;
}

.footer-section .footer-container .bussines-hours .location i {
  margin-right: 10px;
}

.footer-section .footer-container .bussines-hours .location a {
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--gray);
}

.footer-section .footer-container .bussines-hours .location a:hover {
  color: var(--blue);
}

.footer-section .footer-container .bussines-hours h4 {
  color: var(--blue);
  text-align: left;
  margin-bottom: 30px;
}

.footer-section .footer-container .bussines-hours .location .bussines-box {
  margin-top: 20px;
}

.footer-section .footer-container .bussines-hours .location .businessHours {
  margin-top: 20px;
}

.footer-section .footer-container .bussines-hours ul li {
  color: var(--gray);
  text-align: justify;
  margin-bottom: 10px;
}

.footer-section .footer-container .bussines-hours ul li p {
  font-size: 15px;
}

.footer-section .footer-container .footer-services {
  width: fit-content;
}

.footer-section .footer-container .footer-services h4 {
  color: var(--blue);
  margin-bottom: 15px;
}

.footer-section .footer-container .footer-services ul li {
  margin-bottom: 10px;
}

.footer-section .footer-container .footer-services ul li a {
  color: var(--gray);
}

.footer-section .footer-container .footer-services ul li a:hover {
  color: var(--blue);
}

.footer-section .created-box {
  background: var(--blue);
  padding: 10px;
  text-align: center;
}

.footer-section .created-box p {
  margin: 0;
  color: white;
}

.footer-section .created-box a {
  margin: 0;
  color: white;
}

.footer-section .created-box a:hover {
  margin: 0;
  color: var(--red);
}

@media (max-width: 996px) {
  footer .footer-section .footer-container {
    grid-template-columns: 100%;
    justify-items: center;
  }

  footer .footer-section .footer-container ul li {
    text-align: center;
  }

  .footer-section .footer-container .bussines-hours {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
  }


  .footer-section .footer-container .bussines-hours .location {
    align-items: center;
    border-bottom: 3px var(--gray) solid;
  }

    .footer-section .footer-container .bussines-hours .location a {
    text-align: center;
  }

  .footer-section .footer-container .bussines-hours .location .location-box {

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-section .footer-container .bussines-hours .location .businessHours {
    text-align: center;
  }

  footer .footer-section .footer-container .bussines-hours ul li p {
    text-align: center;
  }

  .footer-section .footer-container .footer-services h4 {
    text-align: center;
  }

  .footer-section .created-box p {
    text-align: center;
  }
}

.breadcrumb-item.active {
  color: #fff;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5%;
}

.cta a {
  background: var(--red);
  padding: 10px 20px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
transition: .25s;
}
.cta a:hover {
  background: var(--blue);
}

.box_social_section {
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box_social_section .box_social .main_box{
    display: grid;
    grid-template-columns: 50% 50%;

}

.box_social_section .box_social .main_box .media_box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box_social_section .box_social .main_box .content_box{
    background: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.box_social_section .box_social .main_box .content_box h2{
    color: white;
    font-size: 2vw;
}

.box_social_section .box_social .main_box .content_box .redes_icons {
  display: flex;
  gap: 3vw;
}

.box_social_section .box_social .main_box .content_box .redes_icons a{
  font-size: 2vw;
  color: white;
}

@media (max-width: 996px) {
  .box_social_section .box_social .main_box{
	grid-template-columns: 100%;
  }
  .box_social_section .box_social .main_box .content_box{
	padding: 10%;
  }
  .box_social_section .box_social .main_box .content_box h2{
	font-size: 4vw;
  }
  .box_social_section .box_social .main_box .content_box .redes_icons a{
	font-size: 4vw;
  }		
}



