@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../slickfonts/slick.eot");
  src: url("../slickfonts/slick.eot?#iefix") format("embedded-opentype"), url("../slickfonts/slick.woff") format("woff"), url("../slickfonts/slick.ttf") format("truetype"), url("../slickfonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

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

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #151515;
}

.text-primary {
  color: #A40802;
}

.bg-primary {
  background-color: #A40802;
}

.text-secondary {
  color: #260705;
}

.bg-secondary {
  background-color: #260705;
}

.text-gray {
  color: #EDEDED;
}

.bg-gray {
  background-color: #EDEDED;
}

.wpcf7-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.ajax-loader {
  position: absolute;
  top: calc(50% - 10px);
  right: 2.5rem;
  background-image: url("../images/spinner.svg") !important;
  width: 20px !important;
  height: 20px !important;
}

div.wpcf7-response-output {
  width: 100%;
  margin: 0 1.5rem;
  padding: 0.8rem 1rem;
  font-size: 14px;
}

div.wpcf7-mail-sent-ok {
  border: 0;
  background-color: #C6F6D5;
  color: #22543D;
}

div.wpcf7-mail-sent-ng {
  border: 0;
  background-color: #FED7D7;
  color: #742A2A;
}

div.wpcf7-spam-blocked,
div.wpcf7-validation-errors {
  border: 0;
  background-color: #FEFCBF;
  color: #744210;
}

span.wpcf7-not-valid-tip {
  color: #FF6464;
  font-size: 12px;
  position: absolute;
  bottom: -2rem;
}

@media (min-width: 1280px) {
  .xl\:w-0 {
    width: 0;
  }

  .xl\:w-1 {
    width: 0.25rem;
  }

  .xl\:w-2 {
    width: 0.5rem;
  }

  .xl\:w-3 {
    width: 0.75rem;
  }

  .xl\:w-4 {
    width: 1rem;
  }

  .xl\:w-5 {
    width: 1.25rem;
  }

  .xl\:w-6 {
    width: 1.5rem;
  }

  .xl\:w-8 {
    width: 2rem;
  }

  .xl\:w-10 {
    width: 2.5rem;
  }

  .xl\:w-12 {
    width: 3rem;
  }

  .xl\:w-16 {
    width: 4rem;
  }

  .xl\:w-20 {
    width: 5rem;
  }

  .xl\:w-24 {
    width: 6rem;
  }

  .xl\:w-32 {
    width: 8rem;
  }

  .xl\:w-40 {
    width: 10rem;
  }

  .xl\:w-48 {
    width: 12rem;
  }

  .xl\:w-56 {
    width: 14rem;
  }

  .xl\:w-64 {
    width: 16rem;
  }

  .xl\:w-auto {
    width: auto;
  }

  .xl\:w-px {
    width: 1px;
  }

  .xl\:w-1\/2 {
    width: 50%;
  }

  .xl\:w-1\/3 {
    width: 33.333333%;
  }

  .xl\:w-2\/3 {
    width: 66.666667%;
  }

  .xl\:w-1\/4 {
    width: 25%;
  }

  .xl\:w-2\/4 {
    width: 50%;
  }

  .xl\:w-3\/4 {
    width: 75%;
  }

  .xl\:w-1\/5 {
    width: 20%;
  }

  .xl\:w-2\/5 {
    width: 40%;
  }

  .xl\:w-3\/5 {
    width: 60%;
  }

  .xl\:w-4\/5 {
    width: 80%;
  }

  .xl\:w-1\/6 {
    width: 16.666667%;
  }

  .xl\:w-2\/6 {
    width: 33.333333%;
  }

  .xl\:w-3\/6 {
    width: 50%;
  }

  .xl\:w-4\/6 {
    width: 66.666667%;
  }

  .xl\:w-5\/6 {
    width: 83.333333%;
  }

  .xl\:w-1\/12 {
    width: 8.333333%;
  }

  .xl\:w-2\/12 {
    width: 16.666667%;
  }

  .xl\:w-3\/12 {
    width: 25%;
  }

  .xl\:w-4\/12 {
    width: 33.333333%;
  }

  .xl\:w-5\/12 {
    width: 41.666667%;
  }

  .xl\:w-6\/12 {
    width: 50%;
  }

  .xl\:w-7\/12 {
    width: 58.333333%;
  }

  .xl\:w-8\/12 {
    width: 66.666667%;
  }

  .xl\:w-9\/12 {
    width: 75%;
  }

  .xl\:w-10\/12 {
    width: 83.333333%;
  }

  .xl\:w-11\/12 {
    width: 91.666667%;
  }

  .xl\:w-full {
    width: 100%;
  }
}
body.menu-open .header {
  background-color: #151515;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  font-family: "Roboto", sans-serif;
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.3s;
  z-index: 9999;
  display: none;
}
@media screen and (min-width: 1200px) {
  .header {
    display: block;
  }
}
.header--responsive {
  display: block;
  background-color: #260705;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  height: 66px;
}
.header--responsive .header__logo-image {
  height: 54px;
}
@media screen and (min-width: 1200px) {
  .header--responsive {
    display: none;
  }
}
.header--sticky  {
  background-color: rgba(38, 7, 5, 0.9);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  box-shadow: 0 10px 20px rgba(40, 40, 40, 0.12);
}
.header--sticky  .header__logo-image {
  height: 66px;
}
.header__logo-image {
  height: 72px;
  transition: all 0.3s;
}

.header-sticky {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  background-color: rgba(38, 7, 5, 0.9);
  box-shadow: 0 10px 20px rgba(40, 40, 40, 0.12);
}
.header-sticky .header__logo-image {
  height: 66px;
}

.admin-bar .header {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.footer {
  color: #EDEDED;
}
.footer-logo {
  height: 50px;
}
@media screen and (min-width: 640px) {
  .footer-logo {
    height: 70px;
  }
}

.btn {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  padding: 8px 26px;
  transition: all 0.2s;
  background: transparent;
}
@media screen and (min-width: 640px) {
  .btn {
    padding: 10px 30px;
  }
}
.btn-outline {
  --color: #fff;
  --text-hover: #000;
  border: 1px solid var(--color);
  color: var(--color);
  transition: all 0.3s;
}
.btn-outline:hover {
  background-color: var(--color);
  color: var(--text-hover);
}
.btn-primary {
  color: #fff;
  background-color: #A40802;
  min-width: 220px;
  padding: 15px 30px;
}
.btn-primary:hover {
  background-color: #8b0702;
}
.btn-gray {
  color: #000;
  background-color: #C4C4C4;
  min-width: 220px;
  padding: 15px 30px;
}
.btn-gray:hover {
  background-color: #b7b7b7;
}

.btn-white {
  --color: #fff;
  --text-hover: $secondary;
}

body.menu-open {
  height: 100vh;
  overflow-y: hidden;
}

.main-menu {
  display: flex;
  align-items: center;
}
.main-menu__item:not(.ml-6) {
  margin-left: 40px;
}
.main-menu__link {
  color: #EDEDED;
  font-size: 14px;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.main-menu__link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #EDEDED;
  position: absolute;
  bottom: -3px;
  transition: all 0.3s;
}
.main-menu__link:not(.btn):hover {
  letter-spacing: 0.06rem;
}
.main-menu__link:not(.btn):hover::after {
  width: 100%;
}

.responsive-nav {
  background-image: url("../images/menu-bg.jpg");
  background-size: cover;
  position: fixed;
  top: 66px;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: -999;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  .responsive-nav.show {
    z-index: 99999;
    opacity: 1;
  }
}

.admin-bar .responsive-nav {
  top: 98px;
}
@media only screen and (max-width: 782px) {
  .admin-bar .responsive-nav {
    top: 112px;
  }
}

.responsive-menu {
  margin: auto;
}
.responsive-menu__item {
  text-align: center;
}
.responsive-menu__link {
  display: block;
  margin: 1rem 0;
  color: #fff;
  font-size: 1.5rem;
}

.main-hero {
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-hero {
    height: 720px;
  }
}
@media screen and (min-width: 1280px) {
  .main-hero {
    height: 840px;
  }
}
.main-hero:not(.main-hero--home) {
  display: flex;
  flex-wrap: wrap;
}
.main-hero--home {
  background-size: cover;
  background-position: center;
  height: 520px;
}
@media screen and (min-width: 640px) {
  .main-hero--home {
    height: 640px;
  }
}
@media screen and (min-width: 768px) {
  .main-hero--home {
    height: 768px;
  }
}
.main-hero--news, .main-hero--default {
  background-color: #000;
  height: 640px;
}
.main-hero--news .container, .main-hero--default .container {
  z-index: 2;
}
.main-hero--news .hero__image, .main-hero--default .hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-hero--default {
  height: 280px;
  padding-top: 2rem;
}
@media screen and (min-width: 640px) {
  .main-hero--default {
    padding-top: 0;
    height: 380px;
  }
}
.main-hero--default .hero__image {
  opacity: 0.6;
}
.main-hero__container {
  font-size: 14px;
  width: 100%;
  max-width: 1280px;
}
@media screen and (min-width: 640px) {
  .main-hero__container {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .main-hero__container {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .main-hero__container {
    top: 200px;
    font-size: 22px;
  }
}
.main-hero__image {
  display: none;
  width: 41.66%;
  height: 720px;
}
@media screen and (min-width: 768px) {
  .main-hero__image {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .main-hero__image {
    height: 840px;
    display: block;
  }
}
.main-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-hero__bg {
  display: none;
  width: 58.34%;
  height: 600px;
  background-color: #A40802;
}
@media screen and (min-width: 768px) {
  .main-hero__bg {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .main-hero__bg {
    height: 715px;
  }
}
.main-hero__content {
  overflow-y: auto;
  background-color: #A40802;
  padding-top: 7rem;
  padding-bottom: 2rem;
  min-height: 380px;
}
@media screen and (min-width: 768px) {
  .main-hero__content {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    height: 380px;
  }
}
@media screen and (min-width: 1280px) {
  .main-hero__content {
    height: 480px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-net, .hero-equipo, .hero-contact, .hero-bridge, .hero-news {
    display: block;
  }
}
.benefit-item {
  display: flex;
  flex-wrap: wrap;
  box-shadow: inset 0px -1px 0px rgba(86, 86, 86, 0.5);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .benefit-item {
    flex-direction: column;
  }
  .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: inset 0px -2px 0px rgba(164, 8, 2, 0.5);
  }
}
.benefit-item__bullet {
  margin-top: 1rem;
  margin-right: 20px;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .benefit-item__bullet {
    display: none;
  }
}
.benefit-item__illustration {
  display: none;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .benefit-item__illustration {
    display: block;
    height: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .benefit-item__illustration {
    height: 230px;
  }
}
.benefit-item__description {
  color: #565656;
  font-size: 16px;
  font-weight: 300;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: calc(100% - 44px);
}
@media screen and (min-width: 768px) {
  .benefit-item__description {
    font-size: 16px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .benefit-item__description {
    font-size: 18px;
  }
}

.teacher-item {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .teacher-item {
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.25);
  }
}
.teacher-item__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
@media screen and (min-width: 480px) {
  .teacher-item__image {
    height: 270px;
  }
}
@media screen and (min-width: 640px) {
  .teacher-item__image {
    height: 300px;
  }
}
.teacher-item:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
}
.teacher-item:hover .teacher-details {
  opacity: 1;
}

.teacher-details {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  color: #EDEDED;
  padding: 0.5rem 1rem;
  opacity: 0;
  transition: all 0.3s;
}
.teacher-details__header {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.teacher-details__name {
  font-weight: 500;
  margin-top: 0.5rem;
}
.teacher-details__job {
  font-size: 12px;
}
.teacher-details__description {
  margin-top: auto;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 640px) {
  .teacher-details__description {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .teacher-details__description {
    font-size: 1rem;
    font-weight: 600;
  }
}
.teacher-details__socials {
  margin-bottom: 0.5rem;
}

.teacher-container__title {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 40px;
  height: 400px;
  transform: translateX(-50%);
}
.teacher-container__heading {
  font-size: 72px;
  color: #565656;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-200%) rotate(-90deg);
}

.news__content-item {
  max-width: 370px;
}

.news-item {
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (min-width: 500px) {
  .news-item {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .news-item {
    width: 100%;
    max-width: 500px;
  }
}
.news-item:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.news-item__content {
  padding: 1rem 1.5rem 1.5rem;
}
.news-item__thumbnail {
  width: 100%;
}
.news-item__thumbnail img {
  width: 100%;
}
.news-item__title {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .news-item__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.news-item__more {
  font-size: 11px;
}

.news__organize {
  max-width: 370px;
  margin: 20px 5%;
}
.news__box {
  border: 1px solid #A40802;
}
.news__box p {
  padding-right: 30px;
  font-family: "Roboto", sans-serif;
}
.news__box img {
  top: 43%;
  right: 10px;
}

.page-numbers {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.page-numbers:hover {
  color: #A40802;
}
.page-numbers.current {
  background-color: #A40802;
  color: #fff;
}

.duration__image {
  background-image: url("../images/mba/tiempo.jpg");
  background-size: cover;
}
.duration__number, .duration__text {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  height: 120px;
}
@media screen and (min-width: 640px) {
  .duration__number, .duration__text {
    height: 160px;
  }
}
.duration__number {
  font-size: 60px;
  font-weight: 900;
  color: white;
  width: 40%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (min-width: 640px) {
  .duration__number {
    width: inherit;
    padding: 0 4.5rem;
    border-radius: 0;
  }
}
.duration__text {
  font-size: 45px;
  color: white;
  width: 55%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (min-width: 640px) {
  .duration__text {
    width: inherit;
    padding: 0 4.5rem;
    border-radius: 0;
  }
}

@media screen and (min-width: 768px) {
  .opinions__story {
    margin: 0 0 0 auto;
    width: 60%;
  }
  .opinions__text {
    width: 100%;
  }
  .opinions__image-container {
    margin: -4rem 0 0 -10rem;
    max-height: 343px;
    max-width: 490px;
  }
  .opinions__image-container img {
    margin: 0;
    max-width: inherit;
    max-height: inherit;
  }
}
@media screen and (max-width: 768px) {
  .opinions p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .opinions {
    margin: 0.65rem auto;
    width: 90%;
  }
  .opinions__story {
    padding: 1rem 0;
    min-width: 0%;
  }
  .opinions__image-container {
    max-height: 75%;
    max-width: 200px;
  }
  .opinions__image-container img {
    margin-top: 1.25rem;
    max-height: inherit;
    max-width: inherit;
  }
  .opinions__text {
    padding: 20px;
    padding-left: 0;
    width: 100%;
  }
  .opinions__description-opinion p {
    font-size: 16px;
    margin-bottom: 40%;
    margin-top: 5%;
  }
}
.contenidos__item {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-bottom: 20px;
  color: #565656;
  transition: all 0.3s;
}
@media screen and (min-width: 1280px) {
  .contenidos__item {
    margin-bottom: 30px;
  }
}
.contenidos__item:hover {
  transform: scale(0.99);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.contenidos__item:last-child {
  margin-bottom: 0;
}
.contenidos__image {
  border-radius: 50%;
  background-color: #C4C4C4;
}
.contenidos__image img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.contenidos__graph-image {
  top: 43%;
  left: 20%;
  bottom: 2%;
}
.contenidos__graph-image:nth-last-of-type(1) {
  top: 27.3%;
  left: 0%;
  bottom: 2%;
}

@media screen and (max-width: 768px) {
  .contenidos {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 650px) {
  .contenidos {
    width: 85%;
  }
}
@media screen and (max-width: 500px) {
  .contenidos {
    width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .contenidos {
    width: 95%;
  }
}
@media screen and (max-width: 400px) {
  .contenidos {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .testimonials-slider {
    padding-top: 3rem;
    padding-left: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .testimonial-item {
    background-color: #EDEDED;
  }
}
.testimonial-item__image {
  width: 100px;
  height: 150px;
}
@media screen and (min-width: 640px) {
  .testimonial-item__image {
    width: 175px;
    height: 250px;
  }
}
.testimonial-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item__content {
  width: calc(100% - 100px);
}
@media screen and (min-width: 640px) {
  .testimonial-item__content {
    width: calc(100% - 200px);
    height: 270px;
  }
}

.slider-arrows {
  display: flex;
  flex-wrap: wrap;
}
.slider-arrows--testimonials {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  width: calc(100% + 2rem);
}

.slider-arrow {
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: all 0.3s;
}
.slider-arrow:hover {
  transform: scale(0.9);
}
.slider-arrow:focus {
  outline: 0;
}

.job__image img {
  max-width: 300px;
}
.job__title-text {
  font-size: 50px;
}
.job__info p {
  font-size: 18px;
}

.event__container {
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 920px) {
  .event__container {
    max-width: 1100px;
  }
}
@media screen and (min-width: 1024px) {
  .event__container {
    max-width: 1100px;
  }
  .event__container:first-child {
    margin-left: 0;
  }
  .event__container:last-child {
    margin-right: 0;
  }
}
.event__image {
  order: 1;
  width: 100%;
  display: block;
}
@media screen and (min-width: 920px) {
  .event__image {
    order: unset;
    height: 600px;
    object-fit: cover;
    width: 50%;
  }
}
.event__content {
  order: 2;
  width: 100%;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 640px) {
  .event__content {
    background-color: #EDEDED;
  }
}
@media screen and (min-width: 920px) {
  .event__content {
    order: unset;
    width: 50%;
    min-height: 450px;
    padding: 2rem 3rem;
  }
}

.brand-item {
  height: 90px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
}
.social-icons__link {
  width: 50%;
  display: block;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .social-icons__link {
    width: auto;
    padding-right: 0;
    margin-right: 0.8rem;
  }
  .social-icons__link:last-child {
    margin-right: 0;
  }
}
.social-icons__link img {
  width: 20px;
  height: 20px;
}

.form-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  padding-bottom: 0.5rem;
  height: 56px;
  width: 100%;
  background-color: #EDEDED;
  border-radius: 7px 7px 0px 0px;
  border-bottom: 1px solid #151515;
}
.form-item::before {
  content: attr(data-placeholder);
  color: #A0A0A0;
  position: absolute;
  left: 1rem;
  bottom: 0.5rem;
  transition: all 0.3s;
}
.form-item--textarea {
  height: 150px;
  align-items: flex-start;
  padding-top: 1.7rem;
}
.form-item--textarea::before {
  top: 1.7rem;
  bottom: auto;
}
.form-item--textarea.has-value::before {
  top: 0.5rem;
}
.form-item--textarea .form-control {
  height: 105px;
  resize: none;
}
.form-item.has-value::before {
  bottom: 2rem;
  color: #565656;
  font-size: 12px;
  letter-spacing: 0.05rem;
}

.form-control {
  background-color: transparent;
  width: 100%;
  z-index: 1;
  color: #A0A0A0;
}
.form-control:focus {
  outline: none;
}

.form-select-item {
  position: relative;
  display: inline-block;
}
.form-select-item::before {
  content: url("../images/select-arrow.png");
  display: block;
  position: absolute;
  top: 12px;
  right: 10px;
}

.form-select {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #A40802;
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  height: 48px;
  padding: 0 2rem 0 1rem;
  letter-spacing: 0.05rem;
}
.form-select:focus {
  outline: none;
}

.testimonials-section {
  max-width: 1240px;
}

.product-section {
  max-width: 1240px;
}

.woocommerce table.shop_table {
  border: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.woocommerce table.shop_table td {
  border-top: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  border-top: 0;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: unset;
}

.woocommerce-checkout #payment {
  background-color: #EDEDED;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: unset;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: #EDEDED;
}

.selection:focus {
  outline: none;
}

.select2-container:focus {
  outline: 0;
}

.select2-container--default .select2-selection--single {
  background: transparent;
  border: 0;
}
.select2-container--default .select2-selection--single:focus {
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  color: #A0A0A0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered:focus {
  outline: 0;
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #A0A0A0;
  -webkit-box-shadow: 0 0 0px 1000px #EDEDED inset;
  transition: background-color 5000s ease-in-out 0s;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #fff;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}

.vertical-title__container {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 3rem;
  width: 40px;
  height: 400px;
  transform: translateX(-50%);
}
.vertical-title__heading {
  font-size: 54px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-200%) rotate(-90deg);
}

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