*, ::after, ::before{
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
    --tur-color: #00cda6;
    --mag-color: #f23d5e;
    --yell-color:#facb32;
    --pur-color:#5b00ff;
    --gray-bg-color:#fafafe;
}

body {
    background-color: --gray-bg-color:#fafafe;;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

h5,
h6 {
    font-weight: 400;
}

p{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.3rem;
    color: #3d586b;
    font-weight: 300;
}

a {
    text-decoration: none;
    color:#212529;
}

.bg-yellow {
    background: var(--yell-color);
    box-shadow: 0px 12px 30px -8px rgba(250,203,50,0.8);
    border-radius: 100px;
}
.bg-red {
    background: var(--mag-color);
    box-shadow: 0px 12px 30px -8px rgba(242,61,94,0.6);
    border-radius: 100px;
}
.bg-purple {
    background: var(--pur-color);
    box-shadow: 0px 12px 30px -8px rgba(90.99999999999967, 0, 255, 0.6);
    border-radius: 100px;
}
.bg-green {
    background: var(--tur-color);
    box-shadow: 0px 12px 30px -8px rgba(0,183,147,0.6);
    border-radius: 100px;
}
.text-left {
    text-align: left;
}


/*** NAVEGACION ***/
.menu-header {
    background: #0F064F;
    cursor: pointer;
    position: fixed; 
    top: 1rem;
    right: 3.5rem;
    z-index: 99 !important;
    width: 110px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.3);
    -o-box-shadow: 0px 0px 4px rgb(0, 0, 0, 0.3);
}

.fa-solid.fa-bars {
    font-size: 2rem;
}

.logo-text{
    font-family: 'Nunito', sans-serif;
    color: #00cda6;
    font-weight: 900;
}

.enlaces-header {
    position: fixed;
    background: #8E2DE2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right,#0f064f, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0f064f, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    z-index: 10;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    clip-path: circle(0% at 100% 0%);
    transition:clip-path 0.6s ;
}

.extra-clase {
    clip-path: circle(150% at 100% 0%);
}

.enlaces-header a {
    text-decoration: none;
}

.enlaces-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    transition: 0.4s;
}

    .enlaces-text:hover, .enlaces-text:active {
        background: #00cca5;
        border-radius: 1.8rem;
        padding: 0.5rem;
}

/***CABECERA ****/
.cabecera {
    background-image: url(img/bg-formas.png);
    color: #fff;
}

.titulo-banner {
    font-weight: 700;
    color: #fff;
}

.bg-banner {
    background: #562abd;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #B06AB3, #562abd);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #210c6e, #562abd); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 0;
    position: relative;
}

.bg-imagen {
    background-image: url(img/bg-formas.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 90%;
    z-index: 0 !important;
    top: 0;
    animation: show 3s ease;
    filter: brightness(2) blur(0px);
    opacity: .5;
}

.front {
    position: relative;
    z-index: 1;
    height: 100% !important;
    padding-bottom: 0;
    margin-bottom: -1px;
}

.btn-fondo {
    background-color: var(--tur-color);
    color: #fff;
    border-radius: 5rem;
    font-size: 1rem;
    transition: 0.4s;
    box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -o-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

    .btn-fondo:hover, 
    .btn-fondo:active {
    background-color: var(--mag-color);
    color: #0f064f;
    }

.btn-bordes {
    border: 2px solid #fff;
    color:  #fff;
    border-radius: 5rem;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin-left: 2rem;
    box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    -o-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.2);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

    .btn-bordes:hover, 
    .btn-bordes:active {
        border: 2px solid #00cda6;;
        color: var(--tur-color);
    }

.img-header svg {
    width: 100%;
    transform: translateX(0);
    opacity: 1;
    animation: animacion2 1s ease-out;
    -webkit-animation: animacion2 1s ease-out;
    -moz-animation: animacion2 1s ease-out;
    -o-animation: animacion2 1s ease-out;
    margin: 0 auto;
}

@keyframes animacion2 {
    0%{
        transform: translateY(100%);
        opacity: 0;
    }
    50% {
        transform: scale(0.1);
    }  
}

.textos-header {
    transform: translateY(0);
    opacity: 1;
    animation: animacion1 0.8s ease-out;
    -webkit-animation: animacion1 0.8s ease-out;
    -moz-animation: animacion1 0.8s ease-out;
    -o-animation: animacion1 0.8s ease-out;
}

@keyframes animacion1 {
    0%{
        transform: translateX(100%);
        opacity: 0;
    }
}

.wave-banner {
    height: 9.375rem; 
    overflow: hidden;
}

.wave-banner svg {
    height: 100%; 
    width: 100%;
}

.wave-banner svg path {
    stroke: none; 
    fill: #ecf0f9;
}

/*btn reservar cita google meet*/
.qxCTlb {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1;
  border-radius: 100px !important;
  padding: 15px 30px !important;
  font-size: 1.1rem;
}

/*main*/
.texto-entrada {
    color: #00cda6;
    font-weight: 700;
    font-variant: small-caps;
    font-family: 'Ubuntu', sans-serif;
}

.titulo-seccion {
    font-weight: 700;
    color: #0F064F;
    font-size: 3rem;
    }

.contenido-inicio {
    background-color: var(--gray-bg-color);
}

.img-sobremi {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.row-servicios {
    flex-wrap: nowrap;
    justify-content: center;
}

.art-servicios1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgb(255,255,255);
    align-content: center;
    padding: 0.6rem;
    border-radius: 1rem;
    margin: 0.6rem;
    box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 8px rgb(0, 0, 0, 0.1);
}

.img-servicios1{
    width: 50%;
    padding: 0.6rem;
}

.seccion-inicio {
    color: #0F064F;
    text-align: center;
}

.seccion-inicio h2{
    font-weight: 700;
}

.seccion-inicio p {
    font-weight: 400;
}

.btn-sobremi{
    display: flex;
    justify-content: start;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

.btn-sobremi a {
    padding: 1rem 3rem;
}

.iconos {
    animation: animacion2 1s ease-out;
    -webkit-animation: animacion2 1s ease-out;
    -moz-animation: animacion2 1s ease-out;
    -o-animation: animacion2 1s ease-out;
} 

/*seccion servicios inicio*/
.wave-servicios {
    height: 9.375rem; 
    overflow: hidden;
}

.wave-servicios svg {
    height: 100%; 
    width: 100%;
}

.wave-servicios svg path {
    stroke: none; 
    fill: #fff;
}

.sec-servicios img {
    padding: 3rem;
}

/* .main-trabajos {
    background: #fff;
} */

.img-trabajos {
    box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    -webkit-box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    -moz-box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    -o-box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
}

.rounded {
    border-radius: 0.7rem !important;
}
/*nuevos*/
.tarjeta {
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 5px 5px 20px 3px rgb(220, 220, 225, 0.4);
    border: 1px solid rgba(255, 255, 255, 1);
}
.icono {
    font-size: 1.5rem !important;
    color: #fff;
}
.circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center !important;
    justify-content: center;
    margin-left: 15px;
}
.label {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 70%;
    opacity: .8;
    letter-spacing: 1px;
    color:#fff;
}


/*SLIDE TESTIMONIAL*/
.fondo-testimonial {
    background: #fff;
}

.contenedor {
    width: 80%;
    height: 100%;
    overflow: hidden;
    margin: auto;
    padding-top: 1rem;
}

.slider-contenedor {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}

.slider-test {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.imagen-test {
    width: 5.3rem;
    height: auto;
    object-fit: cover;
    padding-bottom: 0.5rem;
}

.slider-test h3 {
    font-weight: 700;
    color: #0F064F;
}

.slider-test h3 a {
    color: #0F064F;
}

small {
    color: #0F064F;
    font-family: 'Montserrat', sans-serif;
}

/**PAGINA SOBRE MI**/
.main-sobremi {
    background: #fff;
    color: #0f064f;
}

.sobremi-iconos {
    justify-content: space-around;
}

.card-sobremi, 
.skills-diseno {
    background-color: #f2f1f96f;
    box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    -webkit-box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    -moz-box-shadow: 10px 10px 16px 0px rgba(241,245,248,1);
    border-radius: 0.8rem;
}

.img-web {
    height: auto;
    min-height: auto;
    max-height: auto;
    width: 100%;
    max-width: 100%;
}

.bg-html:after {
    color: #f16529;
}

.bg-css:after {
    color: #009ce6;
}

.bg-bootstrap:after{
    color: #673ab7;
}

.bg-wp:after{
    color: #2481ab;
}

.bg-js:after{
    color: #d6ba32;
} 

.bg-test:after{
    color: #f3e600;
}

.estrellas {
    width: 100%;
    max-width: 100% auto;
    padding: 0 auto;
    display: flex;
    justify-content: center;
}

.estrella-container {
    position: relative;
    display: inline-block;
    color: transparent;
  }
  
.estrella-container:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '★★★★★';
    color: #bdc4c8;
  }
  
    .estrella-container:after {
        position: absolute;
        top: 0;
        left: 0;
        content: '★★★★★';
        overflow: hidden;
  }
  
    .estrella-35:after { width: 35%; }
    .estrella-80:after { width: 80%; }
    .estrella-100:after { width: 100%; }

.skills-diseno {
    width: 70% auto;
    }
    
.skill{
    font-size: 1.2rem;
    text-align: center;
    }
    
.contenedor-skill {
    display: inline-grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    }
   
.contenedor-skill img {
        justify-self: self-start;
        max-width: 100%; 
        height: 5rem;
    }

.contenedor-skill small {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.bg-psd {
    background-color: #00c8ff;
    border-radius: 1rem;
    width: 90%;
}

.bg-illustrator {
    background-color: #ff7d00;
    border-radius: 1rem;
    width: 90%;
}

.bg-indesign{
    background-color: #ff3f94;
    border-radius: 1rem;
    width: 90%;
}

.bg-xd{
    background-color: #ff61f6;
    border-radius: 1rem;
    width: 30%;
}

.bg-after {
    background-color: #d8a1ff;
    border-radius: 1rem;
    width: 25%;
}

.progress{
    border-radius: 1rem;
    background-color: #d1d8dd;
    height: 1.3rem;
}

/** CALL TO ACTION**/
.call {
   background-color: #ecf0f9;
   box-shadow: 0px 20px 20px rgb(0, 0, 0, 3);
   -webkit-box-shadow: 0px 20px 20px rgb(0, 0, 0, 3);
   -moz-box-shadow: 0px 20px 20px rgb(0, 0, 0, 3);
   -o-box-shadow: 0px 20px 20px rgb(0, 0, 0, 3);
}

.call-to-action {
    justify-content: space-evenly;
    align-items: center;
}

.texto-call {
    color: #0F064F;
}

.fa-handshake {
font-size: 72px;
color: #0F064F;
}

.btn-call {
    background: #ef1f86;
    color: #fff;
    border-radius: 5rem;
    font-size: 1rem;
    transition: 0.4s;
    padding: 1rem 1.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    }
    
    .btn-call:hover, .btn-call:active {
    background: #00cda6;
    color: #0f064f;;
    }

    /** FOOTER **/
.pie {
    color: #fff;
    background: #0F064F;  /* fallback for old browsers */
}

.pie p {
    color: #fff;
    font-size:0.75rem;
}

.enlaces-pie a {
    color: #fff;
}

.pie i {
    border-radius: 100%;
    cursor: pointer;
    background: #ef1f86;
    width:3rem ;
    height: 3rem;
    text-align: center;
    padding: 0.8rem;
    font-size: 1.25rem;
    transition: 0.4s;
}

.pie i:hover, .pie i:active {
    background: #00cca5;
    color: #0f064f;
}

.lista-footer  {
    list-style: none;
    float: left;
}

.lista-footer li {
    line-height: 2.5rem;
}

.lista-footer li a {
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
}

.lista-footer li a:hover{
    color: #00cda6;
}

.active{
    color: #00cda6;
}

.img-footer img{
    width: 70%;
    max-width: 100%;
    margin: auto;
}

/** PAGINA PORTAFOLIO **/
.wave-portafolio {
    height: 9.375rem; 
    overflow: hidden;
}

.wave-portafolio svg {
    height: 100%; 
    width: 100%;
}

.wave-portafolio svg path {
    stroke: none; 
    fill: #fff;
}

.nav-pills a {
    color: #0f064f;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    background-color:var(--mag-color);
    border-radius: 1.5rem;
}

.gallery-container .gallery-card a > img {
    object-fit: cover;
    transition: 0.5s;
}

.gallery-container .gallery-card a > img:hover {
    opacity: .5;
}

.gallery-card {
    border-radius: 20px;
    -webkit-box-shadow: -3px 5px 14px -4px rgba(0,0,0,0.05);
    -moz-box-shadow: -3px 5px 14px -4px rgba(0,0,0,0.05);
    box-shadow: -3px 5px 14px -4px rgba(0,0,0,0.05);
    padding-bottom: 15px !important;
    background-color: #fff;
    border: 1px solid #fff !important;
}

/***PAGINA CONTACTO **/
.contenedor-consultas {
    color: #0f064f;
}

.enlaces-contacto a {
    text-align: center;
    font-size: 1.5rem;
    color: #00cca5;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    transition: .5s;
}

.enlaces-contacto a:hover, .enlaces-contacto a:active{
    color: #ff61f6;
}

.form-group input, .form-control {
    border-radius: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    -webkit-box-shadow: 8px 10px 13px 7px #F1F5F8;
    -moz-box-shadow: 8px 10px 13px 7px #F1F5F8;
    -o-box-shadow: 8px 10px 13px 7px #F1F5F8;
    box-shadow: 8px 10px 13px 7px #F1F5F8;
    width: 100%;
    height: 3rem !important;
}

.form-control {
    color: #0f064f !important;
}

textarea {
    border-radius: 1.2rem !important;
    min-height: 18.5rem !important;
    -webkit-box-shadow: 8px 10px 13px 7px #F1F5F8;
    -moz-box-shadow: 8px 10px 13px 7px #F1F5F8;
    -o-box-shadow: 8px 10px 13px 7px #F1F5F8;
    box-shadow: 8px 10px 13px 7px #F1F5F8;
    width: 100%;
}

#formGroupExampleInput::-moz-placeholder {
    font-family: 'Montserrat', sans-serif;
  }

  /*mensaje-envio*/
  .img-envio {
      object-fit: cover;
      width: auto;
      height: 280px;
      height:100%;
  }

  .prueba {
    position: absolute;
    top: 160px;
    left: 23%;
  }

  .wave-prueba{
      margin-bottom: 300px;
  }

  .contenedor-mensaje h4 {
    color: #0f064f;
  }

  .wave-prueba svg path {
      fill: #fff;
  }

  /*menu dropdown prueba*/
  .dropbtn {
    color: white;
    padding: 1rem;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
  }

  .dropbtn i {
    bottom: 3px;
    position: relative;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0f064f;
    min-width: 210px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 1rem;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .fa-angle-down {
      font-size: 1.5rem;
  }

  .dropdown-content a:hover {background-color: ;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .enlaces-drop {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    transition: 0.4s;
}

    .enlaces-drop:hover, .enlaces-drop:active {
        background: #00cca5;
        border-radius: 1.8rem;
        padding: 0.5rem;
}

.fa-check {
    color: #00cca5;
}

.titulo-sec-servicio {
    font-weight: 700;
}

/**CAROUSEL SERVICIOS WEB**/
.contenedor2 {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}

.carousel__elemento {
    text-align: center;
}

.carousel__elemento img{
    width: 550px;
    max-width: 100%;
    height: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

 .carousel__contenedor{
    position: relative;
}

.carousel__anterior, .carousel__siguiente {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    border: none;
    top:calc(50% - 35px);
    cursor: pointer;
    line-height: 30px;
    text-align: center;
    background: none;
    color: #0F064F;
    opacity: 50%;
}

.carousel__anterior:hover, .carousel__siguiente:hover{
    opacity: 100%;
}

.carousel__anterior {
    left:-30px;
}

.carousel__siguiente {
    right: -30px;
}

.carousel__lista{
    overflow: hidden;
}

.carousel__indicadores .glider-dot {
    display: block;
    width: 30px;
    height: 4px;
    background: #0F064F;
    opacity: 2;
    border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
    opacity: .5;
} 

.carousel__indicadores .glider-dot.active {
    opacity: 1;
} 

/*Pagina Branding*/
.img-branding{
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
    padding: 0;
}