@font-face {
  font-family: "AdventPro";
  src: url(assets/fonts/Advent_Pro/AdventPro-Regular.ttf) format("TrueType");
  font-weight: 400;
}
@font-face {
  font-family: "AdventPro";
  src: url(assets/fonts/Advent_Pro/AdventPro-Medium.ttf) format("TrueType");
  font-weight: 500;
}
@font-face {
  font-family: "AdventPro";
  src: url(assets/fonts/Advent_Pro/AdventPro-Bold.ttf) format("TrueType");
  font-weight: bold;
}
@font-face {
  font-family: "AdventPro";
  src: url(assets/fonts/Advent_Pro/AdventPro-ExtraBold.ttf) format("TrueType");
  font-weight: 900;
}
@font-face {
  font-family: "AdventPro";
  src: url(assets/fonts/Advent_Pro/AdventPro-Light.ttf) format("TrueType");
  font-weight: 300;
}
:root {
  --main-color: #f15927;
  --bg-category-block: #ffa081;
  --bg-services-block: #ffd5c7;
  --bg-form-block: #005178;
  --bg-footer: #4a4a4a;
}

html,
body {
  font-family: "AdventPro";
  font-family: 17px;
  background-color: #fff4f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

input,
button,
select {
  height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "AdventPro";
  font-size: 16px;
}
input::-moz-placeholder, button::-moz-placeholder, select::-moz-placeholder {
  font-size: 14px;
}
input::placeholder,
button::placeholder,
select::placeholder {
  font-size: 14px;
}

p {
  line-height: 135%;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .wrapper {
    padding: 0 12px;
  }
}

.title h2 {
  font-size: 40px;
}
@media (max-width: 480px) {
  .title h2 {
    font-size: 32px;
  }
}

.mobile {
  display: none;
}
@media (max-width: 480px) {
  .mobile {
    display: block;
  }
}

header {
  padding: 20px 0;
}
header.fix {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header .left {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  header .header .left {
    width: 100%;
  }
}
header .header .left .header-logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media (max-width: 480px) {
  header .header .left .header-logo {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
  }
}
header .header .left .header-logo a img {
  max-width: 50px;
  height: 100%;
}
header .header .left .header-logo .site-description {
  font-size: 14px;
  margin-left: 10px;
  color: rgb(255, 255, 255);
  max-width: 150px;
}
@media (max-width: 480px) {
  header .header .left .header-logo .site-description {
    display: none;
  }
}
header .header .left .header_nav_menu {
  position: relative;
}
@media (max-width: 480px) {
  header .header .left .header_nav_menu {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: white;
    transform: translateX(120%);
    transition: transform 0.5s linear;
  }
  header .header .left .header_nav_menu.show {
    transform: translateX(0%);
    transition: transform 0.5s linear;
  }
  header .header .left .header_nav_menu .close-menu-btn {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  header .header .left .header_nav_menu .close-menu-btn img {
    width: 35px;
    height: 35px;
  }
}
header .header .left .header_nav_menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  header .header .left .header_nav_menu ul {
    flex-direction: column;
    align-items: start;
    padding: 30px 0 30px 80px;
  }
}
header .header .left .header_nav_menu ul li {
  list-style-type: none;
}
header .header .left .header_nav_menu ul li a {
  color: rgb(255, 255, 255);
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 480px) {
  header .header .left .header_nav_menu ul li a {
    color: black;
    font-size: 30px;
    font-weight: bold;
  }
}
header .header .left .header_nav_menu ul li.current-menu-item a {
  color: var(--main-color);
}
header .header .right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 480px) {
  header .header .right {
    display: none;
  }
}
header .header .right .messangers {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header .right .messangers a img {
  width: 25px;
  height: 25px;
}
header .header .right .header_phone button {
  height: 35px;
  background-color: var(--main-color);
  color: white;
  width: 170px;
}

section.welcome-container {
  height: 800px;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  section.welcome-container {
    height: auto;
  }
}
section.welcome-container::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.welcome-container .wrapper {
  position: relative;
  z-index: 2;
}
section.welcome-container .wrapper .container {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  color: white;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container {
    padding: 140px 0px;
  }
}
section.welcome-container .wrapper .container .welcome-block {
  display: grid;
  grid-template-columns: 60% 25%;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-text .title h1 {
  font-size: 900;
  font-size: 80px;
  line-height: 100%;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-text .title h1 {
    font-size: 50px;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-text .sub_title {
  margin: 30px 0 20px 0;
  max-width: 280px;
}
section.welcome-container .wrapper .container .welcome-block .welcome-text form {
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-text form {
    flex-direction: column;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-text form input {
  width: 250px;
  padding-left: 40px;
}
section.welcome-container .wrapper .container .welcome-block .welcome-text form button {
  width: 250px;
  background-color: var(--main-color);
  color: white;
  text-transform: uppercase;
}
section.welcome-container .wrapper .container .welcome-block .welcome-birck {
  background-color: white;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  transform: rotate(-18deg);
  color: black;
  padding: 20px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-birck {
    display: none;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-birck h2 {
  font-size: 35px;
  font-weight: 900;
}
section.welcome-container .wrapper .container .welcome-block .welcome-video {
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: end;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-video {
    bottom: 20px;
    right: 20px;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .text {
  max-width: 150px;
  text-align: right;
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn {
  position: relative;
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: transparent;
  border: 3px solid var(--main-color);
  border-radius: 30px;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn::after {
    top: -15px;
    left: -15px;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: -25px;
  left: -25px;
  background-color: transparent;
  border: 2px solid var(--main-color);
  border-radius: 30px;
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn::before {
    top: -25px;
    left: -35px;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 5px solid var(--main-color);
}
@media (max-width: 480px) {
  section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn img {
    width: 80px;
    height: 80px;
  }
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn button {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  padding: 0;
  height: auto;
}
section.welcome-container .wrapper .container .welcome-block .welcome-video .video-play-btn button img {
  width: 50px;
  height: 50px;
}

section.catalog-container {
  padding: 30px 0;
}
section.catalog-container .wrapper .container .catalog-block .catalog-items {
  margin-top: 30px;
}
@media (max-width: 480px) {
  section.catalog-container .wrapper .container .catalog-block .catalog-items {
    margin-top: 20px;
  }
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a {
  color: black;
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item {
  padding: 20px;
  border-radius: 15px;
  background-color: #ededed;
  width: 250px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 480px) {
  section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item {
    width: 100%;
    height: 150px;
    padding: 13px;
  }
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item .cat-title {
  width: 100%;
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item .cat-title strong {
  font-size: 20px;
  font-weight: bold;
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item .cat-img {
  width: 150px;
  height: 150px;
}
@media (max-width: 480px) {
  section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item .cat-img {
    width: 100px;
    height: 100px;
  }
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide a .item .cat-img img {
  width: 100%;
  height: auto;
}
section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide:first-child a .item {
  width: 320px;
  background-color: var(--bg-category-block);
  color: white;
}
@media (max-width: 480px) {
  section.catalog-container .wrapper .container .catalog-block .catalog-items .splide__track .splide__list .splide__slide:first-child a .item {
    width: 200px;
  }
}

.splide__arrow--prev {
  left: -19px !important;
}
@media (max-width: 480px) {
  .splide__arrow--prev {
    left: -8px !important;
  }
}

.splide__arrow--next {
  right: -19px !important;
}
@media (max-width: 480px) {
  .splide__arrow--next {
    right: -8px !important;
  }
}

.splide__arrow {
  width: 38px !important;
  height: 38px !important;
  background-color: white !important;
  box-shadow: 0 0 5px 0 #9c9c9c;
}
.splide__arrow svg {
  width: 24px !important;
  height: 24px !important;
  fill: var(--main-color) !important;
}

.product_card {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .product_card {
    padding: 14px;
  }
}
.product_card .product_img img {
  max-width: 100%;
  margin: 0 auto;
}
.product_card .product_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product_card .product_info .info_header .product_sku {
  color: rgb(0, 0, 0);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 10px;
}
.product_card .product_info .info_header .product_title h3 {
  font-size: 20px;
  font-weight: bold;
}
.product_card .product_info .info_bottom .info_price {
  font-size: 20px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 10px;
  margin-top: 10px;
}
.product_card .product_info .info_bottom .product_link a {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 300;
  font-size: 16px;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media (max-width: 480px) {
  .service-items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}
.service-items .service-item {
  padding: 24px;
  border-radius: 20px;
  background-color: var(--bg-services-block);
  display: grid;
  grid-template-columns: 70% 30%;
  position: relative;
}
.service-items .service-item h2,
.service-items .service-item h3,
.service-items .service-item h4,
.service-items .service-item h5 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .service-items .service-item h2,
  .service-items .service-item h3,
  .service-items .service-item h4,
  .service-items .service-item h5 {
    font-size: 22px;
  }
}
.service-items .service-item ul li {
  font-size: 18px;
  list-style-type: none;
  margin-bottom: 5px;
}
.service-items .service-item p {
  font-size: 16px;
}
.service-items .service-item .item-img {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.service-items .service-item .item-img img {
  max-width: 180px;
}
.service-items .service-item:last-child {
  background-color: #daf0ff;
}

section.product-container .wrapper .container .product-block .product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
section.product-container .wrapper .container .product-block .product-header .all-product-link a {
  font-size: 18px;
  color: var(--main-color);
  text-decoration: underline;
}

section.banner-container {
  margin: 50px 0;
}
@media (max-width: 480px) {
  section.banner-container {
    padding: 0px 0;
  }
}
section.banner-container .wrapper .container .banner-block a img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  section.banner-container .wrapper .container .banner-block a img {
    display: none;
  }
}
section.banner-container .wrapper .container .banner-block a img.banner_mobile {
  display: none;
}
@media (max-width: 480px) {
  section.banner-container .wrapper .container .banner-block a img.banner_mobile {
    display: block;
    height: 500px;
  }
}

section.services-container .wrapper .container .services-block .title {
  margin-bottom: 30px;
}

section.project-container {
  margin: 40px 0;
}
section.project-container .wrapper .container .project-block {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.project-container .wrapper .container .project-block .block-text {
  padding-right: 40px;
}
section.project-container .wrapper .container .project-block .block-text h2,
section.project-container .wrapper .container .project-block .block-text h3,
section.project-container .wrapper .container .project-block .block-text h4,
section.project-container .wrapper .container .project-block .block-text h5 {
  font-size: 32px;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-text h2,
  section.project-container .wrapper .container .project-block .block-text h3,
  section.project-container .wrapper .container .project-block .block-text h4,
  section.project-container .wrapper .container .project-block .block-text h5 {
    font-size: 27px;
  }
}
section.project-container .wrapper .container .project-block .block-text p {
  font-size: 20px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-text p {
    font-size: 17px;
  }
}
section.project-container .wrapper .container .project-block .block-text .link {
  margin-top: 30px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-text .link {
    margin-top: 20px;
  }
}
section.project-container .wrapper .container .project-block .block-text .link a {
  color: white;
  width: 250px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
section.project-container .wrapper .container .project-block .block-imgs {
  display: grid;
  grid-template-columns: 40% 58%;
  grid-gap: 2%;
  padding-left: 40px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-imgs {
    padding-left: 0;
    margin-top: 20px;
  }
}
section.project-container .wrapper .container .project-block .block-imgs img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  height: 420px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-imgs img {
    height: 300px;
  }
}
section.project-container .wrapper .container .project-block .block-imgs .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-imgs .row {
    gap: 10px;
  }
}
section.project-container .wrapper .container .project-block .block-imgs .row img {
  height: 200px;
}
@media (max-width: 480px) {
  section.project-container .wrapper .container .project-block .block-imgs .row img {
    height: 145px;
  }
}

section.footer-form-container {
  display: none;
}
section.footer-form-container .wrapper {
  max-width: 1200px;
}
section.footer-form-container .wrapper .container .footer-form-block .form {
  background-color: var(--bg-form-block);
  padding: 35px 100px;
  border-radius: 30px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form {
  display: grid;
  grid-template-columns: 40% 55%;
  align-items: center;
  gap: 5%;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block {
  color: white;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block h2,
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block h3,
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block h4,
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block h5 {
  font-size: 32px;
  margin-bottom: 14px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .text-block p {
  font-size: 20px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields .column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields input,
section.footer-form-container .wrapper .container .footer-form-block .form form .fields button,
section.footer-form-container .wrapper .container .footer-form-block .form form .fields textarea {
  height: 40px;
  width: 100%;
  border-radius: 10px;
  background-color: white;
  padding: 0 20px;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields input::-moz-placeholder, section.footer-form-container .wrapper .container .footer-form-block .form form .fields button::-moz-placeholder, section.footer-form-container .wrapper .container .footer-form-block .form form .fields textarea::-moz-placeholder {
  color: black;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields input::placeholder,
section.footer-form-container .wrapper .container .footer-form-block .form form .fields button::placeholder,
section.footer-form-container .wrapper .container .footer-form-block .form form .fields textarea::placeholder {
  color: black;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields .row {
  display: flex;
  justify-content: end;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields .row textarea {
  padding: 20px;
  height: 120px;
  outline: none;
  font-family: "AdventPro";
  border: none;
}
section.footer-form-container .wrapper .container .footer-form-block .form form .fields .row button {
  width: -moz-max-content;
  width: max-content;
  min-width: 250px;
  background-color: var(--main-color);
  color: white;
}

footer {
  padding: 40px 0;
  background-color: var(--bg-footer);
  color: white;
  margin-top: 50px;
}
@media (max-width: 480px) {
  footer {
    padding: 30px 0;
    margin-top: 30px;
  }
}
footer .footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 480px) {
  footer .footer {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}
footer .footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer .footer-logo p {
  max-width: 200px;
}
@media (max-width: 480px) {
  footer .footer .footer-logo p {
    font-size: 18px;
  }
}
footer .footer .footer-menu {
  display: flex;
  grid-gap: 70px;
}
@media (max-width: 480px) {
  footer .footer .footer-menu {
    margin-top: 25px;
  }
}
footer .footer .footer-menu .item strong {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
footer .footer .footer-menu .item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .footer .footer-menu .item ul li {
  list-style-type: none;
  padding-left: 12px;
  position: relative;
}
footer .footer .footer-menu .item ul li:after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(assets/img/icons/footer-right.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  top: 4px;
  left: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer .footer-menu .item ul li a {
  color: white;
  font-size: 17px;
}
footer .footer .footer-menu .item ul li a:hover {
  color: var(--main-color);
}
footer .footer .footer-menu .item ul li.current-menu-item a {
  color: var(--main-color);
}
footer .footer .footer-contact strong {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
footer .footer .footer-contact a {
  font-size: 20px;
  color: white;
  display: flex;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  footer .footer .footer-contact a {
    width: 45%;
    margin-right: 5%;
  }
}
footer .footer .footer-contact a img {
  display: flex;
  margin-right: 8px;
}

section.page-top {
  height: 400px;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}
section.page-top::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.page-top .wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}
section.page-top .wrapper .container .title {
  margin-top: 40px;
}
section.page-top .wrapper .container .title h1 {
  font-size: 55px;
  color: white;
}
section.page-top .wrapper .container .breadcurms {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
section.page-top .wrapper .container .breadcurms a {
  color: var(--main-color);
  font-size: 18px;
}
section.page-top .wrapper .container .breadcurms img {
  width: 13px;
  height: 13px;
}
section.page-top .wrapper .container .breadcurms span {
  color: white;
  font-size: 18px;
}

#contact {
  margin: 50px 0;
}
@media (max-width: 480px) {
  #contact {
    margin: 30px 0;
  }
}
#contact .container {
  width: 100%;
  margin-bottom: 30px;
}
#contact .container .contact {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 20px;
}
@media (max-width: 480px) {
  #contact .container .contact {
    grid-template-columns: repeat(1, 1fr);
  }
}
#contact .container .contact-left .text h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  #contact .container .contact-left .text h2 {
    font-size: 24px;
  }
}
#contact .container .contact-left .text p {
  font-size: 20px;
}
#contact .container .contact-left .address {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contact .container .contact-left .address .item {
  display: flex;
  align-items: center;
  gap: 15px;
}
#contact .container .contact-left .address .item .image img {
  width: 40px;
}
#contact .container .contact-left .address .item .phone strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}
#contact .container .contact-left .address .item .phone p {
  font-size: 18px;
}
#contact .container .contact-right {
  position: relative;
  width: 100%;
}
#contact .container .contact-right iframe {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 480px) {
  #contact .container .contact-right iframe {
    width: 100%;
    height: 280px;
  }
}

section.about-container {
  margin: 50px 0;
}
section.about-container .wrapper .container .about-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 40px 0;
  padding-top: 0px;
}
section.about-container .wrapper .container .about-items .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  section.about-container .wrapper .container .about-items .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.about-container .wrapper .container .about-items .item .content .top-subject {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #6ee785;
  color: black;
  margin-bottom: 20px;
}
section.about-container .wrapper .container .about-items .item .content .text h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  section.about-container .wrapper .container .about-items .item .content .text h2 {
    font-size: 20px;
  }
}
section.about-container .wrapper .container .about-items .item .content .text p {
  font-size: 16px;
}
@media (max-width: 480px) {
  section.about-container .wrapper .container .about-items .item:last-child .img {
    grid-row: 2;
  }
  section.about-container .wrapper .container .about-items .item:last-child .content {
    grid-row: 1;
  }
}
section.about-container .wrapper .container .about-items .item .img {
  display: flex;
  max-height: 80%;
  align-items: center;
}
section.about-container .wrapper .container .about-items .item .img img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  height: -moz-min-content;
  height: min-content;
}

section.services-page {
  margin: 40px 0;
}
section.services-page .page-services-items {
  position: relative;
}
section.services-page .page-services-items::after {
  content: "";
  width: 140px;
  height: 140px;
  display: block;
  position: absolute;
  bottom: -90px;
  background-image: url(assets/img/icons/service-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 480px) {
  section.services-page .page-services-items::after {
    display: none;
  }
}
section.services-page .page-services-items.left::after {
  left: -78px;
}
section.services-page .page-services-items.right::after {
  right: -78px;
  transform: scaleX(-1);
}
section.services-page .page-services-items .service-item {
  cursor: pointer;
  position: relative;
  z-index: 2;
  background-color: #daf0ff;
}
section.services-page .page-services-items .service-item.active {
  box-shadow: 0 0 0 3px var(--main-color);
  position: relative;
  background-color: var(--bg-services-block);
}
section.services-page .page-services-items .service-item:hover {
  box-shadow: 0 0 0 3px var(--main-color);
}
section.services-page .services-description {
  margin: 30px 60px;
  max-width: 70%;
}
@media (max-width: 480px) {
  section.services-page .services-description {
    max-width: 100%;
    margin: 20px 10px;
  }
}
section.services-page .services-description .description-item ul {
  margin-left: 20px;
}
section.services-page .services-description .description-item.none {
  display: none;
}
section.services-page .projects-items .project-cat-title {
  margin-bottom: 30px;
}
section.services-page .projects-items .project-cat-title h4 {
  font-size: 32px;
}
section.services-page .projects-items .project-item-posts .project-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
@media (max-width: 480px) {
  section.services-page .projects-items .project-item-posts .project-item {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
section.services-page .projects-items .project-item-posts .project-item .item-gallery section#main-carousel {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  section.services-page .projects-items .project-item-posts .project-item .item-gallery section#main-carousel {
    margin-bottom: 10px;
  }
}
section.services-page .projects-items .project-item-posts .project-item .item-gallery section#main-carousel .splide__slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 480px) {
  section.services-page .projects-items .project-item-posts .project-item .item-gallery section#main-carousel .splide__slide img {
    height: 250px;
  }
}
section.services-page .projects-items .project-item-posts .project-item .item-gallery section#thumbnail-carousel .splide__slide {
  border-radius: 10px;
}
section.services-page .projects-items .project-item-posts .project-item .item-gallery section#thumbnail-carousel .splide__slide img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 480px) {
  section.services-page .projects-items .project-item-posts .project-item .item-gallery section#thumbnail-carousel .splide__slide img {
    height: 60px;
  }
}
section.services-page .projects-items .project-item-posts .project-item .item-info .post-title h3 {
  font-size: 32px;
}
@media (max-width: 480px) {
  section.services-page .projects-items .project-item-posts .project-item .item-info .post-title h3 {
    font-size: 27px;
  }
}
section.services-page .projects-items .project-item-posts .project-item .item-info .post-character {
  margin: 10px 0 30px 0;
}
section.services-page .projects-items .project-item-posts .project-item .item-info .post-character ul {
  margin-left: 20px;
}

.form-post form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  padding: 30px;
  border-radius: 14px;
  background-color: white;
  box-shadow: 3px 3px 5px 0 #000;
}
@media (max-width: 480px) {
  .form-post form {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
  }
}
.form-post form .left strong {
  font-size: 20px;
  display: flex;
  margin-bottom: 10px;
}
.form-post form .left p {
  font-size: 17px;
}
.form-post form .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-post form .right input {
  width: 100%;
  height: 40px;
  border: 1px solid #929292;
}
.form-post form .right button {
  background-color: var(--main-color);
  font-weight: 500;
  color: white;
}

.category-list-container {
  margin: 30px 0 20px 0;
}
.category-list-container .header-category-title h1 {
  font-size: 32px;
}
.category-list-container .category_lists {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
@media (max-width: 480px) {
  .category-list-container .category_lists {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
  }
}
.category-list-container .category_lists .splide__slide a {
  color: black;
}
.category-list-container .category_lists .splide__slide a .item {
  padding: 20px;
  border-radius: 15px;
  background-color: #ededed;
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.category-list-container .category_lists .splide__slide a .item .cat-title {
  width: 100%;
}
.category-list-container .category_lists .splide__slide a .item .cat-title strong {
  font-size: 20px;
  font-weight: bold;
}
.category-list-container .category_lists .splide__slide a .item .cat-img {
  width: 150px;
  height: 150px;
}
.category-list-container .category_lists .splide__slide a .item .cat-img img {
  width: 100%;
  height: auto;
}

.catalog-items.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
@media (max-width: 480px) {
  .catalog-items.products {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
  }
}
.catalog-items.products li {
  list-style-type: none;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 20px;
}
.catalog-items.products li .product_img img {
  max-width: 100%;
  margin: 0 auto;
}
.catalog-items.products li .product_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog-items.products li .product_info .info_header .product_sku {
  color: rgb(0, 0, 0);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 10px;
}
.catalog-items.products li .product_info .info_header .product_title h3 {
  font-size: 20px;
  font-weight: bold;
}
.catalog-items.products li .product_info .info_bottom .info_price {
  font-size: 20px;
  font-weight: 900;
  color: var(--main-color);
  margin-bottom: 10px;
  margin-top: 10px;
}
.catalog-items.products li .product_info .info_bottom .product_link a {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 300;
  font-size: 16px;
}

.woocommerce-pagination {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.woocommerce-pagination ul li {
  list-style-type: none;
}
.woocommerce-pagination ul li span,
.woocommerce-pagination ul li a {
  min-width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  font-size: 16px;
  background: #bfbfbf;
  align-items: center;
  justify-content: center;
  color: black;
}
.woocommerce-pagination ul li span.current {
  background-color: var(--main-color);
  color: white;
}

.product {
  margin: 40px 0;
  margin-bottom: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 40% 30%;
  grid-gap: 0%;
}
@media (max-width: 480px) {
  .product {
    grid-template-columns: repeat(1, 1fr);
  }
  .catalog-items.products li{
    padding:5px;
  }
  .catalog-items.products li .product_img img{
    width:90%;
    margin:0 auto;
    border-radius: 10px;
  }
  .info_header .product_title h2{
    font-size: 20px;
  }
  section.page-top .wrapper .container .title h1{
    font-size: 37px;
    margin-top: 30px;
  }
}
.product .onsale {
  display: none;
}
.product .woocommerce-product-gallery {
  opacity: 1 !important;
  margin-right: 40px;
}
@media (max-width: 480px) {
  .product .woocommerce-product-gallery {
    margin-right: 0;
  }
}
.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a img {
  width: 100%;
  border-radius: 14px;
}
.product .page-info-data {
  padding: 30px 40px;
  border-radius: 20px;
  background: white;
}
.product .page-info-data h1.product_title {
  font-size: 30px;
}
.product .page-info-data p.price {
  font-size: 22px;
  font-weight: bold;
  color: var(--main-color);
  margin: 10px 0 20px 0;
}
.product .page-info-data .product_meta span.sku_wrapper {
  display: block;
}
.product .page-info-data .whatsapp {
  margin-top: 30px;
}
.product .page-info-data .whatsapp a {
  width: 90%;
  height: 40px;
  background-color: #3ddf5a;
  color: black;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce-Tabs-panel h2 {
  font-size: 20px;
}
.woocommerce-Tabs-panel p {
  font-size: 18px;
}/*# sourceMappingURL=style.css.map */