@font-face {
  font-family: "XFINITY MStandard";
  src: url("../font/xfinitym_standard_light.otf");
  font-weight: 300;
}

@font-face {
  font-family: "XFINITY MStandard";
  src: url("../font/xfinitym_standard_regular.otf");
  font-weight: normal;
}

@font-face {
  font-family: "XFINITY MStandard";
  src: url("../font/xfinitym_standard_medium.otf");
  font-weight: 500;
}

@font-face {
  font-family: "XFINITY MStandard";
  src: url("../font/xfinitym_standard_bold.otf");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf");
}

:root {
  --primary-blue: hsl(226, 100%, 25%);
  --grey: hsla(0, 0%, 0%, 0.5);
  --dark: hsl(0, 0%, 7%);
  --grey-title: rgba(0, 0, 0, 0.7);
  --grey-text: #4b4949;
}

* {
  font-family: "XFINITY MStandard", "Roboto", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.underline {
  text-decoration: underline;
}

.main__title {
  color: var(--primary-blue);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  padding-left: 2rem;
}

.section-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.material-icons {
  font-size: 17px;
}

/* --------------------------------- HEADER ------------------------------------------ */
header {
  max-width: 100%;
  top: 0;
  z-index: 99;
  margin: 0 auto;
  margin-bottom: 16px;
  margin-top: 8px;
}

nav {
  padding: 0 180px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin: 0 auto;
}

.header__logo {
  margin: 15px 0 0 0;
  width: 250px;
}

header ul {
  margin-top: 15px;
  padding: 0px;
  list-style: none;
  height: 58px;
  display: flex;
  align-items: center;
}

header li {
  display: inline;
  margin: 0px 25px;
}

header a {
  font-weight: bold;
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  /* padding: 7px 15px; */
}

a:hover {
  color: var(--primary-blue);
}

.active-page {
  color: var(--primary-blue);
}

.active-page-rounded {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 7px 16px;
}

/* --------------------------BurgerMenu-------------------------- */
#btn__burger-menu {
  display: none;
}

header label {
  display: none;
  color: var(--primary-blue);
  font-size: 40px;
  padding: 20px;
}

nav label:hover {
  cursor: pointer;
}

header .social-medias {
  display: none;
  margin: 0;
}

.social-medias i {
  font-size: 30px;
  color: var(--primary-blue);
  margin: 10px -25px 0 20px;
}

/* ------------------ Home css ------------------ */
/* ------------ Section Home -------------- */
.home__main {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home__back-img {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 720px;
  background: linear-gradient(rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1)),
    url(../images/home__back-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#home__home {
  width: 100%;
  padding: 0 40px;
  margin: 10px auto 180px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home__title-container {
  padding-left: 120px;
}

.home__main-title {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 58px;
  color: var(--primary-blue);
  width: 400px;
  line-height: 58px;
  margin: 0px 0px;
  margin-bottom: 25px;
}

.home__know-us {
  text-decoration: none;
  color: var(--primary-blue);
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 8px 32px;
  transition: 150ms all ease;
}

.home__know-us:hover {
  color: white;
  background-color: var(--primary-blue);
}


.home__all-cards {
  width: 100%;
  padding: 0 60px;
  margin: 250px auto -180px auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mostto__card {
  width: 237px;
  height: 300px;
  /* height: min-content; */
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 32px;
}

.home__card {
  justify-content: center;
  background: #ffffff;
  box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

.home__card:not(:last-child) {
  margin-right: 125px;
}

.home__card img {
  margin-bottom: 28px;
  width: 60px;
}

.card__paq-img {
  width: 130px !important;
}

.home__card h6 {
  margin-bottom: 16px;
  font-family: "XFINITY MStandard";
  font-weight: bold;
  font-size: 18px;
  color: hsl(0, 0%, 51%);
  text-align: center;
}

.home__card a {
  font-size: 14px;
  font-family: "Roboto";
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-blue);
  padding: 10px 42px;
  border-radius: 20px;
  border: 2px solid var(--primary-blue);
  margin: 20px 0;
  text-align: center;
}

.home__card a:hover {
  color: white;
  background-color: var(--primary-blue);
}

/* ------------ Section FAQ -------------- */
#home__faq {
  margin: 100px auto 80px auto;
  max-width: 1080px;
  padding: 0 60px;
}

.home__accordion-container {
  display: flex;
  flex-direction: row;
  background-color: hsl(216, 93%, 94%);
  width: 1080px;
  height: 50px;
  overflow: hidden;
  border: 1px solid hsl(213, 94%, 69%);
  border-radius: 20px;
  padding: 16px 0 16px 26px;
  margin: 15px auto;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.home__accordion-container2 {
  padding-top: 10px;
}

.home__accordion-container2 .home__angle-container {
  padding-top: 5px;
}

.home__accordion-content {
  width: 80%;
  height: auto;
}

.home__accordion-content p {
  display: none;
  font-weight: 300;
  font-size: 15px;
  margin-top: 5px;
  max-width: 90%;
}

.home__accordion-content span {
  text-decoration: underline;
  font-weight: 300;
  margin-right: 5px;
}

.accordion-content-title {
  font-weight: 700 !important;
  font-size: 20px !important;
}

.accordion-p {
  margin: 0 !important;
}

.home__accordion-content iframe {
  display: none;
}

.home__accordion-container h3 {
  font-family: "Roboto";
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
}

.home__angle-container {
  display: flex;
  justify-content: flex-end;
  width: 20%;
  margin: -15px 0 0 0;
}

.accordion-chbox {
  display: none;
}

:checked~#home__accordion-container1 {
  height: auto;
}

:checked~#home__accordion-container1>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

:checked~#home__accordion-container1>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
}

#accordion2:checked~#home__accordion-container2 {
  height: auto;
}

#accordion2:checked~#home__accordion-container2>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion2:checked~#home__accordion-container2>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
}

.faq__link-to-distribution {
  text-decoration: underline !important;
  color: black !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-left: 5px;
  font-weight: 700 !important;
}

.faq__link-to-distribution:hover {
  background-color: transparent !important;
  text-decoration: none !important;
}

#accordion3:checked~#home__accordion-container3 {
  height: auto;
}

#accordion3:checked~#home__accordion-container3>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion3:checked~#home__accordion-container3>.home__accordion-content iframe {
  display: inline-block;
  margin: 30px 0 15px 0;
  width: 760px;
  height: 390px;
}

#accordion4:checked~#home__accordion-container4 {
  height: auto;
}

#accordion4:checked~#home__accordion-container4>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion4:checked~#home__accordion-container4>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion5:checked~#home__accordion-container5 {
  height: auto;
}

#accordion5:checked~#home__accordion-container5>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion5:checked~#home__accordion-container5>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion6:checked~#home__accordion-container6 {
  height: auto;
}

#accordion6:checked~#home__accordion-container6>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion6:checked~#home__accordion-container6>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion7:checked~#home__accordion-container7 {
  height: auto;
}

#accordion7:checked~#home__accordion-container7>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion7:checked~#home__accordion-container7>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion8:checked~#home__accordion-container8 {
  height: auto;
}

#accordion8:checked~#home__accordion-container8>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion8:checked~#home__accordion-container8>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion9:checked~#home__accordion-container9 {
  height: auto;
}

#accordion9:checked~#home__accordion-container9>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion9:checked~#home__accordion-container9>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion10:checked~#home__accordion-container10 {
  height: auto;
}

#accordion10:checked~#home__accordion-container10>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion10:checked~#home__accordion-container10>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

#accordion11:checked~#home__accordion-container11 {
  height: auto;
}

#accordion11:checked~#home__accordion-container11>.home__angle-container>.angle-down {
  transform: rotate(180deg);
  transition: transform 150ms ease;
}

#accordion11:checked~#home__accordion-container11>.home__accordion-content p {
  display: inline-block;
  margin-top: 20px;
  width: max-content;
  max-width: 100%;
}

.home__angle-container .material-icons-round {
  font-size: 50px;
  cursor: pointer;
  color: hsl(226, 100%, 25%);
}

.home__angle-container .angle-up {
  cursor: pointer;
}

#home__accordion-container3 h3 {
  margin-top: -5px;
}

#home__accordion-container2 h3 {
  margin-top: 0px;
}

#home__accordion-container10 h3 {
  margin-top: -6px;
}

.home__faq-11-last-p {
  margin: 0 !important;
}

#home__faq a {
  font-size: 14px;
  font-family: "Roboto";
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-blue);
  padding: 10px 42px;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
}

#home__faq a:hover {
  color: white;
  background-color: var(--primary-blue);
}

.faq__show-more {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

/* ----- Ver mas y Ver menos ----- */
#home__faq-label-more {
  cursor: pointer;
}

#home__faq-label-less,
#home__faq-more-q-input,
.home__faq-more-q {
  display: none;
}

#home__faq-more-q-input:checked~div>#home__faq-label-less {
  display: block;
  cursor: pointer;
}

#home__faq-more-q-input:checked~div>#home__faq-label-more {
  display: none;
}

#home__faq-more-q-input:checked~.home__faq-more-q {
  display: block;
}

/* ------------ Section Form -------------- */
#home__contact-form {
  background: linear-gradient(180deg, #f1f4f8 0%, rgba(241, 244, 248, 0) 100%);
  width: 100%;
  margin-bottom: 30px;
}

.page-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 58px;
  color: var(--primary-blue);
  margin-top: 55px;
}

.contact-form-container {
  max-width: 1080px;
  padding: 0 60px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.form-img-container {
  display: flex;
  margin: 30px 0;
  justify-content: space-between;
}

.form-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

#asc {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.form-content fieldset {
  padding: 0;
  border: 0;
  outline: 0;
}

.form-content input {
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  background-color: hsl(213, 28%, 92%);
  width: 415px;
  height: 35px;
  margin-bottom: 16px;
}

textarea {
  border: none;
  border-radius: 20px;
  background-color: hsl(213, 28%, 92%);
  width: 415px;
  padding: 10px 22px;
  height: 150px;
}

.form-content fieldset:disabled input,
.form-content fieldset:disabled textarea {
  background-color: hsl(0deg 0% 69%);
}

.home__form-placeholders::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

/* #mail {
  margin-bottom: 16px;
} */
.img-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-content img {
  margin-bottom: 80px;
  max-width: 550px;
  margin-left: 32px;
  /* border-radius: 25px; */
  max-height: 354px;
}

.form-submit-btn2 {
  /* display: none; */
  color: white;
  background: linear-gradient(90deg, #001d7e 4.74%, #7eb2f0 119.21%);
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 6px;
  width: 192px;
  height: 40px;
  margin-top: 40px;
}

.form-submit-btn2-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-submit-btn2-content span:not(:last-child) {
  font-family: "Roboto";
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  margin-right: 5px;
}

.form-submit-btn {
  font-family: "Roboto";
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-blue);
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 10px 70px;
  width: max-content;
  margin-top: 40px;
}

.form-submit-btn:hover {
  color: white;
  background-color: var(--primary-blue);
  cursor: pointer;
}

.form-submit-btn:hover .form-submit-btn2 {
  display: flex;
}

.form-submit .form-content {
  display: flex;
  justify-content: center;
}

.home__form-placeholders::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.img-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-content {
  display: flex;
  justify-content: center;
  margin: 0;
}

.home__form-placeholders::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.home__form-placeholders:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0134, 134, 134, 1);
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
}

.img-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.img-content img {
  margin-bottom: 80px;
}

.form-submit-btn {
  font-family: "Roboto";
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-blue);
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  padding: 10px 70px;
  width: max-content;
  margin-top: 40px;
}

.form-submit-btn:hover {
  color: white;
  background-color: var(--primary-blue);
  cursor: pointer;
}

/* ------------------ Distribution.css ------------------ */
.distribution__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

#distribution__charge-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 50px;
}

.distributtion__back-img {
  position: absolute;
  z-index: -1;
  top: -345px;
  left: 0;
  width: 100%;
  height: 908px;
  background: linear-gradient(rgba(255, 255, 255, 0) 92%, rgba(255, 255, 255, 1)),
    url(../images/distribution-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.distribution__title-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  margin-top: 500px;
}

.distribution__title-container h2 {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 58px;
}

.h2-stroke {
  background-color: hsl(213, 79%, 72%);
  width: 100px;
  height: 3px;
  position: relative;
  left: 30px;
  top: 13px;
  border-radius: 30px;
}

.glide {
  max-width: 90%;
  height: 400px;
  padding-top: 0;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.slide-title-container {
  margin-bottom: 15px;
}

.slide-title-container h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 200px;
  height: 80px;
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: var(--primary-blue);
}

.slide-title-container .h3__stroke {
  width: 25px;
  height: 1px;
  background-color: #1d398f;
  top: 0;
  left: 0;
}

.slide-container {
  max-width: 250px;
  height: 200px;
}

#distribution__charge-center .slide-container {
  height: 366px;
}

#distribution__charge-center .slide-scope-containter {
  height: 120px;
}

#distribution__charge-center .glide__bullets {
  bottom: 1em
}

#distribution__branch-offices .glide__slide {
  height: 300px !important;
}


.glide__slides {
  /* min-height: 300px !important; */
  overflow: visible !important;
  bottom: 0em !important;
}

.glide__slides-sucursales {
  height: auto !important;
  /* overflow: visible !important; */
}

#nogoya-slide>div.modal__glide-title {
  margin-bottom: 0;
}

.nogoya_slide-container>div {
  margin-bottom: 5px !important;
}

.modal-info-scope>h4 {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1;
  margin-top: 8px;
}

.modal-info-scope>p {
  font-size: 12px;
  color: #454545;
}

.slide-address-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.slide-address-container i {
  font-size: 20px;
  margin: 0 5px 0 0;
  /*color: hsl(213, 79%, 72%);*/
  color: grey;
}

.slide-address-container p {
  font-family: "XFINITY MStandard";
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #212936;
  margin-top: 5px;
}

.slide-scope-containter {
  width: 220px;
  height: 75px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.slide-scope-containter h4 {
  margin-bottom: 5px;
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #5a5c61;
}

.slide-scope-containter p {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #5a5c61;
  width: 200px;
  overflow: hidden;
}

.slide-scope-containter p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.scope-bsr {
  margin: 21px 0 24px 0;
}

.slide-container button {
  font-size: 14px;
  cursor: pointer;
  font-family: "Roboto";
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-blue);
  padding: 8px 42px;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  background-color: transparent;
}

.slide-container button:hover {
  color: white;
  background-color: var(--primary-blue);
}

.glide__arrow {
  z-index: 999 !important;
}

.glide__arrow--left {
  z-index: 999 !important;
  left: -5px !important;
}

.fa-angle-left {
  color: black;
  font-size: 50px;
}

.fa-angle-right {
  color: black;
  font-size: 50px;
}

.glide__bullets {
  position: relative;
  left: -100px;
  /* bottom: -1em !important; */
}

.bullets__inside {
  bottom: -3em !important
}

.glide__slide-2 {
  cursor: pointer;
  width: 150px;
  height: 10px;
  margin: 0 -5px;
  background-color: hsl(0, 0%, 77%);
  border-radius: 30px;
  border: 0;
}

.glide__slide-none {
  display: none;
}

.glide__slide-3 {
  width: 255px;
  cursor: pointer;
  height: 10px;
  margin: 0 -5px;
  background-color: hsl(0, 0%, 77%);
  border-radius: 30px;
  border: 0;
}

.glide__slide-4 {
  cursor: pointer;
  width: 35px;
  height: 10px;
  margin: 0 5px;
  background-color: hsl(0, 0%, 77%);
  border-radius: 30px;
  border: 0;
}

.glide__slide-5 {
  width: 115px;
  cursor: pointer;
  height: 10px;
  margin: 0 -5px;
  background-color: hsl(0, 0%, 77%);
  border-radius: 30px;
  border: 0;
  margin-top: 16px;
}

.glide__bullet--active {
  background: linear-gradient(90deg, #102882 0%, #3759a9 52%, #76a8e8 100%) !important;
  border: 0;
  z-index: 3;
}

.glide__arrow {
  height: 300px;
  width: 50px;
  padding: 0;
  z-index: 999 !important;
  top: 0;
  box-shadow: none !important;
  border: none !important;
}

/*.glide__arrow--right {
  left: 920px;
  left: 90vw;
}*/
.glide__arrow-i-l {
  margin-left: -130px;
  color: var(--grey);
  font-size: 100px;
  z-index: 999 !important;
}

.glide__arrow-i-r {
  margin-left: 39px;
  color: var(--grey);
  z-index: 999 !important;
  font-size: 100px;
}

.glide__arrow--right {
  right: 0em !important;
}

.text-after-glider {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.text-after-glider h3 {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 20px;
  max-width: 620px;
}

.text-after-glider-2 h3 {
  margin-bottom: 8px
}

.text-after-glider-2 p {
  margin-bottom: 8px
}

#modal__charge-center {
  display: none;
}

#modal__charge-center.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.modal__container {
  background-color: #fff;
  padding: 22px;
  min-width: 200px;
  max-width: 600px;
  min-height: 80vh;
  border-radius: 20px;
  box-sizing: border-box;
}

.modal__container-big {
  background-color: #fff;
  padding: 22px;
  max-width: 500px;
  /* height: 500px; */
  border-radius: 20px;
  box-sizing: border-box;
}

.modal__content {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.8);
}

.modal__close {
  background: transparent;
  border: 0;
}

.glide__charge-center-modal {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.modal__glide-bullets {
  position: relative !important;
  top: 40%;
  justify-content: center;
}

.modal__glide-bullets-big {
  top: 94%;
  z-index: 99;
}

.modal__glide-track {
  height: 90vh;
  /*height: 100vh*/
}

.modal__glide-slide {
  height: auto;
  width: 840px;
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  /*font-size: 20px;*/
  line-height: 29px;
  top: 0;
  display: flex;
  flex-direction: column;
  color: var(--grey-title);
}

.glide__bullets.modal__glide-bullets button {
  cursor: pointer;
}

.modal__glide-title {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.modal__glide-title>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.modal__slider-map {
  height: 230px;
  width: 250px;
}

.modal-total-container {
  display: flex;
  align-items: flex-start;
  /*min-width: 350px;*/
  flex-direction: column;
  width: 287px;
}

.modal-info-container {
  max-width: 226px;
  margin-right: 16px;
}

.modal-info-container div:not(:last-child) {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  width: 270px;
}


.modal-info-container i {
  /*color: hsl(213, 79%, 72%);*/
  color: grey;
  margin-right: 10px;
}

.modal-info-container p {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 2px;
  color: #4b4949;
}

.modal-info-container>h3 {
  margin-top: 0px;
  font-family: "XFINITY MStandard";
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: var(--primary-blue);
}


.modal-info-container>.h3__stroke {
  max-width: 50px;
  height: 2px;
  border-radius: 16px;
  background-color: var(--primary-blue);
  top: 0;
  left: 0;
  margin-top: 3px;
}

#distribution__branch-offices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 80px;
}

.distribution__branch-offices {
  margin-top: 0;
}

.text-after-glider ul {
  margin-left: 15px;
}

.text-after-glider li {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: 350;
  font-size: 16px;
  line-height: 20px;
  color: hsl(217, 24%, 17%);
  /*width: 600px;*/
  margin-bottom: 20px;
  list-style-type: disc;
}

/* Modal con Slider BranchOffices */

#modal__branch-offices,
#modal__branch-logistics,
#modal__branch-central {
  display: none;
}

#modal__branch-offices.is-open,
#modal__branch-logistics.is-open,
#modal__branch-central.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

#logistics 

.modal-info-phone {
  display: flex;
  flex-direction: column;
  width: 270px;
}

.modal-info-phone>img {
  margin-right: 10px;
}

.modal-info-location {
  width: 270px;
}

.modal-info-location p {
  margin-left: 2px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #757474;
  /*line-height: 0.7;*/
  line-height: 1;
}

.modal-info-mail {
  width: 270px;
}

.modal-deliveries {
  min-width: 175px;
  line-height: 1;
  margin-right: 24px;
}

.modal-deliveries>p {
  /* margin-bottom: 12px; */
  margin-top: 4px;
  font-size: 20px;
}

.modal-deliveries>div>.modal-deliveries-container,
.modal-deliveries-container {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px solid grey;
  margin-block: 8px
}

.modal-deliveries>div>.modal-deliveries-container>.text,
.text {
  font-size: 14px;
  font-weight: 500;
}

.modal-deliveries>div>.modal-deliveries-container>.hour,
.hour {
  font-size: 13px;
}

.bold {
  color: black;
  font-weight: 700;
}

.blue {
  color: #166ec7;
}

.blue-light {
  color: #2aade3;
}

.blue-dark {
  color: #374f90;
}

.modal-iframe {
  line-height: 1;
  margin-top: 8px;
}

.iframe-aditional-data {
  display: none;
}

.modal-iframe>h4,
.modal-iframe>.iframe-aditional-data>h4 {
  margin-bottom: 8px;
  margin-top: 4px;
}

.modal-deliveries>div>.modal-deliveries-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  width: 175px;
  margin-bottom: 8px;
}

.modal-deliveries-line-2 {
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  width: 250px;
  margin-bottom: 8px;
}

/* fuera de lugar esto pero bueno de abajo pero bueno */
#paquete-card {
  margin-top: -20px;
  width: 60px
}

/* ------------------About css----------------------- */
.about__main {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.about__video-description {
  max-width: 700px;
  width: 100%;
  padding-top: 50px;
}

.about__video-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.about__video-container img {
  width: 760px;
}

.about__video-container:first-child {
  margin: 0 auto;
}

.about__title-container {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

#about__about-us {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 60px;
  margin-top: 25px;
  width: 100%;
}

.about__more-info {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.about__more-info .about__video-description h1 {
  max-width: 400px;
}

.about__about-us-video {
  width: 760px;
  height: 390px;
}

.about__video-description .about__p {
  font-family: "XFINITY MStandard";
  font-size: 18px;
  line-height: 22px;
  color: #9e9e9e;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.about__container-btn {
  margin: 90px auto;
  letter-spacing: 0.2px;
}

.about__container-btn a:hover {
  background-color: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

.about__concept {
  width: 100%;
  padding-top: 80px;
  background: linear-gradient(180deg, #e6ebf1 0%, rgba(230, 235, 241, 20%) 100%);
}

.about__concept hr {
  margin-bottom: 20px;
}

.about__concept>.section-wrapper>p {
  font-size: 20px;
  color: #131313;
  line-height: 25px;
  padding: 10px 0 2rem 0;
  max-width: 850px;
  font-weight: 300;
}

.about__concept .breake {
  font-size: 20px;
  font-weight: 500;
  color: #131313;
  line-height: 24px;
  padding-bottom: 2rem;
}

.about__concept .about__concept-list {
  list-style: disc inside;
  font-size: 20px;
  margin: 0 auto;
  font-weight: 100;
  padding-bottom: 5rem;
}

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

.about__more-info .about__btn {
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-family: "Roboto";
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-blue);
  background-color: transparent;
  border: 2px solid #7eb2f0;
  border-radius: 20px;
  padding: 10px 50px;
}

.a-sec2-h2-stroke {
  top: -15px !important;
  left: 0 !important;
}

/* ------------------ News.css ------------------ */
.news__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 50px auto;
}

.news__banner {
  width: 760px;
  margin: 30px 0 100px;
}

.news__links {
  width: 650px;
  text-align: center;
  list-style: inside;
  color: var(--primary-blue);
}

.news__links li {
  margin-bottom: 60px;
  list-style: disc inside;
  font-size: 25px;
}

.news__links li a {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  color: var(--primary-blue);
}

.news__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1080px;
  margin: 50px auto;
}

.news__banner {
  width: 760px;
  margin: 30px 0 100px;
}

.news__links {
  width: 650px;
  text-align: center;
  list-style: inside;
  color: var(--primary-blue);
}

.news__links li {
  margin-bottom: 60px;
  list-style: disc inside;
  font-size: 25px;
}

.news__links li a {
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  color: var(--primary-blue);
}


/* Flota */
.center__content {
  max-width: 1080px;
  margin: 0 auto;
}
.fleet__slider-photo {
  border-radius: 20px;
}
.fleet__title-container {
  display: flex;
  align-items: center;
}

/* Slider */
.fleet__glide-track {
  width: 765px;
  margin: 0 auto;
}
.fleet__glide-slides {
  height: 350px !important;
}
.fleet__glide-slide {
  width: 765px !important;
  height: 340px !important;
  margin-right: 260px !important;
}
.fleet__slide-title {
  position: relative;
  top: -47px;
  font-family: "XFINITY MStandard";
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #ffffff;
}
.fleet__glide-arrow-left {
  top: 420px !important;
  left: 31%;
}
.fleet__glide-arrow-right {
  top: 420px !important;
  left: 65%;
}
.fleet__glide-bullets {
  position: relative !important;
  bottom: -5px !important;
}
.fleet__glide-bullet {
  width: 100px !important;
  border-radius: 4px !important;
  border: 0 !important;
  margin: 0 15px !important;
}

.fleet__our-fleet {
  margin-bottom: 36px;
  font-weight: 300;
}
.fleet__our-fleet .fleet__text {
  font-size: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
  font-family: "XFINITY MStandard";
  color: #727272;
}
.numbers {
  display: flex;
  max-width: 900px;
  margin: 1rem auto;
}
.number__container {
  margin: 0 auto;
  max-width: 150px;
  text-align: center;
}
.number__container .number {
  font-size: 48px;
  font-weight: 700;
  color: #7eb2f0;
}
.number__container p {
  font-size: 18px;
  color: #131313;
  margin: 1rem auto;
}
.fleet__human-factor {
  background: #f1f4f8;
  margin-top: 110px;
  padding-top: 20px;
}
.fleet__human-factor .text__desc {
  max-width: 600px;
  padding-top: 32px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  letter-spacing: 0.2px;
}
.fleet__human-factor .sub__text {
  padding: 3rem 0 5rem 0;
  font-size: 13px;
  line-height: 16px;
  max-width: 600px;
}

.fleet__human-factor .sub__text span {
  font-weight: 300px;
}

.title__light {
  font-weight: 200
}

.title__light-inside {
  font-weight: 200;
  font-size: 20px;
}


/* ------------------Responsive------------------ */
@media (max-width: 1500px) {
  .fleet__glide-arrow-right {
    left: 62%;
  }

  nav {
    padding: 0 16px;
  }

  .home__title-container {
    padding: 0;
  }

  header li {
    margin: 0 15px;
  }

  header li a {
    font-size: 16px;
  }

  /* FLOTA SLIDER */
  .fleet__glide-arrow-left {
    left: 25%;
  }

  .fleet__glide-arrow-right {
    left: 70%;
  }
}

@media (max-width: 1450px) {

  /* Home */
  .home__back-img {
    height: 535px;
  }

  .home__main-title {
    margin-bottom: 25px;
  }

  .home__all-cards {
    margin: 150px auto -180px auto;
  }

  #home__faq {
    margin: 75px auto 80px auto;
  }

  .home__accordion-container {
    width: 900px;
  }

  /* Distribucion */
  .distributtion__back-img {
    top: -245px;
    width: 100%;
    height: 673px;
  }

  .distribution__title-container {
    margin-top: 300px;
  }

  .distribution__branch-offices {
    margin-top: 0;
  }

  /* Servicios */
  .modal__glide-bullets {
    top: 74%;
  }

  .modal__glide-bullets-big {
    top: 94%;
    z-index: 99;
  }

  /* .services__modal__glide-bullets {
    top: 87%;
  } */
}

@media (max-width: 1180px) {
  header li {
    margin: 0 8px;
  }
}

@media (max-width: 1080px) {

  /* ----- Header ----- */
  nav li {
    margin: 0 0 0 10px;
  }

  header label {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  /* --------Home--------- */
  .home__back-img {
    height: 420px;
  }

  .home__main-title {
    width: 400px;
    font-size: 30px;
    line-height: 40px;
    margin: 15px 0 20px 0;
  }

  .home__know-us {
    padding: 5px 25px;
  }

  .home__all-cards {
    margin-top: 140px;
  }

  #home__faq {
    margin: 20px auto 80px 0 !important;
  }

  .home__accordion-container {
    width: 900px;
  }

  .home__card:not(:last-child) {
    margin-right: 80px;
  }

  /* 
  #services__paqet-express {
    padding: 0 80px !important;
    max-width: 1080px;
  }

  #services__our-services {
    padding: 0 80px !important;
    max-width: 1080px;
  }

  .services__modal__glide-bullets {
    top: 79%;
  } */

  /* -------- Services --------- */
  /* .section-wrapper {
    padding: 0 60px !important;
  } */

  /* -------- Distribution --------- */
  .distributtion__back-img {
    top: -70px;
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 1)),
      url(../images/distribution-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  #distribution__charge-center .distribution__title-container {
    margin-top: 300px;
  }

  #distribution__charge-center,
  #distribution__branch-offices {
    padding: 0 60px;
    padding-left: 100px;
  }

  #distribution__charge-center .glide {
    max-width: 100%;
    height: 250px;
  }

  #distribution__charge-center .glide .glide__bullets {
    bottom: -80px;
  }

  #distribution__charge-center .text-after-glider {
    margin-top: 30px;
  }

  #distribution__charge-center .glide__slide {
    margin-right: 15px !important;
  }

  #distribution__charge-center .glide__slide-2 {
    min-width: 10px;
    /*max-width: 88px;*/
    max-width: 68px;
  }

  .glide__slide-none {
    display: inline-block;
  }

  .glide__arrow-i-r {
    margin-left: 0px;
  }

  #distribution__branch-offices .glide {
    height: 215px;
    max-width: 100%;
  }

  #distribution__branch-offices .glide .glide__bullets {
    bottom: -50px;
  }

  #distribution__branch-offices .glide__slide-3 {
    min-width: 5px;
    max-width: 86px;
  }

  .glide__slide-none {
    display: inline-block;
  }

  #distribution__branch-offices .glide__slide {
    margin-right: 5px !important;
  }

  #distribution__branch-offices .text-after-glider {
    margin-top: 50px;
  }

  .modal__glide-arrow-l {
    left: 10%;
    top: 50%;
    border: 0 !important;
  }

  .modal__glide-arrow-r {
    right: 10%;
    top: 50%;
    border: 0 !important;
  }

  /* FLOTA SLIDER */
  .fleet__glide-arrow-left {
    top: 420px !important;
    left: 15%;
  }

  .fleet__glide-arrow-right {
    top: 420px !important;
    left: 77%;
  }
}

@media (max-width: 900px) {
  .modal__glide__arrows {
    display: none
  }

  /* ----------------- Header ------------------- */
  nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }

  nav ul {
    display: none;
  }

  .header__logo {
    padding: 0;
    margin: 15px 0 0 0;
    max-width: 250px;
  }

  header label {
    display: flex;
    color: var(--primary-blue);
    font-size: 40px;
    padding: 0 10px;
    margin-top: 15px;
  }

  #toggle-nav {
    margin-top: 15px;
    font-size: 40px;
  }

  header #x__burger {
    display: none;
    z-index: 3;
  }

  #x__burger i {
    font-size: 45px;
  }

  #btn__burger-menu:checked~label {
    display: none;
  }

  #btn__burger-menu:checked~#x__burger,
  .social-medias {
    display: block !important;
  }

  #btn__burger-menu:checked~ul {
    display: block;
    z-index: 999;
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 20px;
    color: black;
    background: hsl(0, 0%, 90%) linear-gradient(180deg, #f1f4f8 30.21%, rgba(241, 244, 248, 0) 100%);
  }

  #btn__burger-menu:checked~ul li {
    margin: 15px 15px 20px 15px;
  }

  #btn__burger-menu:checked~ul li a {
    font-size: 25px;
    color: black;
  }

  li .active-page {
    color: hsl(226, 100%, 25%) !important;
  }

  header .social-medias {
    display: flex !important;
  }

  header .social-medias a {
    margin-right: 15px;
  }

  .social-medias i {
    font-size: 45px;
  }

  /* -----------------------News---------------------- */
  .about__about-us-video {
    width: 530px;
    height: 295px;
  }

  /* -----------------------News---------------------- */
  .news__main {
    margin: 0;
    padding: 0 20px;
  }

  .news__main h1 {
    font-size: 40px;
    padding: 0;
  }

  .news__main img {
    width: 480px;
    margin-bottom: 50px;
  }

  .news__main ul {
    max-width: 480px;
  }

  .news__main li {
    margin-bottom: 50px;
    list-style: none;
  }

  /* FLOTA SLIDER */
  .fleet__glide-arrow-left {
    top: 420px !important;
    left: 8%;
  }

  .fleet__glide-arrow-right {
    top: 420px !important;
    left: 83%;
  }

  .about__video-container img {
    width: 530px;
  }

  .home__accordion-container {
    width: auto;
  }

  .glide__slide-5 {
    width: 66px;
  }

  #distribution__charge-center .glide__slide-2,
  .glide__slide-5 {
    width: 42px;
  }
}

@media (max-width: 530px) {
  .h2-stroke {
    display: none;
  }

  .numbers {
    display: block;
  }

}

@media (max-width: 800px) {
  .modal__glide-arrow-l {
    left: 0;
    top: 50%;
    border: 0 !important;
  }

  .modal__glide-arrow-r {
    right: 25px;
    top: 50%;
    border: 0 !important;
  }
}

@media (min-width: 485px) {
  .modal_container-big {
    display: flex;
    flex-wrap: wrap;
  }

  .home__responsive-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 84px;
  }

  .home__responsive-cards .home__card {
    padding-top: 25px;
    width: 130px;
    height: 130px;
  }

  #paquete-card {
    width: 80px
  }

  .home__responsive-cards .home__card img {
    margin-bottom: 12px;
    width: 40px;
  }

  .text-after-glider {
    margin-top: 30px
  }


}

@media (max-width: 485px) {
  .section-wrapper {
    padding: 0 20px !important;
  }

  /* ----------------- Header ------------------- */
  nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 20px;
  }

  nav ul {
    display: none;
  }

  .header__logo {
    padding: 0;
    margin: 0;
    width: 120px;
  }

  header label {
    display: flex;
    color: var(--primary-blue);
    font-size: 40px;
    padding: 0 10px;
  }

  #toggle-nav {
    font-size: 40px;
    margin: 0 !important;
  }

  header #x__burger {
    display: none;
    z-index: 9999;
  }

  #x__burger i {
    font-size: 45px;
  }

  #btn__burger-menu:checked~label {
    display: none;
  }

  #btn__burger-menu:checked~#x__burger,
  .social-medias {
    display: block !important;
  }

  #btn__burger-menu:checked~ul {
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 20px;
    color: black;
    background: hsl(0, 0%, 90%) linear-gradient(180deg, #f1f4f8 30.21%, rgba(241, 244, 248, 0) 100%);
  }

  #btn__burger-menu:checked~ul li {
    margin: 15px 15px 20px 15px;
  }

  #btn__burger-menu:checked~ul li a {
    font-size: 25px;
    color: black;
  }

  li .active-page {
    color: hsl(226, 100%, 25%) !important;
  }

  .social-medias i {
    font-size: 45px;
  }

  /* -------------------------- Flota-Mobile -----------------------------*/
  .fleet__main {
    margin-top: -15px;
  }

  .fleet__title-container .page-title,
  .fleet__human-factor .page-title {
    margin-top: 0;
    font-size: 35px;
  }

  .image img {
    width: 300px;
  }

  .fleet__title-container .h2-stroke {
    display: none;
  }

  .fleet__our-fleet .fleet__text {
    font-size: 15px;
    margin-top: 30px;
  }

  .numbers {
    display: block;
  }

  .number__container {
    margin: 30px auto;
  }

  .number__container p {
    margin: 5px auto;
  }

  #fleet__human-factor {
    margin-top: 50px;
  }

  /* Slider */
  .fleet__glide-track {
    width: 100%;
    height: 200px !important;
  }

  .fleet__glide-slides {
    width: 100% !important;
    height: 210px !important;
  }

  .fleet__glide-slide {
    width: 100% !important;
    height: 205px !important;
    margin: 0 10px 0 0 !important;
  }

  .fleet__glide-slide div img {
    width: 100%;
    height: 100%;
  }

  .fleet__glide-slide div h3 {
    width: 100%;
    font-size: 17px;
  }

  .fleet__slide-title {
    top: -30px;
    font-size: 20px;
    line-height: 30px;
  }

  .fleet__glide-arrows {
    display: block !important;
  }

  .fleet__glide-arrow {
    width: 35px;
  }

  .fleet__glide-arrow-left {
    top: 275px !important;
    z-index: 99 !important;
    left: 7%;
  }

  .fleet__glide-arrow-right {
    top: 275px !important;
    left: 78%;
    z-index: 99 !important;
  }

  .fleet__glide-bullet {
    width: 80px !important;
    margin: 0 10px !important;
  }

  .fleet__glide-bullets {
    z-index: 99 !important;
  }

  .glide__slides {
    z-index: 9;
  }


  /* ----------------- Home ------------------- */
  .home__back-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 100%)),
      url(../images/home__back-img2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  #home__home {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  #home__home>.home__title-container {
    order: 2;
  }

  #home__home .home__responsive-cards {
    order: 1;
  }

  .home__responsive-cards {
    display: flex;
    margin: 155px auto 25px auto;
    justify-content: space-evenly;
    width: 100%;
    padding: 0;
  }

  .home__card {
    width: 95px;
    height: 95px;
  }

  .home__responsive-cards a {
    text-decoration: none;
  }

  .home__responsive-cards a .home__card img {
    width: 90px;
    margin-bottom: 10px;
  }

  .home__responsive-cards a .home__card h6 {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
  }

  .home__res-card-charge-center,
  .home__res-card-branch-offices {
    width: 40px !important;
  }

  .home__title-container {
    font-family: "XFINITY MStandard";
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    margin: 0 auto;
  }

  .home__main-title {
    width: 300px;
  }

  .home__know-us {
    padding: 10px 50px;
  }

  /* FAQ Section */
  #home__faq {
    margin: 10px 0 0 0 !important;
    padding: 0 20px;
  }

  #home__faq h2 {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
  }

  .home__accordions {
    margin-bottom: 50px;
  }

  .home__accordion-container {
    padding: 10px;
    padding-right: 0;
    width: auto;
    height: auto;
  }

  .home__angle-container {
    width: 10%;
    padding-top: 5px;
  }

  #home__accordion-container1 {
    height: 65px;
  }

  #home__accordion-container2 {
    height: 70px;
    padding: 10px;
  }

  #home__accordion-container2 .home__accordion-container {
    height: auto;
  }

  #home__accordion-container2 .home__accordion-content h3 {
    width: 90%;
  }

  #home__accordion-container2 .home__angle-container {
    margin-top: 4px;
  }

  #home__accordion-container3 {
    height: 55px;
  }

  #home__accordion-container3 h3 {
    width: 95%;
    font-size: 13px;
  }

  #home__accordion-container3 img {
    width: 300px;
  }

  .home__accordion-content {
    width: 90%;
  }

  #home__accordion-container4 {
    padding: 10px;
  }

  #home__accordion-container10 {
    padding: 20px 0 50px 10px;
  }

  #home__accordion-container4 .home__accordion-content h3,
  #home__accordion-container5 .home__accordion-content h3 {
    margin-top: 6px;
  }

  .home__accordion-content iframe {
    width: 350px !important;
    height: 190px !important;
  }

  .faq__show-more {
    margin-top: 40px;
  }

  /* Form Section */
  #home__contact-form {
    margin-top: 30px;
    padding: 0 20px;
  }

  .contact-form-container {
    padding: 0;
  }

  .contact-form-container h2 {
    margin-top: 40px;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
  }

  .form-content {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-img-container {
    display: flex;
    justify-content: center;
  }

  .form-content input,
  .form-content textarea {
    width: 100%;
  }

  .form-submit-btn {
    margin: 40px auto 0 auto;
  }

  /* -------------------------- News-Mobile -----------------------------*/
  .news__main {
    margin: 0;
    padding: 0 20px;
  }

  .news__main h1 {
    font-size: 30px;
    padding: 0;
    margin: 0;
  }

  .news__main img {
    width: 300px;
    margin-bottom: 30px;
  }

  .news__main ul {
    max-width: 300px;
  }

  .news__main li {
    margin-bottom: 30px;
    list-style: none;
  }

  .news__main li a {
    font-size: 15px;
    line-height: 12px;
  }

  /* -------- Distribution --------- */

  #distribution__charge-center,
  #distribution__branch-offices {
    padding: 0 20px;
  }

  header a {
    padding: 7px 0;
  }

  .distributtion__back-img {
    top: -10px;
    width: 100%;
    height: 210px;
    background: linear-gradient(rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1)),
      url(../images/distribution-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  #distribution__charge-center .distribution__title-container {
    margin-top: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .distribution__title-container .page-title {
    font-size: 32px;
    line-height: 39px;
  }

  #distribution__charge-center .glide__arrows {
    display: block;
  }

  #distribution__charge-center .glide__slide-2,
  .glide__slide-5 {
    width: 32px;
  }

  #distribution__charge-center .glide__arrow--left {
    left: 5% !important;
  }

  .glide__charge-center {
    max-width: 80% !important;
  }


  #distribution__charge-center .glide__slide {
    width: auto;
    margin: 0 5px !important;
  }

  #distribution__charge-center .glide__track {
    max-width: 80%;
  }

  #distribution__charge-center .text-after-glider {
    max-width: 100%;
    margin: 50px 0 0 0;
  }

  #distribution__charge-center .text-after-glider h3 {
    font-size: 20px;
  }

  #distribution__charge-center .text-after-glider p,
  .text-after-glider p,
  .text-after-glider ul li {
    max-width: 100%;
    font-size: 14px;
  }

  /* --------------- SLIDER MODAL------------------- */
  .modal__container-big {
    /*background: red;*/
    max-height: 98vh;
  }

  .glide__charge-center-modal,
  .glide__branch-offices-modal {
    width: 100%;
  }

  .modal__glide-track {
    max-width: 100% !important;
    /*width: 100%!important;*/
  }

  .modal__glide__arrows {
    display: none !important;
  }

  .modal__glide-slide {
    width: 100% !important;
    margin-left: 7px;
  }

  .modal__glide-title {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .modal__glide-title h3 {
    display: flex;
    flex-direction: column;
    padding-bottom: 2px;
  }

  .modal__slider-map {
    display: none;
  }

  .modal-info-horarios {
    width: 270px;
  }

  .modal-info-scope {
    width: 270px;
    margin-top: 12px;
  }

  .modal-info-scope-info {
    max-height: 75px;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .modal-info-scope-info::-webkit-scrollbar {
    width: 8px;
    /* Ajusta el ancho de la scrollbar */
  }

  .modal-info-scope-info::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    /* Color del thumb (barra que se mueve) */
    border-radius: 4px;
  }

  .modal-info-scope-info::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    /* Color del fondo de la scrollbar */
  }

  .modal__glide-bullets {
    top: 75%;
    height: 30px;
  }

  .modal-iframe>h3 {
    font-size: 20px;
    color: var(--grey-text);
  }

  .glide__slide-4 {
    width: 20px;
  }

  /* ---------------BRANCH OFICES------------------- */

  #distribution__branch-offices .page-title {
    margin: 0 0 50px 0;
  }

  #distribution__branch-offices {
    margin-bottom: 80px;
  }

  .glide__move-left {
    margin-left: 50px
  }

  #distribution__branch-offices .glide__slide-3 {
    width: 32px;
  }

  #distribution__branch-offices .glide__track {
    width: 250px;
  }

  .text-after-glider h3 {
    font-size: 20px !important;
  }

  .distribution__title-container {
    display: flex;
    justify-content: center;
  }

  .glide__branch-offices .glide__arrows {
    display: flex;
  }

  #distribution__branch-offices .glide__arrow--right {
    left: 75%;
  }

  #distribution__branch-offices .glide__arrow--left {
    left: 15% !important;
  }

  /* --------------- SLIDER MODAL------------------- */
  .modal__glide-slides {
    width: 100% !important;
  }
}

.btn-disabled {
  display: none !important;
}



@media (max-width: 414px) {
  #distribution__charge-center .glide__arrows {
    display: none;
    width: 100%;
    height: 100%;
  }

  .modal-info-container>img {
    display: none;
  }

  #distribution__branch-offices .glide__arrows {
    display: none;
  }

  .modal__container-big {
    min-width: 50px;
    height: auto;
  }
}

@media (min-width: 360px) and (max-width: 700px) {
  .home__responsive-cards {
    display: flex;
  }


  .glide__branch-offices-modal {
    height: 600px !important;
  }

  .glide__track.modal__glide-track {
    height: 85vh;
  }

  .modal-iframe {
    width: 200px;
    height: 150px;
  }

  iframe {
    width: 200px;
    height: 150px;
  }


}

@media (min-width: 485px) {

  .fleet__glide-slide, .fleet__main .glide__slide {
    /* background: red; */
    max-width: min(88vw, 765px) !important;
    /* margin: auto; */
    width: 100% !important;
    /* margin: auto; */
    margin-right: 0vw !important;
  }

  .fleet__glide-track {
    width: 100%;
    height: 320px;
  }

  .glide__fleet {
    overflow: hidden;
  }


  .fleet__glide-slide div h3 {
    width: 100%;
    font-size: 22px;
  }

  .fleet__glide-slide div img {
    width: 100%;
    /* width: 85vw; */
  }

  .fleet__glide-arrow-right,
  .fleet__glide-arrow-left {
    top: 390px !important;
  }

 
  .fleet__glide-arrow-right{
    left: 79%;
  } 
  
  .modal-total-container {
    flex-direction: row;
  }

  .iframe-aditional-data {
    margin-top: 32px;
  }
  

}

@media (min-width: 765px) {
  .fleet__glide-slide div h3 {
    width: 100%;
    font-size: 28px;
  }

  .fleet__glide-slide, 
  .fleet__main .glide__slide {
    max-width: 765px !important;
    width: 765px !important;
    margin-right: 20px !important;
  }


  .fleet__glide-arrow-right{
    left: 78%;
  } 

  .fleet__glide-arrow-right,
  .fleet__glide-arrow-left {
    top: 440px !important
  }

  .fleet__glide-track {
    width:  765px ;
    height: 420px;

  }

  .glide__fleet {
    overflow: hidden;
  }


  .fleet__glide-slide div h3 {
    width: 100%;
    font-size: 22px;
  }

  .fleet__glide-slide div img {
    width: 98%;
    /* width: 85vw; */
  }


  .text-after-glider {
    margin-top: 70px
  }

  .home__responsive-cards {
    display: none;
  }

  #home__home {
    padding-inline: 80px
  }
}

@media (min-width: 560px) {
  .fleet__glide-slide, .fleet__main .glide__slide {
    max-width: min(91vw, 765px) !important;
  }

  .modal-total-container {
    flex-direction: row;
  }

  .glide__track.modal__glide-track {
    min-height: 60vh;
    max-height: 73vh;
  }

  .glide__track.modal__glide-track-big {
    height: auto;
  }

  .modal__container {
    min-height: 60vh;
  }
}

@media (min-width: 820px) {
  .fleet__glide-slide, 
  .fleet__main .glide__slide {
    margin-right: 30px !important;
  }

  .fleet__glide-slide div img {
    width: 765px;
    /* width: 85vw; */
  }

  .fleet__glide-arrow-right{
    left: 79%;
  } 

  .fleet__glide-slide, 
  .fleet__main .glide__slide {
    width: 765px !important;
  }

  .modal-total-container {
    flex-direction: row;
  }

  .iframe-aditional-data,
  .modal-deliveries {
    display: block;
  }

  .modal__container-big {
    max-width: 727px;
  }
  .container-small{
    max-width: 530px
  }
  
  .container-medium {
    max-width: 650px;
  }


}


@media (min-width: 960px) {
  .fleet__glide-arrow-right{
    left: 75%;
  } 
  
  .fleet__glide-slide, .fleet__main .glide__slide {
    margin-right: 200px !important;
  }

  .modal-info-scope-info {
    height: 140px;
    overflow-y: auto;
  }

  #home__home {
    margin: 50px auto 180px auto;
  }

  .modal-iframe>h4 {
    font-size: 20px;
  }

  .modal-iframe {
    margin-top: 0px;
    position: relative;
    z-index: -1;
  }

  .glide__slide--active .modal-iframe {
    position: relative;
    z-index: 0;
  }

  .modal__glide-bullets-big {
    top: 94%
  }

}


@media (min-width: 1083px) {
  .fleet__main .fleet__glide-arrow-right{
    left: 66%;
  } 

    
  .fleet__glide-slide, .fleet__main .glide__slide {
    margin-right: 260px !important;
  }

  .fleet__main .glide__bullets{
    bottom: 0em !important;
  }

}

@media (max-width: 1024px) {
  .img-content {
    display: none;
  }
}

@media (max-width: 1024px) {
  .img-content {
    display: none;
  }
}

@media (max-width: 700px) {
  .home__all-cards {
    display: none;
  }
}