@font-face {
  font-family: "Graphik-Semibold";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/Graphik-Semibold.ttf") format("truetype");
}
@font-face {
  font-family: "Graphik-Light";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/Graphik-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Graphik-Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/Graphik-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Graphik-Thin";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/Graphik-Thin.ttf") format("truetype");
}
/*buttons*/
.btn {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  border: 1px solid #110072;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 25px;
  text-align: center;
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  border-radius: 100px;
  color: #110072;
  background-color: transparent;
  cursor: pointer;
}
.btn:hover {
  text-decoration: none;
}

.btn__blue {
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  border-radius: 20px;
  color: #fafafa;
  background-color: #110072;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.8px;
  padding: 10px 28px;
  border: 1px solid #110072;
}
.btn__blue:disabled {
  background-color: #5A5555;
  border-color: #5A5555;
}

@media (min-width: 1024px) {
  .btn__blue, .btn {
    font-size: 18px;
    line-height: 21.6px;
  }
}
/*buttons*/
.overlay {
  background-color: rgba(52, 52, 52, 0.3);
  position: fixed;
  width: 100%;
  height: 110vh;
  top: 0;
  display: none;
}
.visible .overlay {
  display: block;
}

.hero {
  background: url(../assets/img/sol-xs.png) no-repeat top right;
  padding-top: 2rem;
}

.hero__title {
  display: flex;
  justify-content: center;
  color: #110072;
}
.hero__title .h1 {
  font-size: 32px;
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  line-height: 28.48px;
  padding-right: 10px;
}

.hero__text {
  font-family: "Graphik-Light", Helvetica, sans-serif;
  font-weight: 300;
  text-align: center;
  margin: 0 0 40px;
}

.hero__img {
  width: 110px;
}

.hero__btn {
  background: none;
  border: none;
  color: #110072;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
  font-family: "Graphik-Light", Helvetica, sans-serif;
  letter-spacing: 10px;
  font-weight: bold;
}
.hero__btn img {
  display: block;
  margin: 0px auto 12px;
}

.header {
  border-radius: 60px;
  padding: 10px 28px;
  background-color: rgba(255, 248, 254, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  transition: all 1s;
}

.header__logo {
  display: flex;
}
.header__logo img {
  max-width: 85px;
}
.header__logo img + img {
  margin-left: 24px;
}
.header__logo img.logo__xs {
  width: 50px;
}

.header__nav .btn {
  width: 172px;
  padding: 8px 0;
  margin: 12px 24px;
}

.header__nav__list {
  display: none;
}

.header__btn, .header__close {
  background-color: transparent;
  border: none;
}

.header__close {
  text-align: right;
  width: 100%;
  padding: 20px 20px 10px;
}

@media (max-width: 1365px) {
  .header__nav__list {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: white;
    margin: 0;
  }
  .visible .header__nav__list {
    display: block;
  }
  .header__nav .btn {
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .hero {
    background: url(../assets/img/sol.png) no-repeat center right;
  }
  .header__logo img.logo__lg.visible__lg {
    display: block;
  }
  .header__logo img.logo__xs.visible__xs {
    display: none;
  }
}
@media (min-width: 1366px) {
  .overlay {
    display: none;
  }
  .visible .overlay {
    display: none;
  }
  .header {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header .header__logo img {
    max-width: 155px;
  }
  .header.fixed {
    position: fixed;
    background-color: rgb(255, 248, 254);
    margin: 0;
    transform: translateY(0px);
    z-index: 1;
    /* .header__nav .btn {
         width: 160px;
         padding: 8px 0;
         margin: 12px 12px;
     }*/
  }
  .header.fixed .header__nav__list {
    margin: 0;
  }
  .header.fixed nav .btn {
    font-size: 10px;
    line-height: 10px;
  }
  .header__nav__list {
    display: flex;
    align-items: flex-end;
    list-style: none;
    background-color: transparent;
  }
  .header__btn {
    display: none;
  }
  .hero__title {
    margin-bottom: 25px;
  }
  .hero__title .h1 {
    font-size: 128px;
    line-height: 114px;
    padding-right: 40px;
    margin: 0;
  }
  .hero__text {
    font-size: 20px;
    line-height: 24px;
    display: block;
    max-width: 365px;
    text-align: left;
  }
  .hero__img {
    width: 226px;
    margin-bottom: 25px;
  }
  .hero__btn {
    font-size: 16px;
    line-height: 17.6px;
  }
  .hero__btn img {
    display: block;
    margin: 12px auto;
  }
}
/*footer*/
.footer {
  background-image: url(../assets/img/footer.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding-top: 40px;
}

.footer__card {
  background-color: rgba(255, 255, 255, 0.7);
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  color: #110072;
  border: 1px solid rgba(241, 240, 239, 0.5);
}
.footer__card.container {
  padding-top: 30px;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  padding-bottom: 20px;
}
.footer__logo img {
  max-width: 140px;
}
.footer__logo img + img {
  margin-left: 24px;
}

.footer__copy {
  font-size: 12px;
  font-weight: "Graphik-Semibold", Helvetica, sans-serif;
  line-height: 20px;
  margin: 0;
}

@media (min-width: 1024px) {
  .footer__card {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer__card.container {
    padding: 30px 60px;
  }
  .footer__copy {
    font-size: 12px;
    font-weight: "Graphik-Regular", Helvetica, sans-serif;
    line-height: 20px;
  }
  .footer__logo {
    padding: 0;
  }
  .footer__logo img {
    max-width: 155px;
  }
}
.who {
  padding: 24px;
  background-color: rgba(255, 245, 248, 0.1);
}

.who__text {
  font-size: 18px;
  line-height: 24px;
}

.who__content {
  margin: 0 16px;
}

@media (min-width: 1024px) {
  .who p {
    padding-right: 20px;
  }
  .who p + p {
    padding-left: 20px;
  }
  .who__content {
    width: 100%;
  }
  .who__p {
    display: flex;
    align-items: baseline;
  }
  .who__text {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
  }
  .who__text b {
    font-weight: 600;
  }
}
.how__bg {
  background: url("../assets/img/bg-video.png") no-repeat center;
  background-size: cover;
  padding: 20px 0;
  margin-bottom: 40px;
}

.how__img, #video {
  max-width: 890px;
  margin: 0 auto 24px;
  border: none;
  background: none;
  height: 100%;
}
.how__img:not(.hidden), #video:not(.hidden) {
  display: block;
}

.how__img {
  padding: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: height 0.5s, opacity 0.5s 0.5s;
}
.how__img.invisible {
  display: none;
  opacity: 0;
  height: 0;
  margin: 0;
}
.how__img img {
  width: 100%;
}

#video {
  border-radius: 18px;
  width: 100%;
  opacity: 0;
  height: 0;
  scale: 0;
  transition: scale ease-in 0.4s;
}
#video.visible {
  opacity: 1;
  height: 100%;
  scale: 1;
}

.how__title {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}

.card {
  background-color: #FFF9F9;
  border-radius: 18px;
  margin: 10px;
  padding: 28px;
}

.card__img {
  max-width: 24px;
}

.card__title {
  letter-spacing: 0.2px;
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.card__text {
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 1024px) {
  #video.visible {
    width: auto;
    margin-bottom: 48px;
  }
}
@media (min-width: 1366px) {
  .how__title {
    font-size: 24px;
    line-height: 32px;
  }
  .card__title {
    font-size: 24px;
    line-height: 32px;
  }
  .card__text {
    letter-spacing: -0.37px;
    font-size: 18px;
    line-height: 24px;
  }
  .card__img {
    max-width: 45px;
  }
  .how__img img:not(.visible__xs) {
    display: block;
    max-width: 1260px;
  }
}
#mapa {
  background: url(../assets/img/background_map_mobile.png) no-repeat top center;
  background-size: cover;
  height: 815px;
  padding: 2rem 0;
}
#mapa.weather {
  background-image: url(https://wearesolstudio.com/assets/img/Calor-Mobile.gif);
}
#mapa.strategic {
  background-image: url(https://wearesolstudio.com/assets/img/Cardinales-Mobile.gif);
}
#mapa.heritage {
  background-image: url(https://wearesolstudio.com/assets/img/Arcoiris-Mobile.gif);
}
#mapa.innovation {
  background-image: url(https://wearesolstudio.com/assets/img/MedioSol-Mobile.gif);
}
#mapa.hospitality {
  background-image: url(https://wearesolstudio.com/assets/img/SolFinal-Mobile.gif);
}
#mapa .mapa__title {
  line-height: 28px;
  letter-spacing: 10px;
  padding-bottom: 0;
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
}
#mapa .mapa__subtitle {
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 12px;
  font-family: "Graphik-Light", Helvetica, sans-serif;
}
#mapa .mapa__text {
  font-family: "Graphik-Thin", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
  margin: 0;
}
#mapa .items_container {
  margin-top: 3rem;
  height: 100vh;
}
#mapa .item__title {
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.2px;
  margin: 21px 0;
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
}
#mapa .item__text,
#mapa .item__title {
  max-width: 360px;
}
#mapa .item__text {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
#mapa .item__img {
  position: absolute;
  left: -19%;
  bottom: 12%;
  display: none;
}
#mapa .item {
  box-sizing: border-box;
  position: relative;
  opacity: 0;
  height: 0;
  transition: opacity 0.8s ease-in-out;
}
#mapa .item.active {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
  height: 100%;
  min-height: 200px;
  width: 100%;
  font-weight: 600;
  min-width: 100%;
}
#mapa .item.active .icon {
  transform: rotate(180deg);
  transition-duration: 0.8s;
}
#mapa .item .icon {
  transform: rotate(-180deg);
  transition-duration: 0.8s;
  max-width: 75px;
}
#mapa .indicators {
  position: absolute;
  right: 35px;
  z-index: 99;
}
#mapa .indicators .indicator {
  display: block;
  background-color: #FFF;
  width: 6px;
  height: 42px;
  opacity: 0.5;
  margin: 6px 0;
  border-radius: 3px;
}
#mapa .indicators .indicator.active {
  height: 134px;
  background-color: rgba(254, 130, 160, 0.6980392157);
}
#mapa .items {
  height: 100vh;
  width: 95%;
}

#carrusel {
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.my-slider {
  display: flex;
  flex-wrap: nowrap;
  scroll-snap-align: start;
}
.my-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.what {
  background: url(../assets/img/eclipse-xs.png) no-repeat top center;
  background-size: contain;
}

.what__title {
  font-size: 32px;
  line-height: 40px;
  max-width: 307px;
  margin: 80px auto;
}

.what_subtitle {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  font-family: "Graphik-Light", Helvetica, sans-serif;
}

.list__title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 9px;
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
  text-align: center;
  padding: 50px 0 10px;
}

.what__list {
  border-left: 1px solid #110072;
  line-height: 24px;
  padding-left: 20px;
}
.what__list li {
  font-size: 14px;
  line-height: 20px;
}

.what__logo {
  width: 86px !important;
  background-color: rgba(254, 239, 245, 0.3);
  height: 86px !important;
  box-shadow: 0 4px 50px rgba(255, 212, 231, 0.6);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 40px 0px;
}
.what__logo img {
  width: 50%;
}

.carrusel {
  margin: 60px 0;
}

.map {
  width: 100%;
  margin: 20px 0;
}

.map__xs {
  display: block;
}

.map__lg {
  display: none;
}

@media (min-width: 500px) {
  #mapa {
    background-image: url(../assets/img/background_map_desktop.png);
    height: 750px;
    padding-top: 1rem;
  }
  #mapa.weather {
    background-image: url(https://wearesolstudio.com/assets/img/Calor-Desktop.gif);
  }
  #mapa.strategic {
    background-image: url(https://wearesolstudio.com/assets/img/Cardinales-Desktop.gif);
  }
  #mapa.heritage {
    background-image: url(https://wearesolstudio.com/assets/img/Arcoiris-Desktop.gif);
  }
  #mapa.innovation {
    background-image: url(https://wearesolstudio.com/assets/img/MedioSol-Desktop.gif);
  }
  #mapa.hospitality {
    background-image: url(https://wearesolstudio.com/assets/img/SolFinal-Desktop.gif);
  }
}
@media (min-width: 1024px) {
  .what__logo {
    width: 232px !important;
    height: 232px !important;
    margin: 40px 10px;
  }
  .what__logo:first-child {
    margin-left: 45px;
  }
  .what {
    background: url(../assets/img/eclipse.png) no-repeat top center;
    padding-top: 120px;
  }
  .what__title {
    font-size: 96px;
    line-height: 120px;
    max-width: 913px;
    margin-bottom: 0;
  }
  .what__text {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 65%;
  }
  .list__title {
    font-size: 18px;
    text-align: left;
    padding: 20px 0 0;
  }
  .what__list li {
    font-size: 16px;
    line-height: 24px;
  }
  .what_subtitle {
    font-size: 18px;
    line-height: 24px;
    width: 70%;
    padding-right: 10%;
  }
  .what_subtitle,
  .what__text {
    margin-top: 50px;
  }
  .what__flex {
    display: flex;
  }
  #mapa .mapa__title {
    font-size: 24px;
  }
  #mapa .mapa__subtitle {
    font-size: 24px;
  }
  #mapa .mapa__text {
    font-size: 18px;
  }
  #mapa .items_container {
    margin-top: 0rem;
  }
  #mapa .item__title {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
  }
  #mapa .item__title,
  #mapa .item__text {
    max-width: 460px;
  }
  #mapa .item__text {
    font-size: 16px;
    line-height: 18px;
  }
  #mapa .item .icon {
    max-width: 87px;
  }
}
@media (min-width: 1366px) {
  #mapa .items_container {
    margin-top: 4rem;
  }
}
.talk {
  margin: 0 16px;
}

.talk__h2 {
  text-align: center;
}
.talk__h2.h2 {
  padding-bottom: 0;
  margin-bottom: 0;
}

.talk__name {
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
}

.talk__cargo {
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.2px;
}

.talk__name, .talk__cargo {
  margin: 0;
  text-align: center;
}

.talk__img {
  width: 100px;
}

.talk ul {
  margin-top: 0;
  justify-content: center;
}

.talk__li {
  padding-right: 5px;
}
.talk__li:last-child {
  padding-right: 0;
}

.talk__title {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 10px;
}

.talk__subtitle {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}

.talk__btn {
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .talk__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  .talk__subtitle {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
  }
  .talk__btn {
    text-align: center;
  }
  .talk__img {
    width: 140px;
  }
  .talk__name {
    font-size: 18px;
    line-height: 24px;
  }
  .talk__cargo {
    font-size: 14px;
    line-height: 18px;
    padding-top: 10px;
  }
  .talk__li {
    padding-right: 10px;
  }
  .talk .flex__lg {
    justify-content: center;
  }
}
.form__title {
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.form__group {
  position: relative;
  width: 100%;
  margin: 10px 6px 20px;
}
.form__group label {
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  font-size: 12px;
  line-height: 13.2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form__control {
  background: none;
  border: none;
  border-bottom: 1px solid #110072;
  height: 50px;
  padding: 9px;
  outline: none;
  width: 100%;
  font-size: 14px;
  line-height: 15.4px;
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  color: #110072;
}
.form__control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form__control:focus, .form__control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form__control:not(:-moz-placeholder-shown) ~ label {
  color: #5A5555;
  transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}
.form__control:focus ~ label, .form__control:not(:placeholder-shown) ~ label {
  color: #5A5555;
  transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}

textarea.form__control {
  background-color: rgba(255, 255, 255, 0.15);
  height: 118px;
}

#error__email {
  font-family: "Graphik-Bold";
  display: none;
  font-size: 12px;
  line-height: 18px;
}

.error.form__group:not(:-moz-placeholder-shown) ~ label {
  color: #CB3100;
}

.error.form__group:focus ~ label, .error.form__group:not(:placeholder-shown) ~ label {
  color: #CB3100;
}
.error.form__group label, .error.form__group #error__email {
  color: #CB3100;
}
.error.form__group #error__email {
  display: block;
}

@media (min-width: 1024px) {
  .form form {
    width: 75%;
    margin: 0 auto;
  }
  .form__title {
    font-size: 32px;
    text-align: center;
  }
  .form__group label {
    font-size: 18px;
    line-height: 19.8px;
  }
  .form__control {
    font-size: 18px;
    line-height: 19.8px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

body {
  margin: 0;
  background: rgb(244, 238, 244);
  background: linear-gradient(180deg, rgb(244, 238, 244) 0%, rgba(230, 220, 255, 0.6) 22%, rgba(237, 157, 192, 0.6) 60%, rgba(244, 98, 133, 0.5) 80%);
  color: #110072;
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 20px;
}
body .visible {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}

ul {
  list-style: none;
  padding: 0;
}

section {
  padding: 25px 0;
}

b {
  font-family: "Graphik-Semibold", Helvetica, sans-serif;
}

.hidden {
  display: none;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 28px;
}

.flex {
  display: flex;
}

.medium {
  font-size: 14px;
  line-height: 20px;
}

.title {
  font-size: 16px;
  line-height: 24px;
}

.light {
  font-family: "Graphik-Light", Helvetica, sans-serif;
}

.h2 {
  font-family: "Graphik-Regular", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 9px;
  padding-bottom: 12px;
  font-weight: 500;
}

.center {
  text-align: center;
}

.visible__xs {
  display: block;
}

.visible__lg {
  display: none;
}

@media (min-width: 1024px) {
  .flex__lg {
    display: flex;
  }
}
@media (min-width: 1366px) {
  .visible__xs {
    display: none;
  }
  .visible__lg {
    display: block;
  }
  .container {
    max-width: 1300px;
  }
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .medium {
    font-size: 18px;
    line-height: 24px;
  }
  .flex__lg {
    display: flex;
  }
}/*# sourceMappingURL=main.css.map */