﻿.carousel-prev,
.carousel-next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 640px) {
  .carousel-prev,
  .carousel-next {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 640px) {
  .reports-carousel .slick-slide {
    margin: 0 12px;
  }
  .reports-carousel .slick-list {
    margin: 0 -12px;
  }
}

.reports-carousel-next,
.reports-carousel-prev {
  z-index: 1;
  top: 34%;
  background: #00372D;
  transition: ease all 0.3s;
}
.reports-carousel-next:hover,
.reports-carousel-prev:hover {
  background: #00AA80;
}
@media (max-width: 639px) {
  .reports-carousel-next,
  .reports-carousel-prev {
    display: none !important;
  }
}

.reports-carousel-prev {
  position: absolute;
  left: -28px;
}

.reports-carousel-next {
  position: absolute;
  right: -28px;
}
.reports-carousel-next svg {
  transform: rotate(180deg);
}

.news-items-carousel .slick-dots {
  margin-top: 48px;
  position: static;
}
@media (min-width: 640px) {
  .news-items-carousel .slick-dots {
    margin-top: 66px;
  }
}
.news-items-carousel .slick-dots li {
  margin: 0 2px;
}
@media (min-width: 640px) {
  .news-items-carousel .slick-dots li {
    margin: 0 4px;
  }
}
.news-items-carousel .slick-dots li button:before {
  color: white;
  font-size: 12px;
  opacity: 1;
}
@media (min-width: 640px) {
  .news-items-carousel .slick-dots li button:before {
    font-size: 16px;
  }
}
.news-items-carousel .slick-dots li.slick-active button:before {
  color: #00AA80;
}

.news-items-carousel-navs {
  position: absolute;
  bottom: -12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media (min-width: 640px) {
  .news-items-carousel-navs {
    bottom: -18px;
  }
}
.news-items-carousel-navs > div {
  pointer-events: auto;
  cursor: pointer;
}
.news-items-carousel-navs .news-items-carousel-next,
.news-items-carousel-navs .news-items-carousel-prev {
  border: 1px solid white;
}
.news-items-carousel-navs .news-items-carousel-next svg {
  transform: rotate(180deg);
}

.customers-carousel-outer {
  border: 1px solid #183D36;
}

.customers-carousel-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 26px;
}
.customers-carousel-nav .customers-carousel-next,
.customers-carousel-nav .customers-carousel-prev {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.customers-carousel-nav .customers-carousel-next {
  transform: rotate(180deg);
}
.container {
  max-width: 1164px;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #DBE8DB;
  font-weight: 500;
}

h1 {
  font-family: "new-rubrik", sans-serif;
}

p,
li,
span,
a {
  color: #95A795;
  line-height: 130%;
}
p h3,
li h3,
span h3,
a h3 {
  line-height: 1.5;
}

p {
  line-height: 140%;
}

p,
button,
ul li,
a,
span {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

h1 {
  font-weight: 600;
  line-height: 110%;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 21px;
}

.btn {
  border-radius: 16px;
  line-height: 1;
  transition: ease all 0.3s;
}
.btn--main {
  background: #00231D;
  color: #DBE8DB;
}
.btn--main:hover {
  color: #C5A44A;
}
.btn--alt {
  background: #C5A44A;
  color: #00231D;
}
.btn--alt:hover {
  color: white;
}

ul.styled li:after, ul.styled li:before {
  content: "";
  height: 1px;
  background: #95A795;
  opacity: 0.15;
  width: 100%;
  display: block;
}
ul.styled li:after {
  margin-top: 10px;
}
ul.styled li:before {
  margin-bottom: 10px;
}
ul.styled li:not(:first-child) {
  padding-top: 12px;
}
ul.styled li:not(:first-child):before {
  display: none;
}

.toggle {
  display: flex;
  background: #00231D;
  padding: 4px;
  border-radius: 8px;
}
.toggle > a {
  padding: 8px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.toggle > a.active {
  background: #C5A44A;
  color: #00231D;
}
.toggle > a:hover:not(.active) {
  /*background:rgba($color-alt, .15);*/
}
@media (max-width: 639px) {
  .toggle > a {
    font-size: 13px;
  }
}

.news-items .news-items-group > a {
  border-bottom: 1px solid #95A795;
}

form .field label {
  font-weight: 500;
}
form .field input, form .field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(149, 167, 149, 0.15);
  color: white;
}
form .field textarea {
  resize: none;
  height: 100px;
}

.has-bg-box {
  position: relative;
}
.has-bg-box > div {
  position: relative;
  z-index: 5;
}
.has-bg-box:after {
  width: calc(100% + 90px);
  height: calc(100% + 90px);
  background: #002D25;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

@media (min-width: 640px) {
  .cross-box--1, .cross-box--3 {
    border-right: 1px solid rgba(219, 232, 219, 0.15);
  }
  .cross-box--1, .cross-box--2 {
    border-bottom: 1px solid rgba(219, 232, 219, 0.15);
  }
}
@media (max-width: 639px) {
  .cross-box--1, .cross-box--2, .cross-box--3 {
    border: 1px solid rgba(219, 232, 219, 0.15);
    border-bottom: 0;
  }
  .cross-box--4 {
    border: 1px solid rgba(219, 232, 219, 0.15);
  }
}

@media (min-width: 640px) {
  .cross-box {
    position: relative;
  }
  .cross-box > div {
    z-index: 1;
    position: relative;
  }
  .cross-box::after {
    height: 200px;
    width: 200px;
    display: block;
    position: absolute;
    height: calc(100% + 90px);
    width: calc(100% + 90px);
    z-index: 0;
  }
  .cross-box--1:after {
    content: "";
    background: #00372D;
    bottom: 0;
    right: 0;
  }
  .cross-box--2:after {
    content: "";
    background: #002D25;
    bottom: 0;
    left: 0;
  }
  .cross-box--3:after {
    content: "";
    background: #C5A44A;
    top: 0;
    right: 0;
  }
  .cross-box--4:after {
    content: "";
    background: #00372D;
    top: 0;
    left: 0;
  }
}
.bordered > div > div {
  border: 1px solid rgba(149, 167, 149, 0.15);
}
.bordered > div > div:not(:last-child) {
  border-right: none;
}
.bordered > div:not(:first-child) > div {
  border-top: none;
}

.has-half-bottom-border {
  position: relative;
}
.has-half-bottom-border:after {
  position: absolute;
  background: rgba(149, 167, 149, 0.15);
  bottom: 0;
  width: 50%;
  height: 1px;
}

.article-page h2 {
  color: #00231D;
  font-weight: 600;
}
.article-page h3, .article-page h4 {
  color: #00231D;
}
.article-page p {
  color: #00231D;
  margin-bottom: 24px;
  line-height: 145%;
  font-size: 15px;
}
.article-page .subtitle p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 639px) {
  .article-page__inner {
    border-bottom: 1px solid rgba(149, 167, 149, 0.3);
    padding-bottom: 24px;
  }
}
@media (min-width: 640px) {
  .article-page p {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .article-page .subtitle p {
    font-size: 21px;
  }
}

@media (max-width: 639px) {
  .has-bg-cover {
    position: relative;
  }
  .has-bg-cover:after {
    position: absolute;
    content: "";
    width: calc(100% + 48px - 66px);
    height: 132px;
    background: #00372D;
    top: -24px;
    left: -24px;
  }
  .has-bg-cover h2 {
    z-index: 1;
    position: relative;
  }
}
@media (max-width: 639px) {
  .has-border-bottom {
    border-bottom: 1px solid rgba(149, 167, 149, 0.15);
  }
  .has-bg-mobile {
    position: relative;
  }
  .has-bg-mobile > div {
    z-index: 1;
    position: relative;
  }
  .has-bg-mobile:after {
    content: "";
    background: #00372D;
    left: -24px;
    top: -24px;
    height: calc(100% + 24px);
    width: calc(100% + 48px);
    position: absolute;
  }
}
@media (max-width: 639px) {
  .has-bg-mobile-reports {
    position: relative;
  }
  .has-bg-mobile-reports > div {
    z-index: 1;
    position: relative;
  }
  .has-bg-mobile-reports:after {
    position: absolute;
    content: "";
    background: #002D25;
    width: 100%;
    height: 228px;
    top: 0;
    left: 0;
  }
}
.generic-page h1 {
  color: #00231D;
  margin-bottom: 40px;
}
.generic-page p, .generic-page strong, .generic-page span, .generic-page a, .generic-page li {
  color: #00231D;
  font-size: 15px;
  line-height: 130%;
}
@media (min-width: 640px) {
  .generic-page p, .generic-page strong, .generic-page span, .generic-page a, .generic-page li {
    font-size: 18px;
  }
}
.generic-page p {
  margin-bottom: 20px;
}
