@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*
========================================
              VARIABLES
========================================
*/
:root {
  --blue: #38b6ff;
  --black: #050505;
}
/*
========================================
              SHARED CSS  
========================================
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--black);
  font-family: "Poppins", sans-serif;
}
.font-white {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-transform: uppercase;
  font-size: calc(12px + 1vw);
}
.font-blue {
  font-family: "Poppins", sans-serif;
}
h2 {
  color: var(--blue);
}
.border {
  border: 1px solid var(--blue);
}
p {
  color: rgba(255, 255, 255, 0.911);
  font-size: 1.25rem;
  margin: 20px 0;
}
/*
========================================
          ANIMATIONS CLASSES
========================================
*/
.logo.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-100%);
  transition: all 0.4s;
}
.logo.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.goals.hidden,
.goals .hidden {
  opacity: 0;
  transform: translate();
  transition: all 1.6s;
}
.goals.show,
.goals .show {
  opacity: 1;
  transform: translate();
}
.description .hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 0.8s;
}
.description .show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
/*
========================================
                HEADER
========================================
*/
header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.logo {
  width: 80%;
  max-width: 800px;
}

/*
=================================================
                  SECTIONS
=================================================
*/

/*
========================================
                DESCRIPTION
========================================
*/
.description {
  margin: 150px 5% 150px 5%;
  min-height: 100vh;
  margin-bottom: 150px;
}
.description h2 {
  text-align: center;
  margin: 80px 0;
  font-size: 2rem;
}
.containers-padding {
  padding: 20px 30px;
}
/*
========================================
                GOALS
========================================
*/
.goals {
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 100px;
}
.top-goals {
  width: 90vw;
}
.goals h2 {
  padding-bottom: 14px;
  font-size: 1.8rem;
}
.top-goals p {
  font-weight: 600;
  font-size: 1.28rem;
}

.top-goals-left {
  padding-bottom: 20px;
}
.bottom-goals {
  width: 90vw;
}
.bottom-goals-container {
  margin-bottom: 30px;
}
/*
========================================
                FOOTER
========================================
*/
footer {
  background-color: black;
  padding: 20px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 5%;
}
footer img {
  width: 50%;
  max-width: 400px;
}
footer p.footer-blue {
  color: var(--blue);
  font-size: 1.25rem;
  margin: 15px 0 0 0;
}
footer #contact p {
  margin: 0;
  font-weight: 600;
}
#contact {
  margin-top: 40px;
}

/*
========================================
            BREAKPOINTS
========================================
*/
@media (min-width: 320px) {
  .top-goals p {
    font-size: 1.4rem;
  }
}
@media (min-width: 576px) {
  .top-goals p {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  p {
    font-size: 1.4rem;
  }
  .top-goals p {
    font-size: 2.2rem;
  }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #footer-containers {
    margin: 0;
    width: 300px;
    text-align: left;
  }
  .footer-container {
    margin: 10px 0;
  }
}
@media (min-width: 997px) {
  .top-goals {
    padding-left: 10px;
  }

  .bottom-goals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .bottom-goals-container {
    height: 850px;
    width: calc(30vw - 20px);
  }
  footer {
    padding: 2%;
    flex-direction: row;
    flex-flow: row-reverse;
  }
  @media (min-width: 1150px) {
    .top-goals-left {
      padding-bottom: 0;
      width: fit-content;
    }
    .bottom-goals-container {
      height: 700px;
    }
  }
  @media (min-width: 1300px) {
    .bottom-goals-container {
      height: 600px;
    }
  }
  @media (min-width: 1600px) {
    .bottom-goals-container {
      height: 450px;
    }
  }
  @media (prefers-reduced-motion) {
    .hidden {
      transition: none;
    }
  }
}
