@import "https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap";
body {
  color: #262c36;
  margin: 0;
  font-family: Barlow, sans-serif;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

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

.text {
  color: #677279;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
}

.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  margin: 25px 0;
}

.text h1:first-child, .text h2:first-child, .text h3:first-child, .text h4:first-child, .text h5:first-child, .text h6:first-child {
  margin-top: 0;
}

.text h1:last-child, .text h2:last-child, .text h3:last-child, .text h4:last-child, .text h5:last-child, .text h6:last-child {
  margin-bottom: 0;
}

.text > * {
  margin: 20px 0;
}

.text > :first-child {
  margin-top: 0;
}

.text > :last-child {
  margin-bottom: 0;
}

.text p {
  font-size: 16px;
  line-height: 24px;
}

.text table {
  border-spacing: 0;
  width: 100%;
}

.text table tr td {
  border-bottom: 1px solid #e1e3e4;
  padding: 5px;
}

.text table tr td:first-child {
  text-align: left;
  width: 150px;
}

a:not(.btn) {
  color: #2f2f81;
  transition: color .2s linear;
}

a:not(.btn):hover {
  color: #39399c;
}

.btn {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  background: #c73d31;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s linear;
  display: inline-block;
}

.btn:hover {
  background: #d66056;
}

.btn--blue {
  background: #2f2f81;
}

.btn--blue:hover {
  background: #39399c;
}

.btn--min {
  padding: 10px 15px;
  font-size: 13px;
  line-height: 21px;
}

.btn--full {
  width: 100%;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumbs {
  border-bottom: 1px solid #e1e3e4;
  padding: 15px 0;
}

.breadcrumbs__list {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.breadcrumbs__list li {
  color: #262c36;
  padding: 0 8px 0 15px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}

.breadcrumbs__list li:first-child {
  padding-left: 0;
}

.breadcrumbs__list li:first-child:before {
  display: none;
}

.breadcrumbs__list li:before {
  content: ">";
  color: #677279;
  position: absolute;
  top: 0;
  left: 0;
}

.breadcrumbs__list li a {
  color: #677279;
  text-decoration: none;
}

.checkbox {
  cursor: pointer;
  justify-content: space-between;
  display: flex;
}

.checkbox input {
  position: absolute;
  left: -9999px;
}

.checkbox input:checked + .checkbox__check {
  border-color: #262c36;
}

.checkbox input:checked + .checkbox__check:before {
  opacity: 1;
}

.checkbox__check {
  border: 1px solid #e1e3e4;
  border-radius: 5px;
  width: 16px;
  height: 16px;
  transition: border-color .2s linear;
  position: relative;
}

.checkbox__check:before {
  content: "";
  opacity: 0;
  background: url("../img/check.svg") center / 12px no-repeat;
  transition: opacity .2s linear;
  position: absolute;
  inset: 0;
}

.checkbox__text {
  color: #677279;
  width: calc(100% - 25px);
  font-size: 14px;
  line-height: 20px;
}

.main {
  padding: 80px 0;
}

@media screen and (width <= 768px) {
  .main {
    padding: 50px 0;
  }
}

.main > * {
  margin-top: 60px;
}

@media screen and (width <= 768px) {
  .main > * {
    margin-top: 35px;
  }
}

.main > :first-child {
  margin-top: 0;
}

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

input, textarea, button {
  font-family: Barlow, sans-serif;
}

.text-input {
  box-sizing: border-box;
  border: 1px solid #e1e3e4;
  outline: none;
  width: 100%;
  height: 34px;
  padding: 0 40px 0 15px;
}

textarea.text-input {
  resize: none;
  height: 90px;
  padding: 15px;
}

.search-input {
  position: relative;
}

.search-input__input {
  border-radius: 10px;
}

.search-input__submit {
  cursor: pointer;
  background: url("../img/search-icon.svg") 0 0 / 100% no-repeat;
  border: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
}

.header__top {
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  display: flex;
}

.header__logo {
  width: 120px;
  line-height: 0;
}

.header__right {
  line-height: 0;
}

@media screen and (width <= 768px) {
  .header__right {
    max-width: 130px;
  }
}

.header__bottom {
  background: #f3f5f6;
  position: relative;
}

@media screen and (width <= 768px) {
  .header__bottom {
    padding: 10px 0;
  }
}

.header__bottom-flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media screen and (width <= 768px) {
  .header__nav {
    z-index: 9999;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .header__nav.active {
    display: block;
  }
}

.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media screen and (width <= 768px) {
  .header__nav ul {
    background: #f3f5f6;
    flex-direction: column;
  }
}

.header__nav ul li {
  color: #677279;
  margin-right: 35px;
  padding: 17px 0;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (width <= 768px) {
  .header__nav ul li {
    border-top: 1px solid #e1e3e4;
    margin: 0;
    padding: 10px 15px;
  }
}

.header__nav ul li a {
  color: inherit;
  text-decoration: none;
  transition: color .2s linear;
}

.header__nav ul li a:hover, .header__nav ul li.current-menu-item a {
  color: #1e2d7d;
}

.header__search {
  width: 250px;
}

@media screen and (width <= 768px) {
  .header__search {
    width: 200px;
  }
}

.header__navBtn {
  cursor: pointer;
  width: 30px;
  display: none;
}

@media screen and (width <= 768px) {
  .header__navBtn {
    display: block;
  }
}

.header__navBtn.active:before {
  transform: rotate(45deg);
}

.header__navBtn.active:after {
  margin-top: -3px;
  transform: rotate(-45deg);
}

.header__navBtn.active span {
  display: none;
}

.header__navBtn:before, .header__navBtn:after, .header__navBtn span {
  content: "";
  background: #262c36;
  height: 3px;
  display: block;
}

.header__navBtn span {
  margin: 5px 0;
}

.banner {

}

.banner .swiper-slide {
  line-height: 0;
}

.banner .swiper-slide a {
  display: block;
  text-decoration: none;
}

.banner .swiper-slide img {
  width: 100%;
  height: 500px;
  object-position: center center;
  object-fit: cover;
}

@media screen and (width <= 1200px) {
  .banner .swiper-slide img {
    height: 400px;
  }
}

@media screen and (width <= 968px) {
  .banner .swiper-slide img {
    height: 330px;
  }
}

@media screen and (width <= 768px) {
  .banner .swiper-slide img {
    height: 250px;
  }
}

@media screen and (width <= 550px) {
  .banner .swiper-slide img {
    height: 200px;
  }
}

.links-block__btns {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -7px;
  display: flex;
}

.links-block__btns > * {
  margin: 7px;
}

.links-block__text {
  margin-top: 35px;
}

.carousel-products .swiper {
  margin: 0 -10px;
}

.carousel-products .swiper .swiper-button-prev, .carousel-products .swiper .swiper-button-next {
  transition: opacity .2s linear;
  top: 125px;
}

@media screen and (width <= 1300px) {
  .carousel-products .swiper .swiper-button-prev, .carousel-products .swiper .swiper-button-next {
    top: 100px;
  }
}

@media screen and (width <= 968px) {
  .carousel-products .swiper .swiper-button-prev, .carousel-products .swiper .swiper-button-next {
    top: 85px;
  }
}

.carousel-products .swiper .swiper-button-prev.swiper-button-disabled, .carousel-products .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

.carousel-products .swiper .swiper-button-prev:hover, .carousel-products .swiper .swiper-button-next:hover {
  opacity: .7;
}

.carousel-products .swiper .swiper-button-prev {
  left: 15px;
}

.carousel-products .swiper .swiper-button-next {
  right: 15px;
}

.carousel-products__item {
  box-sizing: border-box;
  padding: 0 10px;
}

.carousel-products__link {
  text-decoration: none;
  display: block;
}

.carousel-products__link:hover * {
  color: #39399c;
}

.carousel-products__link * {
  color: #262c36;
  transition: color .2s linear;
}

.carousel-products__img {
  margin-bottom: 15px;
}

.carousel-products__img img {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

@media screen and (width <= 1300px) {
  .carousel-products__img img {
    height: 200px;
  }
}

@media screen and (width <= 968px) {
  .carousel-products__img img {
    height: 170px;
  }
}

.carousel-products__title {
  font-size: 16px;
  line-height: 22px;
}

.carousel-products__price {
  margin-top: 5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
}

.adv__list {
  text-align: center;
  flex-wrap: wrap;
  margin: 0 -15px;
  display: flex;
}

.adv__list-item {
  box-sizing: border-box;
  width: 25%;
  padding: 15px;
}

@media screen and (width <= 768px) {
  .adv__list-item {
    width: 50%;
  }
}

@media screen and (width <= 400px) {
  .adv__list-item {
    width: 100%;
  }
}

.adv__list-img {
  background: #222529;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  display: flex;
}

@media screen and (width <= 1300px) {
  .adv__list-img {
    width: 70px;
    height: 70px;
  }
}

.adv__list-img svg {
  width: 45px;
}

@media screen and (width <= 1300px) {
  .adv__list-img svg {
    width: 30px;
  }
}

.adv__list-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
}

@media screen and (width <= 968px) {
  .adv__list-title {
    font-size: 20px;
    line-height: 26px;
  }
}

.adv__list-subtitle {
  color: #555;
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (width <= 968px) {
  .adv__list-subtitle {
    font-size: 13px;
  }
}

.adv__list-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (width <= 968px) {
  .adv__list-text {
    font-size: 14px;
    line-height: 22px;
  }
}

.soc-list {
  flex-wrap: wrap;
  margin: -10px -5px;
  display: flex;
}

.soc-list a {
  border: 1px solid #262c36;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 10px 5px;
  transition: background .2s linear;
  display: flex;
}

.soc-list a svg:not(.in) {
  width: 25px;
  height: auto;
  transition: all .2s linear;
}

.soc-list a:hover {
  background: #262c36;
}

.soc-list a:hover svg path {
  fill: #fff;
}

.share-block {
  margin-top: 20px;
}

.share-block__title {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}

.share-block .soc-list a {
  width: 30px;
  height: 30px;
}

.share-block .soc-list a svg:not(.in) {
  width: 20px;
  height: 20px;
}

.sidebar {
  width: 335px;
}

@media screen and (width <= 1300px) {
  .sidebar {
    width: 250px;
  }
}

@media screen and (width <= 768px) {
  .sidebar {
    display: none;
  }

  .sidebar.active {
    z-index: 9999;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    padding: 35px 15px;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
  }
}

.sidebar__close {
  cursor: pointer;
  background: url("close.0aec6002.svg") center / 40px no-repeat;
  width: 30px;
  height: 30px;
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
}

@media screen and (width <= 768px) {
  .sidebar__close {
    display: block;
  }
}

.sidebar__item {
  border-top: 1px solid #e1e3e4;
  margin-top: 30px;
  padding-top: 25px;
}

.sidebar__item:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.sidebar__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.sidebar__acc-cat {
  color: #677279;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
}

.sidebar__acc-cat:first-child {
  margin-top: 0;
}

.sidebar__acc-subcat {
  padding-left: 5px;
}

.sidebar__acc-subcat .checkbox {
  margin: 10px 0;
}

.cont {
  width: calc(100% - 360px);
}

@media screen and (width <= 1300px) {
  .cont {
    width: calc(100% - 275px);
  }
}

@media screen and (width <= 768px) {
  .cont {
    width: 100%;
  }
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #262c36;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-list {
  margin-top: 25px;
}

.product-list__item {
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  text-decoration: none;
  display: flex;
}

.product-list__item:first-child {
  margin-top: 0;
}

.product-list__item:last-child {
  margin-bottom: 0;
}

.product-list__item:hover .product-list__name, .product-list__item:hover .product-list__price {
  color: #39399c;
}

.product-list__img {
  width: 250px;
  line-height: 0;
}

@media screen and (width <= 1200px) {
  .product-list__img {
    width: 220px;
  }
}

@media screen and (width <= 768px) {
  .product-list__img {
    width: 125px;
  }
}

.product-list__cont {
  width: calc(100% - 270px);
}

@media screen and (width <= 1200px) {
  .product-list__cont {
    width: calc(100% - 240px);
  }
}

@media screen and (width <= 768px) {
  .product-list__cont {
    width: calc(100% - 140px);
  }
}

.product-list__name {
  color: #262c36;
  font-size: 20px;
  font-weight: bold;
  line-height: 26px;
  transition: color .2s linear;
}

@media screen and (width <= 968px) {
  .product-list__name {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (width <= 768px) {
  .product-list__name {
    font-size: 16px;
    line-height: 22px;
  }
}

.product-list__price {
  color: #262c36;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: color .2s linear;
}

@media screen and (width <= 968px) {
  .product-list__price {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (width <= 768px) {
  .product-list__price {
    font-size: 12px;
    line-height: 18px;
  }
}

.product-sort {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media screen and (width <= 768px) {
  .product-sort {
    justify-content: space-between;
  }
}

.product-sort__filterBtn {
  color: #677279;
  cursor: pointer;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  display: none;
}

@media screen and (width <= 768px) {
  .product-sort__filterBtn {
    display: flex;
  }
}

.product-sort__filterBtn svg {
  width: 15px;
  margin-right: 5px;
}

.product-sort__sort {
  align-items: center;
  display: flex;
}

.product-sort__sort-tit {
  color: #677279;
  margin-right: 10px;
  font-size: 14px;
  line-height: 20px;
}

.product-sort__sort-sel {
  width: 220px;
  display: inline-block;
  position: relative;
}

@media screen and (width <= 768px) {
  .product-sort__sort-sel {
    width: 150px;
  }
}

.product-sort__sort-sel:before {
  content: "▼";
  color: #666;
  pointer-events: none;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.product-sort__sort-sel:hover {
  border-color: #888;
}

.product-sort__sort-sel:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 5px #4a90e266;
}

.product-sort__sort-sel select {
  color: #333;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  transition: border-color .3s, box-shadow .3s;
}

.product-pag {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin: 15px -5px 0;
  display: flex;
}

@media screen and (width <= 768px) {
  .product-pag {
    justify-content: center;
  }
}

.product-pag__item {
  border: 1px solid #e1e3e4;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 10px 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s linear;
  display: flex;
  color: #677279 !important;
}

.product-pag__item:hover, .product-pag__item.active {
  border-color: #262c36;
  color: #262c36 !important;
}

.product-pag__item--prev svg, .product-pag__item--next svg {
  width: 24px;
}

.product__name {
  font-size: 30px;
  font-weight: bold;
  line-height: 38px;
}

@media screen and (width <= 768px) {
  .product__name {
    font-size: 24px;
    line-height: 32px;
  }
}

.product__price {
  color: #d33;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (width <= 768px) {
  .product__price {
    font-size: 18px;
  }
}

.product__info {
  justify-content: space-between;
  margin-top: 25px;
  display: flex;
}

@media screen and (width <= 768px) {
  .product__info {
    flex-direction: column;
    align-items: center;
  }
}

.product__info-carousel {
  width: calc(100% - 520px);
}

@media screen and (width <= 1200px) {
  .product__info-carousel {
    width: calc(100% - 340px);
  }
}

@media screen and (width <= 968px) {
  .product__info-carousel {
    width: calc(100% - 280px);
  }
}

@media screen and (width <= 768px) {
  .product__info-carousel {
    width: 100%;
  }
}

.product__info-carousel .swiper-slide {
  line-height: 0;
}

.product__info-carousel .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

@media screen and (width <= 1300px) {
  .product__info-carousel .swiper-slide img {
    height: 365px;
  }
}

@media screen and (width <= 1200px) {
  .product__info-carousel .swiper-slide img {
    height: 345px;
  }
}

@media screen and (width <= 968px) {
  .product__info-carousel .swiper-slide img {
    height: 275px;
  }
}

@media screen and (width <= 768px) {
  .product__info-carousel .swiper-slide img {
    height: 375px;
  }
}

@media screen and (width <= 550px) {
  .product__info-carousel .swiper-slide img {
    height: 230px;
  }
}

.product__info-carousel .swiper-thumbs {
  margin-top: 10px;
}

.product__info-carousel .swiper-thumbs .swiper-slide {
  cursor: pointer;
  line-height: 0;
}

.product__info-carousel .swiper-thumbs .swiper-slide:before {
  content: "";
  background: #0009;
  transition: opacity .2s linear;
  position: absolute;
  inset: 0;
}

.product__info-carousel .swiper-thumbs .swiper-slide.swiper-slide-thumb-active:before {
  opacity: 0;
}

.product__info-carousel .swiper-thumbs img {
  height: 200px;
}

@media screen and (width <= 1300px) {
  .product__info-carousel .swiper-thumbs img {
    height: 150px;
  }
}

@media screen and (width <= 1200px) {
  .product__info-carousel .swiper-thumbs img {
    height: 100px;
  }
}

@media screen and (width <= 550px) {
  .product__info-carousel .swiper-thumbs img {
    height: 65px;
  }
}

.product__info-contacts {
  width: 500px;
}

@media screen and (width <= 1200px) {
  .product__info-contacts {
    width: 320px;
  }
}

@media screen and (width <= 968px) {
  .product__info-contacts {
    width: 265px;
  }
}

@media screen and (width <= 768px) {
  .product__info-contacts {
    margin-top: 25px;
  }
}

.product__info-contacts-buttons > * {
  margin: 5px 0;
}

.product__info-contacts-buttons > :first-child {
  margin-top: 0;
}

.product__info-contacts-buttons > :last-child {
  margin-bottom: 0;
}

.product__info-contacts-text {
  margin-top: 20px;
  font-size: 12px;
  line-height: 16px;
}

.product__info-contacts-text p span {
  color: inherit;
  text-decoration: none;
}

.product__tabs-links {
  flex-wrap: wrap;
  margin: 40px -15px -5px;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
}

@media screen and (width <= 968px) {
  .product__tabs-links {
    margin-top: 20px;
  }
}

.product__tabs-links:after {
  content: "";
  background: #e1e3e4;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.product__tabs-links li {
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: color .2s linear;
  position: relative;
}

@media screen and (width <= 768px) {
  .product__tabs-links li {
    padding: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}

.product__tabs-links li:hover, .product__tabs-links li.active {
  color: #1e2d7d;
}

.product__tabs-content {
  padding-top: 25px;
}

.product__tabs-content-item {
  display: none;
}

.product__tabs-content-item.active {
  display: block;
}

.product__related {
  margin-top: 25px;
}

.product__related-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.contact__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
}

.contact__subtitle {
  color: #555;
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}

.contact__cols {
  justify-content: space-between;
  margin-top: 20px;
  display: flex;
}

.contact__cols-l, .contact__cols-r {
  width: calc(50% - 15px);
}

.contact__cols-l--full {
  width: 100% !important;
}

.contact__list-item {
  margin: 15px 0;
}

.contact__list-item:first-child {
  margin-top: 0;
}

.contact__list-item:last-child {
  margin-bottom: 0;
}

.contact__list-location {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.contact__list-cont {
  color: #677279;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
}

.contact__list-cont b {
  color: #262c36;
}

.contact__list-cont a {
  color: inherit;
  text-decoration: none;
}

.contact__text {
  margin-top: 25px;
}

.cForm-row {
  justify-content: space-between;
  margin: 10px 0;
  display: flex;
}

.cForm-row-it {
  width: calc(50% - 5px);
}

.about__carousel .swiper-slide {
  text-align: center;
  line-height: 0;
}

.about__text {
  margin-top: 50px;
}

.text-page__text {
  margin-top: 25px;
}

.text-page .cForm {
  max-width: 500px;
  margin: 40px auto 0;
}

.gallery__list {
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px -5px -10px;
  display: flex;
}

.gallery__list-item {
  box-sizing: border-box;
  width: 25%;
  padding: 5px;
  line-height: 0;
}

@media screen and (width <= 768px) {
  .gallery__list-item {
    width: 33.3333%;
  }
}

@media screen and (width <= 550px) {
  .gallery__list-item {
    width: 50%;
  }
}

@media screen and (width <= 400px) {
  .gallery__list-item {
    width: 100%;
  }
}

.gallery__list-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.services-list {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

@media screen and (width <= 550px) {
  .services-list {
    margin-top: 25px;
  }
}

.services-list__item {
  box-sizing: border-box;
  width: 25%;
  padding: 10px;
}

@media screen and (width <= 1200px) {
  .services-list__item {
    width: 33.3333%;
  }
}

@media screen and (width <= 968px) {
  .services-list__item {
    width: 50%;
  }
}

@media screen and (width <= 550px) {
  .services-list__item {
    width: 100%;
  }
}

.services-list__img {
  text-align: center;
}

.services-list__img img {
  object-position: center center;
  object-fit: cover;
  width: 100%;
  height: 250px;
}

@media screen and (width <= 1300px) {
  .services-list__img img {
    height: 210px;
  }
}

@media screen and (width <= 1200px) {
  .services-list__img img {
    height: 250px;
  }
}

@media screen and (width <= 768px) {
  .services-list__img img {
    height: 210px;
  }
}

@media screen and (width <= 550px) {
  .services-list__img img {
    width: 280px;
  }
}

.services-list__name {
  text-align: center;
  margin-top: 3px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.footer {
  border-top: 1px solid #e1e3e4;
  padding: 50px 0;
}

.footer__row {
  justify-content: space-between;
  margin: -15px;
  display: flex;
}

@media screen and (width <= 768px) {
  .footer__row {
    display: block;
  }
}

.footer__col {
  padding: 15px;
}

.footer__col-title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.footer__logo {
  width: 120px;
  display: block;
}

@media screen and (width <= 768px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (width <= 768px) {
  .footer p {
    text-align: center;
  }
}

.footer p a {
  color: inherit;
  text-decoration: none;
}

.footer__btns {
  flex-wrap: wrap;
  margin: 15px -5px -10px;
  display: flex;
}

@media screen and (width <= 968px) {
  .footer__btns {
    flex-direction: column;
  }
}

.footer__btns a {
  margin: 5px;
}

.footer__nav {
  min-width: 300px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (width <= 968px) {
  .footer__nav {
    min-width: 200px;
  }
}

.footer__nav li {
  color: #a8a8a8;
  border-bottom: 1px solid #e1e3e4;
  font-size: 14px;
}

.footer__nav li a {
  color: inherit;
  padding: 6px 0 6px 15px;
  text-decoration: none;
  display: block;
  position: relative;
}

.footer__nav li a:before {
  content: ">";
  color: #a8a8a8;
  position: absolute;
  top: 5px;
  left: 0;
}

.footer__nav li a:hover:before {
  animation: .4s navItemArrow;
}

.footer__nav li.current-menu-item a {
  color: #39399c;
}

@keyframes navItemArrow {
  0% {
    left: 0;
  }

  50% {
    left: 3px;
  }

  to {
    left: 0;
  }
}
/*# sourceMappingURL=truck.38ec9247.css.map */
