.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.white-block {
  position: absolute;
  height: 40px;
  width: 60%;
  background-color: #f5f5f7;
  z-index: 0;
}
.white-block-left {
  bottom: 0;
  left: -50px;
  transform: skew(45deg);
}
.white-block-right {
  top: 0;
  right: -50px;
  transform: skew(45deg);
}

.section-padding {
  padding: 2em 2em;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4em 2em;
  }
}
@media (min-width: 992px) {
  .section-padding {
    padding: 6em 2em;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: only light;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flexbox;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  background-color: #f5f5f7;
}

.nav-mobile {
  height: 8.5rem;
  width: 100%;
  background-color: #154628;
  position: fixed;
  top: 0px;
  box-shadow: 0px 6px 20px 11px rgba(0, 0, 0, 0.6705882353);
  z-index: 999;
  overflow: hidden;
}
.nav-mobile.is-open {
  overflow: visible;
}
.nav-mobile__logo-site {
  position: relative;
  top: 2.8em;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 10000;
}
.nav-mobile__logo-site__logo-btn {
  cursor: pointer;
}
.nav-mobile__logo-site__logo-img {
  width: 90px;
  height: 90px;
}
.nav-mobile__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
}
.nav-mobile__container__btn {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(-50%, 50%);
  padding: 20px 5px;
  z-index: 1000;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-mobile__container__btn :focus {
  outline: none;
}
.nav-mobile__container__btn-burger {
  position: relative;
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto;
  background: #fff;
  transform: skew(5deg);
  transition: all 0.275s;
}
.nav-mobile__container__btn-burger::after, .nav-mobile__container__btn-burger::before {
  content: "";
  display: block;
  height: 100%;
  background: #fff;
  transition: all 0.275s;
}
.nav-mobile__container__btn-burger::after {
  transform: translateY(-12px);
  transition: transform 0.275s;
}
.nav-mobile__container__btn-burger::before {
  transform: translateY(-16px);
}
.nav-mobile__container__btn.is-open .nav-mobile__container__btn-burger {
  transform: skew(5deg) translateY(-8px) rotate(-45deg);
  background-color: #e78c00;
}
.nav-mobile__container__btn.is-open .nav-mobile__container__btn-burger::before {
  transform: translateY(0px) skew(-10deg) rotate(75deg);
  background-color: #e78c00;
}
.nav-mobile__container__btn.is-open .nav-mobile__container__btn-burger::after {
  transform: translateY(-12px) translateX(10px) skew(-20deg);
  opacity: 0;
}
.nav-mobile__container__main-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.61);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 0.375s;
  height: 100%;
}
.nav-mobile__container__main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -22px;
  background: #154628;
  transform-origin: 0 0;
  transition: all 0.275s 0.1s;
}
.nav-mobile__container__main-nav.is-open {
  opacity: 1;
  z-index: 100;
  visibility: visible;
  overflow: hidden;
}
.nav-mobile__container__main-nav.is-open:before {
  transform: skew(-1deg) translateX(0);
}
.nav-mobile__container__main-nav ul {
  margin-top: 5rem;
  display: inline-flex;
  flex-direction: column;
  margin-left: 2em;
  height: 70%;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.nav-mobile__container__main-nav li {
  display: block;
  margin: 0.5rem 0;
  list-style: none;
  padding: 0;
}
.nav-mobile__container__main-nav__link-nav {
  display: block;
  padding: 0.2em;
  color: #eee;
  font-size: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-10px);
  transition: color 0.1s;
}
.nav-mobile__container__main-nav__link-nav:hover {
  color: #e78c00;
}
.nav-mobile__container__main-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile__container__main-nav li:nth-child(1) a {
  transition: all 275ms 175ms;
}
.nav-mobile__container__main-nav li:nth-child(2) a {
  transition: all 275ms 225ms;
}
.nav-mobile__container__main-nav li:nth-child(3) a {
  transition: all 275ms 275ms;
}
.nav-mobile__container__main-nav li:nth-child(4) a {
  transition: all 275ms 325ms;
}
.nav-mobile__container__main-nav li:nth-child(5) a {
  transition: all 275ms 375ms;
}
.nav-mobile__container__contact {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
}
.nav-mobile__container__contact a {
  text-decoration: none;
}
.nav-mobile__container__contact i {
  display: inline;
  padding: 0.8em;
  margin: 0.5em;
  color: #fff;
  font-size: 1.4em;
  border: solid 0.1em;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.1s;
}
.nav-mobile__container__contact i:hover {
  color: #e78c00;
}

.nav-item {
  list-style-type: none;
  z-index: 1;
  padding: 0.2em;
  font-size: 1.4em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.nav-item:last-child {
  border-bottom: none;
}

.nav-link,
.nav-submenu-link {
  text-decoration: none;
  color: #eee;
  padding: 0.2em;
  display: block;
  transition: color 0.1s;
}
.nav-link:hover,
.nav-submenu-link:hover {
  color: #e78c00;
}

.nav-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s;
}

.nav-submenu:target {
  max-height: 20rem;
  margin-left: 1em;
}

.nav-submenu-link {
  font-size: 1em;
}

.nav {
  position: fixed;
  display: flexbox;
  justify-content: space-between;
  align-items: center;
  top: 0px;
  margin: 0 auto;
  height: 8.9rem;
  width: 100%;
  background-color: #154628;
  box-shadow: 0px 6px 20px 11px rgba(0, 0, 0, 0.6705882353);
  z-index: 999;
}
.nav__logo-site {
  position: relative;
  top: 0.7rem;
  left: 10%;
  width: 100px;
  height: 25%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.nav__logo-site__logo-btn {
  cursor: pointer;
}
.nav__logo-site__logo-img {
  width: 100px;
  height: 100px;
}
.nav__navbar {
  display: flex;
  top: 0;
  right: 0;
  margin-right: 5%;
  justify-content: right;
  justify-items: center;
  text-transform: uppercase;
  font-size: 2rem;
}
.nav__navbar__main__ ul {
  flex-direction: row;
  justify-content: space-between;
}
.nav__navbar__main li {
  display: inline-block;
  list-style: none;
  padding: 0.2em;
}
.nav__navbar__main li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.1s;
}
.nav__navbar__main li a:hover {
  color: #e78c00;
}
.nav__navbar__main__subnav {
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #154628;
}
.nav__navbar__main__subnav a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
}
.nav__navbar__main__subnav ul {
  position: absolute;
  min-width: 100%;
  margin: 0;
  padding: 0;
  display: none;
  list-style-type: none;
}
.nav__navbar__main__subnav:hover > ul {
  display: block;
}
.nav__navbar__main__subnav hr {
  margin: 0 25% 0 25%;
  width: 50%;
  border-color: #fff;
}
.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2em;
  padding: 2em;
  height: 90vh;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/wood-nature-about.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.header__heading {
  font-size: 3.8rem;
  font-weight: 300;
}
.header__text {
  margin-top: 1.2em;
  margin-bottom: 2em;
  font-size: 1.4rem;
}
.header__btn {
  margin-top: 1.2em;
  margin-bottom: 2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #154628;
  border: none;
  border-radius: 8px;
  color: #eee;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.header__btn:hover {
  background-color: #e78c00;
}

.about {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/o_nas.webp");
  background-size: cover;
  background-position: center;
}

.contact {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/kontakt.webp");
  background-size: cover;
  background-position: center;
  background-position: top left;
}

.jobs {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/rekrutacja.webp");
  background-size: cover;
  background-position: center;
  background-position: center left;
}

.arbo {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/arbo.webp");
  background-size: cover;
  background-position: center;
}

.lift {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/zwyzka.webp");
  background-size: cover;
  background-position: center;
}

.chipper {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/rebak.webp");
  background-size: cover;
  background-position: center;
  background-position: center left;
}

.garden {
  background-image: linear-gradient(55deg, rgba(0, 0, 0, 0.635), rgba(0, 0, 0, 0.5019607843)), url("../img/teren_zielony.webp");
  background-size: cover;
  background-position: center;
  background-position: bottom left;
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section__box {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section__box__img {
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 31rem;
  height: 23rem;
  border-radius: 2rem;
  box-shadow: 3px 6px 10px 0px rgba(0, 0, 0, 0.6705882353);
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.section__box__white {
  color: #154628;
  margin-bottom: 2rem;
}
.section__box__white__logo-green {
  width: 15em;
  height: 15em;
}
.section__box__white__heading {
  margin-top: 1rem;
  font-size: 3rem;
  text-align: center;
}
.section__box__white__text {
  text-align: center;
  margin-bottom: 2rem;
}
.section__box__white__btn {
  text-align: center;
  margin: 1.2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #154628;
  border: none;
  border-radius: 8px;
  color: #eee;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.section__box__white__btn:hover {
  background-color: #e78c00;
}
.section__box__white__offers {
  display: flex;
  flex-direction: column;
}
.section__box__white__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section__box__white__links__btn {
  text-align: center;
  margin: 1.2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #154628;
  border: none;
  border-radius: 8px;
  color: #eee;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.section__box__white__links__btn:hover {
  background-color: #e78c00;
}
.section__box__white__links__btn i {
  margin: 0rem 1rem;
  font-size: 1.6em;
}
.section__box__white__links__btn__text {
  display: none;
}
.section__box-heading {
  color: #154628;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}
.section__box-map {
  width: 20em;
  height: 30em;
  padding: 1rem;
  border-radius: 2em;
  border: solid #154628;
  box-shadow: 3px 6px 10px 0px rgba(0, 0, 0, 0.6705882353);
  overflow: hidden;
}
.section__jobs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.section__jobs__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px 0px;
  justify-items: center;
  align-items: center;
}
.section__jobs__box-logo {
  width: 15em;
  height: 15em;
}
.section__jobs__box-text {
  margin-bottom: 2rem;
  color: #154628;
}
.section__jobs__box-heading {
  color: #154628;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
}
.section__jobs__box h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.section__jobs__box ul {
  list-style: none;
  margin-bottom: 2rem;
}
.section__jobs__box li {
  padding-right: 1em;
  margin-bottom: 0.5em;
}
.section__jobs__box li::before {
  font-family: FontAwesome;
  content: "\f00c";
  margin-right: 2em;
  color: #e78c00;
}
.section__jobs__box__offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.section__jobs__box__offers-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: 30em;
  padding: 2em;
  overflow: hidden;
  border-radius: 4rem;
  background-color: #154628;
  color: #eee;
}
.section__jobs__box__offers-info h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.section__jobs__box__offers-info p {
  text-align: center;
  padding: 1.2rem;
}
.section__jobs__box__offers-info h4 {
  margin-top: 1em;
  margin-bottom: 1.2em;
}
.section__jobs__box__offers-info-btn {
  text-align: center;
  margin-top: 1em;
  padding: 0.8em 1em;
  background: #f5f5f7;
  border: none;
  border-radius: 8px;
  color: #154628;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.section__jobs__box__offers-info-btn:hover {
  background-color: #e78c00;
}
.section__jobs__box__offers-info-btn i {
  padding: 1rem;
  font-size: 1.6em;
}

.section-green {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  background-color: #154628;
}
.section-green__box {
  color: #eee;
  width: 100%;
}
.section-green__box__heading {
  margin: 3rem 0rem;
  font-size: 3rem;
  text-align: center;
}
.section-green__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 5rem;
}

.section-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #154628;
}
.section-contact__box {
  display: grid;
  grid-row: auto;
  place-items: center;
  width: 100%;
}
.section-contact__box__info__heading {
  margin: 3rem 0rem;
  font-size: 3rem;
  text-align: center;
}
.section-contact__box__info__text {
  text-align: center;
  margin-bottom: 2rem;
}
.section-contact__box__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-contact__box__links__btn {
  text-align: center;
  margin: 1.2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #154628;
  border: none;
  border-radius: 8px;
  color: #eee;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.section-contact__box__links__btn:hover {
  background-color: #e78c00;
}
.section-contact__box__links__btn i {
  margin: 0rem 1rem;
  font-size: 1.6em;
}
.section-contact__box__links__btn__text {
  display: none;
}
.section-contact__box__jobs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 2em;
  overflow: hidden;
  border-radius: 4rem;
  background-color: #154628;
  color: #eee;
}
.section-contact__box__jobs__img {
  grid-area: img;
  width: 90px;
  height: 25%;
}
.section-contact__box__jobs__heading {
  grid-area: heading;
  font-size: 2rem;
}
.section-contact__box__jobs__text {
  grid-area: text;
  text-align: center;
  margin-bottom: 2rem;
}
.section-contact__box__jobs__btn {
  grid-area: btn;
  text-align: center;
  margin: 1.2em;
  padding: 0.8em 1.6em;
  font-size: 1.4rem;
  background: #f5f5f7;
  border: none;
  border-radius: 8px;
  color: #154628;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.section-contact__box__jobs__btn:hover {
  background-color: #e78c00;
  color: #eee;
}
.section-contact__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 5rem;
}

.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

.card {
  display: grid;
  place-items: center;
  margin: 0.5em 0em;
  width: 32rem;
  height: 45rem;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}
.card__background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
  height: 55%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.6) 10%, hsl(0, 0%, 0%) 100%);
}
.card__content--container {
  --flow-space: 1.25rem;
}
.card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}
.card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: -0.75rem;
  left: -1.25rem;
  background-color: #e78c00;
}
.card__button {
  text-align: center;
  margin: 1.2em;
  padding: 0.8em 1.2em;
  font-size: 1.4rem;
  background: #154628;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.5s;
}
.card__button:hover {
  background-color: #e78c00;
}
.card__button a {
  color: #eee;
  text-decoration: none;
}

.card > * {
  grid-column: 1/2;
  grid-row: 1/4;
}

.footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: #154628;
  overflow: hidden;
}
.footer__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 4em;
}
.footer__box__social {
  margin-bottom: 2em;
}
.footer__box__social-link {
  padding: 0.5em;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  transition: color 0.1s;
}
.footer__box__social-link:hover {
  color: #e78c00;
}
.footer__box__social hr {
  margin-top: 2em;
  width: 20em;
  border-color: #fff;
}
.footer__box__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
.footer__box__bottom-img {
  width: 100px;
  height: 100px;
}
.footer__box__bottom-text {
  padding: 0em 2em;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #f5f5f7;
  }
}
@media (hover: hover) or (pointer: coarse) {
  nav-mobile__container__main-nav__link-nav:hover {
    color: #e78c00;
  }
  .card__content {
    transform: translateY(62%);
    transition: transform 300ms ease-out;
    transition-delay: 300ms;
  }
  .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 100ms ease-in, transform 200ms ease-out;
    transition-delay: 300ms;
    transform-origin: right;
  }
  .card__background {
    transition: transform 50ms ease-in;
  }
  .card__content--container > :not(.card__title),
  .card__button {
    opacity: 0;
    transition: transform 100ms ease-out, opacity 500ms ease-out;
  }
  .card:hover,
  .card:focus-within {
    transform: scale(1.05);
    transition: transform 500ms ease-in;
  }
  .card:hover .card__content,
  .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }
  .card:focus-within .card__content {
    transition-duration: 100ms;
  }
  .card:hover .card__background,
  .card:focus-within .card__background {
    transform: scale(1.3);
  }
  .card:hover .card__content--container > :not(.card__title),
  .card:hover .card__button,
  .card:focus-within .card__content--container > :not(.card__title),
  .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 300ms ease-in;
    transition-delay: 100ms;
  }
  .card:hover .card__title::after,
  .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}
@media (min-width: 667px) {
  .header {
    height: 120vh;
  }
  .section__box-map {
    width: 40em;
  }
  .section__jobs__box__offers {
    grid-template-columns: 1fr 1fr;
  }
  .section__jobs__box__offers-info-btn {
    margin: 0.5em;
  }
  .section-contact__box__jobs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas: "img heading" "img text" "img btn";
    justify-content: center;
    align-items: center;
    place-items: center;
  }
  .section-contact__box__jobs__img {
    width: 192px;
    height: 192px;
  }
  .section-contact__box__jobs__text {
    margin-bottom: 0rem;
  }
}
@media (min-width: 837.98px) {
  .nav-mobile {
    display: none;
  }
  .white-block {
    height: 50px;
    width: 45%;
  }
  .header__heading {
    font-size: 4.2rem;
  }
  .header__text {
    font-size: 2.2rem;
    text-align: center;
  }
  .header__btn {
    font-size: 1.6rem;
  }
  .section__box__img {
    width: 68rem;
    height: 55rem;
  }
  .section__box__white {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .section__box__white__logo-green {
    margin: 0em 4rem;
  }
  .section__box__white__links__btn {
    width: 23rem;
  }
  .section__box__white__links__btn__text {
    font-size: 1.6rem;
    display: inline;
  }
  .section__jobs__box {
    grid-template-columns: 1fr 1fr;
  }
  .section__jobs__box li {
    font-size: 1.6rem;
  }
  .section-contact__box__links__btn {
    width: 23rem;
  }
  .section-contact__box__links__btn__text {
    font-size: 1.6rem;
    display: inline;
  }
  .section-contact__box__jobs {
    flex-direction: column;
  }
  .footer__box__social hr {
    width: 40em;
  }
  .footer__box__bottom {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 837.98px) {
  .nav {
    display: none;
  }
}
@media (min-width: 1170px) {
  .section-contact__box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  .section-contact__box__info {
    margin-right: 6em;
  }
  .section-contact__box__jobs {
    width: 110rem;
  }
}
@media (min-width: 1024px) {
  .header {
    height: 90vh;
  }
  .header__heading {
    font-size: 4.8rem;
  }
  .header__text {
    margin-top: 1.2em;
    font-size: 2.2rem;
  }
  .section__box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .section__box__img {
    width: 52rem;
    height: 72rem;
  }
  .section__box__white {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 6em;
  }
  .section__box__white__logo-green {
    margin-bottom: 0em;
  }
  .section__box__white__heading {
    margin-top: 0em;
    font-size: 3.8rem;
  }
  .section__box__white__text {
    margin-top: 1.2em;
    font-size: 2.2rem;
  }
  .section__box-heading {
    margin-top: 0em;
    font-size: 3.8rem;
  }
  .section__jobs__box-logo {
    width: 25em;
    height: 25em;
  }
  .section__jobs__box-heading {
    font-size: 3.8rem;
  }
  .section__jobs__box li {
    font-size: 2rem;
  }
  .section__jobs__box h3 {
    font-size: 2.8rem;
  }
  .section__jobs__box__offers {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .section-green__box__heading {
    font-size: 3.8rem;
  }
  .section-contact__box__info__heading {
    font-size: 3.8rem;
  }
  .section-contact__box__info__text {
    font-size: 2.2rem;
  }
  .section-contact__box__jobs__heading {
    font-size: 2.8rem;
  }
  .section-contact__box__jobs__text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1400px) {
  .section__box {
    width: 1000px;
  }
  .section__box__img {
    width: 72rem;
    height: 64rem;
  }
  .section__box__white {
    min-width: 70rem;
  }
}/*# sourceMappingURL=main.css.map */