.proyectos-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 400px 100px 60px 100px;
    gap: 20px;
}

.blog-hero {
    width: 100%;
    padding: 300px 100px 30px 100px;
}

.proyectos-hero, .blog-hero {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.categoriesFlex {
    display: flex;
    gap: 10px;
}

.categoriesFlex div {
    background-color: #7AA0CF;
	color: black !important;
	border-radius: 60px;
	padding: 2px 16px;
	font-size: 14px;
	font-weight: 400;
}

.postTitle {
    color: #FFFFFF;
    font-family: "Roboto", Sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 90px;
}

.btnPresupuesto {
    background-color: #2666C2;
    font-family: "Roboto", Sans-serif;
    border-radius: 5px;
    padding: 16px 60px;
    font-weight: 500;
    color: #FFFFFF !important;
    font-size: 15px;
    transition: all .3s;
}

.btnPresupuesto:hover {
    background-color: #1C509B;
}

.proyectosContent {
    display: flex;
    border: 0;
    border-bottom: 2px;
    border-style: solid;
    border-color: #FFFFFF1F;
}

.post-content {
    width: 70%;
    padding: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-left: 50px;
}

.post-attrs {
    width: 30%;
    padding: 50px;
    margin-right: 50px;
    background-color: #FFFFFF1F;
}

.post-content {
    border: 0;
    border-right: 2px;
    border-left: 2px;
    border-style: solid;
    border-color: #FFFFFF1F;
}

.titleAttrs {
    font-size: 25px;
    font-weight: 600;
}

.subtitleAttrs {
    font-size: 18px;
    font-weight: 500;
}

.shortcodeFormContainer {
    border: 0;
    border-bottom: 2px;
    border-style: solid;
    border-color: #FFFFFF1F;
}

.shortcodeFormContainer > div {
    margin: 0 50px;
    padding: 50px;
    border: 0;
    border-left: 2px;
    border-right: 2px;
    border-style: solid;
    border-color: #FFFFFF1F;
    font-family: "Roboto", Sans-serif;
}

.shortcodeFormContainer > div > p {
    color: #A7B6CA;
    font-size: 20px;
    font-weight: 400;
}

.shortcodeFormContainer h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.shortcodeFormContainer input, .shortcodeFormContainer select,
.shortcodeFormContainer button {
    line-height: 1em;
}

.footerSeparator {
    position: relative;
    height: 80px;
}

.sm-separator {
    display: none;
}

.main-blog {
    width: 100%;
}

.categories-title {
    font-size: 22px;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    font-weight: 500;
    color: white;
}

.category-list a:hover {
    color: rgb(214, 211, 211);
}

.post-attrs form {
    margin-bottom: 20px;
}

.search-bar input {
    border: 0;
    padding-left: 30px;
    outline: 0 !important;
}

.search-bar .search-submit {
    display: none;
}

.search-bar label {
    width: 100%;
}

@media (max-width: 378px) {
    .proyectos-hero {
        padding: 0 15px 30px 15px;
        gap: 10px;
        min-height: 400px;
        justify-content: end;
    }

    .blog-hero {
        padding: 0 15px 30px 15px;
        min-height: 300px;
        display: flex;
        align-items: end;
    }

    .categoriesFlex div {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .postTitle {
        font-size: 30px;
        line-height: 1em;
    }

    .btnPresupuesto {
        padding: 14px 40px;
    }
    
    .proyectosContent {
        flex-direction: column-reverse;
        padding: 0 10px;
    }

    .post-content {
        font-size: 14px;
    }
    
    .post-attrs, .post-content {
        width: 100%;
        margin: 0;
        padding: 40px 5px;
    }

    .sm-separator {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #FFFFFF1F;
    }

    .shortcodeFormContainer > div {
        margin: 0 10px;
        padding: 40px 5px 10px 5px;
    }

    .shortcodeFormContainer > div > p {
        font-size: 16px;
    }

    .shortcodeFormContainer h2 {
        font-size: 20px;
        letter-spacing: 0px;
    }
}