@charset "UTF-8";

/*
    ** CONFIG/MIXINS MQ **
*/

/*
    ** MEDIA BREAKPOINTS **
    ** Define the mediaquery necessary for your project

    ** You can add, delete, or change the value and name of the key in the $ brackpoints map, also  you can overwrite the $breakpoints map for rewrite the keys


        ** EXAMPLE

        $breakpoints: (
            mobile      :   375px,
            tablet      :   768px,
            laptop      :   1199px,
            desktop     :   1460px,
        );
*/

/*
    ** Media mixin from $breakpoints map
*/

/*
    ** Media-up mixin from $breakpoints map
    ** Use of media-up
    ** You can use these media mixin for you self scss files, the size of mediaquery is accord the values of $breackpoint map

            **Example
                .text{
                    color: blue;
                    @include media-up(desktop($breakpoint map value)){
                        color: plum;
                    }
                }
*/

/*
    ** COLORS **
*/

body {
  background-color: #EBE6DC;
  font-family: "Lexend Tera", sans-serif;
  color: #000000;
}

.container--sergio-quimor {
  max-width: 100%;
}

@media (min-width: 768px) {
  .container--sergio-quimor {
    max-width: 93%;
  }
}

@media (min-width: 1380px) {
  .container--sergio-quimor {
    max-width: calc(( 1332 / 1920 ) * 100vw);
  }
}

.btn {
  border-radius: 24px;
  font-family: "Libre Baskerville", serif;
  height: 40px;
}

@media (min-width: 1380px) {
  .btn {
    height: calc(( 50 / 1920 ) * 100vw);
  }
}

.btn--brown-1 {
  background-color: #4A4232;
  border-color: #4A4232;
  color: #ffffff;
}

.btn--brown-1:hover {
  color: #4A4232;
}

.form-label {
  font-family: "Lexend Tera", sans-serif;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 16px;
}

.form-input {
  border-radius: 0;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

@media (min-width: 1380px) {
  .form-input {
    height: 44px;
  }
}

.wrapper-swiper-out {
  position: relative;
}

.wrapper-swiper-nav {
  position: absolute;
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-family: initial !important;
  content: "" !important;
}

.swiper-slide {
  padding: 1px;
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 2 !important;
  transition: all 0.1s !important;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 20px;
}

@media (min-width: 768px) {
  .swiper-button-prev img,
  .swiper-button-next img {
    width: 24px;
  }
}

.swiper-button-prev img {
  transform: rotate(180deg);
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active-main {
  background-color: red !important;
}

.main-header {
  height: 52px;
  background-color: #EBE6DC;
}

@media (min-width: 1380px) {
  .main-header {
    height: 72px;
  }
}

.main-header--scroll-down {
  background-color: #e6ded0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 540px) {
  .main-header--scroll-down .case-header-logo {
    width: 100px;
  }
}

.case-header-logo {
  width: 86px;
}

@media (min-width: 540px) {
  .case-header-logo {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .case-header-logo {
    width: 148px;
  }
}

@-webkit-keyframes own-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes own-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.own-fade-in {
  display: flex !important;
  -webkit-animation: own-fadeIn ease-in 200ms;
          animation: own-fadeIn ease-in 200ms;
}

/*
    **  BACKGROUND
*/

.bg-default {
  background-color: #D1D1D1;
}

.bg-beige-1 {
  background-color: #EBE6DC;
}

.border-red-1 {
  border-color: #BB2336;
}

[class*=hover] {
  transition: all 200ms;
}

@media (min-width: 1380px) {
  .hover\:tx-underline:hover {
    text-decoration: underline;
  }

  .hover\:tx-red-1:hover {
    color: #BB2336;
  }

  .hover\:filter-red-1:hover {
    filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(2369%) hue-rotate(337deg) brightness(91%) contrast(92%);
  }
}

.hover\:filter-red-1 {
  transition: all 50ms;
}

.ff-lexend-tera {
  font-family: "Lexend Tera", sans-serif;
}

.ff-libre-baskervillea {
  font-family: "Libre Baskerville", serif;
}

.tx-brown-1 {
  color: #4A4232;
}

.tx-red-1 {
  color: #BB2336;
}

@media (min-width: 1024px) {
  .tx-10vw {
    font-size: calc(( 10 / 1920 ) * 100vw);
  }

  .tx-12vw {
    font-size: calc(( 12 / 1920 ) * 100vw);
  }

  .tx-16vw {
    font-size: calc(( 16 / 1920 ) * 100vw);
  }

  .section-title {
    font-size: calc(( 60 / 1920 ) * 100vw);
  }
}

/* SIMPLE FADE */

.fade-enter-active,
.fade-leave-active {
  transition: opacity 120ms;
  transform: translateY(24px);
  opacity: 0;
  display: none;
}

.fade-enter,
.fade-leave-to {
  transition: opacity 150ms;
  opacity: 0;
}

/* SIMPLE FADE FAST*/

.fade-fast-enter-active,
.fade-fast-leave-active {
  transition: opacity 100ms;
}

.fade-fast-enter,
.fade-fast-leave-to {
  opacity: 0;
}

/* SIMPLE FADE SLOW*/

.fade-slow-enter-active,
.fade-slow-leave-active {
  transition: opacity 250ms;
}

.fade-slow-enter,
.fade-slow-leave-to {
  opacity: 0;
}

/* FADE IN DOWN */

.slide-fade-enter-active {
  transition: all 200ms ease;
}

.slide-fade-leave-active {
  transition: all 200ms ease;
}

.slide-fade-enter,
.slide-fade-leave-to {
  transform: translateY(-30px);
  opacity: 0;
}

.content-home .col-l {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .content-home .col-l {
    padding-left: calc(( 160 / 1920 ) * 100vw);
    padding-right: calc(( 132 / 1920 ) * 100vw);
  }
}

@media screen and (min-width: 1320px) {
  .content-home .col-l {
    padding-top: 80px;
  }
}

.content-home .col-r {
  height: 480px;
}

@media (min-width: 540px) {
  .content-home .col-r {
    height: 600px;
  }
}

@media (min-width: 768px) {
  .content-home .col-r {
    max-width: calc(( 828 / 1920 ) * 100vw);
    height: 100vh;
  }
}

.content-home .title {
  font-size: calc(( 130 / 1920 ) * 100vw);
}

.content-home .title span {
  font-size: calc(( 180 / 1920 ) * 100vw);
}

@media (min-width: 768px) {
  .btn--stories {
    width: calc(( 116 / 1920 ) * 100vw);
  }
}

@media (min-width: 768px) {
  .btn--contact {
    width: calc(( 190 / 1920 ) * 100vw);
  }
}

.book-badge {
  color: #4A4232;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  font-size: calc(( 52 / 1920 ) * 100vw);
  width: calc(( 280 / 1920 ) * 100vw);
  height: calc(( 128 / 1920 ) * 100vw);
  display: grid;
  place-items: center;
  margin-top: calc(( -16 / 1920 ) * 100vw);
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
}

.book-badge.active {
  background-color: #BB2336;
  color: #ffffff;
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .book-badge {
    font-size: calc(( 16 / 1920 ) * 100vw);
    width: calc(( 112 / 1920 ) * 100vw);
    height: calc(( 48 / 1920 ) * 100vw);
  }
}

@media (min-width: 1380px) {
  .book-badge {
    font-size: calc(( 13 / 1920 ) * 100vw);
    width: calc(( 84 / 1920 ) * 100vw);
    height: calc(( 32 / 1920 ) * 100vw);
  }

  .book-badge:hover {
    background-color: #BB2336;
    color: #ffffff;
    transform: translateY(-4px);
  }
}

.book-imago {
  width: 128px;
}

@media (min-width: 768px) {
  .book-imago {
    width: calc(( 408 / 1920 ) * 100vw);
  }
}

@media (min-width: 1380px) {
  .book-imago {
    width: calc(( 208 / 1920 ) * 100vw);
  }
}

.book-veda {
  width: 104px;
}

@media (min-width: 768px) {
  .book-veda {
    width: calc(( 300 / 1920 ) * 100vw);
  }
}

@media (min-width: 1380px) {
  .book-veda {
    width: calc(( 168 / 1920 ) * 100vw);
  }
}

/* CONTACT */

@media (min-width: 768px) {
  .btn--contact-submit {
    width: calc(( 190 / 1920 ) * 100vw);
  }
}

/* REVIEW BOOK */

.review-body {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

@media (min-width: 1380px) {
  .review-body {
    height: calc(( 400 / 1080 ) * 100vh);
  }

  .review-body::after {
    content: "";
    height: 80px;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #EBE6DC);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.review-body ::-webkit-scrollbar {
  width: 4px;
}

.review-body ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.review-body ::-webkit-scrollbar-thumb {
  background: #888;
}

.review-body ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.review-body {
  text-align: justify;
  white-space: pre-wrap;
}

.content-storie .form-input-search {
  display: none !important;
}

@media (min-width: 1380px) {
  .icon-share:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
}

.storie-hero {
  height: 240px;
}

@media (min-width: 768px) {
  .storie-hero {
    height: 376px;
  }
}

@media (min-width: 1024px) {
  .storie-hero {
    height: 476px;
  }
}

@media (min-width: 540px) {
  .storie-title-box {
    width: 50%;
  }
}

.storie-title-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #EBE6DC;
  width: 200%;
  height: 110%;
  z-index: -1;
}

.storie-detail-body {
  text-align: justify;
  white-space: pre-line;
}

.stories-hero {
  height: 520px;
}

@media (min-width: 540px) {
  .stories-hero {
    height: 630px;
  }
}

.form-input-search .form-input {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-bottom: 1px solid #4A4233;
  max-width: 192px;
  font-size: 12px;
}

.form-input-search .form-input:focus {
  color: #495057;
  border-color: #BB2336;
  outline: 0;
  box-shadow: none;
}

.welcome-box {
  background-color: #ffffff;
  max-width: 400px;
}

@media (min-width: 1024px) {
  .welcome-box {
    max-width: 560px;
  }
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 40px 12px;
}

@media (min-width: 540px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .stories-grid {
    grid-gap: 60px 24px;
  }
}

@media (min-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1380px) {
  .stories-grid {
    grid-gap: 100px 32px;
  }
}

@media (min-width: 1380px) {
  .stories-grid:hover .item {
    opacity: 0.6;
    filter: grayscale(1);
  }
}

.stories-grid .item {
  transition: all 300ms ease;
}

.stories-grid .item .render-img {
  height: 180px;
}

@media (min-width: 1680px) {
  .stories-grid .item .render-img {
    height: 284px;
  }
}

@media (min-width: 1380px) {
  .stories-grid .item:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: none;
  }

  .stories-grid .item:hover .render-img {
    transform: scale(1.15);
  }
}

.abstract-article {
  min-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
  word-break: break-word;
}

.stories-grid-item:after {
  content: "Ver más";
  font-size: 12px;
  display: block;
  text-align: left;
  margin-top: 10px;
  font-weight: 400;
  text-decoration: underline;
  line-height: 0px;
}

/*
    ************** BUNDLE MY PROYECT **************
*/

/*
    ** LAYOUT **
*/

/*
    ** COMPONENTS **
*/

/*
    ** LAYOUT PARTIALS **
*/

/*
    ** UTILITIES **
*/

/*
    ** PAGES **
*/

/*
    ** SHAME **
*/


