@charset "UTF-8";
/*
Theme Name: Theme Name
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.image-background .desktop {
  display: block;
}
@media only screen and (max-width: 900px) {
  .image-background .desktop {
    display: none;
  }
}
.image-background .mobile {
  display: none;
}
@media only screen and (max-width: 900px) {
  .image-background .mobile {
    display: block;
  }
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
tr( duracion, propiedades, delay)
*/
/*
tre( duracion, propiedades, delay)
a diferencia de tr(), tre tiene un easign aplicado que hace la animacion mas natural
*/
/*
fade( x, y, defaulttransition, delay );
Añade transformacion x e y, y opacity 0 al elemento.
Se pueden pasar valores negativos, por ejemplo, para desplazar x hacia la izquierda
Tambien se puede pasar un porcentaje
defaulttransition aplica la variable $transition-default definida en _variables.scss
delay aplica un delay multiplicando el valor por $transition-default-delay para hacer aparecer los elementos de forma escalonada
*/
.in {
  --fade-opacity: 1;
  --fade-transform: translateX(0px) translateY(0px);
  --p100: 100%;
  --v1: 1;
  --v0: 0;
}

/*
fadein();
Aplica transformX(0px), transformY(0px) y opacity 1 para hacer aparecer el objecto
*/
/*
Se usa igual que fade, pero crea un loop para animar los elementos de forma ordenada
*/
/*
Use:
@if editor() {
  font-size: 90px;
}
*/
/* Text Block Custom Style */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background: #ffffff;
  float: left;
  width: 100%;
}
body img {
  max-width: 100%;
  height: auto;
}

.page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  overflow: hidden;
}

section,
header,
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.hidden {
  display: none;
}

input[type=text], input[type=email], input[type=search], input[type=submit], textarea, button {
  -webkit-appearance: none;
}

input[type=submit].btn, button.btn {
  color: #000;
}

select {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 6%;
}

h1,
.h1,
.h1 p {
  font-size: 140px;
}
@media only screen and (max-width: 1100px) {
  h1,
  .h1,
  .h1 p {
    font-size: 100px;
  }
}
@media only screen and (max-width: 640px) {
  h1,
  .h1,
  .h1 p {
    font-size: 50px;
  }
}

h2,
.h2,
.h2 p {
  font-size: 70px;
}
@media only screen and (max-width: 1100px) {
  h2,
  .h2,
  .h2 p {
    font-size: 60px;
  }
}
@media only screen and (max-width: 640px) {
  h2,
  .h2,
  .h2 p {
    font-size: 40px;
  }
}

h3,
.h3,
.h3 p {
  font-size: 50px;
}
@media only screen and (max-width: 1100px) {
  h3,
  .h3,
  .h3 p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 640px) {
  h3,
  .h3,
  .h3 p {
    font-size: 30px;
  }
}

h4,
.h4,
.h4 p {
  font-size: 30px;
}
@media only screen and (max-width: 1100px) {
  h4,
  .h4,
  .h4 p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  h4,
  .h4,
  .h4 p {
    font-size: 20px;
  }
}

h5,
.h5,
.h5 p {
  font-size: 26px;
}
@media only screen and (max-width: 1100px) {
  h5,
  .h5,
  .h5 p {
    font-size: 23px;
  }
}
@media only screen and (max-width: 640px) {
  h5,
  .h5,
  .h5 p {
    font-size: 20px;
  }
}

h6,
.h6,
.h6 p {
  font-size: 24px;
}
@media only screen and (max-width: 1100px) {
  h6,
  .h6,
  .h6 p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  h6,
  .h6,
  .h6 p {
    font-size: 18px;
  }
}

a {
  color: #000;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

p,
.p,
figure,
li,
h5 {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}
p a,
.p a,
figure a,
li a,
h5 a {
  color: #000;
  position: relative;
}
b,
strong,
strong * {
  font-weight: 600;
}

*:focus {
  outline: none;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.container,
.page-width {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
}
@media only screen and (max-width: 1100px) {
  .container,
  .page-width {
    width: 100vw;
    padding: 0 15px;
  }
}

.button {
  font-family: "Barlow", sans-serif;
  display: inline-block;
  max-width: 100%;
  background: #000;
  color: #ffffff;
  border-radius: 50px;
  font-size: 17px;
  padding: 5px 30px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .button {
    font-size: 14px;
    padding: 7px 15px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) {
  .button {
    font-size: 12px;
  }
}

@media only screen and (max-width: 900px) {
  [class^=col-md] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  [class^=col-xs] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.main-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
.main-header__content {
  background: #ffffff;
  -webkit-box-shadow: 0px 13px 13px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 13px 13px -3px rgba(0, 0, 0, 0.3);
}
.main-header__content--box {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .main-header__content--box {
    padding-bottom: 15px;
  }
}
.main-header__content--box .content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .main-header__content--box .content-info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin: 0;
  }
}
.main-header__content--box .content-info .link-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  background: #D1292E;
  padding: 10px 40px;
  border-radius: 0 0 30px 30px;
}
@media only screen and (max-width: 900px) {
  .main-header__content--box .content-info .link-action {
    width: 100%;
    border-radius: 0;
  }
}
@media only screen and (max-width: 640px) {
  .main-header__content--box .content-info .link-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 5px;
  }
}
.main-header__content--box .content-info .link-action a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1100px) {
  .main-header__content--box .content-info .link-action a {
    font-size: 12px;
  }
}
.main-header__content--box .content-info .link-action a.request {
  text-transform: uppercase;
  text-decoration: underline;
}
.main-header__content--box .content-info .link-action a span {
  display: block;
}
.main-header__content--box .content-info .link-action a span img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  width: 23px;
  height: 23px;
}
.main-header__content--box .content-info .link-action a:hover {
  color: #000;
}
.main-header__content--box .content-info .link-action a:hover span img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-header__content--box .content-info .link-action a .text-action {
  font-size: 16px;
}
.main-header__content--box .content-info .link-action a .icon-action img {
  display: block;
  width: 23px;
  height: 23px;
}
.main-header__content--box .logo-content {
  position: relative;
  padding-top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .main-header__content--box .logo-content {
    padding-top: 15px;
  }
}
.main-header__content--box .logo-content a {
  display: block;
}
.main-header__content--box .logo-content a img {
  display: block;
  width: 100vw;
  max-width: 330px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 900px) {
  .main-header__content--box .logo-content a img {
    max-width: 250px;
  }
}
.main-header__content--box .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 900px) {
  .main-header__content--box .main-menu {
    position: absolute;
    top: 100%;
    background: #ffffff;
    width: 100%;
    left: 0;
    padding: 0 15px;
    height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
  }
}
.main-header__content--box .main-menu__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 900px) {
  .main-header__content--box .main-menu__content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.main-header__content--box .main-menu__content ul li {
  display: block;
  margin: 0;
  position: relative;
}
.main-header__content--box .main-menu__content ul li a {
  display: block;
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1100px) {
  .main-header__content--box .main-menu__content ul li a {
    font-size: 15px;
  }
}
.main-header__content--box .main-menu__content ul li a:hover {
  color: #cf2532;
}
.main-header__content--box .main-menu__content ul li.active > a {
  color: #cf2532;
}
.main-header__content--box .main-menu.is-active {
  height: 230px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 640px) {
  .main-header__content--box .main-menu.is-active {
    height: 250px;
  }
}
.main-header__content.scrolled {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.main-header__content.scrolled .logo-content a img {
  max-width: 250px;
}
@media only screen and (max-width: 900px) {
  .main-header__content.scrolled .logo-content a img {
    max-width: 220px;
  }
}
.main-header__content.scrolled .main-header__content--box .logo-content {
  padding-top: 10px;
}
.main-header__content.scrolled .main-header__content--box .main-menu {
  gap: 10px;
}
.main-header__content.scrolled .main-header__content--box {
  padding-bottom: 10px;
}
.main-header__hamburger {
  z-index: 1;
  display: none;
  position: relative;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  float: right;
  margin-top: 0;
  width: 40px;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.main-header__hamburger.is-active:hover {
  color: #cf2532;
}
.main-header__hamburger.is-active:visited, .main-header__hamburger.is-active:focus {
  color: #cf2532;
}
.main-header__hamburger.is-active.hamburger-inner, .main-header__hamburger.is-active.hamburger-inner::before, .main-header__hamburger.is-active.hamburger-inner::after {
  background-color: #cf2532;
}
.main-header__hamburger .hamburger-box {
  display: block;
  top: 50%;
}
.main-header__hamburger .hamburger-inner,
.main-header__hamburger .hamburger-inner::before,
.main-header__hamburger .hamburger-inner::after {
  width: 40px;
  height: 5px;
  background-color: #cf2532;
  border-radius: 5px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  right: 0;
}
.main-header__hamburger .hamburger-inner::after {
  width: 40px;
}
.main-header__hamburger .is-active .hamburger-inner::after {
  width: 40px;
}
.main-header__hamburger .hamburger-inner::before,
.main-header__hamburger .hamburger-inner::after {
  content: "";
  display: block;
}
.main-header__hamburger .hamburger-inner::before {
  top: -10px;
}
.main-header__hamburger .hamburger-inner::after {
  bottom: -10px;
}
.main-header__hamburger.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.main-header__hamburger.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.main-header__hamburger.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.main-header__hamburger.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.main-header__hamburger.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.main-header__hamburger.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (max-width: 900px) {
  .main-header__hamburger {
    display: block;
  }
}

.site-footer {
  padding-top: 40px;
  position: relative;
  background: #e5e5e2;
}
@media only screen and (max-width: 768px) {
  .site-footer {
    padding-top: 30px;
  }
}
.site-footer__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .site-footer__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.site-footer__column.logo-footer {
  width: 20%;
}
@media only screen and (max-width: 900px) {
  .site-footer__column.logo-footer {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer__column.logo-footer img {
    max-width: 120px;
  }
}
.site-footer__column.social-footer {
  width: 30%;
}
@media only screen and (max-width: 900px) {
  .site-footer__column.social-footer {
    width: 100%;
    max-width: 300px;
    margin: auto;
    text-align: center;
  }
}
.site-footer__column.form-footer {
  width: 50%;
}
@media only screen and (max-width: 900px) {
  .site-footer__column.form-footer {
    width: 100%;
    text-align: center;
  }
}
.site-footer__column .contact-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  border-bottom: 3px solid #c7c6c0;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info__title img {
    max-width: 30px;
  }
}
.site-footer__column .contact-info__title span {
  display: block;
  color: #a9a89e;
  font-size: 22px;
  font-weight: 500;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info__title span {
    font-size: 16px;
  }
}
.site-footer__column .contact-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-top: 15px;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer__column .contact-info ul li {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info ul li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer__column .contact-info ul li a {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .contact-info ul li a {
    font-size: 22px;
  }
}
.site-footer__column .contact-info ul li a:hover {
  color: #cf2532;
}
.site-footer__column .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}
@media only screen and (max-width: 900px) {
  .site-footer__column .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer__column .socials span {
  display: block;
  color: #a9a89e;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1100px) {
  .site-footer__column .socials span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer__column .socials span {
    font-size: 14px;
  }
}
.site-footer__column .socials a {
  display: block;
}
.site-footer__column .socials a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  display: block;
}
.site-footer__column .socials a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.site-footer__column .form--box .form--title {
  display: block;
  font-size: 18px;
  color: #cf2532;
  font-weight: 500;
  line-height: 1;
}
.site-footer__column .form--box .form--title .upper {
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin-right: 7px;
}
@media only screen and (max-width: 640px) {
  .site-footer__column .form--box .form--title .upper {
    display: block;
  }
}
.site-footer__column .form--box .form {
  margin-top: 15px;
}
.site-footer__column .form--box .form .alert {
  margin-bottom: 1vw;
  font-size: 1vw;
  font-weight: 700;
}
.site-footer__column .form--box .form .alert.alert-success {
  color: green;
}
.site-footer__column .form--box .form .alert.alert-danger {
  color: blue;
}
.site-footer__column .form--box .form .form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.site-footer__column .form--box .form .fieldset {
  width: 100%;
}
.site-footer__column .form--box .form .fieldset.half {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 640px) {
  .site-footer__column .form--box .form .fieldset.half {
    width: 100%;
  }
}
.site-footer__column .form--box .form .fieldset.button-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer__column .form--box .form .fieldset input[type=text],
.site-footer__column .form--box .form .fieldset input[type=email],
.site-footer__column .form--box .form .fieldset input[type=tel] {
  background: #ffffff;
  padding: 15px 20px;
  width: 100%;
  font-size: 12px;
  color: #000;
  font-weight: 500;
  border-radius: 0;
}
.site-footer__column .form--box .form .fieldset input[type=text]::-webkit-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=email]::-webkit-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=tel]::-webkit-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]::-moz-placeholder, .site-footer__column .form--box .form .fieldset input[type=email]::-moz-placeholder, .site-footer__column .form--box .form .fieldset input[type=tel]::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]:-ms-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=email]:-ms-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=tel]:-ms-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]::-ms-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=email]::-ms-input-placeholder, .site-footer__column .form--box .form .fieldset input[type=tel]::-ms-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]::placeholder,
.site-footer__column .form--box .form .fieldset input[type=email]::placeholder,
.site-footer__column .form--box .form .fieldset input[type=tel]::placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]:-ms-input-placeholder,
.site-footer__column .form--box .form .fieldset input[type=email]:-ms-input-placeholder,
.site-footer__column .form--box .form .fieldset input[type=tel]:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=text]::-ms-input-placeholder,
.site-footer__column .form--box .form .fieldset input[type=email]::-ms-input-placeholder,
.site-footer__column .form--box .form .fieldset input[type=tel]::-ms-input-placeholder { /* Microsoft Edge */
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea {
  background: #ffffff;
  padding: 15px 20px;
  resize: none;
  width: 100%;
  min-height: 85px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea::-ms-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea::placeholder {
  opacity: 1;
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #a4a4a4;
  font-size: 12px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.site-footer__column .form--box .form .fieldset input[type=submit] {
  display: block;
  background: #cf2532;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  text-transform: none;
  font-weight: 500;
}
.site-footer__column .form--box .form .fieldset input[type=submit]:hover {
  background: #000;
}
.site-footer__column .form--box .form .fieldset .error {
  font-size: 12px;
  color: red;
}
.site-footer .copyright {
  background: #a9a89e;
  text-align: center;
  padding: 5px 0;
}
.site-footer .copyright__content p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  .site-footer .copyright__content p {
    font-size: 12px;
  }
}
.site-footer .copyright__content p a {
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
.site-footer .copyright__content p a:hover {
  color: #cf2532;
  text-decoration: underline;
}
.site-footer .icon-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 45px;
  z-index: 5;
}
@media only screen and (max-width: 900px) {
  .site-footer .icon-whatsapp {
    bottom: 5px;
  }
}
@media only screen and (max-width: 640px) {
  .site-footer .icon-whatsapp {
    width: 30px;
    bottom: 10px;
  }
}

.thank {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #a9a89e;
}
.thank .container {
  height: 100vh;
}
.thank__title {
  height: 100vh;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.thank__title h2 {
  font-size: 47px;
  color: #ffffff;
  font-weight: 400;
}
.thank__title h2 strong {
  font-weight: 700;
  color: #000;
  display: block;
  text-transform: uppercase;
}
.thank__title .button {
  background: #cf2532;
}
.thank__title .button:hover {
  background: #000;
}

/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
      touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.animeslide {
  width: 100%;
  height: calc(100vh - 65px);
  margin-top: 65px;
  overflow: visible;
}
.animeslide .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.animeslide .animeslide-slide {
  position: relative;
  padding: 15px 0;
  min-height: 100%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-position: right top;
}
.animeslide .animeslide-slide.swiper-slide-active [data-animate] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.animeslide .animeslide-slide.swiper-slide-active .animeslide-heading {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.animeslide .animeslide-slide.swiper-slide-active .animeslide-copy {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.animeslide .animeslide-slide.swiper-slide-active .animeslide-cta {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.animeslide .animeslide-slide.swiper-slide-active .animeslide-icon {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide.swiper-slide-active .animeslide-icon {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}
.animeslide .animeslide-slide .animeslide-heading {
  margin-bottom: 15px;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
  font-size: 60px;
  font-weight: 500;
  max-width: 350px;
  position: relative;
  color: #000;
  line-height: 1;
  z-index: 2;
}
@media only screen and (max-width: 1240px) {
  .animeslide .animeslide-slide .animeslide-heading {
    font-size: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-heading {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-slide .animeslide-heading {
    font-size: 30px;
    margin-top: 20px;
  }
}
.animeslide .animeslide-slide .animeslide-heading span {
  font-size: 60px;
  display: block;
  color: #000;
  font-weight: 500;
  text-transform: none;
  line-height: 1;
  font-style: italic;
}
@media only screen and (max-width: 1240px) {
  .animeslide .animeslide-slide .animeslide-heading span {
    font-size: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-heading span {
    font-size: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-slide .animeslide-heading span {
    font-size: 25px;
  }
}
.animeslide .animeslide-slide .animeslide-heading span strong {
  font-weight: 900;
  display: block;
  font-size: 75px;
}
@media only screen and (max-width: 1240px) {
  .animeslide .animeslide-slide .animeslide-heading span strong {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-heading span strong {
    font-size: 45px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-slide .animeslide-heading span strong {
    font-size: 30px;
  }
}
.animeslide .animeslide-slide .animeslide-copy {
  margin-bottom: 25px;
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
  font-size: 31px;
  font-weight: 500;
  max-width: 350px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-slide .animeslide-copy {
    font-size: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-copy {
    max-width: 100%;
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.animeslide .animeslide-slide .animeslide-copy span {
  font-size: 31px;
  display: block;
  color: #cf2532;
  font-weight: 500;
  text-transform: none;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-slide .animeslide-copy span {
    font-size: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-copy span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-slide .animeslide-copy span {
    font-size: 16px;
  }
}
.animeslide .animeslide-slide .animeslide-cta {
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
.animeslide .animeslide-slide .animeslide-cta span {
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  background: #cf2532;
  padding: 10px 40px;
  text-decoration: none;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-slide .animeslide-cta span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-cta span {
    padding: 5px 20px;
    font-size: 14px;
  }
}
.animeslide .animeslide-slide .animeslide-cta:hover span {
  color: #ffffff;
  background: #000000;
}
.animeslide .animeslide-slide .animeslide-icon {
  position: absolute;
  right: 10%;
  bottom: -40px;
  pointer-events: none;
  width: 100vw;
  max-width: 60%;
}
@media only screen and (max-width: 1240px) {
  .animeslide .animeslide-slide .animeslide-icon {
    right: 15px;
    max-width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-icon {
    position: relative;
    bottom: auto;
    right: auto;
    top: 0;
    max-width: 100%;
  }
}
.animeslide .animeslide-slide .animeslide-icon img {
  display: block;
}
@media only screen and (max-width: 768px) {
  .animeslide .animeslide-slide .animeslide-icon img {
    max-width: 70%;
    margin: auto;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-slide .animeslide-icon img {
    max-width: 100%;
  }
}
.animeslide .animeslide-slide .animeslide-efect {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.animeslide .animeslide-slide .animeslide-efect img {
  display: block;
}
.animeslide .animeslide-slide [data-animate] {
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.animeslide .animeslide-slide [data-animate=bottom] {
  -webkit-transform: translate3d(0, 25px, 0);
          transform: translate3d(0, 25px, 0);
}
.animeslide .animeslide-slide [data-animate=right] {
  -webkit-transform: translate3d(25px, 0, 0);
          transform: translate3d(25px, 0, 0);
}
.animeslide .animeslide-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 30px 0;
  left: 0;
  font-size: 14px;
}
.animeslide .animeslide-bottom__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 230px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-bottom__content {
    max-width: 200px;
  }
}
.animeslide .animeslide-bottom .cell {
  position: relative;
  opacity: 1;
  z-index: 2;
  bottom: inherit;
}
.animeslide .animeslide-bottom .animeslide-pagination {
  font-size: 26px;
  bottom: inherit;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-bottom .animeslide-pagination {
    font-size: 22px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-bottom .animeslide-pagination {
    font-size: 18px;
  }
}
.animeslide .animeslide-bottom .animeslide-pagination b {
  font-size: 40px;
  margin-top: -5px;
  color: #000000;
  min-width: 55px;
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-bottom .animeslide-pagination b {
    font-size: 35px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-bottom .animeslide-pagination b {
    font-size: 30px;
  }
}
.animeslide .animeslide-bottom .animeslide-pagination span {
  padding-left: 10px;
  padding-right: 10px;
  color: #000000;
  font-size: 40px;
}
@media only screen and (max-width: 900px) {
  .animeslide .animeslide-bottom .animeslide-pagination span {
    font-size: 35px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 640px) {
  .animeslide .animeslide-bottom .animeslide-pagination span {
    font-size: 30px;
  }
}
.animeslide .animeslide-bottom .pagintaion-button {
  width: 85px;
}
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-next,
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-prev {
  background: transparent url(images/icons/arrow-slider.svg) no-repeat scroll center center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  height: 20px;
  bottom: 5px;
  top: auto;
}
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-next::after,
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-prev::after {
  display: none;
}
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-next:hover,
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-prev:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  -webkit-filter: brightness(0) saturate(100%) invert(55%) sepia(41%) saturate(703%) hue-rotate(352deg) brightness(88%) contrast(90%);
          filter: brightness(0) saturate(100%) invert(55%) sepia(41%) saturate(703%) hue-rotate(352deg) brightness(88%) contrast(90%);
}
.animeslide .animeslide-bottom .pagintaion-button .animeslide-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.steps {
  padding-top: 75px;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .steps {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .steps {
    padding-top: 30px;
  }
}
.steps__title {
  text-align: center;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.steps__title h2 {
  font-size: 47px;
  color: #cf2532;
  font-weight: 400;
}
@media only screen and (max-width: 1100px) {
  .steps__title h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .steps__title h2 {
    font-size: 25px;
  }
}
.steps__title h2 strong {
  font-weight: 700;
  color: #000;
  display: block;
  text-transform: uppercase;
}
.steps__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 980px;
  margin: auto;
  margin-top: 60px;
  gap: 0;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .steps__boxes {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .steps__boxes {
    margin-top: 20px;
  }
}
.steps__boxes-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent url(../images/phone-bg.jpg) no-repeat scroll center top;
  background-size: cover;
  min-width: 325px;
  width: 325px;
  min-height: 320px;
  height: 320px;
  padding-top: 60px;
}
.steps__boxes-box:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.steps__boxes-box:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.steps__boxes-box:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.steps__boxes-box .step-name {
  font-size: 19px;
  color: #f9cf5f;
  font-weight: 700;
}
@media only screen and (max-width: 1100px) {
  .steps__boxes-box .step-name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1100px) {
  .steps__boxes-box .step-icon img {
    max-width: 30px;
  }
}
.steps__boxes-box .step-copy {
  font-weight: 500;
  font-size: 18px;
  max-width: 165px;
  text-align: center;
  margin-left: -5px;
}
@media only screen and (max-width: 1100px) {
  .steps__boxes-box .step-copy {
    font-size: 16px;
  }
}
.steps__boxes-box .step-copy strong {
  font-weight: 900;
  display: block;
}
.steps__boxes-box .step-copy strong .red {
  color: #cf2532;
  font-weight: 900;
}
.steps__boxes-box .step-copy .red {
  color: #cf2532;
}
.steps__points {
  position: absolute;
  top: 25vh;
  left: 3vw;
  width: 100vw;
  max-width: 11%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0));
          transform: var(--fade-transform, translateX(-100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 1100px) {
  .steps__points {
    max-width: 100px;
    top: 50px;
    left: 15px;
    max-width: 10%;
  }
}
.steps__shapes {
  position: absolute;
  right: -170px;
  bottom: 70px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(100px) translateY(0));
          transform: var(--fade-transform, translateX(100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media only screen and (max-width: 1100px) {
  .steps__shapes {
    right: -25px;
    width: 100vw;
    max-width: 25%;
  }
}
@media only screen and (max-width: 1100px) {
  .steps__shapes img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.choice {
  padding-top: 75px;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .choice {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .choice {
    padding-top: 30px;
  }
}
.choice__title {
  text-align: center;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.choice__title h2 {
  font-size: 40px;
  color: #606060;
  font-weight: 400;
}
@media only screen and (max-width: 1100px) {
  .choice__title h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__title h2 {
    font-size: 25px;
  }
}
.choice__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 980px;
  margin: auto;
  margin-top: 60px;
  gap: 30px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .choice__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
.choice__boxes-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33.33%;
}
.choice__boxes-box:nth-child(1) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.choice__boxes-box:nth-child(2) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.choice__boxes-box:nth-child(3) {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
          transform: var(--fade-transform, translateX(0) translateY(30px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 768px) {
  .choice__boxes-box {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .choice__boxes-box .step-icon img {
    max-width: 75px;
  }
}
.choice__boxes-box .step-copy {
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  color: #606060;
}
@media only screen and (max-width: 1100px) {
  .choice__boxes-box .step-copy {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__boxes-box .step-copy {
    font-size: 18px;
  }
}
.choice__boxes-box .step-copy strong {
  font-weight: 700;
  font-size: 23px;
  display: block;
  color: #cf2532;
}
@media only screen and (max-width: 1100px) {
  .choice__boxes-box .step-copy strong {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__boxes-box .step-copy strong {
    font-size: 16px;
  }
}
.choice__ribbon {
  position: absolute;
  top: -2vw;
  right: 8vw;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(100px) translateY(0));
          transform: var(--fade-transform, translateX(100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  background: transparent url(../images/ribbon.png) no-repeat scroll left top;
  width: 304px;
  height: 178px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  z-index: 1;
}
@media only screen and (max-width: 1100px) {
  .choice__ribbon {
    top: 0;
    right: 15px;
    width: 234px;
    height: 137px;
    background-size: contain;
    gap: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__ribbon {
    width: 167px;
    height: 98px;
  }
}
@media only screen and (max-width: 640px) {
  .choice__ribbon {
    position: relative;
    right: auto;
    margin: auto;
    margin-top: 35px;
  }
  .choice__ribbon:nth-child(1) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
            transform: var(--fade-transform, translateX(0) translateY(30px));
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .choice__ribbon:nth-child(2) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
            transform: var(--fade-transform, translateX(0) translateY(30px));
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .choice__ribbon:nth-child(3) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
            transform: var(--fade-transform, translateX(0) translateY(30px));
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .choice__ribbon:nth-child(4) {
    opacity: var(--fade-opacity, 0);
    -webkit-transform: var(--fade-transform, translateX(0) translateY(30px));
            transform: var(--fade-transform, translateX(0) translateY(30px));
    -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
}
.choice__ribbon .title {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 1100px) {
  .choice__ribbon .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__ribbon .title {
    font-size: 14px;
  }
}
.choice__ribbon .number {
  font-size: 37px;
  font-weight: 700;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 1100px) {
  .choice__ribbon .number {
    font-size: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__ribbon .number {
    font-size: 16px;
  }
}
.choice__ribbon .number img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 1100px) {
  .choice__ribbon .number img {
    max-width: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .choice__ribbon .number img {
    max-width: 15px;
  }
}
.choice__ribbon:hover .title,
.choice__ribbon:hover .number {
  color: #000;
}
.choice__ribbon:hover .title img,
.choice__ribbon:hover .number img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.reseller {
  padding-top: 50px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .reseller {
    padding-top: 30px;
  }
}
.reseller__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 100%;
  z-index: 2;
  padding-top: 120px;
}
@media only screen and (max-width: 1100px) {
  .reseller__grid {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .reseller__grid {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reseller__grid-space {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .reseller__grid-space {
    display: none;
  }
}
.reseller__grid-copy {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .reseller__grid-copy {
    width: 100%;
  }
}
.reseller__grid-copy h2 {
  font-size: 58px;
  color: #89baca;
  font-weight: 600;
  line-height: 1;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .reseller__grid-copy h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .reseller__grid-copy h2 {
    font-size: 30px;
  }
}
.reseller__grid-copy h2::after {
  content: "";
  background: transparent url(../images/points.jpg) no-repeat scroll left top;
  background-size: contain;
  width: 85px;
  height: 65px;
  position: absolute;
  margin-left: 35px;
  bottom: 5px;
}
@media only screen and (max-width: 1100px) {
  .reseller__grid-copy h2::after {
    width: 65px;
    height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .reseller__grid-copy h2::after {
    display: none;
  }
}
.reseller__grid-copy h3 {
  font-size: 37px;
  font-weight: 500;
  color: #000;
  margin-top: 15px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (max-width: 1100px) {
  .reseller__grid-copy h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .reseller__grid-copy h3 {
    font-size: 20px;
  }
}
.reseller__grid-copy p {
  font-size: 19px;
  color: #606060;
  font-weight: 500;
  margin-top: 15px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 1100px) {
  .reseller__grid-copy p {
    font-size: 16px;
  }
}
.reseller__grid-copy .button-content {
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.reseller__grid-copy .button-content .button {
  background: #89baca;
}
.reseller__grid-copy .button-content .button:hover {
  background: #cf2532;
}
.reseller__image {
  position: absolute;
  left: 0;
  top: 50px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0));
          transform: var(--fade-transform, translateX(-100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .reseller__image {
    position: relative;
    left: auto;
    top: 0;
    margin-top: 30px;
  }
}
.reseller__image img {
  width: 100vw;
  max-width: 48%;
}
@media only screen and (max-width: 1100px) {
  .reseller__image img {
    max-width: 45%;
  }
}
@media only screen and (max-width: 768px) {
  .reseller__image img {
    width: 100%;
    max-width: 100%;
  }
}

.company {
  background: transparent url(../images/company-bg.png) no-repeat scroll left top;
  background-size: cover;
  position: relative;
  margin-top: 120px;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1240px) {
  .company {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1100px) {
  .company {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .company {
    margin-top: -150px;
  }
}
.company__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 100%;
  z-index: 1;
  padding-top: 120px;
}
.company__grid-space {
  width: 20%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(-100px) translateY(0));
          transform: var(--fade-transform, translateX(-100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 768px) {
  .company__grid-space {
    display: none;
  }
}
@media only screen and (max-width: 1240px) {
  .company__grid-space img {
    max-width: 100px;
  }
}
.company__grid-copy {
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .company__grid-copy {
    width: 100%;
  }
}
.company__grid-copy h2 {
  font-size: 31px;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  position: relative;
}
@media only screen and (max-width: 1240px) {
  .company__grid-copy h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .company__grid-copy h2 {
    font-size: 20px;
  }
}
.company__grid-copy h2 strong {
  display: block;
  font-size: 42px;
  color: #000;
  font-weight: 900;
  margin-top: 5px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (max-width: 1240px) {
  .company__grid-copy h2 strong {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .company__grid-copy h2 strong {
    font-size: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .company__grid-copy h2 strong {
    font-size: 25px;
  }
}
.company__grid-copy h3 {
  font-size: 30px;
  font-weight: 500;
  color: #cf2532;
  margin-top: 5px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 1240px) {
  .company__grid-copy h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .company__grid-copy h3 {
    font-size: 20px;
  }
}
.company__grid-copy p {
  font-size: 52px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media only screen and (max-width: 1240px) {
  .company__grid-copy p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .company__grid-copy p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 640px) {
  .company__grid-copy p {
    font-size: 25px;
  }
}
.company__image {
  position: absolute;
  right: 0;
  top: 50px;
  width: 100vw;
  max-width: 26%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(100px) translateY(0));
          transform: var(--fade-transform, translateX(100px) translateY(0));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 768px) {
  .company__image {
    top: 35%;
    max-width: 40%;
  }
}
@media only screen and (max-width: 640px) {
  .company__image {
    display: none;
  }
}
.company__cta {
  position: absolute;
  right: 10%;
  bottom: 25%;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  z-index: 2;
}
@media only screen and (max-width: 1100px) {
  .company__cta {
    bottom: 20%;
    right: 5%;
  }
}
@media only screen and (max-width: 900px) {
  .company__cta {
    bottom: 30%;
  }
}
@media only screen and (max-width: 768px) {
  .company__cta {
    position: relative;
    right: auto;
    left: 15px;
    bottom: auto;
  }
}
.company__cta a {
  background: transparent url(../images/shape-small.png) no-repeat scroll left top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 145px;
  height: 145px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 700;
  gap: 5px;
}
@media only screen and (max-width: 1100px) {
  .company__cta a {
    width: 100px;
    height: 100px;
    background-size: contain;
  }
}
.company__cta a span {
  display: block;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1100px) {
  .company__cta a span {
    font-size: 14px;
  }
}
.company__cta a span img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
}
@media only screen and (max-width: 1100px) {
  .company__cta a span img {
    max-width: 30px;
  }
}
.company__cta a:hover span {
  color: #000;
}
.company__cta a:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.testimonials {
  padding-bottom: 75px;
}
@media only screen and (max-width: 1100px) {
  .testimonials {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials {
    padding-top: 30px;
  }
}
.testimonials__title {
  text-align: center;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.testimonials__title h2 {
  font-size: 36px;
  color: #cf2532;
  font-weight: 400;
}
@media only screen and (max-width: 1100px) {
  .testimonials__title h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials__title h2 {
    font-size: 25px;
  }
}
.testimonials__title h2 strong {
  font-weight: 700;
  color: #000;
  display: block;
  text-transform: uppercase;
}
.testimonials__slider {
  margin-top: 50px;
  opacity: var(--fade-opacity, 0);
  -webkit-transform: var(--fade-transform, translateX(0) translateY(100px));
          transform: var(--fade-transform, translateX(0) translateY(100px));
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media only screen and (max-width: 768px) {
  .testimonials__slider {
    margin-top: 20px;
  }
}
.testimonials__slider .testimonials-slider {
  padding-bottom: 30px;
}
.testimonials__slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .testimonials__slider-item {
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials__slider-item .image-profile img {
    max-width: 50px;
  }
}
.testimonials__slider-item .content-profile {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .testimonials__slider-item .content-profile {
    padding: 0 45px;
  }
}
.testimonials__slider-item .content-profile p {
  color: #8a8a8a;
  font-size: 26px;
  line-height: 1;
}
@media only screen and (max-width: 1100px) {
  .testimonials__slider-item .content-profile p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonials__slider-item .content-profile p {
    font-size: 18px;
  }
}
.testimonials__slider-item .content-profile .name {
  display: block;
  font-size: 19px;
  color: #cf2532;
  font-weight: 700;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .testimonials__slider-item .content-profile .name {
    font-size: 16px;
  }
}
.testimonials__slider-item .content-profile .city {
  display: block;
  font-size: 16px;
  color: #8a8a8a;
}
.testimonials__slider .slider-pagination {
  bottom: 0;
}
.testimonials__slider .slider-pagination .swiper-pagination-bullet-active {
  background: #cf2532;
}
.testimonials__slider .swiper-button-prev,
.testimonials__slider .swiper-button-next {
  color: #cf2532;
}
/*# sourceMappingURL=style.css.map */