@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.eot");
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("/fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff") format("woff"), url("/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.eot");
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("/fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/Montserrat-Bold.woff2") format("woff2"), url("/fonts/Montserrat-Bold.woff") format("woff"), url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-SemiBold.eot");
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("/fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("/fonts/Montserrat-SemiBold.woff") format("woff"), url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Medium.eot");
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("/fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("/fonts/Montserrat-Medium.woff2") format("woff2"), url("/fonts/Montserrat-Medium.woff") format("woff"), url("/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #FFFFFF;
  color: #000000;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1300px;
  }
}

.section-title {
  margin-bottom: 60px;
}
.section-title__text {
  font-size: 34px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
  .section-title__text {
    font-size: 26px;
  }
}
.btn-outline-light {
  border-radius: 30px;
  border: 2px solid #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

h1, h2, h3, h4, h5, p {
  margin-bottom: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@keyframes banner-text-animation {
  0% {
    opacity: 0;
    color: #DCCFC6;
    transform: scale(0.4);
  }
  75% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    color: #FFFFFF;
    transform: scale(1);
  }
}
@keyframes header-main-animation {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  75% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes social-animation {
  15% {
    transform: translateX(500px);
  }
  50% {
    opacity: 0;
  }
  88% {
    opacity: 1;
    transform: translateX(-25px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes toasts-show-animation {
  0% {
    opacity: 0;
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toasts-hide-animation {
  0% {
    opacity: 0;
    transform: translateX(500px);
  }
  75% {
    opacity: 1;
    transform: translateX(-25px);
  }
  100% {
    transform: translateX(0);
  }
}
.header-main {
  position: absolute;
  z-index: 100;
  width: 100%;
  padding: 25px 0;
  animation: header-main-animation 2.4s ease-in-out forwards;
}
.header-main .btn {
  border: 2px solid #000000;
  border-radius: 30px;
}
.header-main__top {
  position: relative;
}
.header-main__top-brand-wrapper {
  display: block;
  background-color: #FFFFFF;
  padding: 7px;
  border-radius: 6px;
}
.header-main__top .menu-btn {
  position: absolute;
  left: 0;
  bottom: -55px;
  z-index: 1;
  padding: 6px 18px;
  gap: 3px;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  transition: 1.2s;
  transform: scale(1);
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.header-main__top .menu-btn span {
  margin-top: -3px;
}
.header-main__top .menu-btn:hover {
  background-color: #FFFFFF;
  color: #425F2A;
  transition: 0.8s;
  transform: scale(1.08);
}
.header-main__top-links-tel {
  display: flex;
  justify-content: end;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #FFFFFF;
  transition: 1.2s;
  transform: scale(1);
}
.header-main__top-links-tel:hover {
  transform: scale(1.08);
  transition: 0.8s;
}
.header-main__top-links-btns-wrapper {
  gap: 10px;
}
.header-main__top-links-btns-account {
  color: #FFFFFF;
  transition: 1.2s;
  transform: scale(1);
}
.header-main__top-links-btns-account:hover {
  transform: scale(1.08);
  transition: 0.8s;
}
.header-main__top-links-btns .btn-outline-light {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background-color: transparent;
  border-color: #FFFFFF;
  padding: 6px 32px;
  transition: 1.2s;
  transform: scale(1);
}
.header-main__top-links-btns .btn-outline-light:hover {
  background-color: #FFFFFF;
  color: #425F2A;
  transition: 0.8s;
  transform: scale(1.08);
}

.banner {
  height: 100vh;
  background-image: url("../assets/img/banner-bg-1519x730.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner__wrapper, .banner .container {
  height: 100%;
}
.banner__content {
  text-align: center;
  color: #FFFFFF;
  animation: banner-text-animation 2.4s ease-in-out forwards;
}
.banner__content-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 12px;
}
.banner__content-subtitle {
  font-size: 32px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .banner {
    background-position: calc(100% + 210px);
  }
  .banner__content-title {
    font-size: 32px;
  }
  .banner__content-subtitle {
    font-size: 22px;
  }
}
@media (max-width: 380px) {
  .banner__content {
    margin-top: 80px;
  }
  .banner__content-title {
    font-size: 26px;
    margin-bottom: 6px;
  }
  .banner__content-subtitle {
    font-size: 16px;
  }
}

.cooperation-card {
  margin: 90px 0;
}
.cooperation-card__title {
  margin-bottom: 42px;
}
.cooperation-card__title h2 {
  font-size: 32px;
  font-weight: 500;
}
.cooperation-card__description {
  margin-bottom: 42px;
}
.cooperation-card__description-wrapper {
  gap: 15px;
}
.cooperation-card__description-col {
  position: relative;
  width: 25%;
}
.cooperation-card__description-title {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .cooperation-card__description-wrapper {
    gap: 10px 20px;
    flex-wrap: wrap;
  }
  .cooperation-card__description-col {
    width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .cooperation-card {
    margin: 40px 0;
  }
  .cooperation-card__title h2 {
    font-size: 18px;
  }
  .cooperation-card__description-wrapper {
    gap: 12px;
  }
  .cooperation-card__description-col {
    width: calc(50% - 6px);
  }
  .cooperation-card__description-title {
    font-size: 14px;
  }
}

.benefits {
  margin-bottom: 90px;
}
.benefits .list-none {
  list-style: none;
  padding-left: 0;
}
.benefits__description {
  background-color: rgba(220, 207, 198, 0.6);
}
.benefits__description-text {
  padding: 50px;
}
.benefits__description-text h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 62px;
}
.benefits__description-text-list {
  list-style: disc;
  padding-left: 25px;
  gap: 22px;
}
.benefits__description-text-list span {
  font-weight: 600;
}

@media (max-width: 1200px) {
  .benefits__description-text {
    padding: 15px;
  }
  .benefits__description-text-list {
    gap: 5px;
  }
}
@media (max-width: 992px) {
  .benefits .container {
    max-width: 100%;
    padding: 0;
  }
  .benefits__description-text h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 810px) {
  .benefits {
    margin: 0;
    padding: 60px 30px;
    background-color: rgba(220, 207, 198, 0.6);
  }
  .benefits .container {
    max-width: 540px;
    padding: 0 30px;
  }
  .benefits__description {
    background-color: transparent;
  }
  .benefits__description-wrapper {
    flex-direction: column;
  }
  .benefits__description-img, .benefits__description-text {
    width: 100% !important;
  }
  .benefits .ii {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .benefits {
    padding: 60px 0;
  }
  .benefits .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.cooperating-with {
  margin: 90px 0;
}
.cooperating-with__title {
  background-color: #425F2A;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 60px;
}
.cooperating-with__title h2 {
  max-width: 500px;
  margin: 0 auto;
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 500;
}

.cooperation-with__description-list {
  list-style: disc;
  gap: 60px;
}
.cooperation-with__description-list li {
  width: calc(33.3333333333% - 60px);
  text-align: center;
  color: #425F2A;
}
.cooperation-with__description-list li p {
  color: #000000;
}

@media (max-width: 768px) {
  .cooperating-with {
    margin: 60px 0;
  }
}

@media (max-width: 992px) {
  .cooperation-with__description-list li {
    width: calc(50% - 30px);
  }
}
@media (max-width: 540px) {
  .cooperation-with__description-list {
    gap: 30px;
  }
  .cooperation-with__description-list li {
    width: 100%;
  }
}

.feedback {
  margin: 90px 0;
}
.feedback__title {
  text-align: center;
  margin-bottom: 60px;
}
.feedback__title h2 {
  font-size: 32px;
  font-weight: 500;
}
.feedback__content-item-list {
  gap: 35px;
}
.feedback__content-item-list li {
  width: 33.3333333333%;
}
.feedback__content-item-list-card {
  position: relative;
  height: 100%;
  border: 3px solid #425F2A;
  padding: 50px 28px;
}
.feedback__content-item-list-card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 48px;
}
.feedback__content-item-list-card p:not(:last-child) {
  margin-bottom: 25px;
}
.feedback__content-item-list-card svg {
  position: absolute;
  top: 46px;
  right: 35px;
  z-index: 1;
}
.feedback .carousel-indicators {
  bottom: -35px;
}
.feedback .carousel-indicators button {
  border: none;
  background-color: black;
  border-radius: 360px !important;
  margin: 0 5px;
  width: 10px;
  height: 10px;
}
.feedback .carousel-inner {
  width: 95%;
  margin: 0 auto;
}
.feedback .carousel-control-prev,
.feedback .carousel-control-next {
  width: 1%;
}
.feedback .carousel-control-prev-icon svg,
.feedback .carousel-control-next-icon svg {
  color: #1a1d20;
}

@media (max-width: 1200px) {
  .feedback__content-item-list {
    gap: 15px;
  }
  .feedback__content-item-list-card {
    padding: 30px 15px;
  }
  .feedback .feedback__content-item-list-card svg {
    display: none;
  }
}
@media (max-width: 992px) {
  .feedback__content-item-list li {
    width: 50%;
  }
  .feedback__content-item-list li:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .feedback li {
    width: 100%;
  }
  .feedback li:nth-child(2) {
    display: none;
  }
  .feedback__content-item-list-card svg {
    top: 28px;
    width: 30px;
    height: 30px;
    display: block !important;
  }
}

.cooperation-contact {
  margin: 180px 0 60px 0;
  text-align: center;
}
.cooperation-contact__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 35px;
}
.cooperation-contact__content {
  max-width: 770px;
  margin: 0 auto;
}
.cooperation-contact__content p:not(:last-child) {
  margin-bottom: 20px;
}
.cooperation-contact__content a {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}

.social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}
.social__list {
  animation: social-animation 3.5s ease-in-out forwards;
  position: relative;
  gap: 18px;
}
.social__list svg {
  width: 30px;
  height: 30px;
  transform: scale(1);
  transition: 0.8s;
}
.social__list svg:hover {
  transform: scale(1.3);
  transition: 0.8s;
}
@media (max-width: 992px) {
  .social {
    display: none;
  }
}

.navigation-menu {
  position: absolute;
  left: -338px;
  top: 0;
  z-index: 100;
}
.navigation-menu__nav {
  position: relative;
  width: 338px;
  height: 100vh;
  background-color: #425F2A;
  padding: 60px 0;
}
.navigation-menu__nav-wrapper {
  height: 100%;
}
.navigation-menu__nav-brand-wrapper {
  display: block;
  padding: 8px;
  background-color: #FFFFFF;
  border-radius: 3px;
}
.navigation-menu__nav-list {
  text-align: center;
  width: 100%;
}
.navigation-menu__nav-list-item {
  width: 100%;
  display: block;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  border-left: none;
  border-right: none;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
}
.navigation-menu__nav-list-item:hover, .navigation-menu__nav-list-item:focus, .navigation-menu__nav-list-item.active {
  color: #FFFFFF;
}
.navigation-menu__nav-list-item span {
  padding-right: 12px;
}
.navigation-menu__nav-list-item.active {
  border-color: #FFFFFF;
}
.navigation-menu__nav .nav-close {
  gap: 8px;
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid #FFFFFF;
  border-radius: 30px;
  padding-left: 28px;
  padding-right: 28px;
  transform: scale(1);
  transition: 0.4s;
}
.navigation-menu__nav .nav-close span {
  margin-top: -2px;
}
.navigation-menu__nav .nav-close:hover {
  background-color: #FFFFFF;
  color: #425F2A;
  transform: scale(1.08);
  transition: 0.8s;
}
.navigation-menu.open {
  animation: moveNavBarShow 2s ease forwards;
}
.navigation-menu.close {
  animation: moveNavBar 1.6s ease forwards;
}
.navigation-menu .dropdown-mobile {
  display: none;
}

.navigation-menu__nav-catalog {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 260px;
  height: 100%;
}
.navigation-menu__nav-catalog-wrapper {
  background-color: #FFFFFF;
  height: 100%;
  position: relative;
}
.navigation-menu__nav-catalog.open {
  animation: openCatalogNav 1.6s ease forwards;
}
.navigation-menu__nav-catalog.close {
  animation: closeCatalogNav 1.6s ease forwards;
}
.navigation-menu__nav-catalog-list {
  padding-top: 35px;
  gap: 10px;
  margin-bottom: 0;
}
.navigation-menu__nav-catalog-list-item {
  font-weight: 400;
  color: #000000;
}
.navigation-menu__nav-catalog-list-item:hover {
  color: #425F2A;
}
.navigation-menu__nav-catalog-close {
  position: absolute;
  top: 32px;
  right: 32px;
  border-radius: 360px;
  border: 2px solid #000000;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.navigation-menu__nav-catalog-close:hover {
  background-color: #425F2A;
  border-color: #425F2A;
  transform: scale(1.08);
  transition: 0.8s;
}
.navigation-menu__nav-catalog-close-icon {
  position: relative;
}
.navigation-menu__nav-catalog-close-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 66%);
}

@keyframes moveNavBarShow {
  0% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(338px);
  }
  100% {
    transform: translateX(320px);
  }
}
@keyframes moveNavBar {
  0% {
    transform: translateX(320px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes openCatalogNav {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(260px);
  }
}
@keyframes closeCatalogNav {
  0% {
    transform: translateX(260px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 578px) {
  .navigation-menu {
    left: -320px;
  }
  .navigation-menu.open {
    width: 100%;
    animation: moveNavBarShowMobile 1.2s ease forwards;
  }
  .navigation-menu.close {
    animation: moveNavBarMobile 1.2s ease forwards;
  }
  .navigation-menu__nav {
    width: 100%;
  }
  .navigation-menu .dropdown-desktop {
    display: none;
  }
  .navigation-menu .dropdown-mobile {
    display: block;
  }
  .navigation-menu .dropdown .btn:hover, .navigation-menu .dropdown .btn:focus {
    border: none;
    color: #FFFFFF;
  }
  .navigation-menu .dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    padding-bottom: 0;
  }
  .navigation-menu .dropdown-menu li:not(last-child) {
    padding-bottom: 15px;
  }
}

@keyframes moveNavBarShowMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(320px);
  }
}
@keyframes moveNavBarMobile {
  0% {
    transform: translateX(320px);
  }
  100% {
    transform: translateX(-320px);
  }
}
body {
  overflow-x: hidden;
}

.navigation-menu {
  position: fixed !important;
}

/*# sourceMappingURL=cooperation.css.map */
