* {
    box-sizing: border-box;
}
body {
    display: block;
    background-color: #e7ebde;
    font-size: 20px;
  }
h1{
    font-size: 3.5em;
    color: rgb(78,80,79);
    margin: 15px 0;
    line-height: 1;
}
h2{
    font-size: 1.38em;
    color: rgb(78,80,79);
}
.text{
    font-size: 1em;
    margin-bottom: 2px;
}
.sectionPadding{
    text-align: start;
}
.AdviceNav{
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 4;
}
#Advice{
    background-color: rgb(75, 75, 75);
    overflow: hidden;
}
#phoneNumberAnimated{
    position: relative;
    color: rgb(231, 235, 222);
    display: flex;
    animation-name: phoneNumberAnimated;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
nav {
    position: relative;
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 58px;
    background-color: rgba(94, 94, 94, 0.0);
    transition: background-color 2s;
}
.logoNav{
    position: relative;
    top: 7px;
}
.menuColapsed{
    width: 35px;
    height: 35px;
    margin-left: 160px;
    display: none;
}
#brandNav{
    position: relative;
    color: white;
}
.linksNav{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.linksNav a{
    flex-shrink: 0;
    color: white;
    text-align: center;
    padding: 5px 16px;
    text-decoration: none;
    border: 0px solid;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 500;
}
a.linkNavActived{
    background-color: rgb(9, 9, 10);
}
.linksNav a:hover{
    background-color: rgb(226, 226, 226);
    color: black;
}
.sidenav{
    height: 350px;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 95px;
    left: 2%;
    border-radius: 20px;
    background-color: rgba(94, 94, 94, 0.9);
    backdrop-filter: blur(10px);
    overflow-x: hidden;
    transition: 0.3s;
    /* padding-top: 15px; */
    text-align: center;
}
.sidenav a{
    padding: 6px 8px 6px 8px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover{
    color: #f1f1f1;
    background-color: rgb(134, 134, 134);
    margin: 0 10px;
    border-radius: 20px;
}
.sidenav .closebtn{
    text-align: right;
    font-size: 40px;
    margin-right: 30px;
}
.badge{
    padding: 6px 20px;
    background-color: rgba(137, 253, 189, 0.18);
    border: 2px solid rgba(78, 161, 116, 0.658);
    border-radius: 20px;
    color: rgb(70, 129, 97);
    font-size: 1.2rem;
}
footer{
  color: #ffffff;
  background-color: #5e5e5e;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  /* padding: 3% 8%; */
}
footer img{
    border-radius: 120px;
}
footer>div{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5%;
}
.contact,.schedule h2{
  color: rgb(231, 235, 222);
  font-size: 1.9rem;
}
footer .fa{
  padding: 15px;
  font-size: 30px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 0 16px;
  border-radius: 50%;
}
.fa:hover {
    opacity: 0.7;
}
.fa-facebook, .fa-tiktok, .fa-instagram{
    background-color: #cacaca;
    color: #292929;
  }
footer a{
    text-decoration: none;
    color: rgb(137, 253, 189);
}


/* The animation code */
@keyframes phoneNumberAnimated {
    from {left:-390px;}
  to {left:100%;}
  }
/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .sectionPadding{
        padding: 100px 2% 100px 2%;
    }
    h1{
        font-size: 2.2em;
    }
    .text {
        font-size: 1em;
    }
    nav{
        justify-content: space-between;
        padding: 0 2%;
    }
    .menuColapsed{
        display: initial;
        margin: 0;
    }
    .logoNav{
        top: 5px;
        left: 10%;
    }
    .logoNav img{
    border-radius: 50px;
    width: 90px;
    }
    .linksHiddenNav
    {
        display: none;
    }
    .reviewDescription{
        padding-top: 30px;
    }
    .footer-content img{
        margin: 0 auto;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .sectionPadding{
        padding: 5% 4% 0 4%;
    }
    nav{
        padding: 0 4%;
    }
    h1{
        font-size: 2.2em;
    }
    .text {
        font-size: 1em;
    }
    nav{
        justify-content: space-between;
    }
    .menuColapsed{
        display: none;
        margin: 0;
    }
    .linksHiddenNav
    {
        display: initial;
    }
    .TitlePageTransparency{
        padding: 0 20px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .sectionPadding{
        padding: 5% 4% 5% 4%;
    }
    nav{
        padding: 0 4%;
    }
    h1{
        font-size: 2.7em;
    }
    .text{
        font-size: 1.3em;
    }
    nav{
        justify-content: space-between;
    }
    .logoNav{
        top: 5px;
    }
    .logoNav img{
    border-radius: 50px;
    width: 105px;
    }
    #phoneNumberAnimated{
    animation-duration: 15s;
        }
    .linksHiddenNav
    {
        display: initial;
    }
    .reviewDescription{
        padding-top: 30px;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .sectionPadding{
        padding: 5% 4% 5% 4%;
    }
    nav{
        padding: 0 4%;
    }
    h1{
        font-size: 3em;
    }
    .text{
        font-size: 1.5em;
    }
    nav{
        justify-content: center;
    }
    #phoneNumberAnimated{
    animation-duration: 20s;
    }
    .linksHiddenNav
    {
        display: initial;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .sectionPadding{
        padding: 5% 4% 5% 4%;
    }
    nav{
        padding: 0 4%;
    }
    h1{
        font-size: 3.5em;
    }
    .text{
        font-size: 1.3em;
    }
    .logoNav{
        margin-right: 8%;
    }
    #phoneNumberAnimated{
    animation-duration: 20s;
    }
    .linksHiddenNav
    {
        display: initial;
    }
    .section-text{
        width: 80%;
    }
 }

 /* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .sectionPadding{
        padding: 5% 6% 5% 6%;
    }
    nav{
        padding: 0 6%;
    }
    .logoNav{
        margin-right: 8%;
    }
    #phoneNumberAnimated{
    animation-duration: 20s;
    }
    .linksHiddenNav
    {
        display: initial;
    }
    .linksNav a{
        font-size: 1.4rem;
    }
    .section-text{
        width: 60%;
    }

}

