/********************/
/******* ROOT *******/
/********************/
@import url('magnific-popup.css');



:root{
    --primary_red: rgba(249, 97, 103, 1);
    --bg-dark: #202020;
    --bg-gradient:  radial-gradient(closest-side,#5c5c5c,#363636,#202020);
    --text-dark: #242424;
    --primary-white: #FFFFFF;

    --bg_scrollbar: #141414;
    --scrollbar: rgba(249, 97, 103, 1);
  
    --ff-primary: "Khand", sans-serif;
    --ff-paragraph: "Poppins", sans-serif;
  }



/*************************/
/**** Utility Classes ****/
/*************************/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff-primary);
}

html {
	scroll-behavior: smooth;
}

/*************************************/
/********** PROGRESSION BAR **********/
/*************************************/

.progession-bar {
    top:0;
    background: var(--primary_red);
    position: sticky;
    height: .15rem;
    width: 0%;
    z-index: 1000000;
}

/*************************************/


@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}


.skip-nav-link {
    position: absolute;
    transform: translateY(-200%);
    left: 1rem;
    padding: .5rem 1rem .5rem 1rem;
    border-radius: 0 0 1rem 1rem;
    text-decoration: none;
    background-color: var(--primary_red);
    color: var(--bg-dark);
    font-family: var(--ff-paragraph);
    font-size: .85rem;
    font-weight: 600;
    transition: transform 400ms ease-in-out;
}

.skip-nav-link:focus {
    transform: translateY(0%);
}

/****************************/
/******* PRELOADER **********/  
/****************************/

/* 1.6 Preloader */


/* Estilos del preloader Logo Milo */
#preloader {
    background: var(--text-dark) url(../images/logo_ani.gif) no-repeat center center;
    background-size: 8%;
    /* height: 100vh; */
    height: -webkit-fill-available;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    width: 100%;
    position: fixed;
    z-index: 10000;
  }
  
  
  @media (max-width: 800px){
  
    #preloader {
      background: var(--text-dark) url(../images/logo_ani.gif) no-repeat center center;
      background-size: 30%;
      /* height: 100vh; */
      height: -webkit-fill-available;
      min-height: 100vh;
      min-height: -webkit-fill-available;
      width: 100%;
      position: fixed;
      z-index: 10000;
    }
  }
  
  
  .animsition{
    position:absolute;
    /* z-index: 1000; */
    left: 0;
    width: 100%;
    top:0;
    height: 100%;
  }
  
  .loader{
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#1b1b1b;
    color:#4b4b4b;
    text-align: center;
  }
  
  .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--background);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% {
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
  




/*************************************/
/*********** SCROLLBAR ***************/
/*************************************/
/* Works on Firefox */
* {
    scrollbar-width: thin;          /* "auto" or "thin" */
    scrollbar-color: var(--scrollbar) var(--bg_scrollbar);
  }
  
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: .5rem;
  }
  
  *::-webkit-scrollbar-track {
    background: var(--bg_scrollbar);
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar);
    /* border-radius: 20px;
    border: 3px solid orange; */
  }

  svg {
      width: 3rem;
      height: 3rem;
  }

/*************************************/



/*****************************************/
/*********** SCROLL TO TOP ***************/
/*****************************************/
 #scrollTop {
    position: fixed;
    bottom: 3.5rem;
    right: 3.5rem;
    font-size: 3rem;
    /* background: var(--bg_scrollbar);   */
    color: var(--primary-white);
    padding: 10px 13px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
  }

  #scrollTop:hover {
    /* background: var(--bg_scrollbar);   */
    color: var(--primary_red);
    transition: all 500ms ease-in-out;
  }


  .back-to-top-link {
    display: inline-block;
    text-decoration: none;
    /* font-size: 2rem; */
    line-height: 3rem;
    text-align: center;
    width: 3rem;
    height: 3rem;
    /* emoji don't behave like regular fonts
       so this helped position it correctly */
    padding: 0.25rem;
  }

  .back-to-top-wrapper {
    position: absolute;
    right: 5rem;
    bottom: -5em;
    pointer-events: none;
  }

  .back-to-top-link {
    position: fixed;
    position: sticky; 
    pointer-events: all;
    top: calc(100vh - 5rem);
  }
  
/*************************************/

body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
    overflow-x: hidden;
}

/*************************/
/***** Text Styling ******/
/*************************/

h1 {
    font-family: var(--ff-primary);
    font-weight: 800;
    font-size: 7rem;
    line-height: 5.5rem;
    color: var(--primary-white);
}

h2 {
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--primary-white);
}

h3 {
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--primary-white);
}

h4 {
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--primary-white);
}


.text-navbar {
    font-family: var(--ff-primary);
    font-weight: 400;
    font-size: 1.26rem;
}

.text-paragraph {
    font-family: var(--ff-primary);
    font-weight: 300;
    font-size: 0.26rem;
}

.text-footer {
    font-family: var(--ff-paragraph );
    font-weight: 300;
    font-size: 0.12rem;
}


/*************************/
/********* Navbar ********/
/*************************/

.navbar {
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 2rem 0 0 0;
    /* background: red; */
}

.navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .menu-list {
    display: inline-flex;

}

.content {
    max-width: 82rem; /* 1312px ancho máximo */
    margin: auto;
    padding: 0 4rem;
}

.menu-list li {
    list-style: none;
}

.menu-list li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-white);
    margin-left: 1.8rem;
    transition: all 300ms ease;
}

.menu-list li a:hover {
    color: var(--primary_red);
}

.logo {
    /* margin-top: 2rem; */
    /* color: var(--primary-white); */
    transform: scale(75%);
}


.icon {
    color: var(--primary-white);    
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
}

.icon.cancel-btn {
    position: absolute;
    right: 3rem;
    top: 2rem;
}

.section-separator-v {
    border-left: 1px solid var(--primary-white);
    height: 3.75rem;
    cursor: pointer;
    transform: translateY(.4rem);
    -webkit-transform: translateY(.4rem);

}

.arrow{
    border: solid var(--primary-white);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    
}


/*************************/
/***** HERO SECTION ******/
/*************************/

.hero-section {
    height: 100vh;
}

.content-hero {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    height: 100%;
    margin: 0 auto;
}

.title-hero {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* width: 45rem;  */
}

.title-hero h1 {
   text-align: center;
   white-space: pre-line;
   padding-bottom: .5rem;
}

.title-hero h1 color {
    color: var(--primary_red);
}


.title-hero a {
    text-decoration: none;
}

.title-hero .cta-email {
    margin-top: 5rem;
    background-color: var(--primary_red);
    padding: .5rem 4rem .5rem 4rem;
    border-radius: 4rem;
    cursor: pointer;
    font-family: var(--ff-paragraph);
    font-size: 1.16rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--bg-dark);
}


.title-hero .cta-email:hover {
    text-decoration: none;
    border: 1px solid var(--primary-white);
    color: var(--primary-white);
    background-color: var(--bg-dark);
    font-weight: 300;
}


.milo-thumbnail img {
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    border: 3px solid var(--primary-white);
    /* box-shadow: 0 9px 26px rgba(58, 87, 135, .2); */
    margin-bottom: 1rem;
}


.footer-hero {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    align-items: center;
    margin-top: auto;
}

.footer-hero h4 {
    text-align: center;
    font-size: 1rem;
    font-weight: 100;
    opacity: 50%;
}

.client-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* margin-top: 1rem; */
    margin-bottom: .75rem;
    justify-content: center;
    align-items: center;
    opacity: 50%;
    transform: scale(80%);
}

.client-list li {
    font-family: var(--ff-primary);
    font-weight: 300;
    font-size: 1rem;
    color: var(--primary-white);
    list-style: none;
    text-decoration: none;
    padding-inline: .5rem;
}



/*************************/
/***** WORK SECTION ******/
/*************************/

.work-section{
    height: 100%;
}

.content-work {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-work .project {
    max-width: 82rem;
}

.project {
    padding: 8rem 4rem 1rem 4rem;
    width: 100%;
    height: 100%;
}

.image-project iframe {
    position: absolute;
    width: 100%;
}

.image-project img {
    display: block;
    max-width: 100%;
    /* max-height: 100%;
    width:max-content;
    object-fit: cover;  */
}

.image-project a img {
    /* -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0); */
    -webkit-transition: 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    /* transition: all 500ms ease-in-out; */
}

.image-project a img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    /* border: 1px solid var(--primary_red); */
}

.image-project a {
    text-decoration: none;
}

.image-project a .overlay {
    /* position: absolute; */
    bottom: 0;
    background: var(--primary_red);
    width: 100%;
    opacity:0;
    color: var(--primary-white);
    font-size: 1.1rem;
    font-weight: 400;
    font-family: var(--ff-paragraph);
    /* padding: 10px; */
    text-align: center;
    text-decoration: none;
    transition: all 500ms ease;
}

.image-project a:hover .overlay {
    text-decoration: none;
    opacity: 1;
}


.info-project {
    display: flex;
    flex-basis: auto;
    justify-content: space-between;
}


.title-project {
    color: var(--primary-white);
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 500;
}

.subtitle-project {
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 200;
    white-space: pre-line;
    margin-top: -1rem;
    padding-right: 5rem;
}

.category-project {
    color: var(--primary-white);
    align-items: baseline;
    font-size: 1.5rem;
    white-space:nowrap;
}

.category-separator-h {
    justify-content: right;
    align-content: flex-end;
    border-top: 1px solid var(--primary-white);
    width: 55%;
    margin-left:auto;
    opacity: 30%;
}

.content-work .section-separator-h {
    max-width: 82rem;
    margin: auto;
    padding: 0 4rem;
    border-bottom: 1px solid var(--primary-white);
    width: 90%;
    padding-top: 5rem;
    opacity: 30%;
  
}



/*************************/
/***** ABOUT SECTION ******/
/*************************/

.about-section {
    height: 100%;
}

.content-about {
    max-width: 82rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10rem 4rem 4rem 4rem;
    flex-basis: auto;
    margin: auto;

}

.hero-about h1 {
    text-align: left;
    white-space: pre-line;
    padding-bottom: .5rem;
}

.hero-about h1 color {
    color:var(--primary_red)
}

.hero-about h3 {
    /* font-family: var(--ff-paragraph); */
    font-size: 1.06rem;
    text-align: left;
    padding: 0 0 1rem;
}

h3.subtitulo-about {
    /* font-family: var(--ff-paragraph); */
    font-size: 1.6rem;
    line-height: 1;
    text-align: left;
    white-space: pre-line;

}

.text-about p {
    padding-left: 10rem;
    text-align: left;
    white-space: pre-line;
    font-family: var(--ff-paragraph);
    font-weight: 200;
    font-size: 1rem;
    color: var(--primary-white);
}

.text-about p negro{
    font-family: var(--ff-paragraph);
    font-weight: 600;
    font-size: 1rem;
}

.text-about p i{
    font-family: var(--ff-paragraph);
    font-weight: 100;
    font-size: 1rem;
}

.about-section .section-separator-h {
    max-width: 82rem;
    margin: auto;
    padding: 0 4rem;
    border-bottom: 1px solid var(--primary-white);
    width: 90%;
}

.values-about {
    max-width: 82rem;
    display: flex;
    flex-direction: row;
    /* flex-basis: auto;*/
    justify-content: center;
    margin: 0 auto;
    padding: 3rem 4rem 3rem 4rem;
}

.values-about > * {
    flex: 1;
}

.value-before {
    padding-right: 2rem;
}

.value-during {
    padding-right: 2rem;
}

.value-after {
    padding-right: 2rem;
}

.value-before h3{
    font-size: 1.5rem;
}

.value-before h3 color{
    color: var(--primary_red);
}

.value-before p {
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 200;
    color: var(--primary-white);
}

.value-during h3{
    font-size: 1.5rem;
}
.value-during h3 color{
    color: var(--primary_red);
}

.value-during p {
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 200;
    color: var(--primary-white);
}

.value-after h3{
    font-size: 1.5rem;
}
.value-after h3 color{
    color: var(--primary_red);
}

.value-after p {
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 200;
    color: var(--primary-white);
}


/*****************************/
/***** CONTACTO SECTION ******/
/*****************************/

.hero-contact {
    height: 100vh;
}

.content-contact {
    max-width: 82rem;
    padding: 10rem 4rem 4rem 4rem;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    flex-basis: auto;
    align-items: center;
}

.content-contact h1 {
    padding-bottom: 1rem;
}

.content-contact h2 {
    color: var(--primary_red);
    font-weight: 400;
}

.content-contact color {
    color: var(--primary_red);
}


.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-contact h2 {
    color: var(--primary_red);
    font-weight: 500;
    margin-top: 2rem;
}

h2 a {
    text-decoration: none;
    color: var(--primary_red);
    transition: all 300ms ease;
}

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

.footer-contact .rrss{
    display: flex;
    justify-content: space-evenly;
    align-items:center;
}

.footer-contact .rrss li {
    list-style: none;
}

.footer-contact .rrss li a {
    text-decoration: none;
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 500;
    padding-inline: 1.16rem;
    color: var(--primary-white);
    transition: all 300ms ease;
}

.footer-contact .rrss li a:hover {
    color: var(--primary_red);
}


.container-contact {
    color: var(--primary-white);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.container-contact .section-title h2 {
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 300;
}

/* TESTITMONIALS ABOUT*/

.container-testimonial {
    position: relative;
    perspective: 1000px;
}

.container-testimonial .slide-container .slide {
    min-width: 20rem;
    max-width: 40rem;
    border-radius: 1rem;
    background: var(--primary-white);
    box-shadow: 0 .4rem .7rem var(--text-dark);
    width: auto;
    padding: 2rem;
    margin: .9rem;
    transform-style: preserve-3d;
    animation: slide .4s linear;
}

@keyframes slide {
    0% {
        transform: rotateX(180deg);
    }
}

.container-testimonial .slide-container .slide > * {
    animation: slideContent .2s linear .4s backwards;
}

@keyframes slideContent {
    0% {
        opacity: 0;
        transform: scale(.5)
    }
}

.container-testimonial .slide-container .slide .user {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    object-fit: cover;
    padding-bottom: 1rem;
}


.container-testimonial .slide-container .slide .user i {
    font-size: 5rem;
    color: var(--text-dark);
    margin-left: auto;
}


.container-testimonial .slide-container .slide img {
    width: 5.62rem;
    height: 5.62rem;
    float: left;
    border-radius: 100%;
    border: 6px solid #d8d8d8;
    box-shadow: 0 9px 26px rgba(58, 87, 135, .2);
    margin-right: 1rem;
}


.container-testimonial .slide-container .slide .user .user-info h3 {
    font-family: var(--ff-paragraph);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary_red);
}

.container-testimonial .slide-container .slide .user .user-info h4 {
    font-family: var(--ff-paragraph);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark)
}

.container-testimonial .slide-container .slide .text {
    /* text-align: left; */
    font-family: var(--ff-paragraph);
    font-size: 1.2rem;
    font-style: italic;
    padding-top: 1rem;
    text-align: center;
}

.container-testimonial .slide-container {
    display: none;
}

.container-testimonial .slide-container.active {
    display: block;
}


.pagination #next, 
.pagination #prev {
    height: 3.5rem;
    width: 3.5rem;
    text-align: center;
    font-size: 1.5rem;

    color: var(--primary-white);
    cursor: pointer;
}

.pagination #next {
    padding-left: auto;
} 
.pagination #prev {
    padding-right: auto;
} 

.pagination #next:hover, 
.pagination #prev:hover {
    color: var(--primary_red);
}


/**********************/

/************************************************************************************************************************************************/
/******************************************************* PROJECT DETAIL STYLE *******************************************************************/
/************************************************************************************************************************************************/

.hero-project {
    max-width: 82rem;
    /* width: 100%; */
    padding-right: 3.7rem;
    padding-left: 3.7rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 8rem;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    margin-right: -1rem;
    margin-left: -1rem;
    justify-content: center;
    flex-basis: auto;
    align-items: center;
} 

.project-details {
    margin-bottom: 1rem;
}

.title-hero-project {
    white-space: pre-line;
    margin: 2.5rem 0 0;
    padding: 0 8rem 0 1rem;
 }

.title-hero-project h1{
    color: var(--primary_red);
    font-weight: 600;
}

.details-project {
    flex: 0 0 50%;
    padding: 0 1rem;
}

.row-detail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
    align-items: flex-start;
}

.row-detail .columna-detail {
    margin: 2.5rem 0 0;
    padding: 0 1rem;
}

.columna-detail {
    flex: 0 0 50%;

}

.columna-detail h4 {
    margin: 0 0 1.1rem
}

.columna-detail h4 span {
    color: var(--primary_red);
    font-size: 1.5rem;
    font-weight: 600;
}

.columna-detail .text-primary {
    font-family: var(--ff-paragraph);
}

.text-white {
    font-family: var(--ff-paragraph);
    font-size: 1rem;
    font-weight: 300;
    color: var(--primary-white);
    white-space: pre-line;
}


.image-holder {
    display: block;
    /* margin: 2rem auto 2rem; */
    max-width: 100%;
}


.container-project {
    max-width: 82rem;
    width: 100%;
    /* display: flex; */
    /* flex-wrap: nowrap; */
    /* flex-direction: column; */
    padding: 1rem 4rem 1rem 4rem;
    justify-content: center;
    align-items: center;
    /* flex-basis: 100%; */
    margin: 0 auto;
}

.container-project > * {
    padding-bottom: 2rem;
}

.project-detail-text {
    display: block;
    text-align: center;
    color: var(--primary-white);
    font-family: var(--ff-paragraph);
    font-weight: 200;
    font-size: 1rem;
    padding: 3rem 0 4.37rem;
    box-sizing: inherit;
}

.video-vimeo div iframe {
    width: 100%
}

.image-holder-project {
    width: 100%;
}


/************************************************************************************************************************************************/


/************************************************************************************************************************************************/
/************************************************************** MEDIA QUERY MENU ****************************************************************/
/************************************************************************************************************************************************/

@media (max-width: 73rem) {
    
    .logo {
        transform: scale(60%);
    }

    /**************************/
    /***** WORKS SECTION ******/
    /**************************/

    .subtitle-project {
        margin-top: -1.5rem;
    }
    

    /**************************/
    /***** ABOUT SECTION ******/
    /**************************/

    .project{
        padding: 8rem 4rem 1rem 4rem;
    }

    .content-about {
        padding: 6rem 4rem;
        flex-direction: column;

    }

    .hero-about h3 {
        padding-top: 2rem;
    }

    h3.subtitulo-about {
        padding-top: 1rem;
    }

    .text-about p{
        padding: 1rem 0 2rem 0;
        /* padding-left: 0; */
    }
}


@media (max-width: 54rem) {

    body.disabledScroll {
        overflow: hidden;
    }


    /* TEXT  RESPONSIVE MOBILE */

    h1 {
        font-family: var(--ff-primary);
        font-weight: 800;
        font-size: 4rem;
        line-height: 3.2rem;
        color: var(--primary-white);
    }
    
    h2 {
        font-family: var(--ff-primary);
        font-weight: 400;
        font-size: 2rem;
        color: var(--primary-white);
    }
    
    h3 {
        font-family: var(--ff-primary);
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.4rem;
        color: var(--primary-white);
        text-align: center;
    }
    
    h4 {
        font-family: var(--ff-primary);
        font-weight: 400;
        font-size: 1.25rem;
        color: var(--primary-white);
    }

    /* NAVBAR */
    
    .icon {
        display: block;
    }
    
    .icon.hide {
        display: none;
    }
    
    .navbar .menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        max-width: 25rem;
        background: var(--text-dark);
        display: block;
        padding: 5rem 0;
        /* padding-top: calc(100vh / 3); */
        text-align: center;
        transition: all 300ms ease-out;
    }
    
    .navbar .menu-list.active {
        left: 0%;
    } 
    
    .navbar .menu-list li {
        margin-top: 2.5rem;
    }
    
    .navbar .menu-list li a {
        font-size: 1.9rem;
    }
    

    .content {
        padding: 0 2rem;
    }    

    .title-hero {
        padding: 0 2rem;
    }

    /* FOOTER */

    .footer-hero h4 {
        font-size: .85rem;
        text-align: center;
        font-weight: 200;
        /* display: none; */
    }

    .client-footer {
        padding: 0 2rem;
    }

    .client-list {
        /* padding-top: .5rem; */
        justify-content: center;
        align-items: center;
        /* display: none; */
    }

    .client-list li {
        font-family: var(--ff-primary);
        font-weight: 300;
        font-size: .85rem;
        line-height: 1.5rem;
        padding-inline: 0rem;
        transform: scale(80%);
    }


    @media (max-width: 30rem) {

        /* .title-hero h1 {
            font-size: 4rem;
            line-height: 2.5rem;
        } */

        
        .logo {
            transform: scale(60%);
        }

        .milo-thumbnail img {
            width: 5rem;
            height: 5rem;
            margin-bottom: 0;;
        }
        

        .title-hero h3 {
            font-size: 1rem;
        }
   

        .title-hero .cta-email {
            margin-top: 3.5rem;
            /* padding: .5rem 2rem .5rem 2rem; */
            font-size: 1rem;
        }

        .section-separator-v {
            display: none;
        }
        
        .arrow {
            display: none;
        }



        .footer-hero h4 {
            display: none;
        }

        .client-list {
            display: none;
        }

    }

/*************************/
/***** WORK SECTION ******/
/*************************/

    .project {
        padding: 8rem 2rem 1rem 2rem;
    }

    .info-project {
        display: flex;
        flex-direction: column;
        flex-basis: auto;
        justify-content: space-between;
    }


    .title-project {
        color: var(--primary-white);
        font-size: 2rem;
        font-weight: 500;
        line-height: 3rem;
        margin-top: 0.25rem;
    }

    .subtitle-project {
        font-family: var(--ff-paragraph);
        font-size: .75rem;
        font-weight: 200;
        margin-top: -.05rem;
        margin-bottom: 1.2rem;
        margin-top: -1rem;
        padding-right: 0;
    }
    
    .category-project {
        border-top: 1px solid rgba(255,255,255,.3);
        width: 30%;
        font-size: 1rem;
        font-weight: 200;
        line-height: 1.75rem;
        justify-content: space-between;
        white-space:nowrap;
    }

    .category-separator-h {
        display: none;
    }

    .content-work .section-separator-h {
        padding-top: 1rem;
        width: 90%;
        opacity: 30%;
        
    }


/*************************/
/***** ABOUT SECTION ******/
/*************************/


    .content-about {
        padding: 6rem 2rem 2rem 2rem;
        flex-direction: column;

    }

    .hero-about h3 {
        padding-top: 2rem;
    }

    h3.subtitulo-about {
        padding-top: 1rem;
    }

    .text-about p{
        padding: 1rem 0 2rem 0;
        /* padding-left: 0; */
    }


    .values-about {
        max-width: 82rem;
        display: flex;
        flex-direction: column;
        /* flex-basis: auto;*/
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 3rem 2rem 3rem 2rem;
    }
    
    .values-about > * {
        flex: 1;
    }
    
    .value-before {
        padding-right: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .value-during {
        padding-right: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .value-after {
        padding-right: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .value-before h3{
        font-size: 2.5rem;
        line-height: 2rem;
        padding-bottom: 1rem;       
    }
     
    .value-before p {
        font-size: 1.25rem;
        text-align: center;
       
    }
    
    .value-during h3{
        font-size: 2.5rem;
        line-height: 2rem;
        padding-bottom: 1rem;         
    }
      
    .value-during p {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .value-after h3{
        font-size: 2.5rem;
        line-height: 2rem;
        padding-bottom: 1rem;             
    }
     
    .value-after p {
        font-size: 1.25rem;
        text-align: center;
    }
    

    /****************************/
    /***** CONTACT SECTION ******/
    /****************************/

    .content-contact {
        padding: 8rem 4rem 2rem 4rem;
    }


    /* TESTIMONIALS*/

    .container-contact {
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .container-contact .section-title h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 300;
    }

    
    .container-testimonial .slide-container .slide .user {
        flex-direction: column;
        text-align: center;
        padding-bottom: 0;
    }
    
    .container-testimonial .slide-container .slide .user i {
        min-width: 300px;
        display: none;
    }

    .container-testimonial .slide-container .slide .user img {
        margin-right: 0;
    }

    .container-testimonial .slide-container .slide .user .user-info {
        padding-top: 1rem;
    }

    .container-testimonial .slide-container .slide .text {
        font-size: 1rem;
        font-style: italic;
        /* padding-top: 1rem; */
        text-align: center;
    }

    /***************************/
    /***** PROJECT DETAILS *****/
    /***************************/
    .hero-project {
        padding-left: 1rem;
        padding-right: 0;
    }

    .title-hero-project {
        margin: 0;
        padding: 0 8rem 0 1.8rem;
    }

    .project-detail-text {
        padding-top: 2.5rem;   
        padding-bottom: 2.5rem;
    }

    .row {
        flex-direction: column;
        align-items:flex-start;
    }

    .row-detail {
        margin-left: 0;
        padding-bottom: 2rem;
    }

    .container-project {
        padding: 1rem 2rem 1rem 2rem;
    }

    /* .container-project > * {
        padding-bottom: 1rem;
    } */

}