* {
  font-size: 20px;
  box-sizing: border-box;
}

body {
  max-width: none;
}

.navidad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navidad img {
  max-width: 100%;
  width: 300px;
}

form input {
  width: 100%;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.screenLoading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.i_section {
  display: block;
  width: 100%;
  padding: 15px;
}

.i_section h2 {
  margin-top: 0px;
  font-size: 30px;
}

.i_section_header {
  background-color: #000;
  color: #fff;
}

.i_section_header h1 {
  margin: 0px;
  font-size: 50px;
}

.i_section_instagram {
  text-align: center;
}

.i_section_instagram div {
  margin: auto;
}

.social_button {
  display: inline-block;
  margin: 8px;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
  font-size: 22px;
  padding: 6px 11px;
}

.social_button:hover {
  text-decoration: none;
}

.social_button_ig {
  background-color: #833AB4;
}

.social_button_fb {
  background-color: #3b5998;
}

.social_button_wa {
  background-color: #075e54;
}