/*===== GOOGLE FONTS =====*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;

  /*===== Colores =====*/
  --second-color: #2d1a8f;
  --primary-color-transparent-buttom:rgba(46, 26, 143, 0.05);
  --primary-color: #3311db;
  --primary-color-transparent: rgba(46, 26, 143, 0.9);
  --tree-color: #db7527;
  --back-color-white: #F5F5F7;
  --primary-color-alt: #ffffff;
  /*  --white-color: #e6e7e9; */
  --white-color: #ffffff;
  --second-white-color: #e6e7e9;
  --primary-color-text: #000;

  /*===== Fuente y tipografia =====*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  /*===== z index =====*/
  --z-fixed: 100;
}
html { 
  scroll-behavior: smooth; 
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
  margin: 0;
  padding: auto;
  background-color: var(--second-color);
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  margin: auto;
  width: 90%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr));
  /* gap: 1rem; */
}

.content-sections {
  height: 100%;
  align-items: center;
  z-index: 2;
  position: relative;
}
.divider {
  position: relative;
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.custom-underline::before {
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary-color);
}
.custom-underline-white::before {
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary-color-alt);
}
.padding-sections {
  padding: 10rem 0 10rem 0 !important;
}

.span-sections {
  font-weight: 600;
  color: var(--second-color);
}
.span-color-primary{
  color: var(--primary-color);
}
.span-color{
  color: var(--second-color);
}
.color-white{
  color: var(--white-color) !important;
}
.back-white{
  background-color: var(--white-color) !important;
}
.background-color-white{
  background-color: var(--back-color-white) !important;
}
.custom-sticky{
  box-shadow: 0 4px 10px rgb(149 157 165 / 10%);
  transition: background-color 0.4s ease-in-out;
}

.justify-content-center{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.header {
  width: 100%;
  background-color: transparent;
  z-index: 3;
}

.custom-header {
  width: 100%;
  background-color: var(--white-color);
  z-index: 3;
}

.hero .forma {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.hero .forma .svg {
  width: 50%;
  margin-top: -150px;
  margin-left: -150px;
}
.hero .forma #blobSvg {
  opacity: 0.1;
  transform: rotate(139deg);
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.nav__content {
  display: flex;
  justify-content: space-between;
  height: 4rem;
  align-items: center;
}
/* .grid__menu {
  display: flex;
  justify-content: space-between;
  height: 4rem;
  align-items: center;
} */
/* css nav */
.nav {
  padding: 0 1rem 0 1rem;
}
.content__brand {
  display: flex;
  z-index: 1000;
}
.logo{
  display: flex;
}
.name__brand {
  display: flex;
  color: var(--primary-color-alt);
  font-size: 1.1rem;
}
.nav__list {
  display: flex;
}
.nav__item {
  margin: 0 1rem;
}

.nav__link {
  color: var(--white-color);
  padding-bottom: 0.5rem;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  font-weight: 400;
}

.active::after {
  background: none repeat scroll 0 0 transparent !important;
  content: "" !important;
  width: 100% !important;
  height: 0.5px !important;
  position: absolute !important;
  left: 0 !important;
  transition: width 0.3s ease 0s, left 0.3s ease 0s !important;
  background: #fff !important;
  bottom: 0px !important;
}
.nav__link::after {
  content: "";
  width: 0;
  height: 0.5px;
  position: absolute;
  left: 50%;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  background: #fff;
  bottom: 0px;
}
.nav__link:hover::after {
  width: 100%;
  left: 0;
}

.nav__option {
  color: var(--primary-color-alt);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 0.063rem solid var(--primary-color-alt);
  transition: all 0.3s ease-in-out;
}
.nav__option:hover{
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

.header.sticky {
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgb(0 0 0 / 8%);
  transition: background-color 0.4s ease-in-out;
}


/* nav de las paginas servicios y contactenos */

.custom-header .nav__link {
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  position: relative;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.custom-header .active::after {
  background: none repeat scroll 0 0 transparent !important;
  content: "" !important;
  width: 100% !important;
  height: 0.5px !important;
  position: absolute !important;
  left: 0 !important;
  transition: width 0.3s ease 0s, left 0.3s ease 0s !important;
  background: var(--primary-color) !important;
  bottom: 0px !important;
}
.custom-header .nav__link::after {
  content: "";
  width: 0;
  height: 0.5px;
  position: absolute;
  left: 50%;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  background: var(--primary-color);
  bottom: 0px;
}
.custom-header .nav__link:hover::after {
  width: 100%;
  left: 0;
}
.custom-header .nav__option {
  color: var(--second-color);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
  border-radius: 0.5rem;
  border: 0.063rem solid var(--second-color);
  transition: all 0.3s ease-in-out;
}
.custom-header .nav__option:hover{
 color: var(--primary-color);
 border: 0.063rem solid var(--primary-color);
 background: var(--primary-color-transparent-buttom);
 transition: all 0.3s ease-in-out;
}


.custom-header .name__brand {
  display: flex;
  color: var(--primary-color);
  font-size: 1.1rem;
}



/* Hamburger */

.hamburger {
  display: none;
}
.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-color-alt);
}


.custom-header .bar{
  background-color: var(--primary-color);
}

/* Section hero */

.hero {
  background: rgb(51, 17, 219);
  background: radial-gradient(
    circle,
    rgba(51, 17, 219, 1) 0%,
    rgba(45, 26, 143, 1) 60%
    
  );
  text-align: center;
  padding: 20rem 0 20rem 0;
}
.hero .h1 {
  color: var(--primary-color-alt);
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.05rem;
}

.hero .h1 .ex {
  -webkit-text-stroke: 0.06rem var(--primary-color-alt);
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.09rem;
}

.hero .h1 .provimer{
  font-weight: 500;
}

.hero .h2 span {
  -webkit-text-stroke: 0.1px #fff;
  color: transparent;
  font-size: 2rem;
  font-weight: 800;
}

.hero .divider {
  justify-content: center;
  display: flex;
}
.hero .divider .vertical-line {
  height: 4rem;
  width: 0.1rem;
  background-color: var(--primary-color-alt);
}
.hero .h2 {
  color: var(--primary-color-alt);
  font-size: 2rem;
  font-weight: 300;
  margin: 0 3rem;
  letter-spacing: 0.05rem;
}

/* end section hero */

/* Section about */

.about {
  background-color: var(--white-color);
  text-align: center;
}
.about .content-sections .container-section .description-section {
  display: flex;
  justify-content: center;
}

.about .h1 {
  color: var(--primary-color-text);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  /* margin: 0 3rem; */
  letter-spacing: 0.05rem;
}

.about .subtitle-section {
  margin: 3rem 0;
}

.about .subtitle-section .h2 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  display: inline-block;
}

.about .h2-movile{
  display: none !important;
}




.container-portafolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: 2rem;
}

.container-portafolio .portafolio:nth-child(2) {
  padding-top: 5rem;
}

.container-portafolio .content-portafolio {
  text-align: left;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.container-portafolio .content-portafolio .content{
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.container-portafolio .link {
  color: var(--second-color);
  padding-bottom: 0.5rem;
  position: relative;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.container-portafolio .link::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  background: var(--primary-color);
  bottom: 0px;
}
.container-portafolio .link:hover::after {
  width: 100%;
  left: 0;
}
.link-contact-project {
  margin: 8rem 0 0 0;
}
.link-contact-project .link{
  color: var(--primary-color-text);
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
  letter-spacing: 0.05rem;
}
.link-contact-project .link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  background: var(--primary-color);
  bottom: 0px;
}
.link-contact-project .link:hover{
    color: var(--primary-color);
}
.link-contact-project .link:hover::after {
  width: 50%;
  left: 25%;
  right: 25%;
}

/* end section about */

/* section phrases */

.phrases {
  text-align: center;
  background-image: url(../images/team.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
.phrases .layer {
  background-color: #2d1a8f;
  opacity: 0.9;
  background-image: radial-gradient(#3311db 0.2px, transparent 0.2px),
    radial-gradient(#3311db 0.2px, #2d1a8f 0.2px);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
}
.phrases .description-section {
  display: flex;
  justify-content: center;
}
.phrases .sub-description-section {
  display: flex;
  justify-content: flex-end;
  padding-right: 5rem;
  margin-top: 5rem;
}
.phrases .team {
  color: var(--primary-color-alt);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 3rem;
  letter-spacing: 0.05rem;
}

.phrases .h1 {
  color: var(--primary-color-alt);
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  line-height: 3rem;
  letter-spacing: 0.05rem;
}

/* end section phrases */

/*section services */

.services {
  text-align: center;
  background-color: var(--white-color);
}
.services .description-section .h1 {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}
.services .card {
  background-color: #fff;
  border-radius: 2rem;
  border: 0.2rem solid var(--primary-color);
  padding: 0.6rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 200ms ease-out;
  /* flex: 1 1 15rem; */
}
.services .grid-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 2rem;
  grid-auto-rows: 15rem;
  margin-top: 5rem;
}

.services .header-card {
  display: flex;
}

.services .card:hover {
  background-color: #f5f5f5;
  transform: scale(1.05);
  transition: all 200ms ease-out;
}

.services .header-card .icon-card {
  background-color: var(--primary-color);
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.services .header-card .icon-card .h1 {
  display: flex;
  margin: 0;
  align-items: center;
  color: var(--primary-color-alt);
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
}

.services .header-card .title-card {
  display: flex;
  align-items: center;
  padding-left: 0.6rem;
}
.services .header-card .title-card .h1 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.services .contains-card p {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
/* end section services */


/*section we create */

.wecreate {
  background-color: var(--white-color);
  text-align: center;
}
.wecreate .content-sections .container-section .description-section {
  display: flex;
  justify-content: center;
}

.wecreate .h1 {
  color: var(--primary-color-text);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  /* margin: 0 3rem; */
  letter-spacing: 0.05rem;
}
.wecreate .container-portafolio h1{
  letter-spacing: 0.05rem;
}

.wecreate .subtitle-section {
  margin: 3rem 0;
}

.wecreate .subtitle-section .h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
/* end section we create */


/* section hablemos*/

.hablemos{
    background-color: var(--back-color-white);
    padding: 10rem 0 10rem 0;
}
.hablemos .di-hola{
    font-size: 10rem;
    color: transparent;
    letter-spacing: 0.05rem;
    -webkit-text-stroke:0.1rem var(--primary-color-text);
    text-align: center;
}
.hablemos .alert{
    text-align: center;
}
.hablemos .text{
    color: var(--primary-color-text);
    font-size: 2rem;
    letter-spacing: 0.05rem;
}
.hablemos .link-contact-project{
    margin: 4rem 0 0 0;
}
/* end section hablemos */


/* Section about */

.contact {
  background-color: var(--white-color);
  text-align: center;
  padding: 1rem 0 1rem 0;
  margin-top: 4rem;
}
.contact .content-sections .container-section .description-section {
  display: flex;
  justify-content: center;
}

.contact .h1 {
  color: var(--primary-color-text);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  /* margin: 0 3rem; */
  letter-spacing: 0.05rem;
}

.contact .subtitle-section {
  text-align: left;
}

.contact .subtitle-section .h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  margin: 0;
}

.contact .container-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: 2rem;
}
.contact .container-form .form:nth-child(2) {
  /* padding: 2rem; */
  display: flex;
  justify-content: center;
}

.container-form .content-social{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 2rem 0 2rem 0;
  border-top: 1px solid #6041f9;
  padding-top: 1.5rem;
}
.container-form .content-social a{
  color: var(--back-color-white);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

/* end section contact */


/* form */
.group-input{
  display: flex;
  justify-content: space-between;
}
.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}
.ic1 {
  margin-top: 2.5rem;
}
.custom-width{
  width: 48%;
}
.input {
  background-color: transparent;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--second-color);
  box-sizing: border-box;
  color: #262626;
  font-size: 1rem;
  height: 100%;
  outline: 0;
  padding: 4px 0px 0;
  width: 100%;
}

.cut-short {
  width: 50px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(8px);
}

.placeholder {
  color: var(--second-color);
  font-family: sans-serif;
  left: 1px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(0px) scale(0.75);
}


.input:not(:placeholder-shown) ~ .placeholder {
  color: var(--second-color);
}

.input:focus ~ .placeholder {
  color: var(--second-color);
}

.textarea{
 resize: none;
}
.content-button{
  display: flex;
}

.status-form span{
  margin: 20px 0 0;
  text-align: center;
}
.submit {
  background-color: var(--primary-color);
  border-radius: 50px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  outline: 0;
  text-align: center;
  width: 30%;
  transition: all .15s ease-in-out;
  letter-spacing: 0.05rem;
}
.submit:hover{
  background-color: var(--second-color);
  transition: all .15s ease-in-out;
}

.submit:active {
  background-color: #06b;
}

.box{
  background-color: var(--primary-color);
  width: 80%;
  border-radius: 10px;

}
.content-box{
  padding: 2rem;
}
.title-box{
  color: var(--primary-color-alt);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.span-titel-box{
  font-weight: 500;
}
.whatsapp{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 3rem 0 3rem 0;
}
.buttom-whatsapp{
  background-color: var(--back-color-white);
  border-radius: 50px;
  width: 200px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .15s ease-in-out;
}
.buttom-whatsapp .icon{
  width: 34px;
  margin-right: 0.5rem;
  display: flex;
}
.buttom-whatsapp .name{
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.buttom-whatsapp:hover{
  background-color: var(--second-white-color);
  transition: all .15s ease-in-out;
}

.section-contact{
  border-radius: 50px;
  padding: 1rem 0 1rem 0;
  display: flex;
  align-items: center;
  transition: all .15s ease-in-out;
}
.section-contact .icon{
  margin-right: 0.5rem;
  display: flex;
  background-color: var(--back-color-white);
  border-radius: 50%;
  padding: 0.5rem;
}

.contact-icon{
  font-size: 1.5rem;
  color: var(--second-color);
}
.section-contact .name{
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--primary-color-alt);
  letter-spacing: 0.05rem;
}


  /* second form */

  .second-form{
    background: var(--primary-color);
    
  }
  .second-form .content-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
    gap: 2rem;
  }
  .second-form .di-hola{
    font-size: 10rem;
    color: transparent;
    letter-spacing: 0.05rem;
    -webkit-text-stroke:0.1rem var(--primary-color-alt);
    text-align: left;
    overflow: hidden;
}
.second-form .alert{
    text-align: left;
}
.second-form .text{
    color: var(--primary-color-alt);
    font-size: 2rem;
    letter-spacing: 0.05rem;
}

.second-form .input {
  background-color: transparent;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--white-color);
  box-sizing: border-box;
  color: var(--back-color-white);
  font-size: 1rem;
  height: 100%;
  outline: 0;
  padding: 4px 0px 0;
  width: 100%;
}


.second-form .placeholder {
  color: var(--back-color-white);
  font-family: sans-serif;
  left: 1px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}



.second-form .input:not(:placeholder-shown) ~ .placeholder {
  color: var(--back-color-white);
}

.second-form .input:focus ~ .placeholder {
  color: var(--back-color-white);
}

.textarea{
 resize: none;
}
.content-button{
  display: flex;
}
.second-form .submit {
  background-color: var(--primary-color);
  border-radius: 50px;
  border: 1px solid var(--back-color-white);
  box-sizing: border-box;
  color: var(--back-color-white);
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  outline: 0;
  text-align: center;
  width: 30%;
  transition: all .15s ease-in-out;
  letter-spacing: 0.05rem;
}
.second-form .submit:hover{
  background-color: var(--second-color);
  transition: all .15s ease-in-out;
}

.submit:active {
  background-color: #06b;
}


  /* end second form */



/*footer*/
.footer,
.footer-responsive{
  background-color: var(--primary-color);
}

.footer-two{
  background-color: var(--back-color-white);
}

.footer-two .content-footer{
  border-top: 1px solid var(--primary-color-alt);
  padding: 2rem 0 1rem 0;
}

.footer-two .sect{
  color: var(--primary-color-text);
}
.footer-two .sect .icon {
  color: var(--primary-color);
}

.footer-two .contains-social-media ul li a {
  color: var(--primary-color);
}

.footer-two .container-copy {
  color: var(--primary-color-text) !important;
}


.footer-responsive {
  display: none;
}
.content-footer {
  border-top: 1px solid #6041f9;
  padding: 2rem 0 1rem 0;
}

.footer .container {
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  align-items: center;
}
.footer .contains-info {
  display: flex;
  align-items: center;
}
.sect {
  display: flex;
  font-weight: 400;
  align-items: center;
  color: var(--back-color-white);
}
.sect:first-child {
  margin-right: 1rem;
}
.sect:nth-child(2n) {
  margin-right: 1rem;
}
.sect .icon {
  margin-right: 0.2rem;
  color: var(--back-color-white);
}
.contains-social-media {
  display: flex;
  font-size: 0.9rem;
  font-weight: 400;
}
.contains-social-media ul {
  display: flex;
}
.contains-social-media ul li a {
  color: var(--back-color-white);
}
.contains-social-media ul li a i {
  font-size: 1rem;
}
.contains-social-media ul li:first-child {
  margin-right: 1rem;
}
.footer .container-copy {
  display: flex;
  padding: 1rem 0 0 0;
  color: var(--back-color-white);
}
.footer .copyright {
  display: block;
}
.footer .copyright p {
  font-weight: 400;
  font-size: 0.9rem;
}
.footer .copyright p:first-child {
  margin-bottom: 0.5rem;
}
.footer .copyright p:nth-child(2) {
  margin: 0;
}
/*footer*/

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 0.1rem;
  background: transparent;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 0.1rem;
  background: transparent;
  width: 0%;
}

.about .content-portafolio .content-title h1{
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 992px) {
  .sect:first-child {
    display: none;
  }
}



@media screen and (max-width: 768px) {

  .about .h1{
    font-size: 1.3rem;
    text-align: left;
    font-weight: 400;
  }
  .about .subtitle-section .h2{
    font-size: 1.3rem;
    display: none;
    text-align: left;
    font-weight: 300;
  }

  .container-portafolio .content-portafolio{
    padding: 0;
  }

  .custom-header .nav__link{
    color: var(--white-color);
  }
  .custom-header .nav__link::after{
    background: var(--white-color) !important;
  }

  .nav__menu {
    position: fixed;
    left: 0;
    opacity: 0;
    top: 0;
    visibility: hidden;
    display: inline-table;
    /* left: -100%; */
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    z-index: var(--z-fixed);
   /*  -webkit-transition: 0.5s;
    transition: left 1s ease 0s; */
    transition: visibility 0.3s, opacity 0.3s;
    -webkit-transition: visibility 0.3s, opacity 0.3s;
     -moz-transition: visibility 0.3s, opacity 0.3s;
     -ms-transition: opacity 3s ease-in-out;
     -o-transition: visibility 0.3s, opacity 0.3s;
    
  
    /* display: inline-table; */
    
  }
  .nav__link{
    font-size: 1.5rem;
  }
  .custom-header .nav__link{
    font-size: 1.5rem;
  }
  .nav__list {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
  }
  .nav__item {
    margin: 3rem 0;
  }
  .nav__menu.show {
   left: 0;
   display: inline-table;
   visibility: visible;
   transition: visibility 0.3s, opacity 0.3s;
   -webkit-transition: visibility 0.3s, opacity 0.3s;
    -moz-transition: visibility 0.3s, opacity 0.3s;
    -ms-transition: opacity 3s ease-in-out;
    -o-transition: visibility 0.3s, opacity 0.3s;
     opacity: 1;
  }

  .hamburger {
    display: block;
    border-radius: 50%;
    z-index: var(--z-fixed);
   /*  background-color: var(--second-color); */
    cursor: pointer;
    color: var(--primary-color-alt);
    font-size: 0.6rem;
  }
  .custom-header .hamburger{
    color: var(--primary-color);
  }
  .nav__options {
    display: flex;
    align-items: center;
  }
  .nav__option {
    margin: 0 2rem 0 0;
  }
  .btn__menu__responsive .custom__icon {
    font-size: 1.5rem;
    color: #fff;
  }
  .hamburger.show .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.show .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.show .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .hero .h1 {
    font-size: 1.4rem;
    text-align: left;
  }
  .hero .h2 {
    font-size: 1.4rem;
    text-align: left;
    margin: 0;
  }
  .hero .divider .vertical-line {
    height: 2rem;
  }

  .about .subtitle-section .h2-movile{
    display: inline-block !important;
  }
  .about .content-portafolio .content-title h1{
    font-size: 1.3rem;
  } 
 

  .hablemos .di-hola{
    font-size: 6rem;
    text-align: center;
  }
  .hablemos .alert{
    margin-top: 3rem;
  }
  .hablemos .text{
    font-size: 1.6rem;
  }

  
  .link-contact-project .link{
    font-size: 1.2rem;
    font-weight: 300;
  }
  .phrases{
    text-align: left;
  }
  .phrases .h1{
    font-size: 1.4rem;
    text-align: left;
  }
  .phrases .description-section{
    display: inline-block;
  }
  .phrases .sub-description-section{
    display: inline-block;
    padding: 0;
  }
  .phrases .team{
    font-size: 1.2rem;
    margin: 0;
  }

  .services .description-section .h1{
    text-align: left;
    font-size: 1.4rem;
  }
  .services .header-card .title-card .h1{
    font-size: 1.3rem;
    text-align: left;
  }
  
  .second-form .di-hola{
    font-size: 6rem;
  }
  .second-form .text{
    font-size: 1.3rem;
  }

  .wecreate .h1{
    text-align: left;
    font-size: 1.4rem;
  }
  .wecreate .subtitle-section .h2{
    font-size: 1.4rem;
  }
  .wecreate .container-portafolio h1{
    font-size: 1.4rem;
  }
  .contact .subtitle-section .h2{
    font-size: 1.5rem;
  }
  .box{
    width: 100%;
    border-radius: 0px;
  }
  .content-box{
    padding: 1rem;
  }
  .title-box{
    font-size: 1.1rem;
    text-align: left;
  }
  .section-contact .name{
    font-size: 1rem;
  }

  .second-form .submit, .submit{
    width: 50%;
  }
  .link-contact-project .link::after{
    height: 2px;
  }
  .custom-underline-white::before{
    border: 1px solid var(--primary-color-alt);
  }

  .services .card{
    border: 0.1rem solid var(--primary-color);
  }

  .container-portafolio .portafolio{
    padding-top: 4rem !important;
  }


  /*footer*/

  .footer .container {
    display: block;
  }
  .footer .contains-logo{
    display: flex;
    justify-content: center;
  }
  .footer .sect:first-child {
    display: none;
  }
  .footer .contains-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: space-around;
  }
  .footer .sect .icon {
    text-align: center;
    font-size: 1.5rem;
  }
  .footer .sect {
    display: block;
  }
  .footer .contains-social-media {
    display: block;
  }
  .footer .contains-social-media ul {
    justify-content: space-around;
  }
  .footer .contains-social-media ul li:first-child {
    margin: 0;
  }
  .footer .container-copy {
    display: block;
  }
  .footer .copyright {
    text-align: left;
  }
  .button-whatsapp{
    right: 25px !important;
  }
}

.button-whatsapp{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10000;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  border-radius: 50px;
  color: var(--back-color-white);
  font-size: 2.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgb(149 157 165 / 10%);
}


