@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin: 70px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-family: regular;
  color: #2c2c2c;
  line-height: 1.6;
  background: #fff;
}

a:not(.btn) {
  color: #ead8ab;
  color: #498658;
  text-decoration: none;
  position: relative;
}
a:not(.btn):not(.logo):after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right center;
  background: #498658;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

h1, h2, h3, h4 {
  font-family: "Domine", serif;
  font-weight: 600;
  color: #498658;
}

h4 {
  font-size: 18px;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
  font-size: 40px;
}

@font-face {
  font-family: minerva-modern;
  src: url(https://use.typekit.net/af/2d15e1/00000000000000003b9afd25/27/l?subset_id=2&fvd=n4&v=3);
}
@font-face {
  font-family: regular;
  src: url("/FreightTextProBook-Regular.woff2");
}
@font-face {
  font-family: regular-semi;
  src: url("/freighttext-pro-semi-bold-regular.woff2");
}
.logo {
  font-family: minerva-modern;
  font-weight: 400;
  text-transform: uppercase;
  color: #498658;
}

.container {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}

.section {
  padding: 80px 0;
  position: relative;
}
.section h2 {
  margin-bottom: 20px;
}

.light {
  background: #f7f4ed;
}

.narrow {
  max-width: 700px;
}

/*.nav {
  background: $bg-light;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;

  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  a {
    margin-left: 20px;
    color: $text;
    font-size: 18px;
  }
}*/
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 64px;
  z-index: 10;
}
.nav > div {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease-out;
  height: 70px;
  padding: 8px 22px 8px 16px;
  padding: 8px 24px;
  flex-shrink: 0;
  border-radius: 28px;
  background: #FFF;
  box-shadow: 0 -1px 16px 0 rgba(47, 61, 74, 0.1);
}
.nav .logo {
  height: 100%;
}
.nav .logo img {
  height: 100%;
}
.nav .links {
  display: flex;
  gap: 24px;
}
.nav .links a {
  white-space: nowrap;
  color: #2F3D4A;
  font-size: 14px;
  font-weight: 400;
  line-height: 128%;
}
.nav.scrolled, .nav.open {
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav .burger {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  height: 36px;
  width: 36px;
  cursor: pointer;
  transition: 0.24s ease;
  z-index: 5;
  border-radius: 100px;
  background: #69999F;
  padding: 10px;
}
.nav .burger span {
  display: block;
  height: 2px;
  background: white;
  width: 12px;
  flex-shrink: 0;
  transition: 0.24s ease;
}
.nav.open .burger span:nth-of-type(1) {
  transform: rotate(45deg);
  margin-bottom: 0px;
}
.nav.open .burger span:nth-of-type(2) {
  transform: rotate(-45deg);
  margin-top: -5px;
}
.nav.open .burger span:nth-of-type(3) {
  display: none;
}

.hero {
  padding: 140px 0;
  background: linear-gradient(120deg, #3a6b5a, #49866e, #5aa089);
  background: linear-gradient(120deg, #46a76e, #3e8f59, #5aa089);
  background-size: cover;
  color: white;
  text-align: center;
}
.hero h1 {
  color: white;
  margin-top: 100px;
}
.hero p {
  margin: 2px 0 30px;
  line-height: 120%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#process h2 {
  margin-bottom: 0;
}

.online {
  padding-top: 0;
}
.online .points {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  gap: 50px;
  margin-top: 32px;
}
.steps > div h4 {
  margin-bottom: 4px;
}

.popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.popup__content {
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 500;
  transform: translateY(10px);
  transition: 0.25s ease;
  min-width: 220px;
  text-align: center;
}
.popup.show {
  opacity: 1;
  pointer-events: auto;
}
.popup.show .popup__content {
  transform: translateY(0);
}
.popup.error .popup__content {
  border: 1.5px #e74c3c solid;
}

.about .container {
  display: flex;
  gap: 64px;
}
.about .photo {
  width: 250px;
  /* height: 250px; */
  /* border-radius: 50%; */
  flex-shrink: 0;
  object-fit: cover;
  height: 100%;
  width: auto;
  max-width: 300px;
  border-radius: 12px;
  margin-top: 86px;
}

.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.problem-group {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.problem-group h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.problem-group ul {
  list-style: none;
}
.problem-group ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.problem-group ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ead8ab;
}

.trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.opinions .embla__viewport {
  overflow: hidden;
}
.opinions .embla__container {
  display: flex;
}
.opinions .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 10px;
  margin-right: 24px;
}
.opinions .embla__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.opinions .embla__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.opinions .embla__dot--active {
  background: #498658;
}
.opinions .quote {
  background: #fff;
  padding: 24px 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
.opinions .quote span {
  color: #498658;
  text-align: right;
  display: block;
  margin-top: 2px;
}

.item {
  border-bottom: 1px solid #C9D4D5;
  width: 100%;
}
.item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  font-size: 16px;
  cursor: pointer;
}
.item .more-text {
  height: 0;
  overflow: hidden;
  transition: 0.25s ease-out;
}
.item .more-text p {
  font-size: 16px;
}
.item.see .top > svg {
  rotate: 45deg;
}
.item.see .more-text {
  padding: 20px 0 16px;
  display: block;
  height: auto;
}

.contact {
  background: #498658;
  background: #58a66c;
}
.contact h2 {
  max-width: 240px;
  line-height: 140%;
}
.contact .container {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  background: white;
  padding: 64px;
  border-radius: 24px;
  border: 2px solid #ead8ab;
}
.contact form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 60%;
}
.contact form > div:not(.check) {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.contact label:not(.consent) {
  color: #49866e;
  font-size: 18px;
  font-family: regular-semi;
}
.contact input, .contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-family: "Inter", "Segoe UI", sans-serif;
  border-radius: 8px;
}
.contact input:focus, .contact input:focus-visible, .contact textarea:focus, .contact textarea:focus-visible {
  outline-color: #498658;
}
.contact textarea {
  resize: vertical;
  height: 6lh;
}
.contact .info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact .info > div {
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact .info > div svg {
  width: 20px;
  height: 20px;
}
.contact .info > div svg path {
  fill: #ead8ab;
}
.contact .check {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}
.contact .check input {
  transform: scale(1.2);
  transform-origin: top;
  accent-color: #498658;
}

.btn {
  background: #ead8ab;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.2s ease-out;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  background: #58a66c;
  color: white;
  margin-top: 8px;
}
.btn:hover {
  background: rgb(79.1653543307, 149.3346456693, 97.157480315);
}

.fancy-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  /* top: 0; */
  top: unset;
  bottom: -35px;
}
.fancy-line path {
  stroke: #ead8ab;
  stroke-width: 2px;
  fill: transparent;
}

footer {
  text-align: center;
  padding: 20px;
  background: #498658;
  background: #58a66c;
  color: white;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 20px;
  color: #6b7280;
}

@media (max-width: 600px) {
  .fancy-line {
    display: none;
  }
  .about .container {
    flex-direction: column;
  }
  .contact .container {
    flex-direction: column;
    padding: 32px 24px;
  }
  .contact form {
    max-width: unset;
  }
  .steps, .problems {
    grid-template-columns: repeat(1, 1fr);
  }
  .about .photo {
    margin-top: 0;
    max-width: unset;
  }
}
@media (max-width: 600px) {
  .nav > div {
    flex-wrap: wrap;
    gap: 32px;
    column-gap: 0px;
  }
  .nav .burger {
    display: flex;
  }
  .nav .logo {
    height: 50px;
  }
  .nav .links {
    opacity: 0;
    order: 3;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    pointer-events: none;
    transition: opacity 0.15s;
    transition-delay: 0s;
  }
  .nav .links:first-of-type {
    flex-direction: column;
    margin-bottom: 0;
  }
  .nav.open > div {
    padding-bottom: 335px;
  }
  .nav.open .links {
    opacity: 1;
    display: flex;
    pointer-events: auto;
    transition-delay: 0.2s;
  }
}

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