* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  transition: animation 0.5s ease;
  animation: opening ease-in-out 1s;
}
body,
html {
  font-family: "Poppins", sans-serif;
}

/* Botón flotante Whatsapp */
.float{
	position:fixed;
	width:fit-content;
	height:fit-content;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	border-radius:110px;
	text-align:center;
	box-shadow: 2px 2px 3px rgb(57, 57, 57);
  z-index:100;
}

.my-float{
	/* margin-top:16px; */
  margin: 0;
}
/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
  url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/poppins-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local(''),
  url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/poppins-v20-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(''),
  url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/poppins-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700italic - latin */
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local(''),
  url('../fonts/poppins-v20-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  url('../fonts/poppins-v20-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
  --dark-color: #000000;
  --white-color: #ffffff;
  --lightgrey-color: #646464;
  --lightdark-color: #1e1e1e;
  --grey-color: #646464;
  --blue-color: #093772;
  --darkblue-color: #052042;
  --linecontact-color: #d0e3fb;
  --footercopyright-color: #5ea0f3;
  --teamfondo-color: #f8f9fa;
  --lineteam-color: #cdd2d5;
  --whitegrey-color: #eaeaea;
  --line-color: #b5b5b5;
  --blancogris-color: #FEFEFE;
  --white-text-color: #dfedff;
  --lineblog-color: #B5B5B5;
  --linecontact-color: #D0E3FB;
  --contactogray-color: #F8F9FA;
  --contacto-color: #E6ECEF;
  --blogmarcador-color: #F3F3F3;
}
@keyframes opening {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  color: var(--dark-color);
}

/* Mobile */
@media screen and (min-width: 0em) {
  header {
    display: flex;
    flex-direction: column;
    width: 100vw;
    padding: 2em 1em 0;
    position: fixed;
    transition: ease 0.5s;
    z-index: 2;
  }
  ul.header-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2em;
  }
  ul.header-info a {
    color: var(--white-color);
  }
  ul.header-info a:hover {
    color: var(--dark-color);
    transition: ease 0.2s;
  }
  li.header-info-contacto {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0.4em 0 0;
  }
  li.header-info-direccion a,
  li.header-info-contacto a {
    font-size: 1.1em;
    font-weight: 400;
    /* letter-spacing: 0.05em; */
    line-height: 1.1em;
  }
  .scroll-info {
    display: none;
  }
  .scroll-background {
    background-image: url('/img/header-background.webp');
    background-size: 150%;
    background-position: left;
    background-repeat: no-repeat;
    padding-bottom: 1em;
    box-shadow: var(--lightdark-color) 1px 1px 10px 1px;
  }
  .a-telefono-header {
    margin-right: 1em;
  }
  .a-redessociales-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 13em;
    margin-top: 0.5em;
  }
  .a-redessociales-header img {
    width: 2em;
  }
  /* .a-redessociales-header a {
    margin-right: 0.5em;
  } */
  nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    width: 100px;
    border-radius: 100%;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 1em;
  }
  .logo-text1 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.8em;
  }
  .logo-text2 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.8em;
    margin-top: -0.2em;
  }
  .line-logo {
    width: 4.19em;
    height: 2px;
    background-color: var(--dark-color);
  }
  ul.navlinks {
    display: none;
  }
  button.burger-button {
    height: 2.7em;
    width: 2.7em;
    border-style: none;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 2em;
    z-index: 2;
    cursor: pointer;
    overflow: visible;
  }
  button.burger-button span {
    background-color: var(--dark-color);
    width: 100%;
    height: 3px;
    transition: ease 0.5s;
  }
  ul.navlinks-mobile {
    position: fixed;
    height: 200%;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    left: 100%;
    transition: ease 0.5s;
    background-color: var(--lightdark-color);
    z-index: 1;
    padding: 110% 2em 0 0;
  }
  ul.navlinks-mobile div.line-navlinks {
    width: 3.4em;
    height: 2px;
    background-color: var(--white-color);
  }
  .line-navlinks-button {
    width: 2.3em;
    height: 2px;
    background-color: var(--grey-color);
  }
  .navlink-mobile-event {
    transform: translateX(-100%);
  }
  ul.navlinks-mobile li {
    margin-bottom: 4em;
  }
  ul.navlinks-mobile li a {
    font-size: 1.79em;
    color: var(--white-color);
  }
  ul.navlinks-mobile li button {
    border-style: none;
    padding: 0.5em 1em;
    border-radius: 0.2em;
    background-color: var(--white-color);
  }
  ul.navlinks-mobile li button a {
    color: var(--lightdark-color);
    font-size: 1.5em;
  }
  .toggle-line1 {
    transform: rotateZ(45deg) translateY(450%);
    background-color: var(--white-color) !important;
  }
  .toggle-line3 {
    transform: rotateZ(-45deg) translateY(-450%);
    background-color: var(--white-color) !important;
  }
  .toggle-line2 {
    opacity: 0;
  }
  footer {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 5rem 0;
    background-image: url("/img/main2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .footer1 {
    width: 90vw;
    height: fit-content;
    margin-top: 4em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border: var(--white-color) solid 1px;
    border-radius: 0.4em;
    padding: 4em 2em;
  }
  .check1,
  .check2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .check1 a,
  .check2 a {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-left: 1em;
    line-height: 2em;
    overflow-y: hidden;
  }
  .check1 a span,
  .check2 a span {
    font-size: 2.9rem;
    font-weight: bold;
    transition: ease 0.5s;
  }
  .check1 a span:hover,
  .check2 a span:hover {
    font-size: 3rem;
    color: var(--white-text-color);
  }
  .line-footer {
    width: 70%;
    height: 1px;
    align-self: center;
    margin: 2em 0;
    background-color: var(--white-text-color);
  }
  .footer2 {
    width: 90vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .footer-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white-color);
    margin-top: 4em;
  }
  .footer-description h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1em;
  }
  .footer-description p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white-text-color);
  }
  ul.footer-servicios {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 4em;
  }
  ul.footer-servicios h4 {
    margin: 2em 0 1em;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
  }
  ul.footer-servicios li {
    margin: 0.5em 0;
  }
  ul.footer-servicios li a {
    font-size: 1.5rem;
    transition: ease 0.5s;
    color: var(--white-text-color);
  }
  ul.footer-servicios li a:hover {
    font-weight: bold;
    color: var(--white-color);
  }
  ul.footer-enlaces {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 4em;
  }
  ul.footer-enlaces h4 {
    margin: 2em 0 1em;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
  }
  ul.footer-enlaces li {
    margin: 0.5em 0;
  }
  ul.footer-enlaces li a {
    font-size: 1.5rem;
    color: var(--white-text-color);
    transition: ease 0.5s;
  }
  ul.footer-enlaces li a:hover {
    color: var(--white-color);
    font-weight: bold;
  }
  ul.footer-contacto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 4em;
  }
  ul.footer-contacto h4 {
    margin: 2em 0 1em;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
  }
  ul.footer-contacto li {
    margin: 0.5em 0;
  }
  ul.footer-contacto li a {
    font-size: 1.5rem;
    transition: ease 0.5s;
    color: var(--white-text-color);
  }
  ul.footer-contacto li a:hover {
    color: var(--white-color);
    font-weight: bold;
  }
  .copyright {
    width: 90vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--white-text-color);
    margin-bottom: 2em;
  }
  .copyright a {
    font-weight: bold;
    color: var(--white-color);
  }
}
@media screen and (min-width: 636px) {
  li.header-info-contacto {
    margin: 0 1.9em 0 0.5em;
  }
  li.header-info-direccion a,
  li.header-info-contacto a {
    font-size: 1.3em;
    letter-spacing: 0.05em;
  }
  .footer1 {
    flex-direction: row;
    justify-content: space-evenly;
    padding: 4em 0;
  }
  .check1 a span,
  .check2 a span {
    font-size: 2.4rem;
  }
  .line-footer {
    width: 1px;
    height: 7em;
    margin: 0 2em;
  }
}
@media screen and (min-width: 750px) {
  ul.navlinks {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-right: 2em;
  }
  ul.navlinks li {
    margin-right: 2em;
  }
  ul.navlinks li a {
    font-size: 1.4em;
    color: var(--white-color);
    font-weight: bold;
  }
  ul.navlinks a:hover {
    color: var(--darkblue-color);
    transition: ease 0.2s;
  }
  ul.navlinks div.line-navlinks {
    width: 3.4em;
    height: 2px;
    background-color: var(--white-color);
  }
  button.burger-button {
    display: none;
  }
  .footer2 {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .footer-description {
    width: fit-content;
    margin-right: 4em;
  }
  ul.footer-servicios,
  ul.footer-enlaces{
    margin-right: 1em;
  }
  .copyright {
    margin-top: 4em;
  }
}
@media screen and (min-width: 900px) {
  ul.navlinks li a {
    font-size: 1.7em;
  }
}
@media screen and (min-width: 1200px) {
  header {
    justify-content: center;
    align-items: center;
  }
  ul.header-info,
  nav {
    width: 120em;
  }
  .footer1 {
    width: 1100px;
  }
  .check1 a span,
  .check2 a span {
    font-size: 2.9rem;
  }
  .footer2 {
    width: 1100px;
  }
}
@media screen and (min-width: 1400px) {
  .footer1 {
    width: 1270px;
  }
}
@media screen and (min-width: 1500px) {
  ul.header-info,
  nav {
    width: 150em;
  }
}
