
   /* font import */
   @import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
   @import url("https://fonts.googleapis.com/css2?family=League+Gothic&family=Work+Sans&display=swap");
   @import url("https://fonts.googleapis.com/css2?family=Inter:wght@200&family=League+Gothic&family=Work+Sans&display=swap");
  
    /* general config */
    * {
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      --fontprimary: "League Gothic", sans-serif;
      --fontsecundary: "Work Sans", sans-serif;
      --currentfont: "Inter", sans-serif;
      --TitleColor: #0077b6;
      --SkyBlue: #caf0f8;
      --DarkBlue: #0077b6;
      --PureWhite: #ffff;
      --FontBlue: #1da7e2;
      --FontTextAtention: #03045e;
      --facecolor:#4267B2;
      --whacolor:#25D366;
  
    }
  
  /**Escritorio**/
  @media(min-width: 991px) {
    .faIcon{
      color:var(--facecolor);
      font-size: 4vw;
    }
  
    html {
      padding: 0%;
      margin: 0%;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
  
    body {
      padding: 0%;
      margin: 0%;
      box-sizing: border-box;
    }
  
    /* Title section styles */
    header {
      min-height: 800;
      width: 100%;
    }
  
    .text-title h1 {
      font-family: var(--fontprimary);
      text-transform: uppercase;
      color: var(--TitleColor);
      font-weight:100;
      font-size: 8em;
      margin: 0%;
      padding: 210px 100px 279px 100px;
      text-align: center;
    }
  
    .nav ul {
      margin: 0%;
      padding: 0%;
    }
  
    .nav ul li {
      display: inline;
      list-style: none;
      font-size: 1rem;
      font-weight:500;
      font-family: var(--fontsecundary);
      text-transform: capitalize;
    }
  
    .nav ul li a {
      text-decoration: none;
      color: var(--TitleColor);
    }
  
    /* Equipo section styles */
    section .equipoGrid {
      display: grid;
      grid-template-areas:
        "betyFrame     edgarFrame"
        "betyFrame     edgarFrame";
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      width:100%;
      height: auto;
      background-color: var(--DarkBlue);
    }
  
    .popUpBety {
      background-color: var(--SkyBlue);
      font-family: var(--fontsecundary);
      font-size: 0.9vw;
      position: fixed;
      margin: auto;
      right: 50%;
      bottom: 50%;
      z-index: 9999;
    }
  
    .popUpEdgar {
      border: none;
      background-color: var(--SkyBlue);
      font-family: var(--fontsecundary);
      font-size: 0.9vw;
      text-align: center;
      position: fixed;
      margin: auto;
      width: 30%;
      height: 20%;
      left: 50%;
      bottom: 50%;
      z-index: 9999;
    }
  
    /* Font styles */
    section .equipoGrid h3 {
      font-family: var(--fontprimary);
      font-weight: 100;
      font-size: 1.5rem;
      color: var(--PureWhite);
    }
  
    section .equipoGrid p {
      font-family: var(--fontsecundary);
      color: var(--PureWhite);
      font-size: 1rem;
    }
  
    /* profile styles */
    
    .modal {
      display: none;
      position: fixed;
      background-color:var(--PureWhite);
      top: 50%;
      left: 50%;
      width:60%;
      height:40vw;
      transform: translate(-50%, -50%);
      z-index: 100;
      border-radius: 20px;
      -webkit-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
    }
  
    .modal-content {
      font-family:var(--currentfont);
      width:100%;
      padding-top:5%;
      text-align: center;
      font-size: 3vw;
      border-radius: 4px;
      background-color: var(--PureWhite);
    }
    .modal-content p{
      color: #000000 !important;
    }
    .modal-content h2{
      font-size: 2vw;
    }
  
    .modal-close {
      font-family: var(--fontsecundary);
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      color:red;
      font-size:2vw;
    }
  
    .modal-close:hover {
      color: #333;
    }
    section .equipoGrid .bety {
      padding: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      grid-area: betyFrame;
      flex-direction: column;
    }
  
    section .equipoGrid .edgar {
      padding: 100px;
      grid-area: edgarFrame;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  
    .equipoGrid .Picture1 {
      width: 80px;
      height: 80px;
      display: block;
      background-image: url(/img/Medicina.png);
      overflow: hidden;
      aspect-ratio: 1 / 1;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 64px;
    }
  
    .equipoGrid .Picture2 {
      width: 80px;
      height: 80px;
      display: block;
      background-image: url(/img/fisioterapia1.png);
      overflow: hidden;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 64px;
    }
    .Picture1:hover{
      cursor: pointer;
    }
    .Picture2:hover{
      cursor: pointer;
    }
    
  
    /* Contacto section styles */
    
    .ContactoContainer{
      display: grid;
      grid-template-areas: "Row1  Row1"
                            "Row2 Row2";
      grid-template-rows: repeat(2,auto);
      grid-template-columns: repeat(2,auto);
      width: 100%;
      height: 50%;
      padding-top: 8%;
    }
    .ContactoContainer img{
      width:30vw;
      height: 20vw;
    }
    .Row1{
      grid-area: Row1;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      padding-bottom: 2%;
    }
    .Row2{
      grid-area: Row2;
      padding-top: 2%;
      margin-bottom: 2%;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
    }
    iframe{
      height:20vw;
       width:38vw;
    }
    .Agenda{
      display: flex;
      flex-direction: column;
    }
    .Agenda p {
      font-size:1.5vw;
      color:#888888;
      font-weight:500;
      margin-top: 0%;
      font-family:var(--currentfont);
    } 
  
    .Agenda h1{
      font-family: var(--currentfont);
      color:var(--FontBlue);
      font-size: 3vw;
      font-weight:600;
      margin-bottom:2%;
    }
    .Row2 h1{
      font-family: var(--currentfont);
      color:var(--FontBlue);
      font-size: 3vw;
    }
    .Ubi{
      display: flex;
      justify-content:center;
      width:90%;
    }
    .UbiText{
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .buttonWha{
      width: 100%;
    }
    .button {
      background-color:var(--whacolor);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
  
    /* Horarios section styles */
    .Hour {
      width:170%;
      height:10vw;
      margin-bottom:40%;
      margin-right:10%;
    }
  
    .Hour h1 {
      font-family:var(--fontprimary);
      font-size: 3.6vw;
      color: white;
      margin-bottom: 1%;
      font-weight: 100;
    }
  
    .sub {
      margin-top: 0%;
      padding-top: 0%;
      font-size: 2vw;
      font-family: var(--currentfont);
      color: white;
      font-weight: 300;
    }
  
    .horario {
      width:100%;
    }
    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      width:100%;
    }
    table {
      width: 80%;
      border-bottom: none;
      border-collapse: collapse;
    }
  
    table th
     {
      border: 1px solid black;
      text-align: center;
      padding:1%;
      background-color:var(--FontBlue);
      width:5%;
      height: 10px;
    }
    .HeadHours{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  table td{
    border: 1px solid var(--FontTextAtention);
    background-color:var(--FontBlue);
    text-align: center;
    padding:2% 0%;
    height: 1vw;
    color:var(--PureWhite);
    font-family: var(--fontsecundary);
  
  }
    .DAY,
    .HOR {
      font-family:var(--fontsecundary);
      font-size:2vw;
      color: var(--PureWhite);
      font-weight:900;
    }
    .Layout {
      display: grid;
      background-color: var(--DarkBlue);
      grid-template-areas:
        "info  imagen  imagen"
        "info  imagen  imagen";
      grid-template-columns:repeat(3,auto);
      grid-template-rows:repeat(2,auto);
      min-height: 40vw;
      padding: 3%;
    }
  
    .Info {
     display: flex;
     justify-content: center;
     align-items:center;
     flex-direction:column;
      grid-area: info;
      
    }
  
    .Info h1 {
      margin: 2% 0%;
      font-family: var(--fontprimary);
      font-weight: 100;
      font-size:4vw;
      text-align: center;
      color: var(--PureWhite);
    }
  
    .Info .desc {
      font-family: var(--currentfont);
      font-size:1.6vw;
      text-align: center;
      color: var(--PureWhite);
      padding: 5% 2%;
      margin: 0% 2%;
    }
  
    .Info .btncontainer {
     font-family: var(--currentfont);
      display: inline-block;
      padding: 1% 10%;
      background-color:var(--SkyBlue);
      color: var(--DarkBlue);
      border-radius: 4px;
      font-weight: bold;
      font-size: 1.4vw;
    }
    .btncontainer:hover{
      cursor: pointer;
      opacity: 90%;
    }
  
    .imgTimes {
      grid-area: imagen;
      display: flex;
      align-items: center;
      padding-right: 1%;
      padding-left: 0%;
    }
  
    .imgTimes img {
      width: 40vw;
      height:22vw;
    }
    .dialogHeader{
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      bottom:46%;
      left:91%;
      width: 20%;
      padding-top: 2%;
      padding-bottom: 2%;
    }
    dialog.Horarios {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--TitleColor);
      z-index: 99999;
      position: fixed;
      top: 2%;
      left: 0%;
      height:40vw;
      width: 93%;
      border: none;
    }
    .close button{
      border: none;
    }
    .close {
      width: 3vw;
      height: 3vw;
      background-color:red;
      padding: 1%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4rem;
      color:var(--PureWhite);
      font-weight: bolder;
      border-radius: 20%;
      outline: none;
    }
    .close:hover{
      cursor: pointer;
      background-color: #c416168d;
    }
  
  
    /* Atencion styles */
    .atention{
      background-color:var(--SkyBlue);
      width: 100%;
      display: grid;
      grid-template-areas: "Title   Title"
                          "Frame1   Frame2";
      grid-template-columns: repeat(2,auto);
      grid-template-rows: repeat(2,auto);
  
    }
    .TitlePart1{
      grid-area: Title;
    }
   .TitlePart1 h2{
    color: #000000;
    font-family:var(--fontprimary);
    font-weight:200;
    font-size: 3.5vw;
    padding-left:15%;
    margin-top: 10%;
   }
   .ImgPart1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:5% 5% 10% 1%;
   }
   .ImgPart1 img{
    width: 30vw;
    height: 30vw;
    border-radius:8%;
    mix-blend-mode: luminosity;
  
   }
  .Texto{
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-top: 20%;
  }
  .Part2{
    display: flex;
    align-items: center;
  }
  .BigTitle{
    font-size: 1.5vw;
    font-family:var(--fontsecundary);
    font-weight:bolder;
  }
  .SubTitle{
    font-size:1vw;
    font-family: var(--fontsecundary);
    color:var(--FontTextAtention);
  font-weight:500;
  }
  
  .Homeopatia{
    padding-bottom:5%;
  }
  .Fisioterapia{
    padding-bottom:5%;
  }
  
  
    /* footer  */
    footer {
      width: 100%;
      padding: 50px 0px;
    }
    .container__footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      margin-top: 100px;
    }
  
    .box__footer {
      display: flex;
      flex-direction: column;
      padding: 10px;
    }
  
    .box__footer .logo img {
      width: 180px;
    }
  
    .box__footer .terms {
      max-width: 350px;
      margin-top: 20px;
      font-weight: 500;
      color: #7a7a7a;
      font-size: 18px;
    }
  
    .box__footer h2 {
      margin-bottom: 15px;
      font-weight: 500;
      font-family:var(--fontsecundary);
      color:var(--FontTextAtention);
      font-size: 1.2vw;
      letter-spacing: -0.025em;
      line-height: 1.5;
      text-align: left;
    }
  
    .box__footer a {
      font-weight: 500;
      font-family: "Work Sans", "Work Sans Placeholder", sans-serif;
      color: #000000;
      font-size: 1.2vw;
      text-align: left;
      text-decoration: none;
      padding-bottom: 1px;
    }
  
    .box__copyright {
      display: flex;
      align-items: center;
      flex-direction: row;
      justify-content: space-around;
      width: 100%;
      margin-top: 5%;
    }
    .box__copyright p {
      font-weight:bolder;
      font-family:var(--fontsecundary);
      color: #000000;
      font-size: 1vw;
      letter-spacing: 0em;
    }
    .box__copyright i{
      font-size: 2vw;
    }
    .box__copyright .block{
      padding: 0% 15% 0% 15%;
    }
    .tooltip {
      position: relative;
    }
  
    .tooltip-text {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background: #fff;
      border: 1px solid #ccc;
      padding: 5px;
    }
  
    .tooltip:hover .tooltip-text {
      display: block;
    }
  
  }
  
  /**Tablet**/
  @media (max-width:990px) and (min-width:601px) {
  
    html{
      padding: 0%;
      margin: 0%;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
  
    body {
      padding: 0%;
      margin: 0%;
      box-sizing: border-box;
    }
  
    
    header {
      min-height: 800px;
    }
    
    .hero h1 {
      font-family: var(--fontprimary);
      font-size: 10vw;
      color:var(--DarkBlue);
      text-align: center;
      position: relative;
      font-weight: 100;
      top: 240px;
      width: 1fr;
      height: auto;
    }
  
    .menu {
      position: relative;
      top: 200px;
      width: 1fr;
      text-align: center;
    }
  
    .menu p {
      font-family:var(--fontsecundary);
      font-weight:500;
      display: inline-block;
      padding: 15px 15px 15px 15px;
    }
    .menu p a{
      color:var(--DarkBlue);
      text-decoration: none;
    }
    .FAQ {
      padding-bottom: 4%;
      background-color: #CAF0F8;
    }
  
    .FAQ h2 {
      font-family:var(--fontprimary);
      padding: 50px 0px 0px 100px;
      font-size: 5vw;
      font-weight: 100;
    }
  
    .stack {
      display: grid;
      grid-template-areas:
        "Image  Text";
        gap: 2%;
  
    }
  
    .img {
      padding: 15px 15px 15px 25px;
    }
  
    .image {
      width: 390px;
      height: 370px;
      border-radius: 30px;
      mix-blend-mode: luminosity;
    }
  
    .QA h2 {
      font-family: "Work Sans";
      color: #03045e;
      font-size: 20px;
      padding: 1px 1px 15px 0px;
      font-weight: bold;
    }
  
    .text {
      font-weight:500;
      font-family: "Work Sans";
      color: #000000;
      font-size: 16px;
    }
  
    section .Team {
      display: grid;
      grid-template-areas:
        "betyFrame     edgarFrame"
        "betyFrame     edgarFrame";
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      width: 1fr;
      height: auto;
      background-color:var(--DarkBlue);
    }
  
    .popUpBety {
      background-color: var(--SkyBlue);
      font-family:var(--fontsecundary);
      font-size: 0.9vw;
      position: fixed;
      margin: auto;
      right: 50%;
      bottom: 50%;
      z-index: 9999;
    }
  
    .popUpEdgar {
      border: none;
      background-color:var(--SkyBlue);
      font-family:var(--fontsecundary);
      font-size: 0.9vw;
      text-align: center;
      position: fixed;
      margin: auto;
      width: 30%;
      height: 20%;
      left: 50%;
      bottom: 50%;
      z-index: 9999;
  
    }
  
    section .Team h3 {
      font-family:var(--fontprimary);
      font-weight: 100;
      font-size: 1.5rem;
      color: var(--PureWhite);
    }
  
    section .Team p {
      font-family: "Work Sans", sans-serif;
      color: var(--PureWhite);
      font-size: 1rem;
    }
  
    section .Team .bety {
      padding: 100px;
      display: flex;
      justify-content: center;
      align-items: center;
      grid-area: betyFrame;
      flex-direction: column;
    }
    section .Team .edgar {
      padding: 100px;
      grid-area: edgarFrame;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .Team .Picture1 {
      width: 80px;
      height: 80px;
      display: block;
      -webkit-filter: grayscale(1);
      background-image: url(/img/Medicina.png);
      filter: grayscale(1);
      overflow: hidden;
      aspect-ratio: 1 / 1;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 64px;
    }
  
    .Team .Picture2 {
      width: 80px;
      height: 80px;
      display: block;
      -webkit-filter: grayscale(1);
      background-image: url(/img/fisioterapia1.png);
      filter: grayscale(2);
      overflow: hidden;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 64px;
    }
  
    .Hour {
      background-color:var(--DarkBlue);
      height:80vw;
      width: 100%;
      margin-top: 6%;
    }
  
    .Hour h1 {
      font-family:var(--fontprimary);
      font-size: 6vw;
      color: white;
      margin-bottom: 1%;
      font-weight: 100;
    }
  
    .sub {
      margin-top: 0%;
      padding-top: 0%;
      font-size: 2vw;
      font-family: var(--currentfont);
      color: white;
      font-weight: 300;
    }
  
    .horario {
      width:100%;
    }
    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      width:100%;
    }
    table {
      width: 80%;
      border-bottom: none;
      border-collapse: collapse;
    }
  
    table th
     {
      border: 1px solid black;
      text-align: center;
      padding:2%;
      background-color:var(--FontBlue);
      width:5%;
      height: 20px;
    }
    .HeadHours{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
  
    }
  table td{
    border: 1px solid var(--FontTextAtention);
    background-color:var(--FontBlue);
    text-align: center;
    padding:2% 0%;
    height: 3vw;
    color:var(--PureWhite);
    font-family: var(--fontsecundary);
  
  }
    .DAY,
    .HOR {
      font-family:var(--fontsecundary);
      font-size:2.7vw;
      color: var(--PureWhite);
      font-weight:900;
    }
    .button {
      background-color:var(--whacolor);
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
  
      .rows h2{
        font-weight: 100;
      }
    .ContactoContainer{
      display: grid;
      grid-template-areas: "Row1"
                            "Row2";
      grid-template-rows: repeat(2,auto);
      width: 100%;
      height: 50%;
      padding-top: 8%;
    }
    .ContactoContainer img{
      width:38vw;
      height: 25vw;
    }
    .Row1{
      grid-area: Row1;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
      padding-bottom: 2%;
    }
    .Row2{
      grid-area: Row2;
      padding-top: 6%;
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
    }
    iframe{
      height:25vw;
       width:38vw;
    }
    .Agenda{
      display: flex;
      flex-direction: column;
    }
    .Agenda p {
      font-size:2vw;
      color:#888888;
      font-weight:500;
      margin-top: 0%;
      font-family:var(--currentfont);
    } 
  
    .Agenda h1{
      font-family: var(--currentfont);
      color:var(--FontBlue);
      font-size: 4vw;
      font-weight:600;
      margin-bottom:4%;
    }
    .Row2 h1{
      font-family: var(--currentfont);
      color:var(--FontBlue);
      font-size: 4vw;
    }
    .Ubi{
      display: flex;
      justify-content: center;
      width: 30%;
    }
    .buttonWha{
      width: 100%;
    }
    .ventana {
      display: none;
      position: fixed;
      top: 1400px;
      right: 700px;
      width: 200px;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
    }
  
    .footer p {
      font-size: 2vw;
      color: #000000;
      font-family: var(--fontsecundary);
    }
  
    .Ti {
      font-family:var(--fontsecundary);
      color:var(--FontTextAtention);
      font-weight: 500;
    }
  
    .contenido {
      background-color: #fff;
      width: 150px;
      margin: 10px auto;
      padding: 5px;
      border-radius: 5px;
      font-size: 15px;
    }
  
    .cerrar {
      font-size: 15px;
  
    }
  
  
    .footer-links {
      font-size: 12px;
      padding: 35px 0;
      list-style: none;
      text-decoration: none;
    }
  
    .footer-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      align-items: flex-start;
      justify-content: center;
    }
  
    .footer-container ul li a {
      margin: 0 auto;
      font-family:var(--fontsecundary);
      color:#000000;
      font-weight: 500;
      text-decoration: none;
  
    }
  
    .footer-links ul {
      list-style: none;
      line-height: 2.8;
  
    }
  
    .social-container {
      margin: 20px 0;
    }
  
    .social-container a {
      text-decoration: none;
      color: black;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin: 0 5px;
      height: 20px;
      width: 20px;
      font-family: 'klavika';
    }
  
    .footer {
      float: left;
      padding-left: 2%;
    }
  
    .social-container {
      float: right;
      clear: right;
      padding-right: 2%;
    }
    .faIcon{
      color: var(--facecolor);
      font-size: 4vw;
    }
  
    .Team {
      background-color: #0077B6;
      color: white;
    }
  
    .Team h2 {
      font-family: 'League Gothic', sans-serif;
      size: 20px;
  
    }
  
    .Team img {
      height: 80px;
      width: 80px;
      border-radius: 100%;
      margin-bottom: 20px;
    }
  
    .page {
      margin: 60px;
      text-align: center;
    }
  
    .page h2,
    .page p {
      margin-top: 10px;
    }
  
    .modal {
      display:none;
      position: fixed;
      top: 58%;
      left: 50%;
      width:80%;
      height:40vw;
      transform: translate(-50%, -50%);
      background-color:var(--PureWhite);
      z-index:999999;
      border-radius: 20px;
      -webkit-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
    }
  
    .modal-content {
      font-family:var(--currentfont);
      width:100%;
      padding-top:10%;
      text-align: center;
      font-size: 3vw;
      border-radius: 4px;
    }
    .modal-content h2{
      font-size: 3vw;
    }
  
    .modal-close {
      font-family: var(--fontsecundary);
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      color:red;
      font-size:4vw;
    }
  
    .modal-close:hover {
      color: #333;
    }
  
  }
  
  /**Mobile**/
  @media only screen and (max-width: 600px) {
    body {
      padding: 0%;
      margin: 0%;
      box-sizing: content-box;
    }
    html{
      scroll-behavior: smooth;
    }
  
    .hero {
      width: 100%;
      height:200vw;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
    }
  
    .hero h1 {
      font-family:var(--fontprimary);
      font-size:3vw;
      color: var(--DarkBlue);
      font-weight: 300;
    }
  
    .hero .SubTitleHero {
      font-weight:400;
      font-size:4vw;
      color:var(--FontBlue);
      font-family: var(--fontsecundary);
    }
  
    .menu {
      margin: 50px;
    }
  
    .FAQ {
      width: 100%;
      height: auto;
      background-color: #CAF0F8;
    }
  
    .FAQ h1 {
      font-size:3vw;
      font-weight: 200;
      font-family:var(--fontprimary);
      margin-bottom: 40px;
      padding-top: 8%;
    }
  
    .FAQ img {
      display: block;
      height:10w;
      width:90%;
      border-radius: 20px;
      margin: 20px auto;
      margin-top: 40px;
      margin-bottom: 40px;
    }
  
  
    .Question {
      font-family: var(--fontsecundary);
      display: flex;
      flex-direction: column;
    }
  
    .QyA {
      margin-bottom: 40px;
      margin-left: 20px;
      margin-right: 20px;
    }
  
    .QyA p {
      color:var(--FontTextAtention);
      font-size:4vw;
      margin-top: 10px;
    }
  
    .QyA h2 {
      font-size: 20px;
      font-weight:500;
    }
    .Ancord a{
      color: var(--FontBlue);
      text-decoration: none;
    }
    .Team {
      background-color:var(--DarkBlue);
      color: white;
    }
  
    .Team h2 {
      font-family:var(--fontprimary);
      font-size: 6vw;
      font-weight: 100;
    }
  
    .Team img {
      height: 80px;
      width: 80px;
      border-radius: 100%;
      margin-bottom: 20px;
    }
    .rows{
      width: 100%;
    }
    .rows .textDr{
      font-family: var(--fontprimary);
      font-size:6vw;
      
    }
    .rows .textDr2{
      color:var(--PureWhite);
      font-family:var(--fontsecundary);
      font-size: 4vw;
    }
    .page {
      padding-bottom: 8%;
      width: 100%;
      text-align: center;
    }
  
    .page h2,
    .page p {
      margin-top: 10px;
    }
  
    .modal {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      width:90%;
      height:75vw;
      transform: translate(-50%, -50%);
      background-color:var(--PureWhite);
      z-index: 100;
      border-radius: 20px;
      -webkit-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      -moz-box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
      box-shadow: 15px 22px 57px -6px rgba(0, 0, 0, 0.75);
    }
  
    .modal-content {
      font-family:var(--currentfont);
      width:100%;
      padding-top:10%;
      text-align: center;
      font-size: 6vw;
      border-radius: 4px;
    }
  
    .modal-close {
      font-family: var(--fontsecundary);
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      color:red;
      font-size:8vw;
    }
  
    .modal-close:hover {
      color: #333;
    }
  
    .Features_Large {
      width: 100%;
      height: auto;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  
    .Features_Large img {
      display: block;
      height: 350px;
      width: auto;
      border-radius: 20px;
      margin: 20px auto;
      margin-top: 40px;
      margin-bottom: 40px;
    }
  
    .Features_Large h1 {
      color:var(--FontBlue);
      font-family:var(--currentfont);
      margin: 20px;
      margin-top: 80px;
      margin-bottom: 0;
      font-size: 2vw;
    }
  
    .Features_Large p {
      margin: 20px;
      font-family:var(--currentfont);
      font-size: 5vw;
      color: #888888;
      margin-bottom: 0px;
      font-weight:500;
    }
    .buttonWha{
      display: flex;
      width: 100%;
      height: 15vw;
    }
    .btnn p a{
      margin: 0%;
      border-radius: 8px;
      text-decoration: none;
      color: var(--PureWhite);
      background-color: var(--whacolor);
      padding: 10%;
      font-size: 5vw;
    }
    /* whaedit */
    .Features_Large h2 {
      color: #1DA7E2;
      font-family: 'Inter', sans-serif;
      margin: 20px;
      text-align: center;
      font-size: 8vw;
    }
  
    .Features {
      width: 100%;
      text-align: center;
      align-items: center;
      justify-content: center;
      display: block;
      margin: 0 auto;
      height: 292px;
      margin-top: 60px;
      margin-bottom: 60px;
    }
  
    .Features iframe {
      display: block;
      margin: 0 auto;
      width: 90vw;
      height: 90vw;
      border: none;
      border-radius: 15px;
    }
  
    .call_to_Action {
      text-align: center;
      margin-top: 20px;
      background-color: #0077B6;
      color: #fff;
    }
  
    .call_to_Action table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
      font-size: 15px;
    }
  
    .call_to_Action h2 {
  
      margin-top: 60px;
      align-items: center;
      font-family:var(--currentfont);
    }
    .call_to_Action p{
      font-family: var(--fontsecundary);
    }
    .call_to_Action h3{
      font-family: var(--currentfont);
      color:var(--SkyBlue);
    }
  
  
    .schedule-container {
      display: flex;
      align-items: center;
    }
  
    .schedule-table {
      flex: 4;
      margin-bottom: 40px;
    }
  
    .image-container img {
      width: 90vw;
      height: 90vw; 
    }
  
    .schedule-table table {
      width: 100%;
    }
  
    .schedule-table h2 {
      margin: 20px;
      font-size: 20px;
    }
  
    .schedule-table h3 {
      margin: 10px;
    }
  
    .schedule-table p {
      margin: 10px;
    }
  
    .footer {
      text-align: left;
      padding: 20px;
      background-color: #fff;
    }
  
    .footer p {
      margin-bottom: 20px;
    }
  
    .footer-content {
      display: flex;
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 20px;
    }
  
    .footer-section h4 {
      font-size: 6vw;
      font-weight: 500;
      color:var(--FontTextAtention);
      font-family: var(--fontsecundary);
    }
  
    .footer-section p {
      margin: 8px 0;
      cursor: pointer;
      font-family: 'Work Sans', sans-serif;
    }
  
    .footer-section-icons img {
      width: 20px;
      margin: 0 5px;
      cursor: pointer;
    }
    .copyr{
      font-family:var(--fontsecundary);
    }
  
    .popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 20px;
      background:var(--PureWhite);
      border: 1px solid #ccc;
      z-index: 1000;
      text-align: center;
    }
  
    .popup p {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }
  
    .hero h1 {
      font-size: 40px;
    }
  
    .hero h2 {
      margin: 10px;
    }
  
    .menu {
      margin: 20px;
    }
  
    .FAQ h1 {
      font-size: 36px;
      margin: 10px;
      margin-bottom: 20px;
    }
  
  
    .QyA h2 {
      font-size: 16px;
    }
  
    .Team {
      padding: 30px 0;
    }
  
    .page h2,
    .page p {
      font-size: 16px;
    }
  
    .Features_Large h1 {
      font-size: 30px;
    }
  
    .Features p {
      font-size: 14px;
    }
  
    .Features a {
      padding: 8px 15px;
      font-size: 14px;
    }
    .Ancord{
      text-decoration: none;
      color: #000000;
    }
    .faIcon{
      color: var(--facecolor);
      font-size: 8vw;
    }
  }