* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Gotham-Book";
}

:root {
  --primary-color: #ffcb17;
  --secondary-color: #1b3561;
  --third-color: #009293;
  --general-background: #fefcf5;
  --footer-background: #122340;
  --green-dark: #035f5b;
  --text-gray: #777777;
  --border: #424242;
  --white: #ffffff;
  --primary-blue: #06abea;
  --secondary--blue: #0b6ab7;
  --third--blue: #1c4492;
  --bs-font-sans-serif: "Gotham-Book";
  --planPadrinos: #00c2cb;
}

.inMain {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(
    to right top,
    #ffcb17,
    #fffcf0,
    #faf8f7,
    #faf8f7,
    #ffffff
  );
  animation: animate 18s ease-in-out infinite;
  background-size: 500%;
}

.inMain--element1,
.inMain--element2 {
  width: 95%;
  margin: 0 auto;
  /* border: 2px solid red; */
}

.inMain--element1 img {
  width: 100%;
}

.inMain--element2 p {
  font-size: 2rem;
  font-family: "Gotham-Book";
  color: var(--secondary-color);
  text-align: justify;
}

.inMain--element2__background {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inMain--element2__background svg {
  max-width: 210px;
}

.inMain--element2__background svg:last-of-type {
  margin-top: -72px !important;
}

.inMain--element2__background button {
  position: relative;
  padding: 30px;
  max-width: 200px;
  font-size: 2.4rem;
  top: -170px;
  border: none;
  background: none;
}

.inMain--element2__background button:hover {
  background: none;
  color: var(--planPadrinos);
}

.inMain--element2 .element2--background__content {
  display: flex;
  flex-direction: column;
}

/* <!-- inDona --> */
#inDona {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--secondary-color);
  color: var(--white);
}

.inDona h2 {
  padding: 48px 0;
  font-size: 2.6rem;
  font-family: "Gotham-Black";
}

.inDona--content {
  display: flex;
  flex-direction: column;
}

.inDona--element1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  order: 1;
  margin-top: 24px;
}

.inDona--element1 p {
  font-size: 2rem;
  font-family: "Gotham-Book";
  margin: 0 30px;
  padding: 0 5%;
  text-align: justify;
}

.inDona--element1 p:last-of-type {
  font-family: "Gotham-Bold2";
  text-align: center;
}

.inDona button {
  margin: 48px 0;
  padding: 10px 30px;
  font-size: 1.6rem;
  font-family: "Gotham-Bold2";
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 2px 2px 2px gray;
  border: none;
}

.inDona button:hover {
  background-image: linear-gradient(
    to left top,
    #faf8f7,
    #efeded,
    #e3e2e3,
    #d8d8d8,
    #cdcdcd
  );
  transition: all 0.9s linear 0.1s;
}

.inDona--element2 img {
  width: 100%;
}

.inForm h2 {
  font-size: 2.0rem;
  font-family: "Gotham-Black";
  color: var(--secondary-color);
}

.inForm .modal-body, .inForm #tema {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* inBuy */

#inBuy {
  width: 100%;
}

.inBuy__content {
  margin: 12px 30px;
  padding: 81px 5%;
  display: flex;
  flex-direction: column;
  /* background-color: var(--white); */
  border-radius: 3px;
}

.inBuy__content .inBuy__element1 h2 {
  font-size: 2.6rem;
  text-align: center;
  font-family: "Gotham-Black";
  color: var(--secondary-color);
}

.inBuy__content .inBuy__element1 p {
  margin-top: 24px;
  font-size: 2rem;
  font-family: "Gotham-Book";
  text-align: justify;
  color: var(--secondary-color);
}

.inBuy__content .inBuy__element1 p:last-of-type {
  margin-top: 0;
  font-family: "Gotham-Bold2";
  text-align: center;
}

.inBuy__content .inBuy__element2 {
  margin: 48px 0 -24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inBuy__content .inBuy__element2 img {
  width: 100%;
  max-width: 240px;
}

.inBuy__content .inBuy__element2 button {
  margin: 48px 0;
  padding: 10px 30px;
  font-size: 1.6rem;
  font-family: "Gotham-Bold2";
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  background-color: var(--secondary-color);
  box-shadow: 2px 2px 2px gray;
  border: none;
}

.inBuy__content .inBuy__element2 button:hover {
  background-color: #284E8F;
  transition: all 0.9s linear 0.1s;
}

/* <!-- inMain keyframes --> */
@keyframes animate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media screen and (min-width: 768px) {
  .inMain {
    flex-direction: row;
  }

  .inMain--element1 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .inMain--element1 img {
    max-width: 300px;
  }

  .inMain--element2 {
    display: flex;
    align-items: center;
  }

  .inMain--element2 p {
    width: 90%;
    padding-top: 24px;
  }

  .inMain--element2__background button {
    font-size: 2.5rem;
    top: -164px;
  }

  .inMain--element2__background svg {
    max-width: 200px;
  }

  .element2--background__content {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .inDona--content {
    flex-direction: row;
  }

  .inDona--element1 {
    width: 50%;
    margin-top: 0;
  }

  .inDona--element1 p {
    padding: 0 4% 0 6%;
  }

  .inDona--element2 {
    width: 50%;
    display: flex;
    justify-content: center;
  }

  .inDona--element2 img {
    margin: 0 3%;
    max-width: 500px;
    border-radius: 3px;
  }

}
