@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body, main {
  overflow-x: hidden !important;
  font-family: "Lexend", sans-serif;
}

ul {
  list-style: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  outline: none !important;
}

.wrapper {
  width: calc(100% - 60px);
  margin: auto;
}

.main-title {
  font-size: 50px;
  font-weight: 400;
  color: #1C3557;
  text-align: center;
  max-width: 961px;
  margin: 0 auto 75px;
  line-height: 1;
}
@media (max-width: 600px) {
  .main-title {
    font-size: 26px;
    margin-bottom: 50px;
  }
}
.main-title strong {
  font-weight: 800;
  color: #DC6129;
}

.slick-next {
  background-image: url(../img/next-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2AACC9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  border: none;
  transition: all 0.2s;
}
.slick-next:hover {
  background-color: #DC6129;
  transform: scale(1.15);
}

.slick-prev {
  background-image: url(../img/prev-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2AACC9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0;
  border: none;
  transition: all 0.2s;
}
.slick-prev:hover {
  background-color: #DC6129;
  transform: scale(1.15);
}

.plus {
  display: block;
  width: 37px;
  height: 37px;
  background-image: url(../img/plus-icon.svg);
  background-position: center center;
  background-color: #2AACC9;
  background-repeat: no-repeat;
  transition: all 0.2s;
  flex-shrink: 0;
  border-radius: 50%;
}
.plus:hover {
  background-color: #DC6129;
  transform: scale(1.15);
}

.skew-content {
  display: flex;
  margin-bottom: 88px;
}
@media (max-width: 600px) {
  .skew-content {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.skew-content .text {
  position: relative;
  width: 444px;
  height: 552px;
  background: #2AACC9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s;
  flex-shrink: 0;
  z-index: 1;
}
@media (max-width: 600px) {
  .skew-content .text {
    height: auto;
    width: 100%;
  }
}
.skew-content .text:hover {
  background: #DC6129;
}
.skew-content .text h2 {
  font-size: 50px;
  font-weight: 300;
  color: white;
  line-height: 1;
}
@media (max-width: 600px) {
  .skew-content .text h2 {
    margin-bottom: 50px;
    font-size: 26px;
  }
}
.skew-content .text h2 strong {
  font-weight: 900;
}
.skew-content .text .has-arrows {
  font-size: 25px;
  font-weight: 200;
  color: white;
  display: flex;
  align-self: flex-end;
  align-items: center;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .skew-content .text .has-arrows {
    font-size: 18px;
  }
}
.skew-content .text .has-arrows:hover {
  font-weight: 600;
}
.skew-content .text .has-arrows:hover::after {
  transform: translateX(5px);
}
.skew-content .text .has-arrows::after {
  content: "";
  background: url(../img/double-arrow.svg) no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transition: transform 0.2s;
}
.skew-content .text .has-bubble {
  font-size: 25px;
  font-weight: 200;
  color: white;
  display: flex;
  align-self: flex-end;
  align-items: center;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .skew-content .text .has-bubble {
    font-size: 18px;
  }
}
.skew-content .text .has-bubble:hover {
  font-weight: 600;
}
.skew-content .text .has-bubble:hover::after {
  transform: translateX(5px);
}
.skew-content .text .has-bubble::after {
  content: "";
  background: url(../img/bubble-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transition: transform 0.2s;
}
.skew-content .image {
  max-width: 837px;
  width: 100%;
  height: 538px;
}
@media (max-width: 600px) {
  .skew-content .image {
    height: 300px;
  }
}
.skew-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.skew-content.right {
  justify-content: flex-end;
  margin-left: 30px;
}
@media (max-width: 600px) {
  .skew-content.right {
    margin-left: 0;
  }
}
.skew-content.right .text {
  margin: 37px -54px 0 0;
}
@media (max-width: 600px) {
  .skew-content.right .text {
    margin: 0;
  }
}
.skew-content.left {
  margin-right: 30px;
}
@media (max-width: 600px) {
  .skew-content.left {
    margin-right: 0;
  }
}
.skew-content.left .text {
  margin: 61px 0 0 -65px;
}
@media (max-width: 600px) {
  .skew-content.left .text {
    margin: 0;
  }
}

.btn-wsp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 3;
}
@media (max-width: 600px) {
  .btn-wsp {
    right: 15px;
    bottom: 15px;
  }
}

header {
  position: absolute;
  width: 100%;
  background: white;
  z-index: 2;
  top: 0;
  left: 0;
}
header.fixed {
  position: fixed;
  animation: slideDownHeader 0.3s ease forwards;
}
header .top {
  height: 37px;
  width: 100%;
  background: #DC6129;
}
@media (max-width: 600px) {
  header .top {
    height: 30px;
  }
}
header .top .wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
header .top .wrapper .rrss {
  display: flex;
  height: 18px;
}
header .top .wrapper .rrss li {
  margin-left: 13px;
}
header .bottom {
  height: 81px;
}
@media (max-width: 990px) {
  header .bottom {
    height: auto;
  }
}
header .bottom .wrapper {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  header .bottom .wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 990px) {
  header .bottom .wrapper .logo {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  header .bottom .wrapper .logo {
    width: 170px;
    margin: 15px 0;
  }
}
header .bottom .wrapper .logo a {
  font-size: 0;
}
@media (max-width: 600px) {
  header .bottom .wrapper .logo a img {
    width: 100%;
  }
}
@media (max-width: 990px) {
  header .bottom .wrapper .navigation {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
  }
}
@media (max-width: 990px) {
  header .bottom .wrapper .navigation.open {
    max-height: 1000px;
    transition: max-height 0.7s;
  }
}
header .bottom .wrapper .navigation ul {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  header .bottom .wrapper .navigation ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
header .bottom .wrapper .navigation ul li {
  margin-right: 30px;
}
@media (max-width: 990px) {
  header .bottom .wrapper .navigation ul li {
    margin: 15px 0;
  }
}
@media (max-width: 600px) {
  header .bottom .wrapper .navigation ul li {
    margin: 10px 0;
  }
}
header .bottom .wrapper .navigation ul li:last-child {
  margin-right: 0;
}
header .bottom .wrapper .navigation ul li:last-child a {
  background: #DC6129;
  padding: 8px 25px;
  color: white !important;
  display: block;
}
header .bottom .wrapper .navigation ul li:last-child a:hover {
  font-weight: 500;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
header .bottom .wrapper .navigation ul li a {
  font-size: 20px;
  font-weight: 300;
  color: #1C3557;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  header .bottom .wrapper .navigation ul li a {
    font-size: 17px;
  }
}
header .bottom .wrapper .navigation ul li a:hover {
  color: #DC6129;
}
header .bottom .wrapper .hamburger {
  display: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-transform: none;
  background: transparent;
  border: 0;
  margin: 8px 0 0;
  overflow: visible;
  transition: opacity 0.15s linear, filter 0.15s linear;
}
@media (max-width: 990px) {
  header .bottom .wrapper .hamburger {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  header .bottom .wrapper .hamburger {
    transform: scale(0.7);
    margin-right: -7px;
  }
}
header .bottom .wrapper .hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
header .bottom .wrapper .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
header .bottom .wrapper .hamburger-inner, header .bottom .wrapper .hamburger-inner::before, header .bottom .wrapper .hamburger-inner::after {
  width: 40px;
  height: 3px;
  background: #1C3557;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}
header .bottom .wrapper .hamburger-inner::before, header .bottom .wrapper .hamburger-inner::after {
  content: "";
  display: block;
}
header .bottom .wrapper .hamburger-inner::before {
  top: -10px;
}
header .bottom .wrapper .hamburger-inner::after {
  bottom: -10px;
}
header .bottom .wrapper .hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header .bottom .wrapper .hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
header .bottom .wrapper .hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
header .bottom .wrapper .hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .bottom .wrapper .hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
header .bottom .wrapper .hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes slideDownHeader {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
footer {
  width: 100%;
  padding: 40px 0;
  background: #1C3557;
  display: flex;
  align-items: center;
}
footer .wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 990px) {
  footer .wrapper {
    flex-wrap: wrap;
  }
}
footer .wrapper .logo-white {
  margin-right: 25px;
  align-self: center;
}
@media (max-width: 990px) {
  footer .wrapper .logo-white {
    width: 50%;
    margin: 0 0 30px;
  }
}
@media (max-width: 768px) {
  footer .wrapper .logo-white {
    width: 35%;
  }
}
@media (max-width: 600px) {
  footer .wrapper .logo-white {
    width: 150px;
  }
}
footer .wrapper .logo-white a {
  display: block;
  font-size: 0;
}
@media (max-width: 990px) {
  footer .wrapper .logo-white a {
    max-width: 209px;
  }
}
footer .wrapper .logo-white a img {
  width: 100%;
}
footer .wrapper .navigation-footer {
  margin-right: 25px;
}
@media (max-width: 990px) {
  footer .wrapper .navigation-footer {
    margin: 0;
    height: 30px;
  }
}
@media (max-width: 600px) {
  footer .wrapper .navigation-footer {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
footer .wrapper .navigation-footer ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 990px) {
  footer .wrapper .navigation-footer ul {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 990px) {
  footer .wrapper .navigation-footer ul li {
    margin-right: 25px;
  }
}
@media (max-width: 600px) {
  footer .wrapper .navigation-footer ul li {
    margin: 0;
  }
}
@media (max-width: 990px) {
  footer .wrapper .navigation-footer ul li:last-child {
    margin-right: 0;
  }
}
footer .wrapper .navigation-footer ul li a {
  font: 15px "Montserrat", sans-serif;
  color: white;
}
footer .wrapper .navigation-footer ul li a:hover {
  text-decoration: underline;
}
footer .wrapper .location {
  margin-right: 20px;
  width: 25%;
}
@media (max-width: 990px) {
  footer .wrapper .location {
    margin: 0;
    width: 20%;
  }
}
@media (max-width: 600px) {
  footer .wrapper .location {
    width: 100%;
    margin-bottom: 25px;
  }
}
footer .wrapper .location:last-child {
  margin-right: 0;
}
@media (max-width: 600px) {
  footer .wrapper .location:last-child {
    margin: 0;
  }
}
footer .wrapper .location h4 {
  font: 800 12px "Inter", sans-serif;
  color: white;
  margin-bottom: 6px;
}
footer .wrapper .location ul li {
  margin-bottom: 6px;
}
footer .wrapper .location ul li:last-child {
  margin-bottom: 0;
}
footer .wrapper .location ul li:last-child a {
  align-items: flex-start;
}
footer .wrapper .location ul li a {
  font: 11px "Inter", sans-serif;
  color: white;
  display: flex;
  align-items: center;
}
footer .wrapper .location ul li a:hover {
  text-decoration: underline;
}
footer .wrapper .location ul li a i {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  text-align: center;
}

.banner-home {
  position: relative;
  width: 100%;
  height: 100vh;
}
.banner-home video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-home .text {
  position: absolute;
  top: 118px;
  bottom: 0;
  margin: auto;
  left: 30px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 600px) {
  .banner-home .text {
    top: 87px;
    margin-right: 30px;
  }
}
.banner-home .text h2 {
  font-size: 50px;
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .banner-home .text h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}
.banner-home .text h2 strong {
  font-weight: 800;
}
.banner-home .text a {
  background: #DC6129;
  padding: 8px 25px;
  color: white !important;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .banner-home .text a {
    font-size: 17px;
  }
}
.banner-home .text a:hover {
  font-weight: 500;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.intro-home {
  display: flex;
  height: 634px;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .intro-home {
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }
}
.intro-home .image {
  width: 50%;
  height: 100%;
}
@media (max-width: 600px) {
  .intro-home .image {
    width: 100%;
    height: 350px;
  }
}
.intro-home .image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-home .text {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 30px 30px 99px;
}
@media (max-width: 600px) {
  .intro-home .text {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
}
.intro-home .text p {
  max-width: 313px;
  color: #1C3557;
  font-size: 25px;
  font-weight: 300;
}
@media (max-width: 600px) {
  .intro-home .text p {
    max-width: unset;
    padding: 0 30px;
    font-size: 15px;
    order: 2;
  }
}
.intro-home .text .mini-cards {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  left: -69px;
}
@media (max-width: 600px) {
  .intro-home .text .mini-cards {
    position: unset;
    display: flex;
    left: 0;
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }
}
.intro-home .text .mini-cards .mini-card {
  background: #2AACC9;
  width: 138px;
  height: 167px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .intro-home .text .mini-cards .mini-card {
    margin-bottom: 0;
    width: 33.3%;
  }
}
.intro-home .text .mini-cards .mini-card:last-child {
  margin-bottom: 0;
}
.intro-home .text .mini-cards .mini-card img {
  margin-bottom: 12px;
}
.intro-home .text .mini-cards .mini-card span {
  font: 16px "Inter", sans-serif;
  color: white;
  text-align: center;
}

.intro-values-home {
  display: flex;
  gap: 8px;
  height: 590px;
  margin-bottom: 88px;
}
@media (max-width: 600px) {
  .intro-values-home {
    flex-direction: column;
    height: auto;
    margin-bottom: 50px;
  }
}
.intro-values-home .value {
  flex: 1;
  position: relative;
  height: 100%;
}
@media (max-width: 600px) {
  .intro-values-home .value {
    height: 300px;
  }
}
.intro-values-home .value:hover .overlay {
  opacity: 1;
}
.intro-values-home .value:hover .overlay h3 {
  transform: translateY(0);
}
.intro-values-home .value img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .intro-values-home .value img {
    max-height: 300px;
  }
}
.intro-values-home .value .overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(28, 53, 87, 0) 0%, rgba(28, 53, 87, 0.7) 100%);
  transition: opacity 0.3s;
}
.intro-values-home .value .overlay h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: white;
  max-width: 222px;
  transform: translateY(30px);
  transition: transform 0.3s;
}
.intro-values-home .value .overlay h3 strong {
  color: #2AACC9;
  font-weight: 700;
}

.brands-home {
  margin-bottom: 178px;
}
@media (max-width: 600px) {
  .brands-home {
    margin-bottom: 130px;
  }
}
.brands-home .slider {
  margin-bottom: 75px;
}
.brands-home .slider .slick-slide {
  margin: 0 20px;
  max-height: 65px;
}
.brands-home .slider .slick-slide img {
  width: auto;
  height: 65px;
}
.brands-home .slider .slick-next {
  position: absolute;
  bottom: -115px;
  margin: auto;
  left: 61px;
  right: 0;
}
@media (max-width: 600px) {
  .brands-home .slider .slick-next {
    bottom: -80px;
  }
}
.brands-home .slider .slick-prev {
  position: absolute;
  bottom: -115px;
  margin: auto;
  left: 0;
  right: 61px;
}
@media (max-width: 600px) {
  .brands-home .slider .slick-prev {
    bottom: -80px;
  }
}

.clients-home {
  margin-bottom: 88px;
}
@media (max-width: 600px) {
  .clients-home {
    margin-bottom: 30px;
  }
}
.clients-home .wrapper .clients {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .clients-home .wrapper .clients {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .clients-home .wrapper .clients {
    justify-content: flex-start;
  }
}
.clients-home .wrapper .clients div {
  width: 12.5%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .clients-home .wrapper .clients div {
    width: 25%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .clients-home .wrapper .clients div {
    width: 33.3%;
  }
}
@media (max-width: 600px) {
  .clients-home .wrapper .clients div {
    width: 50%;
  }
}
.clients-home .wrapper .clients div img {
  height: 100%;
}

.banner-about-us {
  position: relative;
  width: 100%;
  height: calc(100vh - 118px);
  margin-top: 118px;
  margin-bottom: 52px;
}
@media (max-width: 600px) {
  .banner-about-us {
    margin: 87px 0 50px;
    height: calc(100vh - 87px);
  }
}
.banner-about-us .bg {
  width: 100%;
  height: 100%;
}
.banner-about-us .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.banner-about-us .text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 30px;
  right: 30px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 820px;
  text-align: center;
}
.banner-about-us .text h2 p {
  font-size: 50px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .banner-about-us .text h2 p {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.banner-about-us .text h2 p strong {
  font-weight: 800;
}
.banner-about-us .text h2 p span {
  color: #DC6129;
}
.banner-about-us .text p {
  font-size: 25px;
  font-weight: 300;
  color: white;
}
@media (max-width: 600px) {
  .banner-about-us .text p {
    font-size: 16px;
  }
}

.history-about-us {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 52px;
}
@media (max-width: 600px) {
  .history-about-us {
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.history-about-us .text {
  width: 752px;
  height: -moz-fit-content;
  height: fit-content;
  background: #2AACC9;
  margin: -31px 0 0 -31px;
  padding: 90px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .history-about-us .text {
    padding: 60px 80px;
  }
}
@media (max-width: 600px) {
  .history-about-us .text {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 30px;
  }
}
.history-about-us .text:hover {
  background: #2AACC9;
}
.history-about-us .text h2 {
  font-size: 50px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .history-about-us .text h2 {
    font-size: 26px;
  }
}
.history-about-us .text p {
  font-size: 20px;
  font-weight: 300;
  color: white;
}
@media (max-width: 600px) {
  .history-about-us .text p {
    font-size: 15px;
  }
}
.history-about-us .image {
  position: relative;
  max-width: 528px;
  width: 100%;
  height: 564px;
  z-index: 1;
}
@media (max-width: 600px) {
  .history-about-us .image {
    height: 300px;
  }
}
.history-about-us .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mision-vision-about-us {
  display: flex;
  margin: 0 auto 83px;
  justify-content: center;
  gap: 25px;
}
@media (max-width: 600px) {
  .mision-vision-about-us {
    flex-direction: column;
    margin-bottom: 50px;
    gap: 50px;
  }
}
.mision-vision-about-us .mision {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mision-vision-about-us .mision a {
  width: 150px;
  height: 45px;
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2AACC9;
  border-radius: 5px;
  z-index: 1;
  transition: all 0.2s;
}
.mision-vision-about-us .mision a::before {
  content: "Misión";
  font-size: 25px;
  font-weight: 900;
  color: white;
  margin-right: 5px;
}
.mision-vision-about-us .mision a::after {
  content: "";
  background: url(../img/double-arrow.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.mision-vision-about-us .mision a:hover {
  background: #DC6129;
}
.mision-vision-about-us .mision a:hover::before {
  content: "Ver";
}
.mision-vision-about-us .mision.active a {
  background: #DC6129;
}
.mision-vision-about-us .mision.active a::before {
  content: "Misión";
}
.mision-vision-about-us .mision.active a::after {
  background: url(../img/double-arrow-back.svg) no-repeat;
}
.mision-vision-about-us .mision.active a:hover::before {
  content: "Ocultar";
}
.mision-vision-about-us .mision.active .frame {
  left: 0;
}
.mision-vision-about-us .mision .image {
  width: 100%;
  height: 370px;
}
@media (max-width: 600px) {
  .mision-vision-about-us .mision .image {
    height: 300px;
  }
}
.mision-vision-about-us .mision .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mision-vision-about-us .mision .frame {
  background: #2AACC9;
  opacity: 0.5;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  opacity: 0.9;
  transition: all 0.3s;
  padding: 15px;
}
@media (max-width: 768px) {
  .mision-vision-about-us .mision .frame {
    left: -100%;
    width: 100%;
  }
}
.mision-vision-about-us .mision .frame p {
  font-size: 15px;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  margin-top: 90px;
}
.mision-vision-about-us .vision {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mision-vision-about-us .vision a {
  width: 150px;
  height: 45px;
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2AACC9;
  border-radius: 5px;
  z-index: 1;
  transition: all 0.2s;
}
.mision-vision-about-us .vision a::before {
  content: "Visión";
  font-size: 25px;
  font-weight: 900;
  color: white;
  margin-right: 5px;
}
.mision-vision-about-us .vision a::after {
  content: "";
  background: url(../img/double-arrow.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.mision-vision-about-us .vision a:hover {
  background: #DC6129;
}
.mision-vision-about-us .vision a:hover::before {
  content: "Ver";
}
.mision-vision-about-us .vision.active a {
  background: #DC6129;
}
.mision-vision-about-us .vision.active a::before {
  content: "Visión";
}
.mision-vision-about-us .vision.active a::after {
  background: url(../img/double-arrow-back.svg) no-repeat;
}
.mision-vision-about-us .vision.active a:hover::before {
  content: "Ocultar";
}
.mision-vision-about-us .vision.active .frame {
  left: 0;
}
.mision-vision-about-us .vision .image {
  width: 100%;
  height: 370px;
}
@media (max-width: 600px) {
  .mision-vision-about-us .vision .image {
    height: 300px;
  }
}
.mision-vision-about-us .vision .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mision-vision-about-us .vision .frame {
  background: #2AACC9;
  opacity: 0.5;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  opacity: 0.9;
  transition: all 0.3s;
  padding: 15px;
}
@media (max-width: 768px) {
  .mision-vision-about-us .vision .frame {
    left: -100%;
    width: 100%;
  }
}
.mision-vision-about-us .vision .frame p {
  font-size: 15px;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  margin-top: 90px;
}

.values-about-us {
  margin-bottom: 83px;
}
@media (max-width: 600px) {
  .values-about-us {
    margin-bottom: 50px;
  }
}
.values-about-us .wrapper .values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.values-about-us .wrapper .values .value {
  background: #2AACC9;
  width: 175px;
  height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s;
}
.values-about-us .wrapper .values .value .icon {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.values-about-us .wrapper .values .value h4 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.values-about-us .wrapper .values .value p {
  font-size: 16px;
  font-weight: 300;
  color: white;
  text-align: center;
  line-height: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 10px;
  transform: translateY(10px);
  transition: all 0.3s;
}
.values-about-us .wrapper .values .value:hover {
  background: #DC6129;
  transform: scale(1.05);
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}
.values-about-us .wrapper .values .value:hover p {
  max-height: 1000px;
  overflow: unset;
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

.clients-about-us {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .clients-about-us {
    margin-bottom: 50px;
  }
}
.clients-about-us .wrapper .clients {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 25px;
}
.clients-about-us .wrapper .clients div {
  width: 130px;
  height: 65px;
  text-align: center;
}
.clients-about-us .wrapper .clients div img {
  height: 100%;
}

.location-about-us {
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .location-about-us {
    margin-bottom: 50px;
  }
}
.location-about-us .wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .location-about-us .wrapper {
    flex-direction: column;
  }
}
.location-about-us .wrapper .text {
  max-width: 484px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .location-about-us .wrapper .text {
    max-width: unset;
    margin-bottom: 40px;
  }
}
.location-about-us .wrapper .text h2 {
  font-size: 50px;
  font-weight: 400;
  color: #1C3557;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .location-about-us .wrapper .text h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .location-about-us .wrapper .text h2 br {
    display: none;
  }
}
@media (max-width: 600px) {
  .location-about-us .wrapper .text h2 {
    font-size: 26px;
  }
}
.location-about-us .wrapper .text h2 strong {
  font-weight: 700;
  color: #DC6129;
}
.location-about-us .wrapper .text p {
  font-size: 20px;
  font-weight: 300;
  color: #1C3557;
}
@media (max-width: 600px) {
  .location-about-us .wrapper .text p {
    font-size: 15px;
  }
}
.location-about-us .wrapper .map {
  position: relative;
}
@media (max-width: 768px) {
  .location-about-us .wrapper .map {
    margin: auto;
  }
}
.location-about-us .wrapper .map img {
  width: 100%;
}
.location-about-us .wrapper .map .spot1,
.location-about-us .wrapper .map .spot2,
.location-about-us .wrapper .map .spot3 {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  width: 11px;
  height: 11px;
}
.location-about-us .wrapper .map .spot1:before,
.location-about-us .wrapper .map .spot2:before,
.location-about-us .wrapper .map .spot3:before {
  content: "";
  position: relative;
  display: block;
  width: 500%;
  height: 500%;
  box-sizing: border-box;
  margin-left: -164%;
  margin-top: -164%;
  border-radius: 45px;
  background-color: white;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.location-about-us .wrapper .map .spot1:after,
.location-about-us .wrapper .map .spot2:after,
.location-about-us .wrapper .map .spot3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #DC6129;
  border-radius: 15px;
  border: 4px solid white;
}
.location-about-us .wrapper .map .spot1 {
  top: 30%;
  left: 53%;
}
.location-about-us .wrapper .map .spot2 {
  top: 62%;
  left: 60%;
}
.location-about-us .wrapper .map .spot3 {
  top: 82%;
  left: 62%;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
  }
  80%, 100% {
    opacity: 0;
  }
}

.banner-representations {
  position: relative;
  width: 100%;
  height: 382px;
  margin-top: 118px;
  margin-bottom: 100px;
}
@media (max-width: 600px) {
  .banner-representations {
    margin: 87px 0 50px;
    height: 300px;
  }
}
.banner-representations .bg {
  width: 100%;
  height: 100%;
}
.banner-representations .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 600px) {
  .banner-representations .bg img {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.banner-representations .text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 30px;
  right: 30px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 795px;
  text-align: center;
}
.banner-representations .text h2 {
  font-size: 50px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .banner-representations .text h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.banner-representations .text h2 strong {
  font-weight: 700;
  color: #DC6129;
}
.banner-representations .text p {
  font-size: 20px;
  font-weight: 300;
  color: white;
}
@media (max-width: 600px) {
  .banner-representations .text p {
    font-size: 16px;
  }
}
.banner-representations .brands-tabs-representations {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: -37.5px;
}
.banner-representations .brands-tabs-representations .brand {
  background: white;
  border-radius: 5px;
  width: 220px;
  height: 75px;
  margin: 0 5px;
}
.banner-representations .brands-tabs-representations .brand img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.brands-representations {
  margin-bottom: 185px;
}
@media (max-width: 600px) {
  .brands-representations {
    margin-bottom: 50px;
  }
}
.brands-representations .row {
  display: flex;
  width: calc(100% - 60px);
  max-width: 1050px;
  margin: 0 auto 155px;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 600px) {
  .brands-representations .row {
    flex-direction: column;
    width: 100%;
  }
}
.brands-representations .row:last-child {
  margin-bottom: 0;
}
.brands-representations .row .brand-representation {
  position: relative;
  width: 50%;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation {
    width: 100%;
  }
}
.brands-representations .row .brand-representation .image {
  width: 100%;
  max-width: 494px;
  height: 297px;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation .image {
    height: 200px;
  }
}
.brands-representations .row .brand-representation .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.brands-representations .row .brand-representation .text {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 343px;
  width: 100%;
  height: 202px;
  background: #2AACC9;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  left: -26px;
  bottom: -130px;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation .text {
    position: unset;
    height: auto;
    max-width: unset;
  }
}
.brands-representations .row .brand-representation .text:hover {
  background: #DC6129;
  transform: scale(1.04);
}
.brands-representations .row .brand-representation .text h4 {
  font-size: 25px;
  font-weight: 800;
  color: white;
  margin-bottom: 22px;
}
.brands-representations .row .brand-representation .text p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  flex: 1;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation .text p {
    margin-bottom: 40px;
  }
}
.brands-representations .row .brand-representation .text a {
  align-self: flex-end;
  font-size: 14px;
  font-weight: 200;
  color: white;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .brands-representations .row .brand-representation .text a {
    font-size: 18px;
  }
}
.brands-representations .row .brand-representation .text a:hover {
  font-weight: 600;
}
.brands-representations .row .brand-representation .text a::after {
  content: "";
  background: url(../img/file-icon.svg) no-repeat;
  width: 13px;
  height: 13px;
  margin-left: 3px;
}

.contact-wrapper {
  max-width: 1135px;
  width: calc(100% - 60px);
  margin: auto;
  margin-top: 206px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .contact-wrapper {
    margin-top: 117px;
  }
}
.contact-wrapper .text {
  width: 50%;
  margin-right: 83px;
}
@media (max-width: 768px) {
  .contact-wrapper .text {
    margin: 0 0 50px;
    width: 100%;
  }
}
.contact-wrapper .text h2 {
  font-size: 70px;
  font-weight: 800;
  color: #DC6129;
  margin-bottom: 63px;
}
@media (max-width: 600px) {
  .contact-wrapper .text h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.contact-wrapper .text p {
  font-size: 25px;
  font-weight: 300;
  color: #1C3557;
}
@media (max-width: 600px) {
  .contact-wrapper .text p {
    font-size: 15px;
  }
}
.contact-wrapper .form {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-wrapper .form {
    width: 100%;
  }
}
.contact-wrapper .form form {
  display: flex;
  flex-direction: column;
}
.contact-wrapper .form form div {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .contact-wrapper .form form div {
    display: block;
    margin-bottom: 0;
  }
}
.contact-wrapper .form form div input[type=text],
.contact-wrapper .form form div input[type=email],
.contact-wrapper .form form div input[type=tel] {
  font: 15px "Lexend", sans-serif;
  color: #1C3557;
  padding: 17px 22px;
  border: 1px solid #2AACC9;
  border-radius: 2px;
  background: #F3F3F3;
  width: 100%;
}
@media (max-width: 600px) {
  .contact-wrapper .form form div input[type=text],
  .contact-wrapper .form form div input[type=email],
  .contact-wrapper .form form div input[type=tel] {
    margin-bottom: 16px;
  }
}
.contact-wrapper .form form div input[type=text]::-moz-placeholder, .contact-wrapper .form form div input[type=email]::-moz-placeholder, .contact-wrapper .form form div input[type=tel]::-moz-placeholder {
  color: rgba(28, 53, 87, 0.5);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-wrapper .form form div input[type=text]::placeholder,
.contact-wrapper .form form div input[type=email]::placeholder,
.contact-wrapper .form form div input[type=tel]::placeholder {
  color: rgba(28, 53, 87, 0.5);
  transition: all 0.3s;
}
.contact-wrapper .form form div input[type=text]:focus::-moz-placeholder, .contact-wrapper .form form div input[type=email]:focus::-moz-placeholder, .contact-wrapper .form form div input[type=tel]:focus::-moz-placeholder {
  opacity: 0;
}
.contact-wrapper .form form div input[type=text]:focus::placeholder,
.contact-wrapper .form form div input[type=email]:focus::placeholder,
.contact-wrapper .form form div input[type=tel]:focus::placeholder {
  opacity: 0;
}
.contact-wrapper .form form div textarea {
  font: 15px "Lexend", sans-serif;
  color: #1C3557;
  padding: 17px 22px;
  border: 1px solid #2AACC9;
  border-radius: 2px;
  background: #F3F3F3;
  resize: none;
  height: 193px;
  width: 100%;
}
@media (max-width: 600px) {
  .contact-wrapper .form form div textarea {
    margin-bottom: 16px;
  }
}
.contact-wrapper .form form div textarea::-moz-placeholder {
  color: rgba(28, 53, 87, 0.5);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-wrapper .form form div textarea::placeholder {
  color: rgba(28, 53, 87, 0.5);
  transition: all 0.3s;
}
.contact-wrapper .form form div textarea:focus::-moz-placeholder {
  opacity: 0;
}
.contact-wrapper .form form div textarea:focus::placeholder {
  opacity: 0;
}
.contact-wrapper .form form button {
  font: 300 20px "Lexend", sans-serif;
  background: #DC6129;
  padding: 8px 25px;
  color: white;
  display: block;
  border: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  transition: all 0.2s;
}
.contact-wrapper .form form button:hover {
  font-weight: 500;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.contact-wrapper .form .success {
  display: none;
}
.contact-wrapper .form .success h2 {
  font-size: 30px;
  font-weight: 600;
  color: #1C3557;
  text-align: center;
  margin-bottom: 10px;
}
.contact-wrapper .form .success p {
  font-size: 25px;
  font-weight: 300;
  color: #1C3557;
  text-align: center;
}

.banner-catalog {
  position: relative;
  width: 100%;
  height: 382px;
  margin-top: 118px;
}
@media (max-width: 600px) {
  .banner-catalog {
    margin: 87px 0 0;
    height: 300px;
  }
}
.banner-catalog .bg {
  width: 100%;
  height: 100%;
}
.banner-catalog .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 600px) {
  .banner-catalog .bg img {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.banner-catalog .text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 490px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.banner-catalog .text h2 {
  font-size: 50px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  text-align: right;
}
@media (max-width: 600px) {
  .banner-catalog .text h2 {
    font-size: 26px;
  }
}
.banner-catalog .text h2 strong {
  font-weight: 800;
}
.banner-catalog .text h2 strong span {
  color: #DC6129;
}
.banner-catalog .text a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
  background: #DC6129;
  padding: 8px 25px;
  color: white !important;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.2s;
}
@media (max-width: 600px) {
  .banner-catalog .text a {
    font-size: 17px;
  }
}
.banner-catalog .text a:hover {
  font-weight: 500;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.catalog-navigation {
  display: flex;
  margin-bottom: 65px;
}
@media (max-width: 600px) {
  .catalog-navigation {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.catalog-navigation li {
  width: 33.33%;
}
@media (max-width: 600px) {
  .catalog-navigation li {
    width: 100%;
  }
}
.catalog-navigation li a {
  font-size: 25px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  background: #2AACC9;
  color: white;
  border-right: 1px solid white;
  transition: all 0.2s;
}
@media (max-width: 990px) {
  .catalog-navigation li a {
    font-size: clamp(17px, 17px + 8 * (100vw - 600px) / 390, 25px);
  }
}
@media (max-width: 600px) {
  .catalog-navigation li a {
    font-size: 20px;
    border-right: none;
    border-bottom: 1px solid white;
  }
}
.catalog-navigation li a:hover {
  background: #DC6129;
  font-weight: 700;
}
.catalog-navigation li:last-child a {
  border: none;
}
.catalog-navigation li.active a {
  background: #1C3557;
  font-weight: 300;
}

.intro-catalog {
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .intro-catalog {
    margin-bottom: unset;
  }
}
.intro-catalog .wrapper {
  max-width: 1143px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .intro-catalog .wrapper {
    flex-direction: column;
  }
}
.intro-catalog .image {
  margin-right: 46px;
  width: 55%;
  height: 363px;
}
@media (max-width: 600px) {
  .intro-catalog .image {
    margin: 0 auto 30px;
    width: 100%;
    height: 300px;
  }
}
.intro-catalog .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-catalog .text {
  width: 50%;
}
@media (max-width: 600px) {
  .intro-catalog .text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.intro-catalog .text h3 {
  font-size: 35px;
  font-weight: 400;
  color: #DC6129;
  margin-bottom: 34px;
}
@media (max-width: 600px) {
  .intro-catalog .text h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.intro-catalog .text p {
  font-size: 20px;
  font-weight: 300;
  color: #1C3557;
}
@media (max-width: 600px) {
  .intro-catalog .text p {
    font-size: 15px;
  }
}

.products-list {
  display: none;
}
.products-list .wrapper {
  max-width: 1143px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}
@media (max-width: 600px) {
  .products-list .wrapper {
    margin-bottom: 30px;
  }
}
.products-list .wrapper .product {
  width: 277px;
  /* height: 510px; */
  background: #F3F3F3;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.products-list .wrapper .product .image {
  background: white;
  margin-bottom: 20px;
  height: 261px;
}
.products-list .wrapper .product .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products-list .wrapper .product .text {
  flex: 1;
}
.products-list .wrapper .product .text .title {
  display: block;
  font-size: 25px;
  font-weight: 600;
  color: #DC6129;
  line-height: 1;
  margin-bottom: 17px;
}
.products-list .wrapper .product .text p {
  font-size: 15px;
  font-weight: 300;
  color: #1C3557;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-clamp: 5;
}
.products-list .wrapper .product .tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-list .wrapper .product .tools .download {
  font-size: 12px;
  font-weight: 300;
  color: white;
  background: #2AACC9;
  padding: 6px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s;
}
.products-list .wrapper .product .tools .download:hover {
  font-weight: 600;
  background: #DC6129;
}
.products-list .wrapper .product .tools .download::before {
  content: "";
  background: url(../img/download-icon.svg) no-repeat;
  width: 10px;
  height: 11px;
  margin-right: 6px;
}
.products-list .wrapper .product .tools .quote {
  font-size: 12px;
  font-weight: 300;
  color: white;
  background: #2AACC9;
  padding: 6px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s;
}
.products-list .wrapper .product .tools .quote:hover {
  font-weight: 600;
  background: #DC6129;
}

.catalog-pdf {
  margin-bottom: 50px;
}

.news-layout {
  margin-top: 138px;
}
@media (max-width: 600px) {
  .news-layout {
    margin-top: 108px;
  }
}
.news-layout .wrapper {
  width: calc(100% - 60px);
  margin: auto;
}
.news-layout .wrapper .featured-news {
  display: flex;
  height: 667px;
  gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .news-layout .wrapper .featured-news {
    flex-direction: column;
    height: unset;
  }
}
.news-layout .wrapper .featured-news .new {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .news-layout .wrapper .featured-news .new {
    height: 300px;
  }
}
.news-layout .wrapper .featured-news .new .image {
  width: 100%;
  height: 100%;
}
.news-layout .wrapper .featured-news .new .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-layout .wrapper .featured-news .secondary-news {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-layout .wrapper .featured-news .secondary-news .new {
  width: 100%;
  height: 48.5%;
}
@media (max-width: 768px) {
  .news-layout .wrapper .featured-news .secondary-news .new {
    height: 300px;
  }
}
.news-layout .wrapper .featured-news .secondary-news .half {
  display: flex;
  height: 48.5%;
  gap: 20px;
}
@media (max-width: 768px) {
  .news-layout .wrapper .featured-news .secondary-news .half {
    flex-direction: column;
    height: unset;
  }
}
.news-layout .wrapper .featured-news .secondary-news .half .new {
  height: 100%;
}
@media (max-width: 768px) {
  .news-layout .wrapper .featured-news .secondary-news .half .new {
    height: 300px;
  }
}
.news-layout .wrapper .featured-news .secondary-news .half .new h2 {
  font-size: 20px;
}
.news-layout .wrapper .featured-news .secondary-news .half .new p {
  font-size: 15px;
}
.news-layout .wrapper .card-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  margin-bottom: 80px;
}
@media (max-width: 990px) {
  .news-layout .wrapper .card-news {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .news-layout .wrapper .card-news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-layout .wrapper .card-news {
    grid-template-columns: 1fr;
  }
}
.news-layout .wrapper .card-news .new {
  /* width: 277px; */
  height: 492px;
  background: #EAEAEA;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
}
.news-layout .wrapper .card-news .new .image {
  width: 100%;
  height: 241px;
  margin-bottom: 20px;
}
.news-layout .wrapper .card-news .new .image::after {
  content: none;
}
.news-layout .wrapper .card-news .new .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-layout .wrapper .card-news .new .text {
  position: unset;
  padding: 0;
}
.news-layout .wrapper .card-news .new .text .details {
  margin-bottom: 10px;
}
.news-layout .wrapper .card-news .new .text h2 {
  font-size: 25px;
  font-weight: 600;
  color: #DC6129;
}
@media (max-width: 768px) {
  .news-layout .wrapper .card-news .new .text h2 {
    font-size: 20px;
  }
}
.news-layout .wrapper .card-news .new .text p {
  font-size: 15px;
  font-weight: 300;
  color: #1E1E1E;
  -webkit-line-clamp: 4;
}
.news-layout .wrapper .new {
  position: relative;
}
.news-layout .wrapper .new .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(28, 53, 87, 0) 0, rgba(28, 53, 87, 0.5) 67.31%);
  mix-blend-mode: multiply;
}
.news-layout .wrapper .new .text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .news-layout .wrapper .new .text {
    padding: 20px;
  }
}
.news-layout .wrapper .new .text .details {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.news-layout .wrapper .new .text .details .date {
  display: flex;
  font-size: 15px;
  font-weight: 200;
  color: #2AACC9;
  align-items: center;
}
.news-layout .wrapper .new .text .details .date::before {
  content: "";
  background: url(../img/icon-calendar.svg) no-repeat;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}
.news-layout .wrapper .new .text h2 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-layout .wrapper .new .text h2 {
    font-size: 20px;
  }
}
.news-layout .wrapper .new .text p {
  font-size: 20px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-layout .wrapper .new .text p {
    font-size: 15px;
  }
}
.news-layout .wrapper .category-pill {
  display: inline-block;
  background: #DC6129;
  font-size: 12px;
  color: white;
  padding: 2px 5px;
  border-radius: 5px;
  margin-right: 8px;
}
.news-layout .wrapper .categories {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.news-layout .wrapper .categories .category-pill {
  margin-bottom: 8px;
}
.news-layout .wrapper .read-all {
  display: inline-block;
  color: white;
  font-size: 10px;
  font-weight: 300;
  background: #2AACC9;
  border-radius: 5px;
  padding: 6px;
  align-self: flex-end;
  transition: all 0.2s;
}
.news-layout .wrapper .read-all:hover {
  font-weight: 500;
  background: #DC6129;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.new-layout {
  margin-top: 138px;
}
@media (max-width: 600px) {
  .new-layout {
    margin-top: 108px;
  }
}
.new-layout .wrapper {
  width: calc(100% - 60px);
  margin: auto;
  display: flex;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .new-layout .wrapper {
    flex-direction: column;
  }
}
.new-layout .wrapper .content {
  width: 100%;
  padding-right: 50px;
  border-right: 1px solid rgba(28, 53, 87, 0.2);
}
@media (max-width: 768px) {
  .new-layout .wrapper .content {
    border: none;
    padding: 0;
  }
}
.new-layout .wrapper .content .image {
  width: 100%;
  height: 484px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .new-layout .wrapper .content .image {
    height: 300px;
  }
}
.new-layout .wrapper .content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-layout .wrapper .content h2 {
  font: 300 50px "Lexend", sans-serif;
  color: #47494A;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .new-layout .wrapper .content h2 {
    font-size: 30px;
  }
}
.new-layout .wrapper .content h2 strong {
  color: #DC6129;
  font-weight: 700;
}
.new-layout .wrapper .content p {
  font: 300 20px "Lexend", sans-serif;
  color: #47494A;
}
@media (max-width: 600px) {
  .new-layout .wrapper .content p {
    font-size: 15px;
  }
}
.new-layout .wrapper .content p strong {
  font-weight: 700;
}
.new-layout .wrapper .sidebar {
  max-width: 320px;
  padding-left: 43px;
}
@media (max-width: 768px) {
  .new-layout .wrapper .sidebar {
    display: none;
  }
}
.new-layout .wrapper .sidebar .new {
  display: block;
  margin-bottom: 30px;
}
.new-layout .wrapper .sidebar .new h2 {
  font: 700 20px "Lexend", sans-serif;
  color: #1C3557;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 10px;
}
.new-layout .wrapper .sidebar .new p {
  font: 300 15px "Lexend", sans-serif;
  color: #1C3557;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 10px;
}
.new-layout .wrapper .sidebar .new:hover {
  text-decoration: underline;
  color: #1C3557;
}
.new-layout .related {
  width: calc(100% - 60px);
  margin: auto;
}
.new-layout .related h2 {
  font: 700 35px "Lexend", sans-serif;
  color: #DC6129;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .new-layout .related h2 {
    font-size: 30px;
  }
}
.new-layout .related .card-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  margin-bottom: 80px;
}
@media (max-width: 990px) {
  .new-layout .related .card-news {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .new-layout .related .card-news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .new-layout .related .card-news {
    grid-template-columns: 1fr;
  }
}
.new-layout .related .card-news .new {
  /* width: 277px; */
  height: 492px;
  background: #EAEAEA;
  border-radius: 5px;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
}
.new-layout .related .card-news .new .image {
  width: 100%;
  height: 241px;
  margin-bottom: 20px;
}
.new-layout .related .card-news .new .image::after {
  content: none;
}
.new-layout .related .card-news .new .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-layout .related .card-news .new .text {
  position: unset;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.new-layout .related .card-news .new .text .details {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.new-layout .related .card-news .new .text .details .date {
  display: flex;
  font-size: 15px;
  font-weight: 200;
  color: #2AACC9;
  align-items: center;
}
.new-layout .related .card-news .new .text .details .date::before {
  content: "";
  background: url(../img/icon-calendar.svg) no-repeat;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}
.new-layout .related .card-news .new .text h2 {
  font-size: 25px;
  font-weight: 600;
  color: #DC6129;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .new-layout .related .card-news .new .text h2 {
    font-size: 20px;
  }
}
.new-layout .related .card-news .new .text p {
  font-size: 15px;
  font-weight: 300;
  color: #1E1E1E;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-bottom: 10px;
}
.new-layout .related .card-news .new .text .read-all {
  display: inline-block;
  color: white;
  font-size: 10px;
  font-weight: 300;
  background: #2AACC9;
  border-radius: 5px;
  padding: 6px;
  align-self: flex-end;
  transition: all 0.2s;
}
.new-layout .related .card-news .new .text .read-all:hover {
  font-weight: 500;
  background: #DC6129;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}