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

body {
  font-family: var(--font-primary);
  color: var(--color-primary);
}

html {
  scroll-behavior: smooth;
}

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

li {
  list-style: none;
}

input::-moz-placeholder {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
  resize: none;
}

input,
input::placeholder,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
  resize: none;
}

a {
  text-decoration: none;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}
@media (max-width: 1200px) {
  .container {
    padding-inline: 20px;
  }
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.mt-lg, .product-left, .header-primary {
  margin-top: 130px;
}
@media (max-width: 1400px) {
  .mt-lg, .product-left, .header-primary {
    margin-top: 90px;
  }
}
@media (max-width: 1100px) {
  .mt-lg, .product-left, .header-primary {
    margin-top: 70px;
  }
}

.mb-lg {
  margin-bottom: 130px;
}
@media (max-width: 1400px) {
  .mb-lg {
    margin-bottom: 90px;
  }
}
@media (max-width: 1100px) {
  .mb-lg {
    margin-bottom: 70px;
  }
}

.mt-md {
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .mt-md {
    margin-top: 60px;
  }
}
@media (max-width: 800px) {
  .mt-md {
    margin-top: 40px;
  }
}

.mb-md {
  margin-bottom: 80px;
}
@media (max-width: 1300px) {
  .mb-md {
    margin-bottom: 60px;
  }
}
@media (max-width: 800px) {
  .mb-md {
    margin-bottom: 40px;
  }
}

.header-primary {
  border-bottom: 1px solid var(--color-secondary);
  margin-bottom: 112px;
}
@media (max-width: 1200px) {
  .header-primary {
    margin-bottom: 80px;
  }
}
@media (max-width: 900px) {
  .header-primary {
    margin-bottom: 60px;
  }
}
.header-primary h1 {
  color: var(--color-secondary);
}
.header-primary h3 {
  font-weight: 700;
  max-width: 650px;
}

.heading-underline {
  border-bottom: 1px solid rgb(191, 195, 199) !important;
  position: relative;
}
.heading-underline h3.heading-tertiary {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-bottom: 21px;
}
@media (max-width: 1000px) {
  .heading-underline h3.heading-tertiary {
    padding-bottom: 16px;
  }
}
.heading-underline h3.heading-tertiary::after {
  display: block;
  content: "";
  width: 100%;
  background-color: var(--color-secondary);
  height: 2px;
  position: absolute;
  bottom: -1px;
}

.accordion {
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.accordion:after {
  display: block;
  content: "";
  background-image: url(/assets/img/plus-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}

.active:after {
  background-image: url(/assets/img/minus-icon.png);
  height: 2px;
  transition: var(--transition);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the tab content */
.tabcontent {
  display: none;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.heading-primary, .products-section .product-footer h2 {
  font-size: 36px;
  line-height: normal;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .heading-primary, .products-section .product-footer h2 {
    font-size: 32px;
  }
}
@media (max-width: 1000px) {
  .heading-primary, .products-section .product-footer h2 {
    font-size: 28px;
  }
}
@media (max-width: 700px) {
  .heading-primary, .products-section .product-footer h2 {
    font-size: 26px;
  }
}

.heading-tertiary, .products-section .product-footer p {
  font-size: 22px;
  line-height: auto;
  font-weight: 600;
  color: var(--color-primary);
}
@media (max-width: 1000px) {
  .heading-tertiary, .products-section .product-footer p {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .heading-tertiary, .products-section .product-footer p {
    font-size: 18px;
  }
}

.text-primary, .slider-text-left p, .nav-link {
  font-size: 18px;
  line-height: 169%;
  font-feature-settings: "liga" off;
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width: 1400px) {
  .text-primary, .slider-text-left p, .nav-link {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 800px) {
  .text-primary, .slider-text-left p, .nav-link {
    font-size: 15px;
  }
}

:root {
  --color-primary: #213D75;
  --color-secondary: #E52225;
  --color-white: #FFFFFF;
  --bg-color-primary: rgba(228, 232, 236, 1);
  --text-color-primary: rgba(0, 0, 0, 0.6);
  --text-color-secondary: rgba(41, 41, 41, 1);
  --border-radius-sm: 2px;
  --border-radius-base: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 8px;
  --border-radius-xl: 10px;
  --border-radius-2xl: 12px;
  --transition: all 0.3s ease-in-out;
  --font-primary: "raleway", sans-serif;
}

.about-us-top h1 {
  color: var(--color-secondary);
  max-width: -moz-max-content;
  max-width: max-content;
}
.about-us-top-text {
  gap: 40px;
}
@media (max-width: 1100px) {
  .about-us-top-text {
    flex-direction: column;
    gap: 20px;
  }
}
.about-us-top-text h3 {
  max-width: 570px;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 169%;
}
.about-us-top-text p {
  max-width: 664px;
  width: 100%;
  line-height: 169%;
}
@media (max-width: 1000px) {
  .about-us-center {
    flex-direction: column;
  }
}
.about-us-center-text {
  background-color: var(--color-secondary);
  flex-basis: 50%;
  padding: 30px;
}
@media (max-width: 1000px) {
  .about-us-center-text {
    padding-block: 40px;
    padding-inline: 20px;
  }
}
.about-us-center-text h1 {
  max-width: 604px;
  font-size: 30px;
  color: var(--color-white);
}
@media (max-width: 700px) {
  .about-us-center-text h1 {
    font-size: 26px;
  }
}
.about-us-center-img {
  flex-basis: 50%;
}
.about-us-center-img img {
  width: 100%;
}
.about-us-bottom p {
  line-height: 169%;
}

.contact .heading-underline {
  margin-bottom: 54px;
}
@media (max-width: 1000px) {
  .contact .heading-underline {
    margin-bottom: 30px;
  }
}
.contact-info-detail {
  gap: 20px;
  row-gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .contact-info-detail {
    margin-bottom: 70px;
  }
}
@media (max-width: 800px) {
  .contact-info-detail {
    margin-bottom: 50px;
  }
}
.contact-info-detail > div {
  gap: 15px;
}
.contact-info-detail > div a {
  font-weight: 500;
}
.contact-info-detail > div:first-of-type {
  max-width: 345px;
}
.contact-form {
  font-family: "GT Eesti Display Trial Lt";
}
.contact-form form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  row-gap: 46px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 150px;
}
@media (max-width: 1200px) {
  .contact-form form {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    margin-bottom: 120px;
  }
}
@media (max-width: 1000px) {
  .contact-form form {
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    margin-bottom: 100px;
    gap: 36px;
  }
}
@media (max-width: 850px) {
  .contact-form form {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }
}
.contact-form input, .contact-form textarea {
  font-weight: 400;
  color: var(--text-color-secondary);
  border-bottom: 0.5px solid var(--text-color-secondary);
  width: 100%;
  padding-bottom: 12px;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--text-color-secondary);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--text-color-secondary);
  transition: var(--transition);
}
.contact-form input:focus::-moz-placeholder, .contact-form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.contact-form input:focus::placeholder, .contact-form textarea:focus::placeholder {
  opacity: 0;
}
.contact-form textarea, .contact-form button {
  grid-column: 1/3;
}
@media (max-width: 850px) {
  .contact-form textarea, .contact-form button {
    grid-column: auto;
  }
}
.contact-form textarea {
  height: 140px;
}
.contact-form button {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  margin-top: 10px;
}
.contact-map {
  width: 100%;
  height: 510px;
}
@media (max-width: 1300px) {
  .contact-map {
    height: 400px;
  }
}
@media (max-width: 900px) {
  .contact-map {
    height: 300px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.network-info {
  display: flex;
  flex-direction: column;
  gap: 67px;
}
@media (max-width: 1000px) {
  .network-info {
    gap: 50px;
  }
}
.network .panel h6 {
  font-weight: 500;
  max-width: 460px;
}
.network .panel .contact-info-detail {
  margin-top: 26px;
  margin-bottom: 0;
}
.network .panel .contact-info-detail div:first-of-type {
  max-width: 575px !important;
  width: 100%;
}
.network .accordion.active ~ .panel {
  margin-top: 26px;
}

.products .container {
  display: flex;
  gap: 69px;
}
@media (max-width: 1150px) {
  .products .container {
    flex-direction: column;
    gap: 40px;
  }
}
.products .container .tab {
  gap: 8px;
}

.product-left {
  max-width: 255px;
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 1150px) {
  .product-left {
    max-width: 100%;
    flex-direction: row;
    gap: 40px !important;
  }
}
@media (max-width: 850px) {
  .product-left {
    gap: 10px !important;
  }
}
@media (max-width: 750px) {
  .product-left {
    flex-direction: column;
    gap: 6 !important;
  }
}
.product-tab-btn {
  border-left: 1.5px solid transparent;
  cursor: pointer;
}
@media (max-width: 1150px) {
  .product-tab-btn {
    max-width: 260px;
  }
}
.product-tab-btn .heading-primary, .product-tab-btn .products-section .product-footer h2, .products-section .product-footer .product-tab-btn h2 {
  color: #BFC3C7;
  font-weight: 800;
  font-size: 30px;
  text-align: left;
  margin-left: 5px;
  transition: var(--transition);
}
.product-tab-btn .heading-primary span, .product-tab-btn .products-section .product-footer h2 span, .products-section .product-footer .product-tab-btn h2 span {
  font-weight: 600;
}
@media (max-width: 1150px) {
  .product-tab-btn .heading-primary, .product-tab-btn .products-section .product-footer h2, .products-section .product-footer .product-tab-btn h2 {
    font-size: 27px;
  }
}
@media (max-width: 850px) {
  .product-tab-btn .heading-primary, .product-tab-btn .products-section .product-footer h2, .products-section .product-footer .product-tab-btn h2 {
    font-size: 25px;
  }
}
.product-tab-btn.active {
  border-left-color: var(--color-secondary);
}
.product-tab-btn.active .heading-primary, .product-tab-btn.active .products-section .product-footer h2, .products-section .product-footer .product-tab-btn.active h2 {
  color: var(--color-secondary);
}
.product-right {
  width: 100%;
}
.product-img {
  background-color: #E4E8EC;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 570px;
  padding: 20px;
  overflow: hidden;
}
@media (max-width: 1350px) {
  .product-img {
    height: 450px;
  }
}
@media (max-width: 1200px) {
  .product-img {
    height: 400px;
  }
}
@media (max-width: 700px) {
  .product-img {
    height: 350px;
  }
}
.product-img img {
  filter: saturate(0);
  transition: var(--transition);
  mix-blend-mode: multiply;
  transition: all 1.2s ease-in-out;
}
.product-img:hover img {
  scale: 1.1;
  filter: saturate(1);
}
.product-min-height {
  min-height: 900px;
}
.product-content-text {
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.product-content-text h3 {
  font-weight: 700;
}
.product-content-text > p {
  font-weight: 500;
  line-height: 170%;
}
.product-content-text-cards {
  text-align: center;
  gap: 20px;
}
@media (max-width: 1400px) {
  .product-content-text-cards {
    flex-wrap: wrap;
  }
}
.product-content-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1400px) {
  .product-content-text-card {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 650px) {
  .product-content-text-card {
    max-width: 100%;
  }
}
.product-content-text-card-img {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-content-text-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 148%;
  text-align: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .nav .container {
    padding-block: 20px;
  }
}
@media (max-width: 1200px) {
  .nav-logo {
    width: 200px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 800px) {
  .nav-links {
    transform: translateX(-100%);
    pointer-events: none;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0%;
    top: 0;
    gap: 30px;
    height: 100vh;
    opacity: 0;
    width: 100%;
    transition: all 0.6s ease-in-out;
  }
  .nav-links.active {
    transform: translateX(0);
    pointer-events: visible;
    opacity: 1;
    z-index: 10;
  }
}
.nav-link {
  font-weight: 500;
  padding-block: 36px;
  position: relative;
}
@media (max-width: 800px) {
  .nav-link {
    padding-block: 6px;
  }
}
.nav-link::after {
  display: block;
  content: "";
  background-color: transparent;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}
.nav-link.active::after {
  background-color: var(--color-secondary);
}
.nav-link:hover::after {
  background-color: var(--color-secondary);
}
.nav-bars {
  display: none;
}
@media (max-width: 800px) {
  .nav-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 10;
  }
  .nav-bars.active .bar-1 {
    transform: translate(0, 8px) rotate(-45deg);
  }
  .nav-bars.active .bar-2 {
    opacity: 0;
  }
  .nav-bars.active .bar-3 {
    transform: translate(0, -7px) rotate(45deg);
  }
  .nav-bars .bar-1, .nav-bars .bar-2, .nav-bars .bar-3 {
    background-color: var(--color-primary);
    width: 26px;
    height: 1.5px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }
}

select {
  font-size: 13px;
  font-weight: normal;
  font-family: "Instrument Sans", sans-serif;
  color: var(--color-primary);
}

.btn-primary {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
}
.btn-primary::after {
  display: block;
  content: "";
  background-image: url(/assets/img/btn-plus-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 14px;
  width: 14px;
  transition: var(--transition);
}
.btn-primary:hover::after {
  background-image: url(/assets/img/btn-arrow.svg);
}

.btn-secondary, .products-section .product-header-count {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.btn-secondary::before, .products-section .product-header-count::before {
  display: block;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline y1='10' x2='20' y2='10' stroke='%23E52225' stroke-width='2'/%3E%3Cline x1='10' y1='20' x2='10' y2='-4.37114e-08' stroke='%23E52225' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  transition: var(--transition);
}
.btn-secondary:hover::before, .products-section .product-header-count:hover::before {
  height: 20px;
  width: 42px;
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='16' viewBox='0 0 43 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.292893 7.29289C-0.0976311 7.68342 -0.0976311 8.31658 0.292893 8.70711L6.65685 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41421 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928933C7.68054 0.538408 7.04738 0.538408 6.65685 0.928933L0.292893 7.29289ZM1 9L43 9L43 7L1 7L1 9Z' fill='%23E52225'/%3E%3C/svg%3E%0A");
}

.footer {
  background-color: var(--color-primary);
}
.footer .text-primary, .footer .slider-text-left p, .slider-text-left .footer p, .footer .nav-link {
  color: var(--color-white);
  font-weight: 500;
}
.footer a {
  transition: var(--transition);
}
.footer a:hover {
  color: var(--color-secondary);
}
@media (max-width: 1000px) {
  .footer-logo {
    max-width: 180px;
  }
}
.footer-top {
  padding-block: 35px;
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 800px) {
  .footer-top .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
.footer-top-links {
  max-width: 530px;
  width: 100%;
}
@media (max-width: 1000px) {
  .footer-top-links {
    max-width: 450px;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.footer-bottom {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (max-width: 700px) {
  .footer-bottom-links {
    flex-direction: column-reverse;
    gap: 35px;
  }
}
.footer-bottom-footer {
  margin-top: 35px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-footer .text-primary, .footer-bottom-footer .slider-text-left p, .slider-text-left .footer-bottom-footer p, .footer-bottom-footer .nav-link {
  font-size: 16px;
}
@media (max-width: 700px) {
  .footer-bottom-footer {
    flex-direction: column;
  }
}
.footer-bottom-footer-links {
  max-width: 570px;
  width: 100%;
}
@media (max-width: 1200px) {
  .footer-bottom-footer-links {
    max-width: 540px;
  }
}
@media (max-width: 700px) {
  .footer-bottom-footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-bottom-footer-links span {
  width: 1px;
  background-color: var(--color-white);
}
.footer-social-links {
  gap: 23px;
}
@media (max-width: 700px) {
  .footer-social-links {
    gap: 15px;
  }
}
.footer-social-links div {
  gap: 17px;
}
.footer-social-links a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-info-links {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 15px;
}
@media (max-width: 700px) {
  .footer-info-links {
    text-align: left;
  }
}

.hero-section {
  min-height: calc(100vh - 102px);
  background: #E4E8EC;
  display: flex;
  align-items: end;
  position: relative;
}
@media (max-width: 1100px) {
  .hero-section {
    padding-block: 60px;
    padding-bottom: 0px;
    min-height: calc(100vh - 96px);
  }
}
@media (max-width: 900px) {
  .hero-section {
    padding-block: 60px;
    padding-bottom: 0px;
    min-height: calc(100vh - 68px);
  }
}
@media (max-width: 780px) {
  .hero-section {
    background-size: cover 100%;
  }
}
.hero-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-section-bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/hero-section-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 102px);
  animation: scaleToOriginal 1.2s ease-in-out;
}
.hero-product {
  background: #E4E8EC;
  padding: 35px 40px;
}

@keyframes scaleToOriginal {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.slider {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 770px) {
  .slider {
    display: grid;
    grid-template-columns: 1fr 0.1fr;
  }
}
.slider-left {
  background-color: var(--color-secondary);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 62px;
  padding-left: 15.5vw;
  padding-right: 8vw;
  display: flex;
  justify-content: space-between;
  max-width: 72%;
  width: 100%;
  flex-shrink: 1;
}
@media (max-width: 1630px) {
  .slider-left {
    padding-left: 10vw;
    padding-right: 5vw;
  }
}
@media (max-width: 1400px) {
  .slider-left {
    padding: 60px;
  }
}
@media (max-width: 1250px) {
  .slider-left {
    padding: 40px 30px;
  }
}
@media (max-width: 1100px) {
  .slider-left {
    max-width: 100%;
    padding: 40px 20px;
  }
}
@media (max-width: 770px) {
  .slider-left {
    grid-column: 1/-1;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.slider-left h5 {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  max-width: 400px;
  margin-top: 30px;
  line-height: 169%;
}
@media (max-width: 900px) {
  .slider-left h5 {
    max-width: 300px;
  }
}
@media (max-width: 900px) {
  .slider-left h5 {
    max-width: 100%;
  }
}
.slider-text-left {
  max-width: 350px;
}
.slider-text-left h6 {
  font-size: 14px;
  color: var(--color-primary);
}
.slider-text-left p {
  color: var(--color-white);
  margin-top: 14px;
}
.slider-right {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 770px) {
  .slider-right {
    grid-column: 1/-1;
    grid-row: 1/1;
    justify-content: space-between;
  }
}
.slider-right a {
  animation: bounce 2s infinite;
  padding-inline: 5.2vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-grow: 1;
}
@media (max-width: 1100px) {
  .slider-right a {
    padding: 20px 30px;
  }
}
@media (max-width: 770px) {
  .slider-right a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.slider-text-right {
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: var(--color-white);
  flex-grow: 1;
}
@media (max-width: 1900px) {
  .slider-text-right {
    padding-inline: 40px;
  }
}
@media (max-width: 1400px) {
  .slider-text-right {
    padding: 40px 30px;
  }
}
.slider-text-right p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-10%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.your-partner-section .container h1 {
  color: var(--color-secondary);
  font-weight: 800;
  max-width: 670px;
}
.your-partner-section .container > div {
  margin-block: 40px;
}
@media (max-width: 1100px) {
  .your-partner-section .container > div {
    flex-direction: column;
    margin-block: 30px;
  }
}
.your-partner-section .container > div p {
  flex-basis: 48%;
}
.your-partner-section .container a {
  margin-left: auto;
}
.your-partner-section-img {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}
.your-partner-section-img img {
  width: 100%;
  filter: saturate(0);
  transition: all 1.2s ease-in-out;
}
.your-partner-section-img div {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-primary);
  opacity: 0.47;
  width: 100%;
  height: 100%;
}
.your-partner-section-img:hover img {
  filter: saturate(0.5);
  scale: 1.1;
}

@media (max-width: 1100px) {
  .about-product-content > div {
    flex-direction: column;
    gap: 30px;
  }
}
.about-product-content h2 {
  font-size: 28px;
  color: var(--color-secondary);
  max-width: 650px;
  width: 100%;
  font-weight: 700;
  text-transform: none;
}
.about-product-content p {
  max-width: 580px;
}
@media (max-width: 1100px) {
  .about-product-content p {
    margin-bottom: 20px;
  }
}
.about-product-content a {
  margin-left: auto;
}

.products-section {
  display: flex;
  width: 100%;
}
@media (max-width: 780px) {
  .products-section {
    flex-direction: column;
  }
}
.products-section .product {
  background: #e4e8ec;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 200px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .products-section .product {
    padding: 35px 20px;
    gap: 100px;
    border: 1px solid #d3d3d3;
  }
}
.products-section .product-header {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.products-section .product-header-count {
  font-size: 36px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .products-section .product-header-count {
    font-size: 22px;
  }
}
.products-section .product-body img {
  transform: translateX(40%);
  filter: saturate(0);
  transition: all 1.2s ease-in-out;
  mix-blend-mode: multiply;
}
.products-section .product-body img.active, .products-section .product-body img:hover {
  filter: saturate(1);
}
.products-section .product-footer h2 {
  text-align: center;
  color: var(--color-secondary) !important;
  background: #e4e8ec;
  transform: translateY(100%);
  transform-origin: center;
  z-index: 2;
  position: relative;
  transition: all 1.2s ease-in-out;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .products-section .product-footer h2 {
    font-size: 22px;
  }
}
.products-section .product-footer p {
  text-align: center;
  color: var(--color-primary);
  opacity: 0;
  transition: all 1.2s ease-in-out;
}
@media (max-width: 900px) {
  .products-section .product-footer p {
    font-size: 16px;
  }
}
.products-section .product:hover .product-body img {
  transform: translateX(0);
  filter: saturate(1);
}
.products-section .product:hover .product-footer h2 {
  transform: translateY(0);
  background: transparent;
}
.products-section .product:hover .product-footer p {
  opacity: 1;
}
.products-section .product:hover .product-header-count::before {
  height: 20px;
  width: 42px;
  background-image: url("data:image/svg+xml,%3Csvg width='43' height='16' viewBox='0 0 43 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.292893 7.29289C-0.0976311 7.68342 -0.0976311 8.31658 0.292893 8.70711L6.65685 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41421 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928933C7.68054 0.538408 7.04738 0.538408 6.65685 0.928933L0.292893 7.29289ZM1 9L43 9L43 7L1 7L1 9Z' fill='%23E52225'/%3E%3C/svg%3E%0A");
}/*# sourceMappingURL=main.css.map */