:root {
  --white: #FFFFFF;
  --black: #000000;
  --bg-header: #849700;
  --bg-primary: #F0F0F0;
  --bg-secondary: #F0EFED80;
  --bg-secondary-2: #F0EFEEFE;
  --bg-accent: #E5E9C9;
  --text-primary: #095751;
  --text-primary-hover: #45752F;
  --text: #333333;
  --p-section: 24px;
  --btn-primary: #033B37;
}
@media only screen and (min-width: 768px) {
  :root {
    --p-section: 64px;
  }
}

@font-face {
  font-family: "Fedra Serif A Pro";
  src: url("../fonts/FEDRA/FSerProA-Medium.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Fedra Serif A Pro";
  src: url("../fonts/FEDRA/FSerProA-Demi.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Fedra Serif A Pro";
  src: url("../fonts/FEDRA/FSerProA-Book.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "Fedra Serif A Pro";
  src: url("../fonts/FEDRA/FSerProA-Bold.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "FS Me";
  src: url("../fonts/FSMe/FSMe-Light.otf") format("opentype");
  font-weight: 100;
}
@font-face {
  font-family: "FS Me";
  src: url("../fonts/FSMe/FSMe.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "FS Me";
  src: url("../fonts/FSMe/FSMe-Heavy.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "FS Me";
  src: url("../fonts/FSMe/FSMe-Bold.otf") format("opentype");
  font-weight: 700;
}
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "FS Me";
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  flex-direction: column;
  padding-inline: var(--p-section);
  background-color: var(--bg-header);
  border-bottom: 1px solid rgba(22, 13, 130, 0.12);
}
.header-content {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
}
.header-left {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.landing {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
}
.landing .hero {
  display: flex;
  flex-direction: column;
  padding-inline: var(--p-section);
  padding-block: var(--p-section);
}
.landing .hero-content {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--bg-accent);
}
@media only screen and (min-width: 768px) {
  .landing .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.landing .hero-left, .landing .hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landing .hero-right {
  padding: 32px;
  gap: 8px;
}
.landing .hero-title {
  line-height: 116%;
  font-size: 32px;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
  font-family: "Fedra Serif A Pro";
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "cv01" on, "cv02" on, "cv03" on, "cv04" on, "cv06" on, "cv09" on, "cv10" on, "cv11" on, "liga" off, "clig" off;
}
@media only screen and (min-width: 768px) {
  .landing .hero-title {
    font-size: 48px;
  }
}
.landing .hero-text {
  font-size: 24px;
  line-height: 120%;
  margin: 0;
}
.landing .hero-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.landing .hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing .info {
  display: flex;
  flex-direction: column;
  padding-inline: var(--p-section);
}
.landing .info-content {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: var(--p-section);
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.landing .info-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.landing .info-group:first-of-type {
  margin-bottom: 30px;
}
.landing .info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
@media only screen and (min-width: 768px) {
  .landing .info-title {
    font-size: 40px;
  }
}
.landing .info-title.column {
  flex-direction: column;
  align-items: flex-start;
}
.landing .info-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
  color: var(--text);
}
.landing .grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .landing .grid {
    flex-direction: row;
    gap: 32px;
  }
}
.landing .grid-logo {
  display: none;
  justify-content: flex-end;
  width: 40px;
  min-width: 40px;
  color: var(--text-primary);
}
@media only screen and (min-width: 768px) {
  .landing .grid-logo {
    display: flex;
    width: 80px;
    min-width: 80px;
  }
}
.landing .grid-logo.mobile {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .landing .grid-logo.mobile {
    display: none;
  }
}
.landing .grid-title {
  font-size: 20px;
  line-height: 133%;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
@media only screen and (min-width: 768px) {
  .landing .grid-title {
    font-size: 24px;
  }
}
.landing .grid-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  gap: 8px;
}
.landing .grid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 32px;
}
@media only screen and (min-width: 768px) {
  .landing .grid-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .landing .grid-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.landing .grid-grid.medium {
  grid-template-columns: 1fr;
  max-width: 1200px;
}
@media only screen and (min-width: 768px) {
  .landing .grid-grid.medium {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .landing .grid-grid.medium {
    grid-template-columns: repeat(3, 1fr);
  }
}
.landing .grid-grid.big {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1024px) {
  .landing .grid-grid.big {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1280px) {
  .landing .grid-grid.big {
    grid-template-columns: repeat(3, 1fr);
  }
}
.landing .grid-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landing .grid-group h6 {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .landing .grid-group h6 {
    font-size: 20px;
  }
}
.landing .grid-group a {
  text-decoration: underline;
  color: var(--text-primary);
}
.landing .grid-group a:hover {
  color: var(--text-primary-hover);
}
.landing .grid-group b {
  font-weight: 700;
}
.landing .grid-item {
  display: flex;
  font-size: 17px;
  line-height: 120%;
  gap: 16px;
}
.landing .grid-item.more-space {
  padding-top: 15px;
}
.landing .link-store {
  height: 48px;
  display: flex;
  text-decoration: none;
  transition: transform 0.3s;
}
.landing .link-store:hover {
  transform: scale(1.1);
}
.landing .link-store img {
  height: inherit;
}

.btn {
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  background-color: var(--btn-primary);
  text-decoration: none;
  border: none;
}

.footer {
  display: flex;
  flex-direction: column;
  padding-inline: var(--p-section);
  padding-block: var(--p-section);
  background-color: var(--bg-secondary);
}
.footer-content {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-title {
  color: var(--text-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 116%;
  font-family: "Fedra Serif A Pro";
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "cv01" on, "cv02" on, "cv03" on, "cv04" on, "cv06" on, "cv09" on, "cv10" on, "cv11" on, "liga" off, "clig" off;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 120%;
}
.footer-group-title {
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .footer-group-title {
    font-size: 20px;
  }
}
.footer-group-item {
  font-size: 17px;
  margin-top: 8px;
}
.footer-group-item a {
  text-decoration: underline;
  color: var(--text-primary);
  font-weight: 700;
}
.footer-group-item a:hover {
  color: var(--text-primary-hover);
}
.footer-group-item.special {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .footer-group-item.special {
    line-height: normal;
  }
}
.footer-group-footer {
  display: flex;
}

.subfooter {
  display: flex;
  flex-direction: column;
  padding-inline: var(--p-section);
  padding-block: 24px;
  background-color: var(--bg-secondary-2);
  font-size: 12px;
}
.subfooter-content {
  max-width: 1312px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .subfooter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.subfooter a {
  color: var(--text);
  text-decoration: none;
  text-align: center;
}
.subfooter a:hover {
  text-decoration: underline;
  color: var(--text-primary);
}
.subfooter a svg {
  height: 18px;
  width: 28px;
}
.subfooter-left {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .subfooter-left {
    text-align: left;
  }
}
.subfooter-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .subfooter-right {
    text-align: right;
  }
}
.subfooter-right a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */