@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;600&display=swap");
body {
  font-family: "Work Sans", sans-serif;
}
body header {
  transition: all 0.4s ease-in-out;
}
body header .header__container--logo {
  padding: 20px 120px;
}
body header .header__container--logo a img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  body header .header__container--logo {
    padding: 10px 30px;
  }
  body header .header__container--logo a img {
    width: 300px;
  }
}
body header.scroll {
  background-color: #034041;
  display: flex;
  justify-content: center;
}
body header.scroll .header__container--logo {
  padding: 20px 30px;
}
body header.scroll .header__container--logo a img {
  width: 200px;
}
body main {
  overflow: hidden;
}
body main .main__container--hero {
  background-image: url("../images/bg.jpg");
  margin-top: 0px;
}
body main .main__container--hero .hero__container .hero__container--texts {
  padding: 0px 0px 0px 140px;
}
body main .main__container--hero .hero__container .hero__container--texts h1 {
  color: #cbd714;
  font-size: 50px;
}
body main .main__container--hero .hero__container .hero__container--texts h3 {
  margin-top: 40px;
  font-size: 35px;
  color: #ffffff;
}
body main .main__container--hero .hero__container .hero__container--image {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
body main .main__container--texts .text__container {
  padding: 40px 140px;
}
body main .main__container--texts .text__container .text__container--title h2 {
  font-size: 40px;
  color: #cbd714;
}
body main .main__container--texts .text__container .text__container--p {
  margin-top: 40px;
}
body main .main__container--texts .text__container .text__container--p p {
  margin-top: 40px;
  font-size: 25px;
}
body main .main__container--texts .text__container .text__container--p p:first-child {
  margin-top: 0px;
}
body main .main__container--texts .text__container .text__container--icons .icons--container {
  padding: 50px 100px;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon svg {
  width: 120px;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon svg path {
  fill: #034041;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon h3 {
  font-weight: bold;
  margin-top: 20px;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  top: 53px;
  right: -60px;
  height: 3px;
  background-color: transparent;
  border-bottom: 3px dotted #cbd714;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  top: 51px;
  right: -58px;
  height: 3px;
  background-color: transparent;
  border-bottom: 3px dotted #cbd714;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon:last-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  top: 51px;
  right: -58px;
  height: 3px;
  border-bottom: none;
}
body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon:last-child::before {
  content: "";
  position: absolute;
  display: block;
  width: 40%;
  top: 53px;
  right: -60px;
  height: 3px;
  border-bottom: none;
}
body main .main__container--texts .text__container .text__container--subtitle h3 {
  font-size: 25px;
}
body main .main__container--form {
  background-color: #034041;
}
body main .main__container--form .form__container {
  padding: 50px 140px;
}
body main .main__container--form .form__container .form__conctainer--title h2 {
  color: #cbd714;
  font-size: 40px;
}
body main .main__container--form .form__container .form__container--p {
  margin-top: 30px;
}
body main .main__container--form .form__container .form__container--p p {
  color: #ffffff;
  font-size: 20px;
}
body main .main__container--form .form__container .form__container--form {
  margin-top: 30px;
}
body main .main__container--form .form__container .form__container--form > div {
  margin-top: 25px;
}
body main .main__container--form .form__container .form__container--form > div label {
  display: block;
  color: #ffffff;
  font-size: 20px;
}
body main .main__container--form .form__container .form__container--form > div input[type=text], body main .main__container--form .form__container .form__container--form > div input[type=email], body main .main__container--form .form__container .form__container--form > div input[type=number] {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 30px;
  padding: 0 20px;
}
body main .main__container--form .form__container .form__container--form > div button {
  background-color: #cbd714;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  margin-top: 25px;
  display: block;
  height: 50px;
  font-size: 20px;
  padding: 0px 40px;
  transition: transform 0.2s ease-in;
}
body main .main__container--form .form__container .form__container--form > div button:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 1280px) {
  body main .main__container--hero .hero__container .hero__container--texts {
    padding: 0px 0px 0px 120px;
  }
  body main .main__container--texts .text__container {
    padding: 40px 120px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon svg {
    width: 90px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::before {
    right: -48px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::after {
    right: -46px;
  }
  body main .main__container--form .form__container {
    padding: 50px 120px;
  }
}
@media screen and (max-width: 768px) {
  body main .main__container--hero {
    background-image: url("../images/bg.jpg");
  }
  body main .main__container--hero .hero__container .hero__container--texts {
    order: 1;
    padding: 15px 30px;
  }
  body main .main__container--hero .hero__container .hero__container--texts br {
    display: none;
  }
  body main .main__container--hero .hero__container .hero__container--texts h1 {
    font-size: 30px;
  }
  body main .main__container--hero .hero__container .hero__container--texts h3 {
    margin-top: 0px;
    font-size: 25px;
  }
  body main .main__container--hero .hero__container .hero__container--image {
    order: 0;
  }
  body main .main__container--texts .text__container {
    padding: 30px;
  }
  body main .main__container--texts .text__container .text__container--title h2 {
    font-size: 30px;
  }
  body main .main__container--texts .text__container .text__container--p {
    margin-top: 20px;
  }
  body main .main__container--texts .text__container .text__container--p p {
    margin-top: 40px;
    font-size: 20px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container {
    padding: 50px 20px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon {
    margin-bottom: 80px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon svg {
    width: 90px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon h3 {
    font-weight: bold;
    margin-top: 20px;
    font-size: 20px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::before {
    content: "";
    position: absolute;
    display: block;
    width: 40%;
    top: 53px;
    right: -30px;
    height: 3px;
    background-color: transparent;
    border-bottom: 3px dotted #cbd714;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 40%;
    top: 51px;
    right: -28px;
    height: 3px;
    background-color: transparent;
    border-bottom: 3px dotted #cbd714;
  }
  body main .main__container--texts .text__container .text__container--subtitle h3 {
    font-size: 20px;
  }
  body main .main__container--form .form__container {
    padding: 50px 20px;
  }
  body main .main__container--form .form__container .form__conctainer--title h2 {
    font-size: 30px;
  }
  body main .main__container--form .form__container .form__container--p {
    margin-top: 20px;
  }
  body main .main__container--form .form__container .form__container--p p {
    font-size: 20px;
  }
  body main .main__container--form .form__container .form__container--form {
    margin-top: 20px;
  }
  body main .main__container--form .form__container .form__container--form > div {
    margin-top: 25px;
  }
  body main .main__container--form .form__container .form__container--form > div label {
    font-size: 20px;
  }
  body main .main__container--form .form__container .form__container--form > div input[type=text], body main .main__container--form .form__container .form__container--form > div input[type=email], body main .main__container--form .form__container .form__container--form > div input[type=number] {
    height: 40px;
  }
  body main .main__container--form .form__container .form__container--form > div button {
    display: block;
    height: 40px;
    font-size: 20px;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 520px) {
  body main .main__container--hero {
    margin-top: 50px;
  }
  body main .main__container--hero .hero__container .hero__container--texts {
    order: 1;
  }
  body main .main__container--hero .hero__container .hero__container--texts .text__container--title h2 {
    font-size: 30px;
  }
  body main .main__container--hero .hero__container .hero__container--texts .text__container--p {
    margin-top: 20px;
  }
  body main .main__container--hero .hero__container .hero__container--texts .text__container--p p {
    margin-top: 40px;
    font-size: 20px;
  }
  body main .main__container--hero .hero__container .hero__container--texts .text__container--subtitle h3 {
    font-size: 20px;
  }
  body main .main__container--hero .hero__container .hero__container--image {
    order: 0;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container {
    padding: 50px 20px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon {
    margin-bottom: 80px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon svg {
    width: 90px;
    height: 90px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon h3 {
    font-weight: bold;
    margin-top: 20px;
    font-size: 20px;
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::before {
    width: 20%;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    top: 170px;
    transform: rotate(90deg);
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon::after {
    width: 20%;
    right: 0px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    top: 170px;
    transform: rotate(90deg);
  }
  body main .main__container--texts .text__container .text__container--icons .icons--container .icons__container--icon:last-child {
    margin-bottom: 0px;
  }
}
body footer {
  background-color: #003034;
  padding: 30px 70px;
}
body footer > div .footer__container-logo {
  display: flex;
  justify-content: center;
}
body footer > div .footer__container-logo img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  header {
    transition: all 0.4s ease-in-out;
    background-color: #034041;
  }
  header .header__container--logo {
    padding: 20px 120px;
  }
  header .header__container--logo a img {
    width: 400px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  header .header__container--logo {
    padding: 10px 30px;
  }
  header .header__container--logo a img {
    width: 300px;
  }
}

/*# sourceMappingURL=styles.css.map */
