@font-face {
  font-family: "SF Pro";
  src: url("../../fonts/regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro";
  src: url("../../fonts/bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("../../fonts/FASolid.otf");
  font-weight: 900;
  font-style: normal;
}
:root {
  --green-color: #7AA72D;
  --red-color: #db0218;
  --blue-color: #152C73;
  --black: #2D2E31;
  --light-black: #4A4B4E;
  --gray-1: #F2F3F5;
  --gray-2: #E7EAEE;
  --medium-gray: #909195;
  --title-font: "SF Pro", sans-serif;
  --general-font: "SF Pro", sans-serif;
  --shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  --long-shadow: 0px 3px 24px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--general-font);
  color: var(--black);
  font-weight: normal;
  font-size: 16px;
}

body {
  overflow-x: hidden;
}
body > * {
  overflow-x: hidden;
}

button {
  border: 0;
  background-color: transparent;
  font-weight: normal;
}
button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

h1 {
  font-family: var(--title-font);
  font-size: 3rem;
}
@media (max-width: 800px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-family: var(--title-font);
  font-size: 1.5rem;
}

h3 {
  font-family: var(--general-font);
  font-size: 1.5rem;
  font-weight: bold;
}

h4 {
  font-family: var(--general-font);
  font-size: 1.5rem;
  font-weight: normal;
}
@media (max-width: 800px) {
  h4 {
    font-size: 1.125rem;
  }
}

h5 {
  font-family: var(--general-font);
  font-size: 1.25rem;
}

h6 {
  font-family: var(--general-font);
  font-weight: bold;
  font-size: 1.125rem;
}

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

p {
  line-height: 1.6;
}

.box-shadow {
  box-shadow: var(--long-shadow);
}

.font-white {
  color: white;
}

.font-bold {
  font-weight: bold;
}

.rounded-corners {
  border-radius: 8px;
}

.ml-1 {
  margin-left: 1rem;
}

.m-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-half {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1-half {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal.show-modal {
  display: flex;
}
.modal .close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.modal .close-modal i {
  font-size: 2rem;
  color: white;
}
.modal .modal-content {
  background-color: white;
  border-radius: 8px;
}

.text-centered {
  text-align: center;
}

.text-box {
  font-size: 18px;
}
@media (max-width: 1900px) {
  .text-box {
    font-size: 1rem;
  }
}

.text-bold {
  font-weight: bold;
}

a {
  text-decoration: none;
}

.main-button {
  border-radius: 4px;
  padding: 11px 1rem;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
@media only screen and (max-width : 1090px) {
  .main-button {
    padding: 1rem;
  }
}
.main-button span {
  font-family: "SF Pro";
  font-weight: bold;
  z-index: 1;
  position: relative;
  transition: all 0.2s;
}
.main-button:focus {
  outline: none;
}
.main-button:hover {
  transform: translateY(-6px);
}
.main-button.icon i {
  z-index: 1;
  position: relative;
  transition: all 0.2s;
}
.main-button.icon.icon-right i {
  margin-left: 0.5rem;
}
.main-button.icon.icon-left i {
  margin-right: 0.5rem;
}

.main-button.black-button {
  background-color: black;
}
.main-button.black-button span {
  color: white;
}
.main-button.black-button:focus {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
}
.main-button.black-button.icon i {
  color: white;
}
.main-button.green-button {
  background-color: var(--green-color);
}
.main-button.green-button span {
  color: white;
}
.main-button.green-button:focus {
  box-shadow: 0px 0px 10px #7aa72d;
}
.main-button.green-button:active {
  background-color: white;
}
.main-button.green-button.icon i {
  color: white;
}
.main-button.green-button.hover-white:hover {
  background-color: white;
}
.main-button.green-button.hover-white:hover span {
  color: var(--green-color);
}
.main-button.green-button.hover-white:hover.icon i {
  color: var(--green-color);
}
.main-button.blue-button {
  background-color: var(--green-color);
}
.main-button.blue-button.ghost-button {
  background-color: white;
  border: 1px solid var(--blue-color);
}
.main-button.blue-button.ghost-button:hover {
  background-color: var(--blue-color);
}
.main-button.blue-button.ghost-button:hover span, .main-button.blue-button.ghost-button:hover.icon i {
  color: white;
}
.main-button.blue-button.ghost-button span, .main-button.blue-button.ghost-button.icon i {
  color: var(--blue-color);
}
.main-button.blue-button span {
  color: white;
}
.main-button.blue-button:focus {
  box-shadow: 0px 0px 10px #152c73;
}
.main-button.blue-button:active {
  background-color: white;
}
.main-button.blue-button.icon i {
  color: white;
}
.main-button.blue-button:hover {
  background-color: white;
}
.main-button.blue-button:hover span {
  color: var(--blue-color);
}
.main-button.blue-button:hover.icon i {
  color: var(--blue-color);
}
.main-button.white-button {
  background-color: white;
}
.main-button.white-button span {
  color: var(--blue-color);
}
.main-button.white-button:focus {
  box-shadow: 0px 0px 10px white;
}
.main-button.white-button.icon i {
  color: var(--blue-color);
}
.main-button.white-button:hover {
  background-color: var(--blue-color);
}
.main-button.white-button:hover span, .main-button.white-button:hover.icon i {
  color: white;
}

.main-input {
  background-color: var(--gray-1);
  border-radius: 4px;
  padding: 1rem;
  border: 1px solid transparent;
  width: 100%;
  transition: all 0.3s;
  display: block;
}
.main-input:focus {
  outline: none;
  box-shadow: 0px 3px 24px rgba(21, 44, 115, 0.05);
  background-color: white;
  border-color: rgba(21, 44, 115, 0.5);
}
.main-input.input-error {
  border-color: var(--red-color);
}

.main-input {
  position: relative;
}
.main-input select {
  appearance: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  border-radius: 4px;
  z-index: 2;
  border: 0;
}
.main-input select.input-error + div {
  border-color: var(--red-color);
}
.main-input select + div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.2s;
  border: 1px solid transparent;
  border-radius: 4px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-input select + div i {
  color: var(--black);
  margin-right: 1rem;
}
.main-input select:focus {
  outline: none;
}
.main-input select:focus + div {
  box-shadow: 0px 3px 24px rgba(21, 44, 115, 0.05);
  background-color: white;
  border-color: rgba(21, 44, 115, 0.5);
}

textarea {
  resize: none;
  height: 8rem;
}

.general-max-width {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto;
}
.general-max-width.two-wrappers {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.general-max-width.two-wrappers.self-padding-mobile {
  width: 100%;
}
@media (max-width: 800px) {
  .general-max-width.two-wrappers.self-padding-mobile .half-wrapper {
    padding: 3rem 1rem;
  }
}
@media (max-width: 800px) {
  .general-max-width.two-wrappers {
    flex-direction: column;
  }
}
.general-max-width.two-wrappers .half-wrapper {
  width: calc( (100% - 4rem) / 2 );
}
@media (max-width: 800px) {
  .general-max-width.two-wrappers .half-wrapper {
    width: 100%;
  }
}

@media only screen and (max-width : 1090px) {
  .info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.info-section.half-section {
  width: 50%;
}
@media only screen and (max-width : 1090px) {
  .info-section.half-section {
    width: 100%;
  }
}
.info-section .title-one-color h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
  text-transform: uppercase;
}
@media only screen and (max-width : 1090px) {
  .info-section .title-one-color h3 {
    text-align: center;
    font-size: 14px;
  }
}
.info-section .title-one-color h1, .info-section .title-one-color h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: white;
}
@media only screen and (max-width : 1090px) {
  .info-section .title-one-color h1, .info-section .title-one-color h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.info-section p {
  margin-bottom: 3rem;
  color: white;
}
@media only screen and (max-width : 1090px) {
  .info-section p {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.info-section .buttons-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .info-section .buttons-section button, .info-section .buttons-section a {
    margin: auto;
  }
}

.title-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.title-centered h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--medium-gray);
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width : 1090px) {
  .title-centered h3 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.title-centered h1, .title-centered h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--black);
  text-align: center;
}
@media only screen and (max-width : 1090px) {
  .title-centered h1, .title-centered h2 {
    font-size: 2rem;
  }
}
.title-centered h1 span, .title-centered h2 span {
  font-size: 3rem;
  font-weight: bold;
  color: var(--blue-color);
}
@media only screen and (max-width : 1090px) {
  .title-centered h1 span, .title-centered h2 span {
    font-size: 2rem;
  }
}

.medium-gray-text {
  color: var(--medium-gray);
}

.main-wrapper {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
.main-wrapper.big-wrapper {
  padding: 10rem 0;
}
@media only screen and (max-width : 1090px) {
  .main-wrapper.big-wrapper {
    padding: 5rem 0;
  }
}
.main-wrapper.gray-wrapper {
  background-color: var(--gray-1);
}
@media (max-width: 800px) {
  .main-wrapper {
    padding: 3rem 0;
  }
}

.error {
  color: var(--red-color);
}

.d-none {
  display: none;
}

#loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: white;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .loader-wrapper {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#loader .loader-wrapper img {
  width: 100%;
  height: auto;
}
#loader .loading-line {
  height: 4px;
  background-color: white;
  width: 25%;
  position: absolute;
  top: calc(100% + 2rem);
  left: 0;
  display: block;
  animation: loadingAnimation 2s infinite linear;
}

@keyframes loadingAnimation {
  0% {
    width: 25%;
    left: 0;
  }
  24% {
    width: 50%;
  }
  26% {
    width: 50%;
  }
  50% {
    width: 25%;
    left: 75%;
  }
  74% {
    width: 50%;
  }
  76% {
    width: 50%;
  }
  100% {
    width: 25%;
    left: 0;
  }
}
.custom-animation {
  transition: all 0.6s;
  opacity: 0;
}
.custom-animation.d-1 {
  transition-delay: 0.5s;
}
.custom-animation.d-2 {
  transition-delay: 1s;
}

.custom-animation-left {
  transform: translate(-50px, 0);
}

.custom-animation-right {
  transform: translate(50px, 0);
}

.custom-animation-scale {
  transform: scale(0.8);
}

.custom-animation-top {
  transform: translate(0, -50px);
}

.custom-animation-bottom {
  transform: translate(0, 50px);
}

.custom-animation-end {
  opacity: 1;
  transform: scale(1) perspective(0px) rotateX(0deg) translate(0, 0);
}

form .input-wrapper {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}
form .input-wrapper.no-margin {
  margin-bottom: 0;
}
form .input-wrapper label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
form .input-wrapper label span {
  font-size: 14px;
}
form .input-wrapper label span:last-child {
  display: none;
}
form .input-wrapper input, form .input-wrapper textarea {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 0;
  background-color: var(--gray-1);
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
form .input-wrapper input.input-error, form .input-wrapper textarea.input-error {
  border: 1px solid var(--red-color);
}
form .input-wrapper input.input-error ~ label span:last-child, form .input-wrapper textarea.input-error ~ label span:last-child {
  color: var(--red-color);
  display: block;
}
form .input-wrapper input::placeholder, form .input-wrapper textarea::placeholder {
  color: #CBCBCB;
}
form .input-wrapper input:focus, form .input-wrapper textarea:focus {
  outline: none;
  box-shadow: var(--shadow);
}
form .input-wrapper textarea {
  resize: none;
  height: 6rem;
}
form .input-wrapper .select-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-1);
  border-radius: 4px;
}
form .input-wrapper .select-wrapper i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
form .input-wrapper .select-wrapper select {
  appearance: none;
  position: relative;
  border: 0;
  background-color: transparent;
  height: 100%;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 4px;
}
form .input-wrapper .select-wrapper select:focus {
  outline: none;
  box-shadow: var(--shadow);
}

.nav {
  position: relative;
  top: 0;
  z-index: 100;
  overflow: initial;
}
.nav .data-contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .data-contact .data-contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
@media only screen and (max-width : 1090px) {
  .nav .data-contact .data-contact-item {
    padding: 1rem;
  }
}
.nav .data-contact .data-contact-item:hover {
  background-color: var(--gray-2);
}
.nav .data-contact .data-contact-item .icon i {
  font-size: 2rem;
  margin-right: 2rem;
  color: var(--blue-color);
}
.nav .data-contact .data-contact-item .description * {
  font-size: 14px;
}
.nav .data-contact .data-contact-item .description .title {
  font-weight: bold;
}
.nav .data-contact .data-contact-item .description .subtitle {
  color: var(--medium-gray);
}
.nav a.main-button.green-button {
  padding: 11px 1rem;
}
.nav a.main-button.green-button span {
  font-size: 14px;
}
.nav a.main-button.green-button i {
  font-size: 1.25rem;
}
.nav a.main-button.green-button:hover {
  transform: none;
  border-color: var(--green-color);
}
@media only screen and (max-width : 1090px) {
  .nav.nav-desktop {
    display: none;
  }
}
.nav.nav-desktop .white-section {
  width: 100%;
  background-color: white;
}
.nav.nav-desktop .general-max-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav.nav-desktop .general-max-width .logo {
  padding: 1rem 0;
}
.nav.nav-desktop .blue-section {
  background-color: var(--blue-color);
  width: 100%;
}
.nav.nav-desktop .blue-section ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav.nav-desktop .blue-section ul li {
  list-style: none;
  position: relative;
}
.nav.nav-desktop .blue-section ul li:hover a {
  background-color: white;
}
.nav.nav-desktop .blue-section ul li:hover a span, .nav.nav-desktop .blue-section ul li:hover a i {
  color: var(--blue-color);
}
.nav.nav-desktop .blue-section ul li:hover .submenu-navbar {
  display: flex;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar {
  background-color: white;
  border-bottom: 4px solid var(--blue-color);
  position: absolute;
  left: 0;
  top: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 3rem 4rem;
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list {
  margin-right: 4rem;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list:last-child {
  margin-right: 0;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list a.title-menu-list {
  white-space: nowrap;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list a {
  white-space: nowrap;
  color: var(--medium-gray);
  padding: 0;
  display: block;
  margin-bottom: 1rem;
  font-size: 14px;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list a:hover {
  text-decoration: underline;
}
.nav.nav-desktop .blue-section ul li .submenu-navbar .menu-list a:last-child {
  margin-bottom: 0;
}
.nav.nav-desktop .blue-section ul li a {
  color: white;
  text-decoration: none;
  padding: 1.5rem;
  display: block;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav.nav-desktop .blue-section ul li a span {
  color: white;
  display: block;
  position: relative;
  font-weight: bold;
}
.nav.nav-desktop .blue-section ul li a span:after {
  bottom: -24px;
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: transparent;
  content: "";
}
.nav.nav-desktop .blue-section ul li a i {
  font-size: 12px;
  color: white;
  margin-left: 0.5rem;
}
.nav.nav-desktop .blue-section ul li a.active span:after {
  background-color: white;
}
.nav.nav-mobile {
  display: none;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
  overflow: initial;
}
@media only screen and (max-width : 1090px) {
  .nav.nav-mobile {
    display: block;
  }
}
.nav.nav-mobile .white-section {
  background-color: white;
  position: relative;
  z-index: 1;
}
.nav.nav-mobile .white-section .top-section {
  border-bottom: 1px solid var(--gray-2);
}
@media only screen and (max-width : 1090px) {
  .nav.nav-mobile .white-section .top-section {
    padding: 0.5rem 0;
  }
}
.nav.nav-mobile .white-section .top-section .general-max-width {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.nav.nav-mobile .white-section .bottom-section {
  padding: 12px 0;
}
.nav.nav-mobile .white-section .bottom-section .general-max-width {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav.nav-mobile .white-section .bottom-section .bars {
  margin-right: auto;
}
.nav.nav-mobile .white-section .bottom-section .bars i {
  font-size: 2rem;
}
.nav.nav-mobile .white-section .bottom-section .main-button {
  padding: 0 1rem;
  height: 44px;
}
.nav.nav-mobile .white-section .bottom-section .phone {
  margin-left: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav.nav-mobile .white-section .bottom-section .phone i {
  color: white;
  font-size: 1.5rem;
}
.nav.nav-mobile .blue-section {
  width: 100%;
  background-color: var(--blue-color);
  position: absolute;
  z-index: 0;
  transition: all 0.2s;
  margin-top: -275px;
  padding: 1.5rem 0;
}
.nav.nav-mobile .blue-section ul li a {
  width: 100%;
  padding: 12px 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav.nav-mobile .blue-section ul li a i {
  color: white;
  margin-left: auto;
}
.nav.nav-mobile .blue-section.opened {
  margin-top: 0;
}
.nav .slider-item {
  height: auto;
}

.page-menu {
  position: fixed;
  top: 0;
  left: 100%;
  transition: all 0.2s;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: white;
  z-index: 101;
}
.page-menu.opened {
  left: 0;
}
.page-menu .header {
  padding: 1rem;
  background-color: var(--blue-color);
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
}
.page-menu .header a, .page-menu .header i {
  color: white;
  font-size: 1.5rem;
}
.page-menu .header a {
  font-weight: bold;
  margin-left: 1rem;
}
.page-menu .links {
  padding: 1rem;
}
.page-menu .links .links-item .title {
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.page-menu .links .links-item .title span {
  font-weight: bold;
}
.page-menu .links .links-item .links-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid var(--gray-2);
  padding: 1rem;
  display: none;
}
.page-menu .links .links-item .links-list a {
  text-decoration: none;
  color: var(--light-black);
  margin-bottom: 1rem;
  font-size: 14px;
  display: block;
}
.page-menu .links .links-item .links-list a:last-child {
  margin-bottom: 0;
}

footer .gray-section {
  background-color: var(--gray-1);
  padding: 5rem 0;
}
@media only screen and (max-width : 1090px) {
  footer .gray-section {
    padding: 2rem 0;
    padding-bottom: 4rem;
  }
}
footer .general-max-width {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width {
    flex-direction: column;
  }
}
footer .general-max-width .links-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 2rem;
  max-width: 189px;
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width .links-item {
    width: 100%;
    max-width: unset;
  }
}
footer .general-max-width .links-item h6 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--light-black);
}
footer .general-max-width .links-item h6 i {
  display: none;
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width .links-item h6 i {
    display: block;
    color: inherit;
  }
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width .links-item h6 {
    margin-bottom: 0;
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width .links-item .links {
    display: none;
    padding: 1rem;
  }
}
footer .general-max-width .links-item .links a {
  text-decoration: none;
  margin-bottom: 1rem;
  color: var(--medium-gray);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
}
footer .general-max-width .links-item .links a:hover {
  text-decoration: underline;
}
footer .general-max-width .links-item .links a:hover i {
  text-decoration: none;
}
footer .general-max-width .links-item .links a i {
  color: var(--light-black);
  margin-right: 0.5rem;
  margin-top: 3px;
  text-decoration: none;
}
footer .general-max-width .links-item .links a:last-child {
  margin-bottom: 0;
}
footer .general-max-width .logo-section {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
footer .general-max-width .logo-section .logos-section {
  display: grid;
  grid-template-columns: 0.386fr 0.614fr;
  gap: 2rem;
  width: 100%;
}
@media only screen and (max-width : 1090px) {
  footer .general-max-width .logo-section {
    margin: auto;
    margin-top: 4rem;
  }
}
footer .general-max-width .logo-section .social-media-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .general-max-width .logo-section .social-media-section .social-media-item {
  margin-top: 2rem;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
footer .general-max-width .logo-section .social-media-section .social-media-item:last-child {
  margin-left: 2rem;
}
footer .general-max-width .logo-section .social-media-section .social-media-item i {
  font-size: 2rem;
  margin-top: 3px;
  color: #0B65F5;
}
footer .general-max-width .logo-section .social-media-section .social-media-item i, footer .general-max-width .logo-section .social-media-section .social-media-item img {
  margin-right: 0.5rem;
}
footer .blue-section {
  background-color: var(--blue-color);
  width: 100%;
  padding: 1.5rem 0;
}
footer .blue-section .general-max-width {
  justify-content: space-between;
  align-items: center;
}
footer .blue-section .general-max-width p, footer .blue-section .general-max-width a {
  color: white;
}
@media only screen and (max-width : 1090px) {
  footer .blue-section .general-max-width p, footer .blue-section .general-max-width a {
    text-align: center;
  }
}
@media only screen and (max-width : 1090px) {
  footer .blue-section .general-max-width a {
    margin-top: 1rem;
    text-decoration: underline;
  }
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width : 1090px) {
  .slider-wrapper.slider-contact {
    width: calc( 100% - 115px );
    max-width: 260px;
    margin-left: auto;
  }
}

.slider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .slider {
    align-items: stretch;
  }
}

/** ESTILO PARA LOS FRAMES **/
.slider-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  height: 100vh;
  max-height: 600px;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width : 1090px) {
  .slider-item {
    overflow-x: hidden;
    max-height: unset;
    height: auto;
  }
}
.slider-item .general-max-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .slider-item .general-max-width {
    flex-direction: column;
    height: 100%;
    padding: 5rem 0;
    justify-content: center;
    max-width: 580px;
  }
}
@media only screen and (max-width : 500px) {
  .slider-item .general-max-width {
    padding: 2rem;
  }
}
.slider-item .slider-section {
  width: 40%;
}
@media only screen and (max-width : 1090px) {
  .slider-item .slider-section {
    width: 100%;
  }
}
.slider-item .slider-section:last-child {
  width: 60%;
}
@media only screen and (max-width : 1090px) {
  .slider-item .slider-section:last-child {
    width: 100%;
  }
}
.slider-item .slider-section img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width : 1090px) {
  .slider-item .slider-section img {
    display: none;
  }
}
.slider-item .slider-section .img-movil {
  display: none;
}
@media only screen and (max-width : 1090px) {
  .slider-item .slider-section .img-movil {
    display: block;
    width: auto;
    height: 190px;
    margin-bottom: 1rem;
  }
}
.slider-item .slider-section a {
  min-width: unset;
  width: 50%;
  margin-right: 1rem;
}
.slider-item .slider-section a:last-child {
  margin-right: 0;
}
@media only screen and (max-width : 1090px) {
  .slider-item .slider-section .buttons-section {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .column .slider-item {
    flex-direction: column;
  }
  .column .slider-item .item-inside {
    margin-bottom: 1rem;
    width: 100%;
  }
  .column .slider-item .item-inside:last-child {
    margin-bottom: 0;
  }
}

/** Estilos para frames individuales **/
.s1 {
  background-image: url("/assets/images/home/hero-unidades-y-equipos.jpg");
}
@media only screen and (max-width : 1090px) {
  .s1 {
    background-image: url("/assets/images/home/slider-equipos.jpg");
  }
}

.s2 {
  background-image: url("/assets/images/home/hero-refacciones-bg.jpg");
}
.s2 .slider-section img {
  width: 78%;
  height: auto;
  margin-left: auto;
}
@media only screen and (max-width : 1090px) {
  .s2 {
    background-image: url("/assets/images/home/slider-refacciones.jpg");
  }
}

.s3 {
  background-image: url("/assets/images/home/hero-servicio-tecnico-bg.jpg");
}
@media only screen and (max-width : 1090px) {
  .s3 {
    background-image: url("/assets/images/home/slider-servicio-tecnico.jpg");
  }
}

.points {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width : 1090px) {
  .points {
    bottom: 8px;
  }
}

.points-item {
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.points-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width : 1090px) {
  .points-item {
    width: 8px;
    height: 8px;
    margin-right: 8px;
  }
}
.points-item:hover {
  background-color: var(--blue-color);
}
.points-item.active {
  background-color: var(--green-color);
}

.slider-item-animation {
  transition: all 0.2s;
}

.slider-item-animation-end {
  transform: translateX(0px);
}

#sliderDos .slider-item {
  min-height: unset;
}

#sliderClientes .slider-item {
  height: auto;
  max-height: unset;
  padding: 4rem 0;
  min-height: unset;
}
@media only screen and (max-width : 1090px) {
  #sliderClientes .slider-item {
    padding: 2rem 0;
  }
}
#sliderClientes .slider-item .general-max-width {
  padding: 0;
}
#sliderClientes .slider-item .general-max-width img {
  height: auto;
}

#pointsClientes .points-item {
  background-color: var(--gray-2);
}
#pointsClientes .points-item.active {
  background-color: var(--blue-color);
}

.boxes-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 4rem;
}
@media only screen and (max-width : 1090px) {
  .boxes-wrapper {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.boxes-wrapper.small-image .box-shadowed {
  cursor: default;
}
.boxes-wrapper.small-image .box-shadowed img {
  height: 140px;
}
.boxes-wrapper .box-shadowed {
  width: calc((100% - 60px) / 3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s;
}
@media only screen and (max-width : 1090px) {
  .boxes-wrapper .box-shadowed {
    width: 100%;
    margin-bottom: 2rem;
  }
  .boxes-wrapper .box-shadowed:last-child {
    margin-bottom: 0;
  }
}
.boxes-wrapper .box-shadowed:hover {
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.15);
}
.boxes-wrapper .box-shadowed:hover img {
  transform: translateY(-8px);
}
.boxes-wrapper .box-shadowed img {
  height: 240px;
  width: auto;
  margin-bottom: 2rem;
  transition: all 0.2s;
}
.boxes-wrapper .box-shadowed .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.boxes-wrapper .box-shadowed .description h4 {
  font-weight: bold;
  text-align: center;
}
.boxes-wrapper .box-shadowed .description h4 span {
  font-weight: inherit;
  text-align: inherit;
  font-size: inherit;
  color: var(--blue-color);
}
.boxes-wrapper .box-shadowed .description p {
  text-align: center;
  margin-top: 1rem;
}
.boxes-wrapper .box-shadowed .description button {
  margin-top: 2rem;
  color: var(--blue-color);
  text-align: center;
  font-weight: bold;
}
.boxes-wrapper .box-shadowed .description button i {
  color: var(--blue-color);
}

.distribuidor-wrapper {
  background-image: url("/assets/images/home/banner-distribuidor-oficial.jpg");
}
@media only screen and (max-width : 1090px) {
  .distribuidor-wrapper {
    background-image: url("/assets/images/home/banner-distribuidor-oficial-movil.jpg");
  }
}

.beneficios-wrapper p.footer-section {
  margin-top: 4rem;
  text-align: center;
}
.beneficios-wrapper p.footer-section a {
  font-weight: bold;
  cursor: pointer;
}
.beneficios-wrapper p.footer-section a, .beneficios-wrapper p.footer-section a i {
  color: var(--blue-color);
}

.agendar-wrapper {
  background-image: url("/assets/images/home/banner-servicio-tecnico.jpg");
}
@media only screen and (max-width : 1090px) {
  .agendar-wrapper {
    background-image: url("/assets/images/home/banner-agenda-servicio.jpg");
  }
}

.client-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  width: 100%;
}
@media only screen and (max-width : 1090px) {
  .client-grid-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.client-grid-wrapper img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  filter: grayscale(1);
  transition: all 0.2s;
  opacity: 0.5;
}
.client-grid-wrapper img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@media only screen and (max-width : 1090px) {
  .client-grid-wrapper img {
    filter: grayscale(0);
    opacity: 1;
  }
}

.servicio-integral-wrapper {
  background-image: url("/assets/images/home/banner-inferior.jpg");
}

.hero {
  width: 100%;
  max-height: 600px;
  background-image: url("/assets/images/pages/hero-colores-carrier.jpg");
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width : 1090px) {
  .hero {
    overflow: initial;
  }
}
@media only screen and (max-width : 1090px) {
  .hero.shop-hero {
    max-height: 400px;
  }
}
@media only screen and (max-width : 1090px) {
  .hero.shop-hero .info {
    padding: 4rem 0;
    margin: 0;
  }
}
@media only screen and (max-width : 1090px) {
  .hero.shop-hero .img {
    display: none;
  }
}
.hero.shop-hero.velocidad-hero {
  background-image: url("/assets/images/equipos/unidades-velocidad-variable.jpg");
}
.hero.shop-hero.camion-hero {
  background-image: url("/assets/images/equipos/unidades-camion.jpg");
}
.hero.shop-hero.trailer-hero {
  background-image: url("/assets/images/equipos/unidades-trailer.jpg");
}
.hero.shop-hero .info h1, .hero.shop-hero .info h3, .hero.shop-hero .info h2, .hero.shop-hero .info p {
  color: white;
}
@media only screen and (max-width : 1090px) {
  .hero {
    max-height: unset;
    background-image: url("/assets/images/pages/hero-colores-carrier-movil.jpg");
    background-position: bottom center;
  }
}
.hero .general-max-width {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .hero .general-max-width {
    flex-direction: column;
  }
}
.hero .info {
  width: 50%;
  padding: 6rem 0;
}
@media only screen and (max-width : 1090px) {
  .hero .info {
    width: 100%;
    padding: 3rem 0;
    padding-bottom: 1rem;
  }
}
.hero .info h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--medium-gray);
  text-transform: uppercase;
}
@media only screen and (max-width : 1090px) {
  .hero .info h3 {
    text-align: center;
    font-size: 14px;
  }
}
.hero .info h1, .hero .info h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--black);
}
.hero .info h1 span, .hero .info h2 span {
  font-size: inherit;
  color: var(--blue-color);
  font-weight: inherit;
}
@media only screen and (max-width : 1090px) {
  .hero .info h1, .hero .info h2 {
    text-align: center;
    font-size: 2rem;
  }
}
.hero .info p {
  color: var(--black);
}
@media only screen and (max-width : 1090px) {
  .hero .info p {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.hero .img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media only screen and (max-width : 1090px) {
  .hero .img {
    width: 100%;
    padding-bottom: 3rem;
    height: 188px;
  }
  .hero .img img {
    height: 100%;
    width: auto;
  }
}
.hero .img.bottom-mobile {
  margin-top: auto;
}
@media only screen and (max-width : 1090px) {
  .hero .img.bottom-mobile {
    padding-bottom: 0;
  }
}

.nuestros-servicios .boxes-wrapper .box-shadowed img {
  height: 140px;
}

.agenda-section-wrapper .agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media only screen and (max-width : 1090px) {
  .agenda-section-wrapper .agenda-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
}
.agenda-section-wrapper .agenda-grid .agenda-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.agenda-section-wrapper .agenda-grid .agenda-item:hover {
  transform: translateY(-10px);
}
.agenda-section-wrapper .agenda-grid .agenda-item img {
  margin-right: 2rem;
}
.agenda-section-wrapper a {
  margin: auto;
  margin-top: 3rem;
  max-width: 220px;
}

.asesoria-wrapper .general-max-width {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .general-max-width {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.asesoria-wrapper .half-section {
  width: 50%;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section {
    width: 100%;
  }
}
.asesoria-wrapper .half-section img {
  margin: auto;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section img {
    max-width: 80%;
  }
}
.asesoria-wrapper .half-section .title-centered {
  align-items: flex-start;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section .title-centered {
    align-items: center;
  }
}
.asesoria-wrapper .half-section .title-centered * {
  text-align: left;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section .title-centered * {
    text-align: center;
  }
}
.asesoria-wrapper .half-section p {
  margin-bottom: 2rem;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section p {
    text-align: center;
  }
}
.asesoria-wrapper .half-section a {
  max-width: 220px;
}
@media only screen and (max-width : 1090px) {
  .asesoria-wrapper .half-section a {
    margin: auto;
    margin-bottom: 4rem;
  }
}

@media only screen and (max-width : 1090px) {
  .contact-form-wrapper {
    overflow: initial;
    z-index: 1;
    position: relative;
  }
}
.contact-form-wrapper .general-max-width {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width {
    flex-direction: column;
  }
}
.contact-form-wrapper .general-max-width .blue-section {
  width: 30%;
  margin-right: 3.5rem;
  background-color: var(--blue-color);
  padding: 2rem;
  border-radius: 8px;
}
.contact-form-wrapper .general-max-width .blue-section * {
  color: white;
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .blue-section {
    width: 100%;
    margin-top: -5rem;
    margin-bottom: 3rem;
  }
}
.contact-form-wrapper .general-max-width .blue-section .data-contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  transition: all 0.2s;
  border-radius: 4px;
  cursor: pointer;
}
.contact-form-wrapper .general-max-width .blue-section .data-contact:last-child {
  margin-bottom: 0;
}
.contact-form-wrapper .general-max-width .blue-section .data-contact .icon {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.contact-form-wrapper .general-max-width .blue-section .data-contact .icon i {
  color: var(--blue-color);
}
.contact-form-wrapper .general-max-width .blue-section .data-contact p {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact-form-wrapper .general-max-width .blue-section .data-contact p span {
  font-size: 14px;
}
.contact-form-wrapper .general-max-width .blue-section .data-contact p span:last-child {
  color: var(--gray-2);
}
.contact-form-wrapper .general-max-width .form-wrapper {
  width: 70%;
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper .title-centered {
    align-items: center;
  }
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper .title-centered * {
    text-align: center;
  }
}
.contact-form-wrapper .general-max-width .form-wrapper form {
  width: 100%;
}
.contact-form-wrapper .general-max-width .form-wrapper form .grid-inputs {
  margin-bottom: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper form .grid-inputs {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }
}
.contact-form-wrapper .general-max-width .form-wrapper form .grid-inputs textarea {
  grid-column: span 2;
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper form .grid-inputs textarea {
    grid-column: span 1;
  }
}
@media only screen and (max-width : 1090px) {
  .contact-form-wrapper .general-max-width .form-wrapper form button {
    margin: auto;
  }
}
.contact-form-wrapper .title-centered {
  align-items: flex-start;
}
.contact-form-wrapper .title-centered h2 {
  font-size: 40px;
}
.contact-form-wrapper .title-centered * {
  text-align: left;
}

@media only screen and (max-width : 1090px) {
  .contacto-hero .img {
    height: 220px;
  }
}

.facebook-banner {
  padding-top: 0;
}
.facebook-banner .general-max-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/assets/images/contacto/imagen-facebook.jpg");
  background-position: center;
  background-size: cover;
  padding: 4rem 1rem;
}
.facebook-banner .general-max-width h3 {
  font-size: 2.5rem;
  margin: 2rem 0;
  color: white;
  text-align: center;
}
.facebook-banner .general-max-width h3 i {
  color: white;
  font-size: 2.5rem;
}

.shop .title-shop h1 {
  font-size: 2rem;
  color: var(--blue-color);
}
.shop .title-shop .route {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.shop .title-shop .route span:last-child {
  color: var(--blue-color);
}
.shop .title-shop .route i {
  margin: 0 1rem;
}

.refacciones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
}
@media only screen and (max-width : 1090px) {
  .refacciones-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 3rem;
  }
}
.refacciones-grid .refaccion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.refacciones-grid .refaccion.equipo-item {
  cursor: pointer;
}
.refacciones-grid .refaccion.equipo-item img {
  transition: all 0.2s;
}
.refacciones-grid .refaccion.equipo-item:hover img {
  transform: translateY(-10px);
}
.refacciones-grid .refaccion.equipo-item h2 {
  font-weight: normal;
}
.refacciones-grid .refaccion img {
  background-color: var(--gray-2);
  border-radius: 8px;
}
.refacciones-grid .refaccion h2 {
  font-size: 18px;
  display: block;
  text-transform: lowercase;
  margin: 1rem 0;
  text-align: center;
}
.refacciones-grid .refaccion h2::first-letter {
  text-transform: uppercase;
}
@media only screen and (max-width : 1090px) {
  .refacciones-grid .refaccion h2 {
    font-size: 1rem;
  }
}
@media only screen and (max-width : 1090px) {
  .refacciones-grid .refaccion a {
    min-width: unset;
    width: 100%;
    padding: 0.5rem 0;
  }
  .refacciones-grid .refaccion a span {
    font-size: 14px;
  }
}

.equipos-slider {
  position: relative;
}
.equipos-slider:hover .slider-button {
  display: flex;
}
@media only screen and (max-width : 1090px) {
  .equipos-slider:hover .slider-button {
    display: none !important;
  }
}
.equipos-slider .slider-button {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.05);
  z-index: 2;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.equipos-slider .slider-button i {
  font-size: 2rem;
}
.equipos-slider .slider-button.left {
  left: -40px;
}
.equipos-slider .slider-button.right {
  right: -40px;
}

.grid-equipos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1rem;
  height: auto;
}
.grid-equipos .equipo-wrapper img {
  background-color: var(--gray-2);
  border-radius: 8px;
}
.grid-equipos .equipo-wrapper h4 {
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.equipos-slider-section {
  margin: auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-2);
  margin-bottom: 4rem;
  max-width: 1200px;
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section {
    border-bottom: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
  }
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section .slider-wrapper .slider {
    margin-left: 0 !important;
    width: 750% !important;
  }
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section .slider-wrapper .slider-item {
    margin-left: 1rem;
    width: 250%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: revert;
  }
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section .slider-wrapper .slider-item:last-child {
    margin-right: 1rem;
  }
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section .slider-wrapper {
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .equipos-slider-section .slider-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.equipos-slider-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.equipos-slider-section .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width : 1090px) {
  .equipos-slider-section .title {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
}
.equipos-slider-section .title a {
  color: var(--blue-color);
  text-decoration: none;
  font-weight: bold;
}
.equipos-slider-section .title a i {
  color: inherit;
}

.need-help-wrapper {
  position: fixed;
  overflow: initial;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--blue-color);
  padding: 1rem;
  width: calc(100% - 2rem);
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  z-index: 100;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    bottom: 110px;
  }
}
.need-help-wrapper img {
  height: 104px;
  width: auto;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper img {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
  }
}
.need-help-wrapper .description {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 1rem;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description {
    background-color: var(--blue-color);
    width: 100%;
    position: relative;
    padding: 1rem;
    padding-left: 100px;
    border-radius: 8px;
    box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.2);
    border-top-left-radius: 20px;
  }
}
.need-help-wrapper .description .question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.need-help-wrapper .description .question h4 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  color: white;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description .question h4 {
    font-size: 10px;
  }
}
.need-help-wrapper .description .question h3 {
  font-size: 24px;
  color: white;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description .question h3 {
    font-size: 1rem;
  }
}
.need-help-wrapper .description .actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description .actions {
    position: absolute;
    right: 22px;
    top: 9px;
  }
}
.need-help-wrapper .description .actions button.close i {
  font-size: 24px;
  color: white;
  cursor: pointer;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description .actions button.close i {
    font-size: 1rem;
    position: absolute;
  }
}
.need-help-wrapper .description .actions .main-button {
  min-width: unset;
  width: 140px;
}
@media only screen and (max-width : 1090px) {
  .need-help-wrapper .description .actions .main-button {
    display: none;
  }
}

#alert {
  width: 90%;
  max-width: 510px;
  border-left: 8px solid black;
  background-color: white;
  padding: 1rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.05);
  animation: alertAnimation 0.5s;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
}
#alert button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
#alert.success {
  border-left-color: var(--blue-color);
}
#alert.success h2 {
  color: var(--blue-color);
}
#alert.error {
  border-left-color: var(--red-color);
}
#alert.error h2 {
  color: var(--red-color);
}

@keyframes alertAnimation {
  from {
    right: -530px;
  }
  to {
    right: 2rem;
  }
}
.detail-route {
  padding: 2rem 0;
}
.detail-route .route a {
  text-decoration: none;
}
.detail-route .route a:hover {
  text-decoration: underline;
}
.detail-route .route span {
  color: var(--blue-color);
}
.detail-route .route i {
  margin: 0 1rem;
}
@media only screen and (max-width : 1090px) {
  .detail-route {
    display: none;
  }
}

@media only screen and (max-width : 1090px) {
  .detail-wrapper {
    border-bottom: 1px solid var(--gray-2);
  }
}

.detail-container {
  border: 1px solid var(--gray-1);
  border-radius: 8px;
  padding: 3rem;
}
@media only screen and (max-width : 1090px) {
  .detail-container {
    padding: 2rem 0;
    border: 0;
  }
}
.detail-container .main-data {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.detail-container .main-data img {
  width: 35%;
  margin-right: 2rem;
  background-color: var(--gray-1);
  border-radius: 8px;
}
@media only screen and (max-width : 1090px) {
  .detail-container .main-data img {
    display: none;
  }
}
.detail-container .main-data .description img {
  display: none;
}
@media only screen and (max-width : 1090px) {
  .detail-container .main-data .description img {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }
}
.detail-container .main-data .description h1 {
  font-size: 40px;
  color: var(--blue-color);
}
@media only screen and (max-width : 1090px) {
  .detail-container .main-data .description h1 {
    font-size: 2rem;
    text-align: center;
  }
}
.detail-container .main-data .description p {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.detail-container .main-data .description .buttons-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.detail-container .main-data .description .buttons-wrapper a:last-child {
  margin-left: 1rem;
}
@media only screen and (max-width : 1090px) {
  .detail-container .main-data .description .buttons-wrapper a:last-child {
    width: 65%;
  }
}
@media only screen and (max-width : 1090px) {
  .detail-container .main-data .description .buttons-wrapper a {
    min-width: unset;
    width: 35%;
  }
}
.detail-container .tabs-data {
  margin-top: 4rem;
  border-top: 1px solid var(--gray-1);
  padding: 4rem 0;
  padding-bottom: 0;
}
@media only screen and (max-width : 1090px) {
  .detail-container .tabs-data {
    padding: 2rem 0;
    margin-top: 2rem;
  }
}
.detail-container .tabs-data .tabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width : 1090px) {
  .detail-container .tabs-data .tabs {
    width: 100%;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .detail-container .tabs-data .tabs::-webkit-scrollbar {
    display: none;
  }
}
.detail-container .tabs-data .tabs .tab {
  padding: 1rem;
  min-width: 250px;
  border: 1px solid var(--medium-gray);
  color: var(--medium-gray);
  border-radius: 8px;
  margin-right: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  font-weight: bold;
}
.detail-container .tabs-data .tabs .tab:hover {
  color: var(--black);
  border-color: var(--black);
}
.detail-container .tabs-data .tabs .tab.active {
  color: var(--blue-color);
  border-color: var(--blue-color);
  cursor: default;
}
.detail-container .tabs-data .info {
  margin-top: 2rem;
}
.detail-container .tabs-data .info > div {
  display: none;
}
.detail-container .tabs-data .info .tab-info {
  animation: justOpacity 0.5s;
}
.detail-container .tabs-data .info .tab-info span {
  line-height: 1.8;
}
.detail-container .tabs-data .info #desc {
  display: block;
}
.detail-container .tabs-data .info li {
  list-style-position: inside;
}
.detail-container .tabs-data .info .doc {
  width: 100%;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--gray-1);
  text-decoration: none;
  border-radius: 8px;
}
.detail-container .tabs-data .info .doc span {
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.detail-container .tabs-data .info .doc span i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.detail-container .tabs-data .info .doc span:last-child {
  color: var(--blue-color);
}
.detail-container .tabs-data .info .doc span:last-child i {
  color: inherit;
  margin-right: 0;
  margin-left: 0.5rem;
  font-size: 1rem;
}
.detail-container .tabs-data .info .doc:last-child {
  margin-bottom: 0;
}

@keyframes justOpacity {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/*# sourceMappingURL=style.css.map */
