@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* variables */
/* reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: inherit;
}

ul li {
  list-style-type: none;
}

button {
  appearance: none;
  border: none;
  background: none;
}

/* base */
:root {
  --padding: 32px;
  font-size: 16px;
  line-height: 26px;
  color: #1d292b;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
@media (min-width: 768px) {
  :root {
    --padding: 80px;
  }
}

.button {
  display: inline-flex;
  padding: 16px 24px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: 0.2s;
}
.button--primary {
  background: #6ab86d;
}
.button--primary:hover {
  box-shadow: rgba(106, 184, 109, 0.6) 0px 7px 29px 0px;
}
.button--secondary {
  background: #46aef1;
}
.button--secondary:hover {
  box-shadow: rgba(70, 174, 241, 0.6) 0px 7px 29px 0px;
}
.button--tertiary {
  background: #fff;
  color: #1d292b;
}
.button--tertiary:hover {
  transform: translateY(-6px);
}

.heading--2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}
@media (min-width: 768px) {
  .heading--2 {
    font-size: 48px;
    line-height: 56px;
  }
}
.heading--2 strong {
  color: #46aef1;
}

/* animations */
.a-underline {
  position: relative;
}

.a-underline:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #46aef1;
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.a-underline:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.a-fade-in {
  opacity: 0;
  transform: translateY(-100px);
  animation: fadeIn 0.7s ease-out 0s 1 forwards;
}

@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
.gelatine, .company__socials_list img:hover,
.company__socials_list svg:hover {
  animation: gelatine 0.5s 1;
}

/* blocks */
main {
  margin-top: 72px;
}
@media (min-width: 980px) {
  main {
    margin-top: 0;
  }
}

.header {
  height: 72px;
  background: #fff;
  padding: 10px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  border-bottom: solid 1px #d7d7d7;
}
.header__hamburger {
  height: 30px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
}
.header__hamburger div {
  background: #1d292b;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  transition: 0.4s;
}
.header__menu {
  position: fixed;
  height: calc(100% - 72px);
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  max-width: 90%;
  background: #fff;
  border-right: solid 1px #d7d7d7;
  transform: translateX(-100%);
  transition: 0.4s;
}
.header__cta {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.header--open .header__menu {
  transform: translateX(0%);
}
.header--open .header__hamburger .hamburger--top {
  transform: translateY(8px) rotate(40deg);
}
.header--open .header__hamburger .hamburger--middle {
  opacity: 0;
  transform: translateX(-50px);
}
.header--open .header__hamburger .hamburger--bottom {
  transform: translateY(-8px) rotate(-40deg);
}
@media (min-width: 980px) {
  .header {
    position: static;
    height: auto;
    border: none;
    background: none;
    justify-content: space-between;
  }
  .header__hamburger {
    display: none;
  }
  .header__menu {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
    padding: 0;
    max-width: none;
    transform: none;
    border: none;
  }
}

.landing {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .landing {
    flex-direction: row;
  }
  .landing__content, .landing__form {
    flex: 1;
  }
}
.landing__content {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 768px) {
  .landing__content {
    row-gap: 40px;
  }
}
.landing__text {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.landing__title {
  color: #6ab86d;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .landing__title {
    font-size: 56px;
    line-height: 72px;
  }
}
.landing__body {
  color: #7a7a7a;
}
.landing__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.landing__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing__list img,
.landing__list svg {
  padding: 8px;
}
.landing__list p {
  font-weight: 700;
}

.form input,
.form textarea,
.form select,
.form option {
  padding: 12px;
  border: solid 1px #c7c7c7;
  background: #fff;
  border-radius: 4px;
  min-height: 52px;
  width: 100%;
}
.form select {
  overflow: hidden;
  text-overflow: ellipsis;
}
.form__field {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.form__input--textarea {
  min-height: 180px;
  resize: none;
}
.form .h-captcha {
  max-width: 100%;
}
@media (max-width: 425px) {
  .form .h-captcha {
    transform: scale(0.86);
    backface-visibility: hidden;
    position: relative;
    left: -25px;
  }
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border: solid 1px #46aef1;
  box-shadow: rgba(70, 174, 241, 0.2) 0px 7px 29px 0px;
}
.form button:focus {
  outline: none;
  box-shadow: rgba(106, 184, 109, 0.6) 0px 7px 29px 0px;
}

.landing__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8fafc;
  padding: 24px;
  border-radius: 24px;
  position: relative;
}
.landing__form::before {
  content: url("/assets/Flame.svg");
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  z-index: -1;
}
.landing__form--clim::before {
  content: url("/assets/snowflake.svg");
}
.landing__form .form__submit {
  align-self: flex-start;
  cursor: pointer;
}
.landing__form .form__grid {
  display: contents;
}
@media (min-width: 768px) {
  .landing__form {
    gap: 24px;
    padding: 40px;
  }
  .landing__form .form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
}

.partners {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 768px) {
  .partners {
    row-gap: 80px;
  }
}
.partners__title, .partners__body {
  text-align: center;
}
.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.partners__logo--daikin {
  max-width: 111px;
}
.partners__logo--hitachi {
  max-width: 135px;
}
.partners__logo--atlantic {
  max-width: 130px;
}
.partners__logo--auer {
  max-width: 57px;
}
@media (min-width: 768px) {
  .partners__logo {
    gap: 80px;
  }
  .partners__logo--daikin {
    max-width: 185px;
  }
  .partners__logo--hitachi {
    max-width: 200px;
  }
  .partners__logo--atlantic {
    max-width: 215px;
  }
  .partners__logo--auer {
    max-width: 96px;
  }
}
.partners__body {
  color: #7a7a7a;
}

.card {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .card {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
  }
  .card__content, .card__image_container {
    flex: 1;
  }
  .card__image_container {
    min-width: 380px;
  }
  .card--reverse {
    flex-direction: row-reverse;
  }
}
.card__content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.card__text {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.card__image_container {
  aspect-ratio: 1/1;
  width: 100%;
}
@media (min-width: 768px) {
  .card__image_container {
    aspect-ratio: 16/9;
    position: relative;
  }
  .card__image_container::before {
    --margin: -50px;
    content: url("/assets/point-grid.svg");
    position: absolute;
    bottom: var(--margin);
    right: var(--margin);
    z-index: -1;
  }
}
.card__image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.card__category {
  font-variant: all-small-caps;
  letter-spacing: 1px;
  color: #6ab86d;
  font-size: 15px;
}
.card__body {
  color: #7a7a7a;
}
.card__links {
  display: flex;
  gap: 16px;
}

.offers {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.offers__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .offers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    grid-template-rows: auto auto auto;
    border: solid 1px #c7c7c7;
    border-radius: 8px;
    padding: 48px;
  }
}
.offers .offer {
  display: flex;
  gap: 16px;
  transition: 0.2s;
  perspective: 0; /* hack to fix rotate blurriness on chrome */
}
.offers .offer:hover {
  transform: rotate(-4deg) scale(1.1);
}
.offers .offer__link {
  display: contents;
}
.offers .offer__image {
  width: 64px;
  aspect-ratio: 1/1;
}
.offers .offer__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.offers .offer__title {
  font-weight: 500;
}
.offers .offer__body {
  font-size: 14px;
  line-height: 20px;
}

.test_simulator {
  padding: var(--padding);
  background: #46aef1;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .test_simulator {
    background: url("/assets/semi-transparent-circles-top.svg") no-repeat left top, url("/assets/semi-transparent-circles.svg") no-repeat right bottom, #46aef1;
  }
}
.test_simulator__hgroup {
  display: flex;
  column-gap: 18px;
  row-gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.test_simulator__title {
  text-align: center;
}
.test_simulator__logo {
  margin-top: 8px;
}
.test_simulator__body {
  text-align: center;
  max-width: 880px;
}
.test_simulator__cta {
  background: #fff;
  color: #1d292b;
}

.company {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .company {
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  .company__content, .company__image_container {
    flex: 1;
  }
  .company__content {
    min-width: 550px;
  }
  .company__image_container {
    min-width: 400px;
  }
}
.company__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company__body, .company__socials {
  color: #7a7a7a;
}
.company__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.company__socials_list {
  display: flex;
  gap: 8px;
}
.company__image {
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

.certifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--padding) 0;
}
.certifications__title, .certifications__body, .certifications__logo {
  padding: 0 var(--padding);
}
.certifications__body {
  color: #7a7a7a;
}
.certifications__logo {
  width: 100%;
  display: flex;
  overflow-x: auto;
  gap: 30px;
}
@media (min-width: 768px) {
  .certifications {
    gap: 40px;
    align-items: center;
  }
  .certifications__title, .certifications__body {
    text-align: center;
  }
  .certifications__body {
    max-width: 700px;
  }
  .certifications__logo {
    column-gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.values {
  background: #f4f4f4;
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.values__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 768px) {
  .values__list {
    flex-direction: row;
    column-gap: 64px;
  }
  .values__list .value {
    flex: 1;
  }
}
.values .value__icon_container {
  background: #46aef1;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.values .value__title {
  font-weight: 700;
  line-height: 140%;
  font-size: 20px;
  margin-bottom: 8px;
}
.values .value__body {
  color: #7a7a7a;
}

.informations {
  padding: var(--padding);
  background: #46aef1;
  color: #fff;
}
.informations__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .informations__list {
    flex-direction: row;
    gap: 48px;
  }
}
.informations__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}
.informations__content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.informations__title {
  font-size: 0;
}
.informations__heading, .informations__body {
  text-align: center;
}
.informations__heading {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
}

.reviews__container {
  background: #fff;
  border: solid 1px #c7c7c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.reviews a {
  width: 100%;
}
.reviews iframe {
  height: 350px;
}
@media (min-width: 768px) {
  .reviews {
    background: linear-gradient(to bottom, #46aef1 80%, #f8fafc 80%, #f8fafc 100%);
    padding: 0 var(--padding);
  }
}

.footer {
  background: #f8fafc;
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.footer__links_list {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 8px;
  column-gap: 32px;
}
@media (max-width: 375px) {
  .footer__links_list {
    display: flex;
    flex-direction: column;
  }
}
.footer__body {
  color: #7a7a7a;
}
.footer hr {
  width: 100%;
  height: 1px;
  background: #1d292b;
  border: none;
}
.footer__small {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer__copyright a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo body" "nav body" "hr hr" "small small";
  }
  .footer__logo {
    grid-area: logo;
  }
  .footer__nav {
    grid-area: nav;
  }
  .footer__body {
    grid-area: body;
    align-self: flex-end;
  }
  .footer hr {
    grid-area: hr;
  }
  .footer__small {
    grid-area: small;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer__links_list {
    display: flex;
    flex-wrap: wrap;
  }
  .footer__links_list li {
    min-width: 190px;
  }
}

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