/*FUENTES*/

@font-face {
    font-family: "Inconsolata";
    src: url("fonts/Inconsolata/Inconsolata-VariableFont_wdth\,wght.ttf") format("truetype");
}

@font-face {
    font-family: "Inconsolata Light";
    src: url("fonts/Inconsolata/static/Inconsolata-Light.ttf") format("truetype");
}

@font-face {
    font-family: "WebSymbolsRegular";
    src: url("fonts/websymbols-regular-webfont.eot");
    src: url("fonts/websymbols-regular-webfont.eot?#iefix") format("embedded-opentype"),
         url("fonts/websymbols-regular-webfont.woff") format("woff"),
         url("fonts/websymbols-regular-webfont.ttf") format("truetype"),
         url("fonts/websymbols-regular-webfont.svg#WebSymbolsRegular") format("svg");
    font-weight: normal;
    font-style: normal;
}

/*GENERAL*/
*{
    margin: 0px;
    padding: 0px;
    font-family: Helvetica, sans-serif, Arial;
}

.wrap{
    margin-right: 10%;
    margin-left: 10%;
}

#main{
    padding-left: 20px;
    padding-right: 1px;
    padding-top: 20px;

    display: flex;
}

.icon{
    font-family: "WebSymbolsRegular";
}

/*HEADER*/
#header{
    width: auto;
    height: 61px;
    border-bottom: 1px solid #ccc;
}

#header .wrap{
    display: flex;
    flex-flow: row wrap;
    height: auto;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding-top: 5px;
}

.wrap #logo{
    padding-left: 20px;
    padding-right: 10px;
}

#logo img{
    height: 50px;
    width: 50px;
}

#title{
    padding-left: 10px;
    padding-right: 10px;
}

#title h1 a{
    font-family: "Inconsolata Light";
    font-size: 38px;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;

}

#search{
    padding-left: 10px;
    padding-top: 8px;
}

#search input[type="text"],
#search input[type="button"]{
    line-height: 35px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

#search input[type="text"]{
    width: 260px;
    color: #555;
    transition: all 300ms;
}

#search input[type="text"]:focus{
    color: #000;
}

#search input[type="text"]:focus-visible{
    border: 1px solid #24ACF2;
}

#search input[type="button"]{
    width: 44px;
    background-color: white;
    transition: all 300ms;
}

#search input[type="button"]:hover{
    color: white;
    background-color: #24ACF2;
    border-radius: 10px;
}

/*MENU*/
 #lateral{
    min-width: 212px;
}

#lateral nav ul{
    padding: 0px;
    list-style: none;
}

#lateral > nav > ul > li{
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 36px;
    padding-bottom: 10px;
}

#lateral nav ul li a{
    text-decoration: none;
    color: black;
    transition: all 150ms;
}

#lateral > nav > ul > li > a:hover{
    padding-left: 5px;
    color: #24ACF2;
    border-left: 3px solid #24ACF2;
}

#lateral > nav > ul > li > ul > li{
    padding-top: 10px;
    padding-left: 5px;
    letter-spacing: 1px;
}

#lateral > nav > ul > li > ul > li{
    font-size: 16px;
}

#lateral > nav > ul > li > ul > li > a:hover{
    padding-left: 5px;
    color: #24ACF2;
    border-left: 3px solid #24ACF2;
}


/*CONTENIDO PRINCIPAL*/
#content{
    letter-spacing: 1px;
}

#content h2{
    text-shadow: 1px 1px 1px #ccc;
    padding-bottom: 5px;
}

.box{
    border-top: 1px solid #ccc;
    padding-top: 12px;
}

.obras{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.obras .card{
    margin-bottom: 10px;
    margin-right: 20px;
}

/*PIE DE PAGINA*/

#footer{
    border-top: 1px solid #ccc;
    margin-top: 10px;
}

#footer .wrap{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding-top: 10px;
    letter-spacing: 1px;
}

#footer .wrap img{
    width: 250px;
    height: 250px;
}

#footer #social{
    display: flex;
    flex-flow: column wrap;
}

#footer #social h4{
    border-bottom: 1px solid #ccc;
}

#footer > .wrap > #social > a{
    color: #000;
    text-decoration: none;
    transition: all 300ms;
}

#footer > .wrap > #social > a:hover{
    color: #24ACF2;
}

#footer .wrap #social a img{
    position: relative;
    width: 50px;
    height: 50px;
}

#footer .wrap #social a svg{
    width: 50px;
    height: 50px;
    color: #000;
    transition: all 300ms;
}


#footer .wrap #social a:hover svg{
    color: #24ACF2;
}

.menu h4{
    border-bottom: 1px solid #ccc;
}

.menu ul{
    padding: 0px;
    list-style: none;
}

.menu ul li{
    line-height: 30px;
}

.menu ul a{
    text-decoration: none;
    color: black;
    transition: all 300ms;
}

.menu ul li a:hover{
    text-decoration: underline;
    color: #24ACF2;
}

#web-designer{
    text-align: center;
}