/* Reset Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: #232536;
}

ul, ol {
  list-style-type: disc;
  padding-left: 20px;
  color: #6D6E76;
  font-size: 16px;
  line-height: 1.6;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #232536;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section {
  scroll-margin-top: 100px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .section {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-top: 100px;
  }
}

.hidden {
  display: none;
}

.header {
  background-color: #232536;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.header__logo {
  flex: 2;
}
.header__logo .logo {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -2px;
}
.header__logo .logo__accent {
  color: #FDC151;
}
@media (max-width: 992px) {
  .header__logo {
    flex: 0;
  }
}
.header__nav {
  flex: 2;
}
.header__nav .nav-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  list-style: none;
}
.header__nav .nav-list__link {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.header__nav .nav-list__link:hover {
  color: #FDC151;
}
@media (max-width: 992px) {
  .header__nav {
    display: flex;
    flex: 1;
    justify-content: end;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}
.header .menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #FDC151;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: flex;
  }
}

.hero {
  position: relative;
  height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  background: url("../assets/images/hero-banner.svg") center center/cover no-repeat;
}
@media (max-width: 768px) {
  .hero {
    background: url("../assets/images/hero-banner-mobile.png") center center/cover no-repeat;
  }
}
.hero__content {
  color: white;
}
@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero__title {
  font-size: 56px;
  margin-bottom: 50px;
  line-height: 64px;
  letter-spacing: -2px;
  color: white;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
    text-align: start;
    line-height: 120%;
  }
}
.hero__title-accent {
  display: inline-block;
  color: #FDC151;
}
.hero__title-quotes {
  letter-spacing: -5px;
}
@media (max-width: 768px) {
  .hero__title br {
    display: none;
  }
}
.hero__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.hero::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url("../assets/images/overlay.png");
  background-size: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero::after {
    background-image: url("../assets/images/overlay-mobile.png");
  }
}

.our-tasks__divider {
  height: 23px;
  width: 80%;
  margin-left: auto;
  display: flex;
}
.our-tasks__divider .yellow-part {
  flex: 2;
  background-color: #FDC151;
}
.our-tasks__divider .blue-part {
  flex: 1;
  background-color: #3D50AF;
}
.our-tasks__content {
  padding: 60px;
  background-color: #FBF6EA;
}
.our-tasks__content__title {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .our-tasks__content__title {
    font-size: 28px;
    line-height: 120%;
  }
}
.our-tasks__content__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #6D6E76;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .our-tasks__content__subtitle {
    font-size: 16px;
    margin: 20px 0 35px 0;
  }
}
.our-tasks__content h3 {
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .our-tasks__content h3 {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}
.our-tasks__content__list {
  margin-left: 10px;
}
.our-tasks__content__list li {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .our-tasks__content__list li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .our-tasks__content {
    padding: 20px;
  }
}

.trust .container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: end;
  flex-wrap: nowrap;
  height: 705px;
}
@media (max-width: 768px) {
  .trust .container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    flex-wrap: nowrap;
    height: auto;
  }
}
.trust img {
  position: absolute;
  left: 20px;
}
@media (max-width: 768px) {
  .trust img {
    position: static;
  }
}
.trust__content {
  background-color: white;
  flex-basis: 653px;
  padding: 50px 50px 80px 80px;
  z-index: 1;
}
.trust__content__question-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .trust__content__question-title {
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 1.5px;
  }
}
.trust__content__title {
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -2px;
  margin: 25px 0;
}
@media (max-width: 768px) {
  .trust__content__title {
    font-size: 28px;
    line-height: 120%;
    margin: 15px 0;
  }
}
.trust__content__descriptions {
  font-size: 16px;
  line-height: 28px;
  margin: 25px 0;
  color: #6D6E76;
}
@media (max-width: 768px) {
  .trust__content__descriptions {
    font-size: 28pxx;
    line-height: 120%;
    margin: 10px 0;
  }
}
.trust__content__actions {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .trust__content__actions {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .trust__content {
    padding: 25px;
    flex-basis: fit-content;
  }
}
@media (max-width: 250px) {
  .trust__content {
    padding: 5px;
  }
}

.services__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.services__content__card {
  width: 350px;
}
.services__content__card__title {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -1px;
}
.services__content__card__description {
  font-size: 16px;
  line-height: 120%;
  color: #6D6E76;
}
.services__content__card__first {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
}
@media (max-width: 390px) {
  .services__content__card__first {
    text-align: center;
  }
}
@media (max-width: 390px) {
  .services__content__card {
    width: 100%;
  }
}
.services__content__card:not(:first-child) {
  border: 1px solid #6D6E76;
  padding: 30px 27px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services__content__card:not(:first-child) img {
  max-width: fit-content;
}

.why-us .container {
  justify-content: start;
}
.why-us .container img {
  left: initial;
  right: 20px;
}
.why-us__content {
  background-color: white;
  flex-basis: 653px;
  padding: 50px 100px 80px 30px;
  z-index: 1;
}
@media (max-width: 768px) {
  .why-us__content {
    padding: 25px;
    flex-basis: fit-content;
  }
}
@media (max-width: 390px) {
  .why-us__content {
    padding: 15px;
  }
}
.why-us__title {
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -2px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .why-us__title {
    font-size: 28px;
    line-height: 120%;
  }
}
.why-us__list {
  margin-left: 25px;
}
@media (max-width: 390px) {
  .why-us__list {
    margin-left: 15px;
  }
}

.reviews__content {
  display: flex;
  padding: 65px;
  background-color: #FBF6EA;
}
@media (max-width: 768px) {
  .reviews__content {
    flex-direction: column;
    padding: 25px;
  }
}
.reviews__content__left__block {
  padding-right: 50px;
  flex-basis: 40%;
  border-right: 2px solid #6D6E76;
}
@media (max-width: 768px) {
  .reviews__content__left__block {
    padding-right: 0;
    padding-bottom: 50px;
    border-right: none;
    border-bottom: 2px solid #6D6E76;
  }
}
.reviews__content__left__block__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.reviews__content__left__block__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -2px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reviews__content__left__block__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.reviews__content__right-block {
  overflow: hidden;
  padding-left: 50px;
  flex-basis: 60%;
  display: flex;
  align-items: end;
}
@media (max-width: 768px) {
  .reviews__content__right-block {
    padding-left: 0;
    padding-top: 50px;
  }
}
.reviews__content__right-block .swiper-wrapper {
  position: relative;
}
.reviews__content__right-block .swiper-slide .text {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .reviews__content__right-block .swiper-slide .text {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
.reviews__content__right-block .swiper-slide .author {
  display: flex;
  gap: 20px;
  padding-right: 27%;
}
@media (max-width: 768px) {
  .reviews__content__right-block .swiper-slide .author {
    padding-right: 31%;
  }
}
@media (max-width: 768px) {
  .reviews__content__right-block .swiper-slide .author img {
    height: 32px;
    width: 32px;
  }
}
.reviews__content__right-block .swiper-slide .author .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 768px) {
  .reviews__content__right-block .swiper-slide .author .name {
    font-size: 16px;
    line-height: 100%;
  }
}
.reviews__content__right-block .swiper-slide .author .position {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .reviews__content__right-block .swiper-slide .author .position {
    font-size: 14px;
    line-height: 100%;
  }
}
.reviews__content__right-block .actions {
  display: flex;
  gap: 30px;
  position: absolute;
  right: 3%;
  bottom: 5%;
  z-index: 1;
}
@media (max-width: 768px) {
  .reviews__content__right-block .actions {
    right: 2%;
    bottom: 2%;
  }
}
.reviews__content__right-block .actions .swiper-button {
  height: 48px;
  width: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 768px) {
  .reviews__content__right-block .actions .swiper-button {
    height: 32px;
    width: 32px;
  }
}
.reviews__content__right-block .actions .swiper-button:hover {
  background-color: black;
  transform: scale(1.2);
}
.reviews__content__right-block .actions .swiper-button:hover.swiper-button-next:before, .reviews__content__right-block .actions .swiper-button:hover.swiper-button-prev:before {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(180deg);
}
.reviews__content__right-block .actions .swiper-button-next:before, .reviews__content__right-block .actions .swiper-button-prev:before {
  content: "";
  width: 20px;
  height: 15px;
  background-size: auto;
  background-repeat: no-repeat;
}
.reviews__content__right-block .actions .swiper-button-next:after, .reviews__content__right-block .actions .swiper-button-prev:after {
  font-size: 0;
}
.reviews__content__right-block .actions .swiper-button-next {
  position: static;
  margin: 0;
}
.reviews__content__right-block .actions .swiper-button-next::before {
  background-image: url(../assets/icons/arrow-prev.svg);
  transform: rotate(180deg);
}
.reviews__content__right-block .actions .swiper-button-prev {
  position: static;
  margin: 0;
}
.reviews__content__right-block .actions .swiper-button-prev::before {
  background-image: url(../assets/icons/arrow-prev.svg);
}

.footer {
  padding: 80px 0;
  background-color: #232536;
}
.footer .container {
  padding: 0 15px;
}
.footer__content__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__content__info .address {
  flex: 1;
}
.footer__content__info .address .logo {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -2px;
}
.footer__content__info .address .logo__accent {
  color: #FDC151;
}
.footer__content__info .info {
  display: flex;
  gap: 15px;
  color: white;
  align-items: start;
  margin-top: 15px;
}
.footer__content__info .info span {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.footer__content__info .info.phone img {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .footer__content__info {
    flex-direction: column;
  }
}
.footer__content .contacts {
  flex: 1;
  padding-left: 200px;
}
.footer__content .contacts h3 {
  color: white;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer__content .contacts {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .footer__content .contacts {
    margin-top: 30px;
  }
}
.footer__content__divider {
  height: 1px;
  background-color: white;
  margin: 35px 0;
}
.footer__content__bottom {
  display: flex;
  gap: 25px;
}
.footer__content__bottom span {
  font-size: 12px;
  color: #999999;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .footer__content__bottom {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 0;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #232536;
  z-index: 200;
}
.mobile-menu__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  padding: 15px 30px;
}
.mobile-menu__logo {
  height: 30px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav a {
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  line-height: 100%;
  padding: 40px 0;
}
.mobile-menu__nav a:hover {
  color: #FDC151;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 270px;
}
@media (max-width: 390px) {
  .btn {
    min-width: 100%;
    padding: 15px 20px;
  }
}
.btn--primary {
  background-color: #FDC151;
  color: #232536;
}
.btn--primary:hover {
  background-color: #E3AE48;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 193, 81, 0.3);
}

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