@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@font-face {
  font-family: "Graphik LCG";
  src: url("/fonts/GraphikLCG-Bold.woff2") format("woff2"), url("/fonts/GraphikLCG-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik LCG";
  src: url("/fonts/GraphikLCG-Medium.woff2") format("woff2"), url("/fonts/GraphikLCG-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik LCG";
  src: url("/fonts/GraphikLCG-Regular.woff2") format("woff2"), url("/fonts/GraphikLCG-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:hover,
a {
  text-decoration: none;
}

:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Graphik LCG";
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  background: rgb(39, 134, 141);
}

.wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

.burger {
  display: none;
  width: 17px;
  height: 14px;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
.burger.open:before {
  background: #fff;
  transform: rotate(-45deg);
  top: 8px;
  height: 2px;
}
.burger.open:after {
  background: #fff;
  top: 8px;
  transform: rotate(45deg);
  height: 2px;
  width: 17px;
}
.burger.open span:before {
  display: none;
}
.burger:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 17px;
  height: 2px;
  background: #fff;
  transition: 0.5s;
  border-radius: 10px;
}
.burger:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 2px;
  background: #fff;
  transition: 0.5s;
  border-radius: 10px;
}
.burger span {
  position: relative;
  display: block;
  width: 17px;
  height: 14px;
}
.burger span:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 17px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 39px;
    margin-bottom: 24px;
  }
}
h1 span {
  color: rgb(237, 202, 158);
}

h2 {
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2%;
  text-transform: none;
}
h2 span strong {
  font-weight: 600;
}

.h-desc {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 48px;
  max-width: 452px;
}

h3 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 48px;
}

header {
  position: absolute;
  top: 23px;
  width: 100%;
  transition: 0.5s;
  z-index: 99;
}
header.sticky {
  position: fixed;
  background: rgb(50, 125, 120);
  top: 0;
}
@media (max-width: 768px) {
  header {
    top: 0;
    height: 62px;
    background: rgb(50, 125, 120);
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 0 24px 0 20px;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.header-content:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(50, 125, 120);
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 97;
}
@media (max-width: 768px) {
  .header-content:before {
    display: block;
  }
}

.logo {
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: center;
  position: relative;
  z-index: 99;
}

.main-menu .btn {
  display: none;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-menu .btn {
    display: flex;
  }
}
@media (max-width: 768px) {
  .main-menu {
    background: rgb(27, 109, 115);
    width: 100%;
    position: absolute;
    top: 62px;
    left: 0;
    padding: 18px 15px;
    height: calc(100vh - 62px);
    transition: 1s;
    z-index: 96;
    transform: translateY(-100vh);
  }
}
.main-menu.open {
  transform: translateY(0);
}
.main-menu ul {
  display: flex;
}
@media (max-width: 768px) {
  .main-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.main-menu ul li {
  margin-left: 25px;
}
@media (max-width: 992px) {
  .main-menu ul li {
    margin-left: 2px;
  }
}
@media (max-width: 768px) {
  .main-menu ul li {
    margin-left: 0;
    margin-bottom: 25px;
  }
}
.main-menu ul li a {
  display: inline-flex;
  height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  border: 1px solid transparent;
}
@media (max-width: 992px) {
  .main-menu ul li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .main-menu ul li a {
    font-size: 18px;
  }
}
.main-menu ul li a:hover {
  background: #fff;
  color: rgb(22, 129, 137);
}
@media (max-width: 768px) {
  .main-menu ul li a:hover {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
  }
}
.main-menu ul li.active a {
  background: #fff;
  color: rgb(22, 129, 137);
}

.main-content {
  padding-top: 200px;
  max-width: 530px;
}
@media (max-width: 768px) {
  .main-content {
    padding-top: 90px;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}
.main-content p {
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
  }
}
.main-content__bottom {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .main-content__bottom {
    flex-direction: column;
    justify-content: center;
  }
}
.main-content__bottom .btn {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .main-content__bottom .btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.main-content__help {
  display: flex;
  align-items: center;
}
.main-content__help p {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  font-family: "Graphik LCG";
}
.main-content__help p strong {
  font-weight: 500;
}
.main-content__help .icon {
  margin-right: 10px;
  width: 20px;
  display: block;
}
.main-content__help .icon img {
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.benefits-section {
  margin-bottom: 190px;
}
@media (max-width: 992px) {
  .benefits-section {
    margin-bottom: 60px;
  }
}

.section-head {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-head h2 {
  margin-bottom: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .section-head h2 {
    padding-right: 0;
    margin-bottom: 10px;
  }
}
.section-head__description {
  width: 100%;
  max-width: 550px;
  padding-left: 28px;
  font-family: "Roboto Slab", serif;
  border-left: 2px solid rgb(237, 202, 158);
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  padding-right: 80px;
}
@media (max-width: 768px) {
  .section-head__description {
    font-size: 14px;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .benefits-slider, .debts-slider {
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.benefits-slider .swiper-wrapper, .debts-slider .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .benefits-slider .swiper-wrapper, .debts-slider .swiper-wrapper {
    margin-bottom: 40px;
  }
}
.benefits-slider .swiper-slide, .debts-slider .swiper-slide {
  width: calc(25% - 7.5px);
}
@media (max-width: 992px) {
  .benefits-slider .swiper-slide, .debts-slider .swiper-slide {
    width: auto;
  }
}

.swiper-pagination {
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  padding-left: 15px;
  align-items: center;
  height: 12px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 2px solid #fff;
  transition: 0.5s;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: rgb(237, 202, 158);
  background: rgb(237, 202, 158);
  width: 12px;
  height: 12px;
}

.benefits-item {
  min-height: 210px;
  border: 2px solid rgb(237, 202, 158);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  width: 100%;
  text-align: center;
}
@media (max-width: 992px) {
  .benefits-item {
    width: 220px;
    height: 230px;
  }
}
.benefits-item__icon {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefits-item__icon img {
  display: block;
  height: 55px;
}
.benefits-item__title {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 20px;
}
.benefits-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: center;
}

.debts-section {
  margin-bottom: 130px;
  margin-top: -140px;
}
@media (max-width: 992px) {
  .debts-section {
    margin-bottom: 30px;
  }
}

.debts-title {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .debts-title {
    text-align: center;
  }
}

.debts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.duty-item {
  min-height: 142px;
  width: calc(33.3333333333% - 7px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgb(39, 134, 141);
}
@media (max-width: 992px) {
  .duty-item {
    width: calc(50% - 5px);
  }
}
.duty-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin-bottom: 20px;
}
.duty-item__icon img {
  display: block;
  height: 42px;
}
.duty-item__title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 768px) {
  .duty-item__title {
    font-size: 14px;
  }
}

.steps-section {
  padding-bottom: 130px;
}
@media (max-width: 992px) {
  .steps-section {
    padding-bottom: 35px;
  }
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.step-item {
  border-radius: 20px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.06);
  min-height: 242px;
  display: flex;
  flex-direction: column;
  width: calc(25% - 7.5px);
}
@media (max-width: 992px) {
  .step-item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .step-item {
    width: 100%;
    padding: 16px;
    min-height: auto;
  }
}
.step-item__number {
  display: block;
  color: rgb(237, 202, 158);
  font-family: "Roboto Slab", serif;
  font-size: 70px;
  font-weight: 200;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
.step-item__title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.step-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
}

.legal-debts-section {
  padding: 48px 0;
  border-top: 3px solid rgba(255, 255, 255, 0.22);
}

.legal-debts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.legal-duty-item {
  width: calc(25% - 7.5px);
  border: 2px solid rgb(237, 202, 158);
  border-radius: 20px;
  padding: 20px 34px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .legal-duty-item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .legal-duty-item {
    width: 100%;
    padding: 16px;
    min-height: auto;
  }
}

.company-site-section {
  padding: 48px 0;
  border-top: 3px solid rgba(255, 255, 255, 0.22);
}

.company-site ul li {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 0;
}
.company-site ul li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-section {
  padding-bottom: 98px;
}

.about {
  display: flex;
  align-items: flex-end;
  margin-top: -200px;
}
@media (max-width: 992px) {
  .about {
    margin-top: 0;
    flex-direction: column;
  }
}
.about__text {
  width: 100%;
  padding-right: 48px;
}
.about__text P {
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
}
.about__img {
  width: 370px;
  min-width: 370px;
  margin-bottom: -50px;
}
@media (max-width: 992px) {
  .about__img {
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
  }
}
.about__img img {
  width: 100%;
  display: block;
  max-width: 370px;
}

.close-debts-section {
  padding: 90px 0;
  background: rgb(29, 158, 134);
}
@media (max-width: 992px) {
  .close-debts-section {
    padding: 24px 0;
  }
}

.close-debts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.close-duty-item {
  width: 208px;
}
.close-duty-item__logo {
  width: 100%;
  height: 130px;
  padding: 17px 30px;
  border-radius: 10px 10px 10px 0px;
  background: rgb(255, 255, 255);
  margin-bottom: 42px;
  position: relative;
}
.close-duty-item__logo:before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  width: 33px;
  height: 30px;
  background: rgb(38, 176, 151) url(../img/star.svg) 50% 50% no-repeat;
  z-index: 9;
}
.close-duty-item__logo:after {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  bottom: -21px;
  left: 0;
}
.close-duty-item__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}
.close-duty-item__title {
  display: block;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  min-height: 44px;
}
.close-duty-item__btn {
  display: block;
}

.btn-border {
  box-sizing: border-box;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 8px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
}
.btn-border:hover {
  background: #fff;
  color: rgb(29, 158, 134);
}
.btn-border:hover .icon {
  color: rgb(29, 158, 134);
  transform: translateX(10px);
}
.btn-border .icon {
  margin-left: 33px;
  width: 9px;
  height: 16px;
  color: #fff;
  transition: 0.5s;
}

.company-section {
  padding-bottom: 220px;
}
@media (max-width: 992px) {
  .company-section {
    padding-bottom: 60px;
  }
}

footer {
  background: rgb(22, 101, 107) url(../img/footer-bg.png) 100% 100% no-repeat;
  padding: 50px 0;
}
@media (max-width: 768px) {
  footer {
    background: rgb(22, 101, 107) url(../img/footer-bg-mobile.png) 100% 100% no-repeat;
  }
}

.footer-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
}
.footer-content ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer-content ul {
    flex-direction: column;
  }
}
.footer-content ul li {
  margin: 0 12px;
}
@media (max-width: 768px) {
  .footer-content ul li {
    margin: 10px 0;
    text-align: center;
  }
}
.footer-content ul li a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  transition: 0.5s;
}
.footer-content ul li a:hover {
  text-decoration: underline;
}
.footer-content ul li span.icon {
  margin-right: 5px;
}

.footer-logo {
  margin-bottom: 40px;
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: center;
}

.company-item {
  padding: 36px;
  border: 2px solid rgb(237, 202, 158);
  border-radius: 20px;
  background: url(../img/company-bg.svg) 100% 100% no-repeat;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .company-item {
    padding: 16px;
  }
}
.company-item__logo {
  width: 235px;
  height: 170px;
  background: url(../img/company-logo-bg.svg) 0 0 no-repeat;
  padding: 13px 32px 32px 23px;
  margin-bottom: 20px;
  display: block;
}
.company-item__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-item__title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.company-item__name {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 39px;
  font-weight: 500;
  line-height: 51px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .company-item__name {
    font-size: 28px;
    line-height: 36px;
  }
}
.company-item__top-sep {
  display: block;
  width: 100%;
  height: 9px;
  background: url(../img/top-sep.svg) 0 0 no-repeat;
  margin-bottom: 20px;
}
.company-item__info {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .company-item__info {
    flex-direction: column;
  }
}
.company-item__info-item {
  width: 50%;
}
@media (max-width: 768px) {
  .company-item__info-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .company-item__info-item:last-child {
    margin-bottom: 0;
  }
}
.company-item__info-item-title {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
.company-item__info-item-data {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
}
.company-item__info-item-data .icon {
  display: block;
  margin-right: 10px;
}
.company-item__info-item-data .icon img {
  display: block;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-item p {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .company-item .btn {
    width: 100%;
  }
}
.company-item__stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.company-item__stat-item {
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 10px 20px;
  background: rgb(33, 126, 133);
  width: calc(33.3333333333% - 7.5px);
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .company-item__stat-item {
    width: 100%;
    font-size: 14px;
  }
}
.company-item__stat-item .icon {
  display: block;
  margin-right: 10px;
  min-width: 23px;
}
.company-item__stat-item .icon img {
  display: block;
  width: 23px;
  height: 23px;
}

.btn {
  border-radius: 8px;
  background: rgb(237, 202, 158);
  height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: left;
  transition: 0.5s;
  color: rgb(105, 87, 73);
  justify-content: space-between;
}
.btn:hover {
  background: #fff;
  color: rgb(29, 158, 134);
}
.btn:hover .icon {
  color: rgb(29, 158, 134);
  transform: translateX(10px);
}
.btn .icon {
  margin-left: 33px;
  width: 9px;
  height: 16px;
  color: rgb(105, 87, 73);
  transition: 0.5s;
}

.main-bg {
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 150px;
  border-radius: 0 0 100px 100px;
}
@media (max-width: 768px) {
  .main-bg {
    border-radius: 0 0 30px 30px;
    margin-bottom: 32px;
  }
}
.main-bg__inner {
  background: rgb(27, 109, 115);
  border-radius: 0 0 150px 150px;
}
@media (max-width: 768px) {
  .main-bg__inner {
    border-radius: 0 0 50px 50px;
  }
}

.scales-section {
  background: rgb(37, 122, 128);
  margin-bottom: 155px;
}

.scales {
  position: relative;
  padding: 95px 0;
}
@media (max-width: 768px) {
  .scales {
    padding: 40px 0 160px 0;
  }
}
.scales:before {
  content: "";
  width: 73px;
  height: 65px;
  background: url(../img/quote.svg) 0 0 no-repeat;
  position: absolute;
  top: -20px;
  left: 0;
}
@media (max-width: 768px) {
  .scales:before {
    width: 45px;
    height: 38px;
    background: url(../img/quote.svg) 0 0 no-repeat;
    background-size: 45px 38px;
    top: -15px;
  }
}
.scales:after {
  content: "";
  width: 205px;
  height: 102px;
  position: absolute;
  left: -20px;
  bottom: -102px;
  background: url(../img/triangle.svg) 0 0 no-repeat;
}
@media (max-width: 768px) {
  .scales:after {
    width: 138px;
    height: 68px;
    left: calc(50% - 69px);
    bottom: -67px;
    background: url(../img/triangle.svg) 0 0 no-repeat;
    background-size: auto 68px;
  }
}
.scales p {
  max-width: 452px;
  color: rgb(255, 255, 255);
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  position: relative;
  z-index: 9;
}
@media (max-width: 768px) {
  .scales p {
    font-size: 14px;
    line-height: 20px;
  }
}
.scales__img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .scales__img {
    right: -65px;
  }
}
.scales__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  background: url(../img/shadow.png) 100% 100% no-repeat;
  width: 1051px;
  height: 289px;
}
@media (max-width: 992px) {
  .scales__img:before {
    display: none;
  }
}
.scales__img img {
  display: block;
}
@media (max-width: 768px) {
  .scales__img img {
    height: 200px;
  }
}

.main-section {
  width: 100%;
  height: 100vh;
  background: url(../img/main-img.png) 100% 100% no-repeat;
  background-size: cover;
  min-height: 800px;
}
@media (max-width: 1200px) {
  .main-section {
    background-position: 50% 100%;
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .main-section {
    background-position: 70% 100%;
  }
}
@media (max-width: 480px) {
  .main-section {
    background: url(../img/main-img-mobile.png) 100% 100% no-repeat;
    background-size: cover;
  }
}