@font-face {
    font-family: 'poppinslight';
    src: url('../fonts/Poppins/poppins-light-webfont.ttf') format('truetype'),
        url('../fonts/Poppins/poppins-light-webfont.woff2') format('woff2'),
        url('../fonts/Poppins/poppins-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'poppinsregular'; 
    src: url('../fonts/Poppins/poppins-regular-webfont.ttf') format('truetype'),
        url('../fonts/Poppins/poppins-regular-webfont.woff2') format('woff2'),
        url('../fonts/Poppins/poppins-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'poppinssemibold'; 
    src: url('../fonts/Poppins/poppins-semibold-webfont.ttf') format('truetype'),
        url('../fonts/Poppins/poppins-semibold-webfont.woff2') format('woff2'),
        url('../fonts/Poppins/poppins-semibold-webfont.woff') format('woff');         
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'poppinsbold';  
    src: url('../fonts/Poppins/poppins-bold-webfont.ttf') format('truetype'),
        url('../fonts/Poppins/poppins-bold-webfont.woff2') format('woff2'),
        url('../fonts/Poppins/poppins-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



:root {
    --blue: #00626F;
    --blue2: #00303C;
    --brown: #9F9470;
    --brown2: #6C5F39;
    --textFont: 'poppinsregular', sans-serif;
  }

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

body{
    background: #fff;
}

header{
    top:0;
    position:fixed;
    background: transparent;
    width: 100%;
    max-width: 100%;
    z-index: 99999999;
    background: rgba(0,0,0,0.8);
}
.kt-container{
    width: 100%;
    max-width: 90%;
    margin:0 auto;
}
.kt-section{
    padding:10% 0;
}
.kt-section .kt-title{
    text-align: center;
    font-family: 'poppinsbold', sans-serif;
    font-size: 3em;
    padding-bottom:10%;
}

/****** HEADER ******/
#kt-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
#kt-logo img{
    height: 25px;
}
#kt-icon-menu{
    font-size: 25px;
    color:#fff;
    cursor:pointer;
}
#kt-menu{
    display:none;
}
#kt-menu li{
    padding:0 20px;
    list-style-type: none;
}

#kt-menu li a,
#kt-menu li a:hover{
    color: #fff;
    font-family: 'poppinslight', sans-serif;
    list-style-type: none;
    text-decoration: none;
}


/****** SLIDER ******/
#kt-container-slider
{
    position: relative;
    display: block;
    width: 100%;
}
#kt-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 500px;
}
#kt-slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#kt-slider-text{
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}
#kt-slider-text div{
    text-align: justify;
}

#kt-slider #kt-slider-text{
    background: rgba(0, 0, 0, 0.3);
    padding: 10% 18%;
    position: relative;
    z-index: 1;
}
#kt-slider-text{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}


/****** SERVICIOS ******/
#kt-services .kt-title{
    color: var(--brown);
}
.kt-icon-service{
    padding-right: 25px;
    display: none !important;
} 


.kt-tab-active .kt-icon-service{
    display: block !important;
} 

h4.kt-accordion{
    color: var(--brown);
    font-size: 1em;
    font-family: 'poppinsbold', sans-serif;
    text-align: center;
}

.kt-tab-content{
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.kt-tab-layer{
    padding: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.kt-tab-content p{
    font-size:14px;
    padding-bottom: 10px;
    text-align: justify;
    width: 90%;
    max-width: 90%;
    margin:0 auto;
}



/*.kt-3739 h2{
    font-family: var(--textFont);
    text-align: center;
    font-weight: 700;
    color: var(--brown);
    font-size: 2.5em;
    padding-bottom:10%;
}*/


/****** CLIENTES ******/
.kt-9234{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.kt-9234 img{
    align-self: center;
    margin: 10%;
}

#kt-customer{
    background: linear-gradient(var(--brown), #6E613B);

}

#kt-customer h2,
#kt-customer p {
    color: #fff;
}

/****** CONTACTO ******/
#kt-contact{
    background: #fff;
}

#kt-contact h2,
#kt-contact p {
    color: var(--blue);
}

input, textarea{
    width:100%;
    margin:2% 0;
    padding:2%;
    border: 2px solid var(--blue);
    border-radius:5px;
    outline: none;
    color: var(--blue);
    font-family: var(--textFont);
}

input[type="submit"]{
    background: var(--brown);
    color: #fff;
    width: fit-content;
    border: none;
    border-radius: 20px;
    padding: 5px 30px;
    font-family: var(--textFont);
    font-size: 18px;
    cursor: pointer;
}
input[type="submit"]:hover{
    background: var(--brown2);
}
#kt-frm-contact{
    text-align: center;
}

textarea {
    resize: none;
  }

input:focus {
    outline: none;
}


::placeholder {
    color: var(--blue);
  }
  
  ::-ms-input-placeholder { 
    color: var(--blue);
  }


/****** FOOTER ******/
#kt-footer{
    background: #f4f4f4;
    height: auto;
   
}
#kt-footer #kt-fcontact{
    padding-bottom: 15px;
    font-weight: bold;
    color: var(--blue);
    background: #f4f4f4;
   
}
.kt-icon-contact,
.kt-icon-social{
    font-size: 20px;
    color: var(--blue2);
    letter-spacing: 5px;
}

#kt-footer #kt-fcontact div{
    padding:10px 0; 
}


#kt-footer #kt-fcontact div a{
    color: var(--blue);
    list-style-type: none;
    text-decoration: none;
}

#kt-social{
    text-align: right;
}


.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(255,255,255);
    background-color: rgba(255,255,255, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #000;
    display: block;
    transition: 0.3s;
    font-family: sans-serif;
    font-size: 2rem;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }


@media screen and (max-width: 460px){
	#kt-slider{
		height: 500px;
		min-height: 400px;
	}
}


@media (min-width: 576px) {
    .kt-tab-content p{
        max-width: 65%;
    }
}

/* Móviles en horizontal o tablets en vertical */
@media (min-width: 768px) {

    #kt-menu{
        display:flex;
        align-items: center;
        justify-content: center;
    }

    #kt-icon-menu{
        display: none;
    }

    h4.kt-accordion {
        display: none !important;
    }

    .kt-icon-service {
        height: 35px;
    }

    .kt-vtabs li.kt-tab-active {
        background: linear-gradient(#9F9470, #9F9470,#6E613B) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center;
        text-align: left;
        font-size: 15px;
    }

    .kt-9234 img {
        margin: 4%;
        width: 25%;
    }

    #kt-frm-name,
    #kt-frm-email{
        float: left;
        width:49%;
    }

    #kt-frm-name{
        margin-right:1%;
    }

    #kt-frm-email{
        margin-left:1%;
    }

    .kt-vtabs{
        display: flex !important;
        max-width: 1024px;
        margin:0 auto !important;
    }

    .kt-vtabs .kt-tab-content{
        height: 100%;
    }

    .kt-tab-layer {
       align-items: flex-end;
    }

    .kt-tab-content p {
        max-width: 90%;
    }

    .kt-tab-item{
        color: var(--brown);
    }

    .kt-vtabs .kt-tabs-list li{
        border: 1px solid #9F9470;
        border-top: 1px solid #9F9470;
        background: #f4f4f4;
    }

    .kt-tab-layer{
        background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.8)) ;
    }

    #kt-contact {
        display: flex;
    }

    #kt-contact-img,
    #kt-contact .kt-section{
        flex: 1;
    }

    #kt-contact-img{
        background-size: cover;
        background-repeat: no-repeat;
    }

    .kt-icon-contact,
    .kt-icon-social{
        font-size: 28px;
    }

    #kt-frm-contact {
        text-align: left;
    }

    #kt-footer .kt-section{ 
        padding: 15px 0;
    }
}


/* Tablets en horizonal y escritorios normales */
@media (min-width: 1024px) {
    
    .kt-icon-service {
        height: 50px;
    }

    .kt-tabs-list li,
    .kt-vtabs li.kt-tab-active {
        font-size: 17px;
    }
    .kt-tab-content p {
        font-size: 16px;
    }

    .kt-9234 img {
        margin: 2%;
        width: 24%;
    }

    
    input, textarea {
        margin: 1% 0;
        padding: 1%;
        font-size: 16px;
    }

    .kt-section .kt-title {
        font-size: 4em;
    }

    #kt-slider-text p{
        max-width: 600px;
        margin: 0 auto;
    }
 }
 
/* Escritorios muy anchos */
@media (min-width: 1200px) {
    .kt-container{
        max-width: 1200px;
        width: 85%;
    }
 }