@font-face {
    font-family: 'Montserrat-Regular';
    src: url("../fonts/Montserratregular.ttf") format("truetype");
}
@font-face {
    font-family: 'Montserrat-Bold';
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
}

:root {
  --color-primary: #003B4D;
  --color-star-stroke: #ffffff;
  --color-star-fill: #ffffff;
  --color-check: #ffffff;
  --color-text: #ffffff;

  --font-primary: 'Montserrat-Regular', sans-serif;
  --font-primary-bold: 'Montserrat-Bold', sans-serif;
}
* {
  font-family: var(--font-primary);
}
strong {
  font-family: var(--font-primary-bold);
}
img {
  width: 100%;
}
p {
  margin: 0;
}
body {
  height: 100dvh;
  min-height: 600px;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
section.main-section {
  background-color: var(--color-primary);
  height: 100vh;
  justify-content: space-between;
}
section.main-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 60px;
  padding: 0 40px;
  height: 0;
  overflow: hidden;
  transition: 1.5s;
  opacity: 0;
  transform: translateY(20px);
}
header.main-header {
  width: 100%;
  padding: 30px 20px;
  background-color: var(--color-primary);
  text-align: center;
}
header.main-header .logo img {
  width: 100%;
  max-width: 280px;
}
section .wrapper {
  max-width: 700px;
}
section .box1 .text {
  margin-bottom: 40px;
}
section .box1 .image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}
footer.footer {
  width: 100%;
  padding: 20px;
  background-color: var(--color-primary);
  text-align: center;
}
footer.footer .logo img{
  width: 100%;
  max-width: 90px;
}
section .content.active {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}
section .content .logo {
  width: 100%;
  text-align: center;
}
section .content .logo img {
  max-width: 400px;
}
section .content .text {
  text-align: center;
  color: var(--color-text);
  font-size: 32px;
}
section .content .stars {
  text-align: center;
  letter-spacing: 0;
  font-size: 0;
  transition: 0;
}
section .content .stars a {
  transition: .4s;
}
section .content .stars a:hover {
  text-decoration: none;
}
section .content .stars a svg .st0  {
  stroke: var(--color-star-stroke);
  fill: transparent;
  transition: all 300ms ease-in-out;
}
section .content .stars a:hover svg .st0,
section .content .stars a.active svg .st0 {
  stroke: var(--color-star-stroke);
  fill: var(--color-star-fill);
}
section .content .stars a svg {
  width: 80px;
  padding: 0 10px;
}
section .content .botones a {
  display: block;
  width: 100%;
  border: solid 2px white;
  color: var(--color-text);
  text-align: center;
  padding: 10px;
  margin: 30px 0;
  font-size: 23px;
  transition: .2s;
}
section .content .botones a:hover{
  background: white;
  color: black;
  text-decoration: none;
}
section .content .check {
  text-align: center;
}
section .content .check svg {
  fill: transparent;
  stroke: var(--color-check);
  width: 120px;
}
section .content .check svg polygon {
  fill: var(--color-check);
  stroke: transparent;
}
footer {
  background: #1e1e1e;
  padding: 30px 0;
}
footer p {
  margin: 0;
  text-align: center;
  color: var(--color-text);
  font-size: 16px;
}
footer a {
  color: var(--color-text);
}
footer a:hover{
  color: var(--color-text);
}
@media (max-width: 768px) {
  section .content {
    width: 100%;
    gap: 40px;
  }
  section .content .text {
    font-size: 28px;
  }
  section .box1.content .text {
    font-size: 22px;
  }
  section .content .stars a {
    padding: 0px;
  }
  section .content .stars a svg {
    width: 48px;
    padding: 0 5px;
  }
  section .content .logo img {
    max-width: 260px;
  }
  section .content .botones a {
    font-size: 20px;
    padding: 5px;
  }  
  footer p {
    font-size: 13px;
  }
}