@font-face {
    font-family: 'rubik';
    src: url('font/Rubik/Rubik-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'raleway';
    src: url('font/Raleway/Raleway-VariableFont_wght.ttf');
}

:root{

    --black: #000000;
    --light: #FFFFFF;
    --bg-alternative: #031B24;
    /* --text-color: #202020; */

    --primary-font: 'raleway', Arial, Helvetica, sans-serif;
    --heroes-font: 'rubik', 'raleway', Arial, Helvetica, sans-serif;
    --font-size: 1.25rem;

    --blue-primary-50: #E5F6FD;
    --blue-primary-100: #CBEDFA;
    --blue-primary-200: #B1E4F8;
    --blue-primary-300: #98DBF6;
    --blue-primary-400: #7ED2F3;
    --blue-primary-500: #30B7EC; /* principal*/
    --blue-primary-550: #0F79A3;
    --blue-primary-600: #0C6182;
    --blue-primary-700: #094962;
    --blue-primary-800: #063041;
    --blue-primary-900: #031B24;

    --green-primary-100: #D7FEF6;
    --green-primary-200: #B0FCEC;
    --green-primary-300: #88FBE3;
    --green-primary-400: #60FAD9;
    --green-primary-500: #06B08C; /*principal*/
    --green-primary-550: #058469;
    --green-primary-600: #035846;
    --green-primary-700: #024235;
    --green-primary-800: #022C23;
    --green-primary-900: #011612;
    
}

html{
    scroll-behavior: smooth ;
}

body {
    font-family: var(--primary-font);
    color: var(--black);
}

img{
    max-width: 100%;
}

h1,h2,h3,h4,h5,h6, span{
  word-break: break-word;
}

.hidden{
  visibility: hidden;
  opacity: 0;
}

.regular-size{
    font-size: var(--font-size);
}

.raleway {
    font-family: var(--primary-font);
}

.rubik {
    font-family: var(--heroes-font);
}

nav, main{
    background-color: var(--light);
    z-index: 10;
}

/*-------- navbar -----------*/

nav {
    font-size: 1.2em;
}

nav .nav-link {
    color: var(--black);
    font-weight: bold;
}

nav .nav-item.active {
    background: linear-gradient(135deg, #30b7ec 0%, #06b08c 10%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

nav .nav-link:hover {
    background: linear-gradient(135deg, #30b7ec 0%, #06b08c 10%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    transition: 0.35s;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--black);
}

.navbar-light .navbar-toggler {
    border: none;
    z-index: 10;
}

nav .lang a {
    width:30px;
    height:30px;
    opacity: 0.5;
}
  
nav .lang a.selected {
    opacity: 1;
  }

.d-flex {
    display: flex !important;
}

/*-------- jumbotron -------*/
.w-65a{
    width: 100% !important;
}


.jumbotron{
    background-image: linear-gradient(135deg, var(--blue-primary-500) 30%, var(--green-primary-500) 80%);
}

.jumbotron-services{
    background-image: linear-gradient(135deg, var(--green-primary-500)  30%, var(--blue-primary-500) 80%);
}


.title-modified{
    font-size: 2.3rem;
}

.title-modified2{
  font-size: 2.3rem;
}

.header{
    font-family: var(--heroes-font);
}

.jumbotron .contact-btn:active, .jumbotron .contact-btn:hover{
    color: var(--blue-primary-600) !important;
}

.container-cube {
  height: 325px;
  width: 320px;
  perspective: 1000px;
  /* overflow: hidden; */
}

.box {
  height: 180px;
  width: 180px;
  position: absolute;
  top: calc(50% - 90px);
  left: calc(50% - 90px);
  transform-style: preserve-3d;
  animation: animate 15s infinite;
  transition: left 0.7s, top 0.7s;
}

.face {
  height: 180px;
  width: 180px;
  text-align: center;
  padding: 0px 0;
  background: radial-gradient(
    circle,
    white 50%,
    #D7D7D7 100%
  );
  border: 3px solid white;
  box-sizing: border-box;
  position: absolute;
}
#front {
  transform: translateZ(90px);
}

#back {
  transform: translateZ(-90px) rotateY(180deg);
}

#left {
  right: 90px;
  transform: rotateY(-90deg);
}

#right {
  left: 90px;
  transform: rotateY(90deg);
}

#top {
  bottom: 90px;
  transform: rotateX(90deg);
}

#bottom {
  top: 90px;
  transform: rotateX(-90deg);
}

.box.animation--active{
  animation: front 10s linear infinite;
}

@keyframes front {
  0%{
    transform: rotateY(0)/*front*/
  }
  16%{
    transform: rotateY(-90deg)/*right*/
  }
  33%{
    transform: rotateX(-90deg)/*top*/
  }

  50%{
    transform: rotateY(-180deg) /*back*/
  }

  66%{
    transform: rotateY(-270deg) /*left*/
  }

  83%{
    transform: rotateX(90deg)/*bottom*/
  }
  100%{
    transform: rotateX(0) /*front*/
  }
}

.box.animation--2{
  animation: back 10s linear infinite;
}

@keyframes back {
  0%{
    transform: rotateY(-180deg)/*back*/
  }
  16%{
    transform: rotateY(-270deg)/*left*/
  }
  33%{
    transform: rotateX(90deg)/*bottom*/
  }

  50%{
    transform: rotateY(0deg) /*front*/
  }

  66%{
    transform: rotateY(-90deg) /*right*/
  }

  83%{
    transform: rotateX(-90deg)/*top*/
  }
  100%{
    transform: rotateY(-180deg) /*back*/
  }
}

.box.animation--3{
  animation: left 10s linear infinite;
}

@keyframes left {
  0%{
    transform: rotateY(-270deg)/*left*/
  }
  16%{
    transform: rotateX(90deg)/*bottom*/
  }
  33%{
    transform: rotateY(0deg) /*front*/
  }

  50%{
    transform: rotateY(-90deg) /*right*/
  }
  
  66%{
    transform: rotateX(-90deg)/*top*/
  }
  
  83%{
    transform: rotateY(-180deg)/*back*/
  }
  100%{
    transform: rotateY(-270deg) /*left*/
  }
}

.box.animation--4{
  animation: right 10s linear infinite;
}

@keyframes right {
  0%{
    transform: rotateY(-90deg) /*right*/
  }
  16%{
    transform: rotateX(-90deg)/*top*/
  }
  33%{
    transform: rotateY(-180deg)/*back*/
  }
  
  50%{
    transform: rotateY(-270deg) /*left*/
  }
  
  66%{
    transform: rotateX(90deg)/*bottom*/
  }
  
  83%{
    transform: rotateY(0deg) /*front*/
  }
  100%{
    transform: rotateY(-90deg)/*right*/
  }
}

.box.animation--5{
  animation: top 10s linear infinite;
}

@keyframes top {
  0%{
    transform: rotateX(-90deg)/*top*/
  }
  16%{
    transform: rotateY(-180deg)/*back*/
  }
  33%{
    transform: rotateY(-270deg) /*left*/
  }
  
  50%{
    transform: rotateX(90deg)/*bottom*/
  }
  
  66%{
    transform: rotateY(0deg) /*front*/
  }
  
  83%{
    transform: rotateY(-90deg)/*right*/
  }
  100%{
    transform: rotateX(-90deg) /*top*/
  }
}
.box.animation--6{
  animation: bottom 10s linear infinite;
}

@keyframes bottom {
  0%{
    transform: rotateX(90deg)/*bottom*/
  }
  16%{
    transform: rotateY(0deg) /*front*/
  }
  33%{
    transform: rotateY(-90deg) /*right*/
  }
  
  50%{
    transform: rotateX(-90deg)/*top*/
  }
  
  66%{
    transform: rotateY(-180deg)/*back*/
  }
  
  83%{
    transform: rotateY(-270deg) /*left*/
  }
  100%{
    transform: rotateX(90deg)/*bottom*/
  }
}


.face__information {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.face__link {
  display: block;
  width: 100%;
  height: 100%;
}

.face__content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgb(255, 255, 255);
  color: var(--blue-primary-800);
  box-shadow: 0px 100px 153px rgba(0, 0, 0, 0.07), 
    0px 41.7776px 63.9197px rgba(0, 0, 0, 0.0503198), 
    0px 22.3363px 34.1746px rgba(0, 0, 0, 0.0417275), 
    0px 12.5216px 19.158px rgba(0, 0, 0, 0.035), 
    0px 6.6501px 10.1747px rgba(0, 0, 0, 0.0282725), 
    0px 2.76726px 4.2339px rgba(0, 0, 0, 0.0196802);
  opacity: 0;
  visibility: hidden;
}

.box-top {
  top: -0.5vh;
  transition: top 0.7s;
}

.face__content.face__content--active {
  transform: translateY(110%);
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
}

.face__content.face__content--desactive {
  transform: translateX(0);
  opacity: 0;
  visibility: hide;
  transition: all 0.5s ease;
}

@keyframes showinfo {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(120%);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes hideinfo {
  0% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(0);
  }
}
/*------- home page -----------*/

.mp-auto{
    margin: auto;
    width: 75%;
} 

  /************services section in home************/

  .services-offer__services{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
  }

  .services-offer__phrase h2{
    background: linear-gradient(135deg, #30b7ec 0%, #06b08c 50%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: calc(1.375rem + 1.7vw);
  }

  .card-service{
    gap: 24px;
  }

  .card-service img{
    width: calc(50px + 7.5vw);
    max-width: 120px;
    max-height: 120px;
  }


  /************we choose us section in home************/
  .we-choose-us img{
    width: 100%;
    max-width: 550px;
  }

  /************projects section in home************/
/* .experiences__title{
  position: relative;
  display: inline-block;
}

.experiences__title::after{
  content: "";
  display: block;
  top: 4px;
  right: calc(-150px - 2vw);
  position: absolute;
  width: 140px;
  height: 25px;
  background-image: url("/static/images/stars-icon.svg");
  background-size: cover;
} */

.corporative .project{
    background-image: url("images/backgrounds/background-projects-white.webp");
    background-size: cover;
}

.entrepreneurship .project{
    background-image: url("images/backgrounds/background-projects-blue.webp");
    background-size: cover;
}

.project{
    width: auto;
    height: 112vw;
    min-height: 345px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    box-shadow: 0px 0px 30px 2px rgba(0,0,0,0.06);
  }

.corporative .project .project__title,
.entrepreneurship .project .project__title{
    margin: 0 8px;
    font-size: calc(2.2rem + 1vw);
    font-family: var(--heroes-font);
    font-weight: bold;
    text-align: center;
}

.corporative .project .project__title, .corporative a{
    color: var(--blue-primary-800);
}

.corporative__main p,
.entrepreneurship__main p{
  min-height: 150px;
} 

.entrepreneurship .project .project__title, .entrepreneurship a{
    color: var(--light);
}

.project .project__main{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.project__main img:last-child {
    position: absolute;
    left: 75.5%;
    top: calc(50% - 16.5%);
    transform: translate(0);
    transition: transform 0.7s, left 0.7s, top 0.7s;
}

.project__main img:first-child{
    filter: blur(0px);
    transition: filter 1s
}

.project:hover .project__main img:last-child{
    transform: scale(1.8) translate(-120%, -17.5%);
    /* left: calc(50% - 7.5%);
    top: calc(50% - 33.5%); */
    transition: transform 0.7s, left 0.7s, top 0.7s;
}

.project:hover .project__main img:first-child{
    filter: blur(4px);
    transition: filter 0.7s
}

.project__germany{
  position: relative;
  overflow: hidden;
}

.project .flag-germany{
  position: absolute;
  top: -25px;
  right: 1.75vw;
  transform: rotate(-90deg);
  width: 75px;
  border-radius: 4px;
  transition: top 0.7s;
}

.project__germany:hover .flag-germany{
  top: 0;
  transition: top 0.7s;
}
.technologies__titles{
    color: var(--blue-primary-700);
}

.technologies__title:first-child{
    font-size: calc(2rem + 1vw);
    font-weight: 700;
}
.animation{
    background-image: url("images/technologies.svg");
    animation: technologies 8s linear infinite;
    width: 100%;
    height: 437px;
    position: relative;
}

.animation::before{
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 437px;
    background-image: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%);
}

@keyframes technologies{
    from{
        background-position: 900px 0;
    }
    to{
        background-position: 0 0;
    }
}

/**************** PROJECTS BLOG ***********/
.project-blog__header{
  background-image: linear-gradient(45deg, var(--blue-primary-500) 0%, var(--green-primary-500) 100%)
}

.project-blog__images img{
  width: 100%;
  max-width: 700px;
}

.vida_urbana-image,
.widmann-image{
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.12);
}

/*--------- services ----------*/
.bg-1{
  background-image: linear-gradient(135deg, var(--green-primary-700) 10%, var(--blue-primary-800) 90%);
}

.text-modified {
    font-size: 3rem;
}

.optimization{
    padding: 3rem 1rem;
}

.optimization .slogan-container__title{
    font-family: var(--heroes-font);
    color: var(--light);
    font-size: 3em;
    font-weight: 700;
}

.slogan-container__title{
    border-bottom: 1px solid var(--light)
}

.sem__sem-image{
  display: inline-block;
  position: relative;
  top: -25%;
}

.sem {
  background-image: linear-gradient(125deg, var(--blue-primary-700) 0%, var(--green-primary-550) 100%);
}

.float-left{
    width: 80%;
}

.buttonr {
    width: 100%;
}

a.readmore{
    font-size: 1.5em;
}

a.num2{
    color: var(--black)
}

.transparent{
    background: linear-gradient(135deg, #30b7ec 0%, #06b08c 80%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.final{
    padding-bottom: 3em;
}

/*------------ aboutus --------------*/

/*members*/
.members {
  width: 100%;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  /* grid-auto-rows: minmax(auto, 200px); */
  gap: 16px;
  margin-top: 48px;
  font-size: 18px
}

.members__container {
  height: 200px;
}

.members__container::before {
  content: "";
  position: absolute;
  display: block;
}

.members__container::before {
  width: 100%;
  height: 80%;
  background-image: radial-gradient(47.12% 47.12% at 50% 50%, rgba(255, 255, 255, 0.35) 0%, rgba(167, 167, 167, 0.35) 100%) 
  /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, 
  linear-gradient(292.67deg, #30B7EC 0.07%, #06B08C 100%);

  bottom: 0;
  border-radius: 4px;
}

img {
  position: relative;
  z-index: 30;
  object-fit: cover;
}

.talent{
    background-image: linear-gradient(152grad, var(--green-primary-500) 15%, var(--blue-primary-500) 55%, var(--green-primary-500) 85%);
    overflow: hidden;
  }
  
.talent img{
  position: relative;
  bottom: -7px;
}
  

.values{
  background-image: linear-gradient(230deg, var(--blue-primary-700) 30%, var(--blue-primary-800) 60%);
}

.values ul, .values__span{
    color: var(--light);
    max-width: 750px    ;
}

.values__title{
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--light);
}

.values__span{
    font-weight: 900;
}

/*---------- plans -----------*/

  .jumbotron__plans{
    height: 42.6vh;
    min-height: 345px;
    color: #fff;
    background-image: url(images/jumbotron_bg.svg);
    border-radius: 0;
    max-height: 400px;
  }

.planes p {
    margin: 0;
  }
  
  .planes > div {
    display: flex;
    flex-direction: column;
    justify-content: space-around !important;
    border-radius: 20px;
    margin: 28px 0;
    background-image: linear-gradient(#084861,#058469);
  }
  
  .planes > div > div{
    width: 20em;
    display: flex;
    width: 50%;
    background-color: rgba(255,255,255,0.15 );
    color: var(--light);
  }
  
  .planes > div > div{
    width: 20em;
    display: flex;
  }

  .planes1{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .planes3{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .planes .header__plans{
    padding-top: 20px;
    line-height: 70px;
    writing-mode: vertical-rl;
    vertical-align: baseline;
    font-size: 2.2em;
    color:#ffffff;
    background-size: auto 100%;
    font-weight: bold;
  }
  
  .planes ul {
    list-style: none;
  }
  
  .planes ul.attributes {
    font-size: 1em;
    margin: 10px;
    list-style: url(images/list-style.svg);
    padding-left: 20px;
  }
  
  .planes ul.attributes>li {
    padding: 5px 0;
  }
  
  .planes ul.attributes>li p {
    display: inline-block;
    margin-bottom: 4px;
    vertical-align: top;
    font-weight: bold;
  }
  
  .planes ul.attributes>li>ul {
    color:rgb(248, 248, 248);
    font-size: 15px;
    margin: 0;
    padding-left: 1rem;
  }
  
  .planes div.ads {
    font-size: 15px;
    display: flex;
  }
  
  .planes .price p {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  
  .planes .register{
    text-align: center;
    padding: 1em 0;
  }
  
  .planes .register span {
    display: inline-block;
    width: 180px;
    height: 36px;
    color: #fff;
    font-weight: bold;
    line-height: 36px;
    background-image: url(images/button.svg);
    background-size: 100% 100%;
  }

  .ads-img{
    max-width: 100%;
    margin: auto 0.7rem;
    width: calc(55px + 0.5vw);
  }
/*--------- contact ----------*/
.contact{
    height: calc(100vh - 82px);
    min-height: 635px;
    background-image: url("images/backgrounds/urcube-background.webp");
    background-size: cover;
    background-position: 60% 35%;
}

.form-container{
    width: 90%;
    max-width: 500px;
    left: calc(50% - 45%);
    box-shadow: 0px 100px 153px rgba(0, 0, 0, 0.07), 
    0px 41.7776px 63.9197px rgba(0, 0, 0, 0.0503198), 
    0px 22.3363px 34.1746px rgba(0, 0, 0, 0.0417275), 
    0px 12.5216px 19.158px rgba(0, 0, 0, 0.035), 
    0px 6.6501px 10.1747px rgba(0, 0, 0, 0.0282725), 
    0px 2.76726px 4.2339px rgba(0, 0, 0, 0.0196802);
}

.form__title h1{
    font-size: 2.5rem;
}

.form-control{
    border-color: var(--blue-primary-700);
}

form button{
    width: 120px;
    background-color: var(--blue-primary-900) !important;
}

/*----------- footer ----------*/
.footer {
    background-color: var(--blue-primary-900);
}

.float-right{
    position: fixed;
    bottom: 25px;
    right: 1%;

    margin-top: -25px;
    z-index: 10;
    transition: all 0.4s ease-in-out;
}

.footer .nolist, .values .nolist {
    list-style: none;
}


/*------------ media queries --------------*/
@media (min-width: 550px){
  .box-left {
    left: 180px;
    transition: left 0.7s;
  }

  .face__content.face__content--active {
    transform: translatex(-130%);
    opacity: 1;
    visibility: visible;
    transition: all 1s ease;
  }
  .image__services{
      width: 600px;
      /* height: 500px; */
  }

  .design__design-image,
  .seo__seo-image,
  .sem__sem-image,
  .marketing__marketing-image,
  .hosting__hosting-image,
  .linkBuilding__linkBuilding-image{
    max-width: 50%;
    max-height: 450px;
  }

  .text-modified {
      font-size: 3.8rem;
  }
  .title-modified2{
      font-size: 3rem;
  }

  .form-container{
      left: calc(50% - 250px);
  }
}

@media (min-width: 768px){
  .animation{
      width: 85%;
  }

  .services-offer__services{
    max-width: 1000px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(125px, 155px); 
  }

  .optimization{
      padding: 3rem 2rem;
  }

  .proporsal, .mision-vision, .filosophy{/*75% width but only from 738px onwards*/
      width: 75%;
  }
  .sem div{
    max-width: 40%;
  }
  .sem img{
    max-width: 400px;
  }

  /*members*/
    .members {
      max-width: 75%;
      margin: 64px auto 0;
      grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    }

  .talent{
    background-image: linear-gradient(152grad, var(--green-primary-500) 15%, var(--blue-primary-500) 55%, var(--green-primary-500) 85%);
  }
  
  .values{
    background-image: linear-gradient(230deg, var(--blue-primary-700) 30%, var(--blue-primary-800) 60%);
  }
  
  .values ul:first-child{
    border-bottom: 2px solid var(--blue-primary-600)
  }
  
  .values__title{
      font-size: 6.25rem;
  }
  
  .values__span{
      font-size: 2.25rem;
  }

  .project{
      width: calc(50vw - 32px);
      height: 50vw;
  }

  .entrepreneurship__description, .corporative__description{
      max-width: calc(50vw - 30px);
  }

  /************** PROJECTS BLOG *************/
  .project-blog__images img{
    width: calc(50% - 8px);
    max-width: 100%;
  }
}

@media (min-width: 992px) {

    nav .nav-item.active {
        background: linear-gradient(135deg, #32b7ec 40%, #06b08c 60%);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    nav .nav-link:hover {
        background: linear-gradient(135deg, #30b7ec 40%, #06b08c 60%);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        transition: 0.35s;
    }

    .w-65a{
        font-family: var(--heroes-font);
        max-width: 65% !important;
    }

    .jumbotron__title{
        max-width: 85%;
    }

    /**************cube****************/
    .container-cube {
        height: 375px;
      }
    
      .box {
        height: 220px;
        width: 220px;
        left: calc(50% - 110px);
        top: calc(50% - 110px);
      }
      
      .box-left{
        left: 180px;
        transition: left 0.7s;
      }

      .face {
        height: 220px;
        width: 220px;
        /* padding-top: 75px;
        padding-bottom: 75px; */
      }
    
      .face__content.face__content--active {
        transform: translatex(-130%);
      }

      #front {
        transform: translateZ(110px);
      }
    
      #back {
        transform: translateZ(-110px) rotateY(180deg);
      }
    
      #left {
        right: 110px;
      }
    
      #right {
        left: 110px;
      }
    
      #top {
        bottom: 110px;
      }
    
      #bottom {
        top: 110px;
      }

    .text2{
        max-width: 50%;
        margin-left: 40%;
    }

    .home3{
        max-width: 60%;
        margin-left: 5%;
    }
    
    .home4{
        max-width: 60%;
        margin-left: 35%;
        margin-right: 5%;
    }

    .text4{
        text-align: right;
    }

    .services2{
        background-color: #031B24;
        padding: 1em;
    }
    
    .we-choose-us__text{
      width: 75%;
    }

    .optimization .slogan-container__title{
        font-size: 5em;
    }

    .slogan-container__title{
        border: none;
    }
    
    .float-left{
        max-width: 60%;
    }

    .textfooter {
        margin: 3% 0 3% 15%;
        color: var(--light);
    }

    .textfooter1 h2 {
        padding: 2%;
        color: var(--light);
    }

    .textfooter2 {
        font-size: 1.3em;
        list-style: none; 
    }
    .text-modified {
        font-size: 5rem;
    }
    .title-modified{
        font-size: calc(2.3rem + 1vw);
    }
    .title-modified2{
      font-size: calc(2.6rem + 1vw);
  }

    .talent{
      background-image: linear-gradient(152grad, var(--green-primary-500) 15%, var(--blue-primary-500) 45%, var(--green-primary-500) 99%);
    }

    .talent-container{
        width: 40%;
    }

    .form-container{
        left: calc(50% - 35%);
    }

    /************SERVICES********************/

  .proporsal, .design, .seo, .marketing, .hosting, .linkBuilding,
  .mision-vision, .filosophy{/*75% width but only from 738px onwards*/
      width: 75%;
  }

    /******************** PLANES ********************/
    .planes > div{
      flex-direction: row;
      justify-content: center !important;
      
  
      border: unset;
      background-image: unset;
    }

  
    .planes > div > div{
      flex-direction: column;
      width: 30%;
      margin: 1em;
      color: white;
      border-radius: 20px;
      background-image: linear-gradient(#084861,#058469);
      max-width: 455px;
    }
  
    .planes .header__plans{
      padding-top: 0;
      writing-mode: horizontal-tb;
      background-color: rgba(255,255,255,0.15);
      border-radius: 40px 40px 0 0;
      line-height: 70px;
      text-align: center;
      font-weight: bold;
    }
  
    .planes div.list, .planes .ads, .planes .price{
      margin-top: 20px;
      background-color: rgba(255,255,255,0.15 );
    }
  
    .planes .ads{
      height: 8em;
      padding: 10px 0;
      margin-top: 15px;
      background-color: rgba(255, 255, 255, 0.15 );
    }
  
    .planes .ads div{
      width: 70%;
      margin: auto;
    }
  
    .planes .footer__plans{
      margin-top: auto;
    }
  
    .planes .register{
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 0 0 40px 40px;
    }

    /********ABOUT US**************/
    .talent img{
      max-width: 555px;
    }

    /***************PROJECTS BLOGS**************/
    .project-blog section{
      max-width: 75%;
      text-align: justify;
      margin-left: auto;
      margin-right: auto;
    }
}


@media (min-width: 1200px){

       /************** CUBE ****************/
       .container-cube {
        width: 425px;
        height: 425px;
      }
    
      .box {
        height: 235px;
        width: 235px;
        top: 90px;
        left: calc(50% - 130px);
      }

      .box-left{
        left: 160px;
        transition: left 0.7s;
      }
    
      .face {
        height: 235px;
        width: 235px;
      }

      .face__content.face__content--active {
        transform: translatex(-110%);
      }

      #front {
        transform: translateZ(115px);
      }
    
      #back {
        transform: translateZ(-115px) rotateY(180deg);
      }
    
      #left {
        right: 115px;
      }
    
      #right {
        left: 115px;
      }
    
      #top {
        bottom: 115px;
      }
    
      #bottom {
        top: 115px;
      }
    .jumbotron__title{
        max-width: 55%;
    }

    .animation{
        width: 55%;
    }

    .optimization{
        padding: 6rem 5rem;
    }
    
    .values__span{
        font-size: 3.5rem;
        line-height: 80px;
    }

    .values__title{
        font-size: 8.5rem;
        line-height: 120px;
    }

    .corporative, .entrepreneurship, .project{
        width: calc(48vw - 32px);
        max-width: 725px;
        /* height: 35vw; */
    }

    .project{
        height: 48vw;
        max-height: 725px;
    }

    .planes > div > div{
      width: 25%;
      margin: 2em;
      background-image: linear-gradient(#084861,#058469);
    }

    /***************PROJECTS BLOGS**************/
    .project-blog section{
      max-width: 60%;
    }
}

@media (min-width: 1400px){
  .experiences{
    max-width: 80%;
  }

  .corporative, .entrepreneurship, .project{
    width: calc(40vw - 32px);
  }

  .project{
    height: 40vw;
  }
}