:root {
    --color1: #dfdbe9;
    --color2: #773dbd;
    --color3: #2f1d46;
    --color4: #101820;
}
@font-face {
    font-family: "mont-black";
    src: url(../fonts/Mont-Black.otf) format("opentype"), url(../fonts/Mont-Black.woff) format("woff"); /* resto de navegadores */
}
@font-face {
    font-family: "mont-bold";
    src: url(../fonts/Mont-Bold.otf) format("opentype"), url(../fonts/Mont-Bold.woff) format("woff"); /* resto de navegadores */
}
@font-face {
    font-family: "mont-book";
    src: url(../fonts/Mont-Book.otf) format("opentype"), url(../fonts/Mont-Book.woff) format("woff"); /* resto de navegadores */
}
@font-face {
    font-family: "mont-light";
    src: url(../fonts/Mont-Light.otf) format("opentype"), url(../fonts/Mont-Light.woff) format("woff"); /* resto de navegadores */
}
@font-face {
    font-family: "mont-extralight";
    src: url(../fonts/Mont-ExtraLight.otf) format("opentype"), url(../fonts/Mont-ExtraLight.woff) format("woff"); /* resto de navegadores */
}
body {
    background-color: var(--color1);
    padding: 0;
    margin: 0;
    font-family: 'mont-extralight', sans-serif;
    min-height: 100vh;

}

h2 {
    font-weight: 600;
    margin: 0;
}

h3 {
    font-weight: 600;
    margin: 0;
}

img {
    display: block;
    width: 100%;
}

.contenedor {
    width: 90%;
    margin: 0 auto;
}

header {
    background-color: transparent;
    position: absolute;
    width: 100%;
}

header>div {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 100px;
    width: auto;
    z-index: 3;
}

header .logo img {
    height: 100%;
    width: auto;
}

#btn_menu {
    width: 60px;
    padding: 5px 10px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
    transition: all .5s;
    position: relative;
    z-index: 12;
}

#btn_menu:hover {
    background-color: #00000012;
}

#btn_menu hr {
    border: none;
    width: auto;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color1);
    margin: 5px 0;
    transition: all .5s;
}

#btn_menu.btnon hr.line1 {
    opacity: 0;
}

#btn_menu.btnon hr.line2 {
    transform: rotate(-45deg);
    position: relative;
    top: 5px;
}

#btn_menu.btnon hr.line3 {
    transform: rotate(45deg);
    position: relative;
    bottom: 5px;
}

#btn_menu.btnon hr.line4 {
    opacity: 0;
}

.slider {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    padding-bottom: 50.3%;
    overflow: hidden;
    background-color: var(--color3);
}
.slider-vacio{
	padding: 60px;
    box-sizing: border-box;
}
.submenu {
    font-size: 1.7em;
}

.submenu hr {
    border: none;
    width: 2px;
    height: 100px;
    margin-top: 50px;
    background-color: var(--color2);
    border-radius: 5px;

}

.submenu>div {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    background-color: var(--color4);
}

.submenu>div>div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color1);
    flex-grow: 1;
    transition: all .5s;
    height: 200px;
    font-size: .7em;
}

.submenu>div>div:hover {
    background-color: var(--color2);
}

.submenu>div>div:hover div {
    transform: scale(1.05) !important;
}

.submenu div div div {
    padding-left: 0px;
}

.submenux>div:before {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 70px;
    height: 70px;
    background-image: url(/img/sprite_icon.png);
    background-repeat: no-repeat;
    background-color: transparent;
    overflow: hidden;
    margin-right: 10px;
}

.submenu .submenu1>div:before {
    background-position: 0px 0px;
}

.submenu .submenu1:hover>div:before {
    background-position: -80px 0px;
}

.submenu .submenu2>div:before {
    background-position: 0px -80px;
}

.submenu .submenu2:hover>div:before {
    background-position: -80px -80px;
}

.submenu .submenu3>div:before {
    background-position: 0px -160px;
}

.submenu .submenu3:hover>div:before {
    background-position: -80px -160px;
}


.proyectos {
    overflow: hidden;
}

.proyectos_tit {
    display: block;
    font-family: "mont-bold";
    font-size: .9em;
    padding: 20px;
    color: var(--color4);
}

.proyectos_box {
    display: flex;
    flex-wrap: wrap;
}

.proyectos_item {
    position: relative;
    overflow: hidden;
    height: 0;
    width: 33.333%;
    padding-bottom: 33.333%;
    padding-top: 0;
}

.proyectos_item>div {
    opacity: 0;
    transition: all .5s;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #101820dc;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color1);
    transform: scale(1.1);
}
.proyectos_item>div>p {
    padding: 0 20px 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
} 
.proyectos_item>div a {
    text-decoration: none;
    color: var(--color1);
}

.proyectos_item:hover > img{
    transform: scale(1.05);
}
.proyectos_item:hover > div{
    opacity: 1;
    transform: scale(1);
}

.proyectos_item>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    z-index: -1;
    transition: all .5s;
}
.proyectos_mas{
    display: flex;
    align-items: center;
    justify-content: end;

}
.proyectos_mas a{
    text-decoration: none;
    font-weight: 600;
    font-size: .8em;
    display: flex;
    align-items: center;
    justify-content: end;
    color: var(--color2);

}
.proyectos_mas a:active{
    color: initial;

}
.proyectos_mas a > div {
    width: 50px;
    padding: 10px;
    margin-left: 10px;
    box-sizing: border-box;
    background-color: var(--color2);
}

.proyectos_mas div div {
    width: 30px;
    height: 30px;
    background-image: url(/img/sprite_icon.png);
    background-position: 0px -233px;
}



.footer {
    background-color: var(--color4);
    display: flex;
    flex-direction: column;
    color: var(--color1);
}

.footer .footer_logo {}

.footer .footer_logo div {
    background-color: var(--color2);
    width: 120px;
    padding: 50px 20px 20px;
    box-sizing: border-box;
}
.footer .footer_logo div img{
    width: 80px;
}
.footer .footer_msg a {
    display: flex;
    font-size: 1.1em;
    align-items: center;
    justify-content: end;
    padding: 30px 0;
    color: var(--color1);
    text-decoration: none;
}

.footer .footer_msg i {
    background-color: var(--color2);
    padding: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.footer .footer_rrss {
    padding: 30px 0;
}

.footer .footer_rrss>div {
    display: flex;
}

.footer .footer_rrss>div a {
    text-decoration: none;
}
.footer .footer_rrss>div i {
    background-color: var(--color1);
    color: var(--color4);
    width: 35px;
    height: 35px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1em;
}

.footer .footer_copy {
    padding: 10px 0 50px;
    font-size: .8em;
}


.contacto {
    background-color: var(--color4);
    color: var(--color1);
    text-align: center;
    padding: 140px 0 30px;
    min-height: 75vh;
    font-size: .9em;
}

.contacto>div {
    max-width: 600px;
    width: 85%;
}

.contacto form {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 0;
}

.contacto form img {
    width: initial;
}

.contacto input,
.contacto textarea {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--color1);
    box-sizing: border-box;
    outline: none;
}

.contacto textarea {
    height: 90px;
}

.contacto input[type="submit"] {
    background-color: var(--color2);
    color: var(--color1);
    width: 100%;
    cursor: pointer;
    transition: all .5s;
}

.contacto input[type="submit"]:hover {
    background-color: var(--color3);
}

.contacto input::placeholder,
.contacto textarea::placeholder {
    font-family: 'mont-light', sans-serif;
}

.contacto .rrs {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.contacto .rrs a {
    text-decoration: none;
}
.contacto .rrs i {
    background-color: var(--color1);
    color: var(--color4);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 50%;
}

.contacto .dir {
    padding: 20px 0;
}

.formConsulta_alerta {
    display: none;
    position: absolute;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, .9);
}

.formConsulta_alerta>div {
    width: 100%;
    height: 90%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn1 {
    padding: 4px 20px;
    border: 1px solid var(--color2);
    cursor: pointer;
    transition: all .5s;
}

.btn1:hover {
    background-color: var(--color2);
}

.menu_left {
    width: 300px;
    position: fixed;
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    background-color: #101820ea;
    color: var(--color1);
    transform: translateX(300px);
    transition: all .3s;
    padding-top: 80px;
    box-sizing: border-box;
    box-shadow: 0 0 45px #000;
}

.menu_left a {
    text-decoration: none;
    color: var(--color1);
}

.menu_left ul {
    margin-top: 10px;
}

.menu_left li {
    list-style: none;
    padding: 10px 15px;
}

/* PROYECTO  */
.proyecto_desc {
    background-color: var(--color4);
    color: var(--color1);
    padding: 50px 50px;
    text-align: center;
}
.proyecto_desc a,.proyecto_desc a:active,.proyecto_desc a:visited {
    color: var(--color2);
    text-decoration: none;
}
.proyecto_desc h1{
    padding-bottom: 40px;
}
.proyecto_desc .proyecto_cont, .proyecto_desc p, .proyecto_desc img {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}