@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* USER VARIABLES SECTION */
:root {
  --container-width: 1320px;
  --container-fluid-width: 1680px;
  --container-padding: 15px;
  --font-main: "Jost", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --grey: #808080;
  --grey-light: #e5e5e5;
  --dark: #373f50;
  --color-primary: #373f50;
  --color-second: white;
  --color-primary-rgb: 31, 40, 48;
  --color-second-rgb: 255, 200, 27;
  --link-color: #000000;
  --link-color-hover: #414439;
  --link-color-active: #414439;
  --body-font-size: 17px;
  --body-font-weight: 300;
  --body-line-height: 24px;
  --body-bg: #ffffff;
  --body-color: #424242;
}

html,
body {
  position: relative;
  height: 100%;
  scroll-behavior: smooth;
}

::-moz-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: #fff;
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

input,
textarea {
  outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
  border-color: red;
}

body {
  display: flex;
  flex-direction: column;
  background-color: var(--body-bg);
  overflow-x: hidden;
  color: var(--body-color);
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-family: var(--font-main);
}

a {
  transition: color 0.2s ease-in;
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-color-hover);
}

a[href^="tel:"] {
  white-space: nowrap;
}

.text-link {
  position: relative;
}
.text-link::before, .text-link::after {
  position: absolute;
  bottom: -2px;
  transition: all 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 1px;
  content: "";
}
.text-link::before {
  left: 0;
  background: rgba(18, 21, 24, 0.2);
  width: 100%;
}
.text-link::after {
  left: 0;
  background: rgba(18, 21, 24, 0.9);
  width: 0;
}
.text-link:hover::after {
  width: 100%;
}

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

.container-fluid {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  max-width: var(--container-fluid-width);
}

.container-right {
  /* overflow-x: hidden; */
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 991.98px) {
  .container-right {
    padding-left: var(--container-padding);
  }
}

.container-left {
  /* overflow-x: hidden; */
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 991.98px) {
  .container-left {
    padding-right: var(--container-padding);
  }
}

h1, h2, h3, h4, h5 {
  color: var(--color-primary);
  font-family: var(--font-second);
}

.bg-second {
  background-color: var(--color-second);
}

.text-bg-second {
  background-color: var(--color-second) !important;
  color: var(--white) !important;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.font-third {
  font-family: var(--font-third);
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #225479;
  color: white;
  transition: 0.3s;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--dark);
  color: var(--white);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  background-color: var(--dark);
  color: var(--white);
}

.swiper-theme {
  padding: 2px 15px;
}
.swiper-theme .swiper-button-prev {
  left: 0;
}
.swiper-theme .swiper-button-next {
  right: 0;
}

.form-control {
  border-radius: 0;
  padding: 12px 0.75rem;
  font-size: 17px;
  line-height: 1.412;
}

.icon-group {
  position: relative;
}
.icon-group__icon {
  top: 13px;
  left: 10px;
  position: absolute;
  opacity: 0.65;
}
.icon-group .form-control {
  padding-left: 38px;
}

.rating {
  display: flex;
}

.rating span,
.rating label {
  margin-right: 2px;
  height: 16px;
  width: 16px;
  font-size: 0;
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23dee2e6' d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.rating label {
  cursor: pointer;
}

.rating input {
  display: none;
}

.rating input:nth-child(1):checked ~ label:nth-of-type(-n + 1),
.rating input:nth-child(2):checked ~ label:nth-of-type(-n + 2),
.rating input:nth-child(3):checked ~ label:nth-of-type(-n + 3),
.rating input:nth-child(4):checked ~ label:nth-of-type(-n + 4),
.rating input:nth-child(5):checked ~ label:nth-of-type(-n + 5), .rating-1 span:nth-of-type(-n + 1), .rating-2 span:nth-of-type(-n + 2), .rating-3 span:nth-of-type(-n + 3), .rating-4 span:nth-of-type(-n + 4), .rating-5 span:nth-of-type(-n + 5) {
  background-image: url("data:image/svg+xml,%3Csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fcc102' d='M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z'%3E%3C/path%3E%3C/svg%3E");
}

.rating-form span,
.rating-form label {
  margin-right: 4px;
  height: 24px;
  width: 24px;
}

.photo_submit {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  border: 1px dashed var(--grey);
  border-radius: 5px;
  width: 116px;
  height: 116px;
}
.photo_submit:hover {
  cursor: pointer;
  background-color: #f2f2f2;
}
.photo_submit--image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.photo_submit--image:hover {
  cursor: default;
}

.photo_submit-input {
  display: none;
}

.photo_submit-plus {
  position: relative;
  background: transparent;
  width: 45px;
  height: 45px;
  pointer-events: none;
}
.photo_submit-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  content: "+";
  color: var(--color-primary);
  font-size: 46px;
}
.photo_submit--image .photo_submit-plus {
  display: none;
}

.photo_submit-uploadLabel {
  text-align: center;
  margin-top: 0px;
  pointer-events: none;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.photo_submit--image .photo_submit-uploadLabel {
  display: none;
}

.photo_submit-delete {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 32px;
  height: 32px;
  background: var(--white);
  text-indent: -9999px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.photo_submit-delete::after, .photo_submit-delete::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 14px;
  background-color: #ff231f;
  content: "";
}
.photo_submit-delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.photo_submit-delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.photo_submit--image .photo_submit-delete {
  display: inline-block;
}

.btn {
  border-radius: 0;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.429;
  text-transform: uppercase;
}

.btn-custom {
  --bs-btn-color: white;
  --bs-btn-bg: #225479;
  --bs-btn-border-color: #225479;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f3644;
  --bs-btn-hover-border-color: #2c3240;
  --bs-btn-focus-shadow-rgb: 85, 92, 106;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2c3240;
  --bs-btn-active-border-color: #292f3c;
}

.lightbox-image,
.lightbox-media {
  display: block;
  position: relative;
  overflow: hidden;
}
.lightbox-image img,
.lightbox-media img {
  transform: scale(1);
  transition: 0.5s;
}
.lightbox-image::after,
.lightbox-media::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  pointer-events: none;
  content: "";
}
.lightbox-image .icon,
.lightbox-media .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: ease-out 0.16s;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.lightbox-image:hover img,
.lightbox-media:hover img {
  transform: scale(1.1);
}
.lightbox-image:hover::after,
.lightbox-media:hover::after {
  opacity: 1;
}
.lightbox-image:hover .icon,
.lightbox-media:hover .icon {
  transform: translate(-50%, -50%) scale(0.94);
}

.lightbox-media .icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath d='M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z' fill='%23ffffff'/%3e%3c/svg%3e");
}

.lightbox-image .icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7C401.8 87.79 326.8 13.32 235.2 1.723C99.01-15.51-15.51 99.01 1.724 235.2c11.6 91.64 86.08 166.7 177.6 178.9c53.8 7.189 104.3-6.236 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7zM79.1 208c0-70.58 57.42-128 128-128s128 57.42 128 128c0 70.58-57.42 128-128 128S79.1 278.6 79.1 208z' fill='%23ffffff'/%3e%3c/svg%3e");
}

.lightbox-img {
  display: block;
  position: relative;
  overflow: hidden;
}
.lightbox-img img {
  transform: scale(1.05) translateX(-3px);
  transition: 0.5s;
}
.lightbox-img::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  pointer-events: none;
  content: "";
}
.lightbox-img:hover img {
  transform: scale(1.05) translateX(3px);
}
.lightbox-img:hover::after {
  opacity: 1;
}
.lightbox-img:hover .icon {
  transform: translate(-50%, -50%) scale(0.94);
}

.pagination {
  --bs-pagination-bg: transparent;
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-focus-color: var(--color-primary);
  --bs-pagination-color: var(--color-primary);
  --bs-pagination-active-bg: var(--color-primary);
  --bs-pagination-active-border-color: var(--color-primary);
  font-weight: 500;
  justify-content: space-between;
  gap: 6px;
}

.page-link {
  border-radius: 0 !important;
}

.page-item:not(.paper) {
  display: none;
}

.page-paper .page-link {
  cursor: auto;
  pointer-events: none;
  box-shadow: none;
}

@media (min-width: 576px) {
  .pagination {
    justify-content: center;
  }
  .page-item:not(.paper) {
    display: block;
  }
  .page-paper {
    display: none;
  }
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-header__title {
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.heading {
  margin-bottom: 30px;
}
.heading__title {
  margin: 0;
  font-weight: 800;
  font-size: 40px;
}
@media (max-width: 767.98px) {
  .heading__title {
    font-size: 33px;
  }
}

.topbar {
  background-color: #5698ca;
  padding: 10px 0;
  font-weight: 400;
  font-size: 16px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: rgba(255, 255, 255, 0.65);
}
.topbar a:hover {
  color: rgb(255, 255, 255);
}
.topbar__phone {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  font-weight: 500;
}
.topbar__phone img, .topbar__phone svg {
  width: 16px;
  height: auto;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.topbar__nav .nav-link {
  padding-top: 0;
  padding-bottom: 0;
}
.topbar__nav .nav-link.active {
  color: var(--color-second);
}
.topbar__languages {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-weight: 400;
  list-style: none;
}
.topbar__languages li + li {
  margin-left: 10px;
}
.topbar__languages li + li::before {
  display: inline-block;
  padding-right: 10px;
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}
.topbar__languages a.active {
  pointer-events: none;
  color: var(--color-second);
}

@media (max-width: 991.98px) {
  .topbar__nav .nav-link {
    padding: 0 8px;
  }
}
@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
.header__inner {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.header__logo {
  flex-shrink: 0;
}
.header__cta {
  font-weight: bold;
  flex-basis: 450px;
  width: 100%;
  font-style: italic;
  text-align: center;
}
.header__cont-phone {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  line-height: 1;
}
.header__cont-phone a {
  flex-shrink: 0;
}
.header__cont-num {
  margin-right: 5px;
  font-weight: 700;
  font-size: 19px;
}
.header__cont-callback {
  display: inline-block;
  margin-top: 5px;
  border: 0;
  border-bottom: 2px dotted var(--bs-gray-400);
  background: transparent;
  padding: 0;
  font-size: 15px;
}
.header__cont-callback:hover {
  border-color: var(--color-second);
}
.header__toggler {
  display: flex;
  row-gap: 5px;
  flex-direction: column;
  justify-content: center;
  border: none;
  background-color: transparent;
  padding: 8px 8px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bs-gray-300);
}
.header__toggler span {
  background-color: var(--black);
  width: 100%;
  height: 2px;
}

.navbar-main {
  --bs-navbar-active-color: var(--color-second);
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-main .container {
  position: relative;
}
.navbar-main .dropdown-menu {
  border-radius: 0 !important;
}
.navbar-main .sub-menu-title {
  display: block;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--bs-border-color);
  font-weight: 600;
  text-transform: uppercase;
}
.navbar-main .list-unstyled a {
  display: block;
  padding: 6px 8px;
  width: 100%;
  color: var(--bs-dropdown-link-color);
  font-weight: 400;
  line-height: 1.2;
}
.navbar-main .list-unstyled a:hover {
  background-color: var(--bs-dropdown-link-hover-bg);
  color: var(--bs-dropdown-link-hover-color);
}
@media (min-width: 992px) {
  .navbar-main .dropdown-menu {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-color: transparent;
  }
  .navbar-main .dropdown-large1 {
    transform: translateX(-50px);
    min-width: 600px;
  }
  .navbar-main .dropdown-large2 {
    transform: translateX(-50px);
    min-width: 600px;
  }
  .navbar-main.navbar-scrolled {
    position: fixed;
    top: 0;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.95) !important;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .navbar-main.navbar-scrolled .navbar-nav-cat {
    position: static;
    background-color: transparent;
  }
}

.navbar-nav-cat .nav-link {
  color: var(--black);
  font-weight: 700;
}
@media (min-width: 992px) {
  .navbar-nav-cat {
    position: absolute;
    right: 0;
    left: 0;
    flex-grow: 1;
    justify-content: space-evenly;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .navbar-nav-cat .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar-nav-cat .nav-item .dropdown-menu {
    margin-top: 0;
  }
  .navbar-nav-cat .nav-link {
    padding-top: 13px;
    padding-bottom: 13px;
    text-transform: uppercase;
  }
}

.navbar-nav-mobi .nav-link {
  color: var(--black);
  font-weight: 400;
}

.navbar-toggler {
  position: absolute;
  top: -70px;
  right: 12px;
}

.hero__slider {
  height: 600px;
}
.hero__slider-slide {
  display: flex;
  align-items: flex-end;
}
.hero__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slider-content {
  max-width: 660px;
  width: 100%;
  padding-bottom: 30px;
}
.hero__slider-title {
  font-size: 50px;
  font-weight: 800;
}
.hero__slider-title span {
  color: white;
  display: inline-block;
  background-color: #225479;
  padding: 0 4px;
}
.hero__slider-btn {
  display: inline-block;
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 25px;
}
@media (max-width: 991.98px) {
  .hero__slider {
    height: 560px;
  }
  .hero__slider-title {
    font-size: 40px;
  }
  .hero__slider-btn {
    padding: 10px 20px;
  }
}
@media (max-width: 767.98px) {
  .hero__slider {
    height: 440px;
  }
  .hero__slider-content {
    padding-bottom: 20px;
  }
  .hero__slider-title {
    font-size: 30px;
  }
  .hero__slider-btn {
    font-size: 15px;
    padding: 6px 15px;
  }
}
@media (max-width: 575.98px) {
  .hero__slider {
    height: 300px;
  }
  .hero__slider-title {
    font-size: 26px;
  }
  .hero__slider-btn {
    font-size: 13px;
    padding: 4px 15px;
  }
}

.page-header {
  position: relative;
  background-image: url("../img/hero/hero_01.jpg");
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--grey-light);
  padding-top: 160px;
  padding-bottom: 30px;
}
.page-header::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.25));
  content: "";
}
.page-header .container,
.page-header .container-fluid {
  position: relative;
}
.page-header .breadcrumb {
  margin: 0;
  font-size: 0.9rem;
}
.page-header .breadcrumb a {
  color: rgba(var(--bs-white-rgb), 1);
}
.page-header .breadcrumb a:hover {
  color: rgba(var(--bs-white-rgb), 0.6);
}
.page-header .breadcrumb .breadcrumb-item.active,
.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(var(--bs-white-rgb), 0.6);
}
@media (max-width: 767.98px) {
  .page-header {
    padding-top: 130px;
    padding-bottom: 20px;
  }
}

.page-header-title {
  color: #225479;
  display: inline-block;
  background-color: var(--color-second);
  padding: 0 4px;
  font-weight: 700;
}

.advantage-list {
  --gap: 0px;
  --elements: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.advantage-list__item {
  padding: 10px 30px;
  width: calc((100% - (var(--elements) - 1) * var(--gap)) / (var(--elements)));
  text-align: center;
}
.advantage-list__item:not(:last-child) {
  border-right: 1px solid var(--bs-gray-400);
}
.advantage-list__img {
  width: auto;
  height: 120px;
}
.advantage-list__title {
  margin-top: 15px;
}
.advantage-list__text {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .advantage-list {
    --elements: 1;
  }
  .advantage-list__item {
    padding: 30px 0;
    display: flex;
    text-align: left;
    -moz-column-gap: 2%;
         column-gap: 2%;
  }
  .advantage-list__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--bs-gray-400);
  }
  .advantage-list__item:first-child {
    padding-top: 0;
  }
  .advantage-list__item:last-child {
    padding-bottom: 0;
  }
  .advantage-list__img {
    height: 80px;
    flex-shrink: 0;
  }
}

.product-image-thumb-wrapp {
  margin-top: 10px;
}

.product-image-thumb {
  padding: 0 40px;
}
.product-image-thumb .swiper-button-prev,
.product-image-thumb .swiper-button-next {
  top: 0;
  margin-top: 0px;
  width: 30px;
  height: 100%;
}
.product-image-thumb .swiper-button-prev {
  left: 0;
}
.product-image-thumb .swiper-button-next {
  right: 0;
}
.product-image-thumb img {
  cursor: pointer;
}
.product-image-thumb .swiper-slide-thumb-active img {
  cursor: default;
}
.product-image-thumb .swiper-slide-thumb-active::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  border: 3px solid var(--color-second);
}

.product-thumb {
  display: flex;
  flex-direction: column;
  box-shadow: var(--bs-box-shadow-sm);
  padding: 6px;
  height: 100%;
  overflow: hidden;
}
.product-thumb__image {
  overflow: hidden;
}
.product-thumb__image img {
  margin: 0 auto;
  transition: 0.3s;
}
.product-thumb__caption {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 6px 6px 6px;
}
.product-thumb__cattitle {
  width: 100%;
  text-align: center;
}
.product-thumb__title {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--body-font-size);
  line-height: 17px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-thumb__price-wrapp {
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.product-thumb__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.product-thumb:hover .product-thumb__image img {
  scale: 1.1;
}

.callaction {
  position: relative;
  margin-top: 60px;
  background-image: url("../img/fff.png");
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.callaction::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(31, 40, 48, 0.9), rgba(0, 0, 0, 0.7));
  content: "";
}
.callaction__image {
  display: flex;
  justify-content: flex-end;
}
.callaction__img {
  position: relative;
}
.callaction__img img {
  position: relative;
  margin-top: -60px;
}
.callaction__img::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  filter: blur(50px);
  border-radius: 3000px;
  background-color: #e5c48f;
  width: 100%;
  height: 250px;
  content: "";
}
.callaction__content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.callaction__title {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.callaction__title span {
  display: block;
  opacity: 0.5;
}
.callaction__text {
  color: var(--white);
}
@media (max-width: 991.98px) {
  .callaction {
    margin-top: 0;
  }
  .callaction__image {
    justify-content: center;
  }
  .callaction__img {
    position: relative;
  }
  .callaction__img img {
    margin-top: 0px;
  }
  .callaction__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.contact .container {
  position: relative;
}
.contact__content {
  position: relative;
  z-index: 2;
}
.contact__form {
  position: relative;
  margin-left: 200px;
  background-color: var(--bs-gray-100);
  padding: 35px 40px 40px;
  text-align: center;
}
.contact__img {
  position: absolute;
  bottom: 0;
  left: 40%;
  z-index: 1;
  max-width: 280px;
}
.contact__form-title {
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .contact__form {
    margin-left: 160px;
    padding: 30px;
  }
  .contact__img {
    left: 39%;
    max-width: 240px;
  }
}
@media (max-width: 991.98px) {
  .contact__form {
    margin-left: 190px;
  }
  .contact__img {
    left: 0;
    max-width: 240px;
  }
}
@media (max-width: 767.98px) {
  .contact__wrap {
    position: relative;
  }
  .contact__form {
    margin-left: 0;
    padding: 30px;
  }
  .contact__img {
    right: 0;
    left: auto;
    bottom: -1.5rem;
    transform: scale(-1, 1);
    max-width: 200px;
  }
}
@media (max-width: 575.98px) {
  .contact__img {
    max-width: 160px;
  }
}

.review-card {
  background-color: var(--white);
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: 8px;
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--bs-gray-200);
}
.review-card__info {
  display: flex;
  align-items: center;
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  margin-right: 18px;
  position: relative;
}
.review-card__avatar img {
  border: 6px solid var(--bs-gray-200);
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}
.review-card__avatar::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -13px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  border-radius: 50%;
  background: var(--color-second) url(../img/icon/double-quotes.svg) no-repeat center/50%;
  text-align: center;
}
.review-card__name {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 5px;
}
.review-card__desc {
  margin-top: 15px;
}
.review-card__answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--bs-gray-200);
  position: relative;
}
.review-card__answer-title {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  background-color: var(--bs-gray-200);
  padding: 5px 6px 3px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
  border-radius: 3px;
}

.form-review {
  background-color: var(--bs-gray-100);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  position: relative;
}

.footer {
  color: rgba(var(--bs-white-rgb), 0.65);
  background-color: var(--dark);
  font-size: 15px;
}
.footer a {
  color: rgba(var(--bs-white-rgb), 0.65);
}
.footer a:hover {
  color: rgba(var(--bs-white-rgb), 1);
}

.scrollup {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
  border: 1px solid var(--grey);
  width: 50px;
  height: 50px;
  line-height: 44px;
  color: var(--grey);
  text-align: center;
  background-color: var(--white);
  transition: 0.3s;
}
.scrollup svg {
  width: 18px;
  height: auto;
}
.scrollup:hover {
  background-color: var(--color-second);
}