@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --pink-itec: #9f2261;
  --blue-itec: #083a7a;
  --green-itec: #88a53b;
}

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

.section-one {
  height: 100vh;
  display: flex;
}

.video-container {
  width: 70%;
  height: 100%;

  background: url("./images/background.png") center/cover no-repeat;

  display: flex;
  flex-flow: column;

  align-items: center;
  justify-content: space-evenly;
}

.video-container h1 {
  font-weight: 900;
  font-size: 37px;
  width: 80%;
  text-align: center;
}

.video-box {
  position: relative;

  cursor: pointer;

  width: 80%;
}

.video-box video {
  width: 100%;
}

.video-box .toggle-play {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 120px;
  height: 120px;
}

.video-box .toggle-play i {
  margin: auto;
  opacity: 0;

  color: var(--green-itec);
  font-size: 100px;

  transition: 0.1s ease;
}

.video-box .bar {
  width: 100%;
  height: 5px;

  bottom: 0%;

  position: absolute;
  background: black;
}

.video-box .bar-filled {
  width: 0;
  height: 5px;

  bottom: 0%;

  position: absolute;
  background: var(--green-itec);
}

.form-container {
  width: 30%;
  height: 100%;

  position: relative;

  display: flex;
  flex-flow: column;

  align-items: center;
}

.form-container .form-bg {
  height: 20%;
  width: 100%;

  background: linear-gradient(
    90deg,
    var(--green-itec) 0%,
    var(--pink-itec) 55%,
    var(--blue-itec) 100%
  );
}

.form-logo {
  position: absolute;

  width: 120px;
  height: 120px;

  background: linear-gradient(
    125deg,
    var(--green-itec) 0%,
    var(--pink-itec) 55%,
    var(--blue-itec) 100%
  );

  border: 5px solid white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  top: calc(20% - 60px);
}

.form-logo img {
  width: 90px;
}

form {
  padding: 80px 0 0 0;

  height: 80%;
  width: 80%;

  display: flex;
  flex-flow: column nowrap;
}

form p {
  font-size: 32px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 20px;
}

form .input-box {
  position: relative;

  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

form .input-box input {
  width: 100%;
  height: 40px;

  border-radius: 30px;
  border: 2px solid rgb(182, 182, 182);

  font-size: 16px;
  padding: 15px;
}

form .input-box label {
  position: absolute;
  pointer-events: none;

  color: rgb(182, 182, 182);

  border: 3px solid white;
  background-color: white;

  top: calc(0% - 13px);

  left: 10px;
  font-size: 16px;

  transition: top 0.1s linear;
}

form .input-box label.empty {
  top: calc(50% - 13px);
}

form .input-box input:focus ~ label {
  top: calc(0% - 13px);
  color: var(--blue-itec);
}

form .input-box input:focus {
  outline: 0;
  border-color: var(--blue-itec);
}

form button {
  height: 80px;
  font-size: 24px;
  font-weight: 600;
  color: white;
  background: var(--pink-itec);
  border: none;
  margin-top: 25px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.1s linear;
}

form button:hover {
  background: var(--green-itec);
}

form button:disabled {
  background: rgba(255, 0, 157, 0.644);
  cursor: not-allowed;
}

@media (max-width: 800px) {
  .section-one {
    flex-direction: column;
    height: 175vh;
  }

  .video-container {
    width: 100%;
    height: 50%;
  }
  .form-container {
    width: 100%;
    height: 50%;
  }

  form button {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  form .mobile {
    height: 10px;
    width: 10px;
  }

  .mobile-gap {
    height: 1vh;
    width: 100%;
    background: white;
  }

  .section-three .out-of-box p {
    max-width: 300px;
    font-size: 18px;
  }
}

.cookie-consent-modal {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: none;
  align-items: flex-end;
}

.cookie-consent-modal.active {
  display: flex;
}

.content {
  width: 100%;
  background-color: #fff;
  padding: 5vw 3vw;
  border-radius: 10px 10px 0 0;
}

.btns {
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
  cursor: pointer;
}

.btn {
  border: none;
  outline: none;
  padding: 0.8em 1.5em;
  width: 100px;
  margin-right: 1em;
  border-radius: 3px;
  text-transform: uppercase;
}

.btn.accept {
  background-color: var(--green-itec);
  color: #fff;
}

.wpp-btn {
  position: fixed;
  display: flex;
  align-items: center;
  bottom: 50px;
  left: 50px;
  justify-content: center;
  z-index: 1000;
}

.wpp-btn a {
  color: white;
  background: var(--green-itec);
  border-radius: 50%;
  padding: 10px;
}

.wpp-btn a i {
  font-size: 50px;
}

.section-two {
  width: 100%;
  padding: 10%;

  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;

  background-color: rgb(255, 248, 239);
}

.section-two h2 {
  font-size: 37px;
  font-weight: 900;
  color: var(--blue-itec);
  text-align: center;
  margin-bottom: 5%;
}

.section-two .box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.section-two .box p {
  background: #fff;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  border-radius: 50px;
  margin: 2.5% 1%;
}

.section-two a {
  display: flex;
  align-items: center;
  justify-items: center;
  height: 80px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  padding: 10px;
  text-decoration: none;
  background: var(--pink-itec);
  border: none;
  margin-top: 25px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.1s linear;
}

.section-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
}

.title-three {
  font-size: 36px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 900;
  color: var(--green-itec);
}

.container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 5%;
}

.container .box {
  position: relative;
  width: 350px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  text-align: center;
  margin-bottom: 4%;
}

.container .box .icon {
  position: relative;
  width: 80px;
  height: 80px;
  color: #fff;
  background: var(--pink-itec);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 40px;
  border-radius: 50%;
  font-weight: 900;
}

.box div p {
  font-size: 18px;
}

.out-of-box {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.out-of-box p {
  font-size: 24px;
  width: 750px;
  text-align: justify;
  margin: -20px 0 20px 0;
  font-weight: 600;
}

.out-of-box a {
  display: flex;
  align-items: center;
  justify-items: center;
  height: 80px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  padding: 10px;
  text-decoration: none;
  background: var(--pink-itec);
  border: none;
  margin: 25px 0;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.out-of-box a:hover {
  background: var(--green-itec);
}

.section-three.pink-color {
  background-color: rgb(255, 248, 239);
  text-align: center;
}
