body{
    background-color: #000000;
}

@media (max-width: 767px) {
    body {
      font-size: 16px;
    }
    
    .container {
      width: 100%;
      padding: 0;
    }
    
    /* Estilos para menú de hamburguesa */
    .menu-toggle {
      display: block;
      cursor: pointer;
    }
    
    .menu {
      display: none;
    }
    
    .menu.active {
      display: block;
    }
  }
  


.image-container {
    display: flex; /* Establecer el contenedor como un flex container */
    justify-content: space-between; /* Distribuir las imágenes con espacio entre ellas */
    align-items: center; /* Centrar verticalmente las imágenes */
    width: 100%; /* Establecer el ancho del contenedor al 100% */
  }
  
  .image-container img {
    max-width: 30%; /* Establecer el ancho máximo de cada imagen al 30% del contenedor */
  }
  
/* Estilos para pantallas mayores a 720px */
@media only screen and (min-width: 720px) {
    /* Aquí van tus estilos */
  }

  /* Estilos para pantallas menores a 720px */
  @media only screen and (max-width: 720px) {
    /* Aquí van tus estilos específicos para móviles */
  }

.logo img{
    width: 100%;
    height: 4rem;
    top: 0;
    left: 0;
    margin-top: 3rem;
}

*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;

}
html{
    font-size: 62.5%;
}



.about-us{
    background-color: black;
}

header {
	width:100%; /* Establecemos que el header abarque el 100% del documento */
	overflow:hidden; /* Eliminamos errores de float */
	background: #000000;

}

.wrapper {
	width:90%; /* Establecemos que el ancho sera del 90% */
	max-width:1000px; /* Aqui le decimos que el ancho máximo sera de 1000px */
	margin:auto; /* Centramos los elementos */
	overflow:hidden; /* Eliminamos errores de float */
}

header .logo {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	color: #f48112;
	font-size:50px;
	line-height:200px;
	float:left;
}

header nav {
	float:right;
	line-height:200px;
}

header nav a {
	display:inline-block;
	color:#fff;
	text-decoration:none;
	padding:10px 20px;
	line-height:normal;
	font-size:20px;
	font-weight:bold;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

header nav a:hover {
	background:#f56f3a;
	border-radius:50px;
}

.hamburger-menu{
    width: 2.5rem;
    height: 3rem;
   
    position: fixed;
    top: 5rem;
    right: 5rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    transition: right 0.7s;
}

.header2 {
	position: fixed;
	height:100px;
}

.header2 .logo {
    size: 10px;
	line-height:100px;
	font-size:30px;
    image-rendering: optimizeQuality;
}

.header2 nav {
	line-height:100px;
}

.change .hamburger-menu{
    right: 27rem;
}

 .line{
    width: 100%;
    height: .2rem;
    background-color: whitesmoke;
    box-shadow: .1rem .2rem rgba(0, 0, 0, .2);
}



.change .line{
    background-color: #f48112;
}
.change .line-1{
    transform: rotate(45deg) 
    translate(0.3rem,0.8rem);
}
.change .line-2{
    opacity: 0;
    visibility: hidden;
}
.change .line-3{
    transform: rotate(-45deg)
    translate(0.3rem,-0.8rem);
}

.team{
    background-color: #000000;
}

.hamburger-menu span{
    position: absolute;
    left: 5rem;
    width: 10rem;
    height: 4rem;
    background-color: sienna;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    font-size: 1.6rem;
    letter-spacing: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all .2s;
}

.change .hamburger-menu:hover span{
    opacity: 1;
    visibility: visible;


}
.hamburger-menu span::before{
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-right: 1rem solid #c8725e;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}



.img-wrapper{
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
    
}
.img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation:scale 25s;
}

@keyframes scale{
    0%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}



.header{
    
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.banner{
    position: absolute;
    top: 30%;
    left: 15%;
   
}
.banner h3{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 5rem;
    font-weight: 300;
    color: white;
    width: 70%;
    line-height: 5rem;
    text-shadow: 0.3rem .5rem rgba(0, 0, 0, .4);
    letter-spacing: .2rem;
    opacity: 0;
    animation: moveBanner 1s .5s forwards;

}
.banner p{
    font-family: "Josefin Slab",serif;
    font-size: 2rem;
    color: white;
    letter-spacing: .1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-shadow: .3rem .3rem rgba(0, 0, 0, .4);
    opacity: 0;
    animation: moveBanner 1s 0.7s forwards;
}
.banner button{
    width: 16rem;
    height: 3.5rem;
    font-size: 1.5rem;
    background-color: #f48112;
    border: 1px solid black;
    text-transform: uppercase;
    border-radius: 8px;
    color: whitesmoke;
    box-shadow: .3rem .5rem rgba(0, 0, 0, .4);
    cursor: pointer;
    opacity: 0;
    animation: moveBanner 1s .9s forwards;
}

@keyframes moveBanner{
    0%{
        transform: translateY(40rem)rotateY(-20deg);
    }
    100%{
        transform: translateY(0)rotateY(0);
        opacity: 1;
    }
}


.sidebar{
    width: 31rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right:-31rem;
    background-color: black;
    transition: right,0.5sec;
    z-index: 100;
}

.change .sidebar{
    right: 0;
}
.menu{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.menuitem{
    text-align: center;
    padding-bottom: 3rem;
}
.menu-link{
    font-family: 'Baloo Da 2',sans-serif;
    font-size: 2rem;
    color: white;
    position: relative;
}

.menu-link::before{
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: #c29525;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}
.menu-link:hover::before{
    width: 100%;
    transition: width=100%,ease-in-out;
}

.social-media{
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-media i{
    font-size: 2rem;
    margin: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: black;
    color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 196%;
}
.social-media i:hover{
    background-color: #f48112;
    transition: background-color 0.3s;

}


.section-header h3 {
    background-color: #000000;
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: -2rem;
    border:5px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover{
    background:#c8d8e4;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item h6{
      font-size: 2rem;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size:40px;
    margin-bottom: 25px;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .item .feature_box_col_one h6 {
    background:rgba(247,198,5,0.2);
    color: grey;
    font-weight: bold;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color: grey;
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color: #2867B2;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#2867B2;
    size: 1rem;
    
.section-title {
    margin-bottom: 38px
}

.img-fluid{
    height:100px;
}

.section {
    padding-top: 40px;
    padding-bottom: 1400px
}

.rounded-lg {
    border-radius: 10px
}

.shadow,
.subscription-wrapper {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1) !important
}

.hover-bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(134deg, #00a4db 0%, #00269e 100%);
    z-index: -1;
    opacity: 0
}

.hover-bg-primary:hover {
    background: transparent
}

.hover-bg-primary:hover:before {
    opacity: 1
}

.pricing-table:before,
.hover-bg-primary::before,
.card-border-bottom:after {
    transition: ease 0.3s
}

.hover-bg-primary:hover * {
    color: #fff !important
}

.hover-bg-primary:hover * {
    color: #fff !important
}

.btn-outline-primary {
    color: #007ac7;
    border: 2px solid #00e0d8
}

.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 14px 45px;
    border-radius: 45px;
    font-weight: 500;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: .3s ease-in;
    overflow: hidden
}

.hover-bg-primary .btn {
    transition: unset
}

.btn-outline-primary:hover {
    color: #fff !important;
    background: none;
    border: 2px solid #00e0d8
}   .client-card {
    width: 200px;
    height: 300px;
    background-color: #f2f2f2;
    display: inline-block;
    margin: 10px;
    text-align: center;
  }
  
  .client-logo {
    width: 200px;
    height: 150px;
    margin-top: 50px;
  }
  
  .client-name {
    font-size: 20px;
    margin-top: 25px;
  }
    
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color: #2867B2;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#2867B2;
  }
  .item p{
    font-size: 15px;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    color:#2f2f2f;
  }   

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #f56f3a;
    width: 50%;
}

#clients {
    background-color: #000000;
    padding: 60px 0;
    
}
#clients .clients-wrap {
    border-top: 1px solid #d6eaff;
    border-left: 1px solid #d6eaff;
    margin-bottom: 30px;
}

#clients .client-logo {
    padding: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #d6eaff;
    border-bottom: 1px solid #d6eaff;
    overflow: hidden;
    background: #0000;
    height: 160px;
}

#clients img {
    transition: all 0.4s ease-in-out;
}
 
.proyectos{
    background-color: #000000;
}

.underline{
    text-align: center;
}

.sobrenos{
    width: 80%;
    text-align: center;
    font-size: 2rem;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0 auto;
}
.about-us{
    width: 100%;
    background-color: #000000;
    padding-bottom: 15rem;
}
.section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 0 10rem 0;
}
.section-heading{
    text-align: center;
    font-size: 5rem;
    font-weight: 300;
    color: #ffff;
    margin-bottom: 6rem;
}
.underline{
    display: block;
    width: 12rem;
    height: .3rem;
    background-color: #f48112;
    align-items: center;

}
.services{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(6,6rem);
    grid-row-gap:1rem;
}
.service{
    width: 100%;
    margin-bottom: 2rem;
}


.service:nth-child(1){
    grid-column: 5/7;
    grid-row: 1/3;
}
.service:nth-child(2){
    grid-column: 5/6;
    grid-row: 3/5;
}
.service:nth-child(3){
    grid-column: 5/7;
    grid-row: 5/-1;
}
.service:nth-child(4){
    grid-column: 12/14;
    grid-row: 1/3;
}
.service:nth-child(5){
    grid-column: 12/15;
    grid-row: 3/5;
}
.service:nth-child(6){
    grid-column: 12/14;
    grid-row: 5/-1;
}
.service-header{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.service-header i{
    font-size: 4rem;
    color: #ffff;
    margin-right: 2rem;
}
.service-header h3{
    font-family: "Ballo Da 2",serif;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #fff;
}

.service-text{
    font-family: 'Josefin Slab',serif;
    font-size: 1.6rem;
    text-align: justify;
    color: #ffff;
}



.about-us-img-wrapper{
    grid-column: 7/11;
    grid-row: 2/6;
    width: 100%;
}

.about-us-img-wrapper img{
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
   
}

.team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem 20rem 5rem;
}
.cards-wrapper{
    display: flex;
    
    justify-content: space-evenly;
    margin-top: 8rem;
    width: 100%;
}
.card{
    margin: 0px 53px 0px 0px;
    width: 25rem;
    height: 28rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, .4);
    border-radius: .5rem;
    position: relative;
}
.card-img-wrapper{
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: 0.5rem;
    
}
.card-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 0.5rem;
    transition: opacity .3s;
}
.card-info{
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0.2rem .5rem rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;

}

.card:hover .card-info{
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}

.card:hover .card-img-wrapper img{
    opacity: 5;
     

}




.card-info h2{
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 300;
    color: whitesmoke;
}
.card-info h3{
    font-size: 2rem;
    font-weight: 500;
    color: #ef7777;
    margin-bottom: 1rem;
}
.card-info p{
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 300;
    color: #eee;
    width: 80%;
    margin-bottom: 2rem;
}
.card-info button{
    width: 10rem;
    height: 3rem;
    background-color: #f48112;
    border: none;
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: #eee;
    border-radius: .3rem;
    box-shadow: 0 .1rem .8rem  rgba(0, 0, 0, .4);
}

.contact{
    width: 100%;
    height: 100vh;
    background-color: #272727;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-wrapper{
    width: 60%;
    height: 52rem;
    display: flex;
    
    box-shadow: 0 3rem 7rem rgba(0, 0, 0, .4);
}
.contact-left{
    width: 35%;
    background: linear-gradient(rgba(15,15,15,0.6),rgba(22,22,22,.9)),url(images/contact-bg.jpg) center no-repeat;
    background-size:cover;
}
.contact-right{
    width: 65%;
    background-color: #fff;
    padding: 3rem 10rem 10rem 10rem;

}
.contact-heading{
    font-size: 6rem;
    font-weight: 300;
    color: #272727;
    margin-bottom: 5rem;
    text-align: center;
}
.contact-right form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-group{
    position: relative;
}
.field{
    width: 45rem;
    background-color: transparent;
    border: none;
    border-bottom: .2rem dashed #636363;
    margin: 2rem 0;
    padding: 1rem 1rem 1rem 0;
    font-size: 1.6rem;
    color: #4b4b4b;
}
.input-group input{
    height: 4rem;
}

.field:focus{
    border-bottom-style: solid;
}

.input-group textarea{
    max-height: 7rem;
    max-width: 45rem;
}
.input-group label{
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    color: #4b4b4b;
    text-transform: uppercase;
    pointer-events: none;
    transition: all .3s;

}
.input-label{
    bottom:3rem;
}
.message{
    bottom: 6rem;
}
.field:focus ~label{
    transform: translateY(-3rem);
    font-size: 1.2rem;
}

.submit-btn{
    width: 45rem;
    height: 5rem;
    background-color: #f48112;
    color: black;
    border: none;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .2rem;
    cursor: pointer;
    text-shadow: 0 .1rem .3rem rgba(0, 0, 0, .4);
    box-shadow: 0 .1rem .3rem rgba(0, 0, 0, .3);
}


.footer{
    width: 100%;
    height: 15rem;
    background-color: #17181b;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-content{
    width: 60%;
    display: flex;
    justify-content: space-between;
}
.copyright{
    font-size: 1.6rem;
    color: whitesmoke;

}
.social-list a{
    margin: 0 2rem;

}
.social-list i{
    font-size: 2rem;
    color: whitesmoke;

}
.scroll-btn{
    position: fixed;
    right: 5rem;
    bottom: 5rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #f48112;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: black;
    box-shadow: 0 .1rem .6rem rgba(0, 0, 0, .2);
    border-radius: .3rem;
}

@media (max-width:1200px){
    .input-group input {
        height: 1rem;
    }
    .menuitem {
        text-align: center;
        padding-bottom: 2rem;
    }

    .submit-btn{
        width: 32rem;
    }
    .contact-heading {
        font-size: 4rem;
    }
    .about-us-img-wrapper {
        grid-column: 7/11;
        grid-row: 3/8;
        width: 100%;
    }
    .submit-btn {
        margin-top: 0rem;
font-size: 1.5rem;
    }
    .sidebar {
        width: 31rem;
        height: 75vh;
    }
    .header {
        width: 100%;
        height: 75vh;
    }
    .contact {
        width: 100%;
        height: 63vh;
    }
    .banner h1 {
        font-family: 'Baloo Da 2',serif;
        font-size: 5rem;
    }
    .banner p {
        font-family: "Josefin Slab",serif;
        font-size: 1.7rem;
    }
    
    .service:nth-child(1){
        grid-column: 4/7;
        grid-row: 1/3;
    }
    .service:nth-child(2){
        grid-column: 3/6;
        grid-row: 3/5;
    }
    .service:nth-child(3){
        grid-column: 4/7;
        grid-row: 5/-1;
    }
    .service:nth-child(4){
        grid-column: 11/14;
        grid-row: 1/3;
    }
    .service:nth-child(5){
        grid-column: 12/15;
        grid-row: 3/5;
    }
    .service:nth-child(6){
        grid-column: 11/14;
        grid-row: 5/-1;
    }
    .contact-wrapper {
        width: 60%;
        height: 34rem;
    }
    .contact-right {
        width: 65%;
        background-color: #eee;
        padding: 0rem 10rem 0rem 10rem;
    }
    .field {
        width: 34rem;
    }

}

@media (max-width:860px){
    .field {
        width: 20rem;
    }
    .header {
        width: 100%;
    }
    .sidebar {
        width: 28rem;
        height: 100vh;
    }
    .change .hamburger-menu {
        right: 23rem;
    }
    .banner h1 {
        font-family: 'Baloo Da 2',serif;
        font-size: 4rem;
        font-weight: 300;
        color: black;
        width: 46%;
        line-height: 4rem;
    }
    .contact-heading {
        font-size: 2rem;
    }
    .input-group label {
        font-size: 1.2rem;

    }
    
    .submit-btn {
        width: 14rem;
        height: auto;
    }
    .contact-heading {
        font-size: 2rem;
    }
    .contact-wrapper {
        height: 31rem;
    }

    
    .service:nth-child(1){
        grid-column: 3/7;
        
    }
    .service:nth-child(2){
        grid-column: 2/6;
        
    }
    .service:nth-child(3){
        grid-column: 3/7;
        
    }
    .service:nth-child(4){
        grid-column: 11/15;
        
    }
    .service:nth-child(5){
        grid-column: 12/16;
        
    }
    .service:nth-child(6){
        grid-column: 11/15;
        
    }
    .card {
        
        height: 17rem;
    }
    .card-info p {
        font-size: 1.0rem;
        line-height: 0.6rem;
    }
    .card-info h3 {
        font-size: 1.5rem;
    }
    .card-info h2 {
        font-size: 1.5rem;
    }
    .card-info button {
        width: 6rem;
        height: 2rem;
        background-color: #c29525;
        border: none;
        font-size: .8rem;
    }

   
}



@media (max-width:580px){
    .services{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sidebar {
        width: 29rem;
        height: 100vh;
    }
    .service{
        width: 40rem;
        margin-bottom: 6rem;
    }
    .about-us-img-wrapper{
        width: 40rem;
    }
    .about-us-img-wrapper img{
        width: 100%;
    }
    .team{
        padding-bottom: 5rem;

    }
    .cards-wrapper{
        flex-direction: column;
        align-items: center;
        margin-top: 4rem;
    }
    .card{
        margin-bottom: 8rem;
    }
    .contact-wrapper {
        height: 27rem;
    }
    .contact-heading {
        font-size: 1.5rem;
    }
    .field {
        width: 18rem;
        padding: 0;
    }
    
    .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .copyright{
        order: 1;
        margin-top: 3rem;
    }
    
    .menu-link {
        font-family: 'Baloo Da 2',sans-serif;
        font-size: 1.5rem;
    }
    .menuitem{
        padding-bottom: 1rem;
    }
    .change .hamburger-menu {
        right: 24rem;
    }

}
