:root {
    --primary-color: #12223A;
    --secondary-color: #007CC7;
    --tertiary-color: #01aded;
    --quaternary-color: #667282;

    --primary-font: Montserrat;

    /** font sizes **/
    --fs-14: 0.778rem;
    --fs-16: 0.889rem;
    --fs-18: 1rem;
    --fs-20: 1.111rem;
    --fs-35: 1.944rem;
    --fs-38: 2.111rem;
    --fs-56: 3.111rem;
    --fs-70: 3.889rem;
}

/* GENERAL */
body {
    font-size: 18px !important;
    color: var(--primary-color);
    font-family: var(--primary-font);
    overflow-x: hidden;
    overflow-y: scroll;
}

select:not(.wpcf7-select) {
    -webkit-appearance: none;
    /* Safari y Chrome */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    /* Estándar */
    background-image: none;
    /* Elimina cualquier imagen de fondo predeterminada */
}


select:not(.wpcf7-select) {
    background: transparent;
    padding-right: 30px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.filter-cat::after {
    content: '\f282';
    font-family: 'bootstrap-icons' !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

a:visited {
    color: initial;
}

h1 {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

h2 {
    color: var(--primary-color);
    font-size: var(--fs-38);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p {
    color: var(--primary-color);
}

.post,
.page {
    margin: 0 !important;
}

.container-m {
    max-width: 1140px;
    margin: 0 auto;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
}

.container-xl {
    max-width: calc(100% - 100px);
    margin: 0 auto;
}

.btn-vasco {
    display: flex;
    min-width: 232px;
    height: 45px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    text-decoration: none;
    padding-inline: 25px;
    border: 1px solid;
}

.btn-vasco:visited {
    color: white;
}

.btn-vasco-primary,
.btn-vasco-primary a {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

.btn-vasco-secondary {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.btn-vasco-tertiary {
    background-color: var(--tertiary-color);
    color: white !important;
    border-color: var(--tertiary-color);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-vasco-tertiary:hover,
.btn-vasco-tertiary:hover a{
    background-color: var(--primary-color);
    border-color: white;
    color:white !important;
}

.btn-vasco-outline {
    font-size: 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: white;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-vasco-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 0 !important;
}

.buttons {
    display: flex;
    gap: 15px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
    color: var(--primary-color);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -5px;
}

.swiper-pagination-bullet {
    opacity: 1;
    background: white;
    border: 1px solid black;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: black;
    border: 1px solid black;
}

.swiper-wrapper {
    margin-bottom: 40px;
}


.accordion-button {
    background-color: transparent;
}

.embed-container .wp-block-embed__wrapper { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container .wp-block-embed__wrapper iframe,
.embed-container .wp-block-embed__wrapper object,
.embed-container .wp-block-embed__wrapper embed{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*HEADER*/
header .menunav {
    display: flex;
    align-items: center;
    gap: 115px;
    justify-content: space-between;
    padding-block: 20px;
}

header .header__navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .header__navigation ul a {
    color: var(--primary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    padding: 10px;
    transition: color .3s ease-in-out;
}

header .header__navigation ul .first-level.current-item > a,
header .header__navigation ul .first-level:hover > a{
    color: var(--tertiary-color);
}

/*header .header__navigation ul .parent-item{
    position: relative;
}*/

header .header__navigation ul .parent-item.show-submenu .submenu {
    transform: translateY(25px);
    opacity: 1;
    transition: transform .3s, opacity .7s ease-out;
}

header .header__navigation ul .parent-item > a i{
    transform: rotate(0deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

header .header__navigation ul .parent-item.show-submenu > a i{
    transform: rotate(180deg);
}

header .header__navigation .submenu {
    position: absolute;
    width: 100%;
    left: 0;
    transform: translateY(calc(-100% - 80px));
    background: white;
    padding: 80px 0;
    max-width: 1300px;
    margin: 0 auto;
    right: 0;
    z-index: 9;
    opacity: 0;
    min-width: 400px;
    transition: transform 0.6s, opacity 0.1s ease-in, delay 0.3s;
}

header .header__navigation .submenu::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background: white;
    top: 0;
    left: -100vw;
}

header .header__navigation .submenu::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    background: white;
    top: 0;
    right: -100vw;
}

header .header__navigation .submenu ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}

header .header__navigation .submenu-grid{
    min-width: 615px;
}

header .header__navigation .submenu-grid > ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

header .header__navigation .submenu-grid > ul > li{
    display: flex;
}

header .header__navigation .submenu-grid > ul > li img{
    max-width: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 100%;
}

header .header__navigation .submenu-grid > ul > li a{
    font-size: 18px;
}

header .header__navigation .submenu-grid > ul > li a span{
    font-size: 14px;
    color: #444444;
    margin-top: 10px;
    display: block;
}

header .header__navigation ul .btn-vasco-primary {
    min-width: auto;
}

header .header__logo img {
    max-width: 140px;
}

.full-banner_vasco.full-banner_vasco_page .full-banner_vasco__image{
    position: relative;
}

.full-banner_vasco_page h1{
    color: white;
    font-size: 3rem;
}

.full-banner_vasco_page img{
    max-height: 460px;
}

/*FOOTER*/
footer {
    padding: 100px 0;
}

footer img{
    max-width: 200px;
}

footer h4 {
    color: var(--tertiary-color);
    font-size: var(--fs-18);
    margin-bottom: 20px;
    font-weight: 700;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 30px;
}

footer ul a {
    color: white !important;
    text-decoration: none;
    font-size: var(--fs-16) !important;
}

footer .social-ftr {
    border-top: 0.5px solid #F5F5F5;
    margin-top: 25px;
    padding-top: 25px;
}

footer .inner-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer .inner-social a {
    border-radius: 30px;
    border: 1px solid #FFF;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 5px;
    text-decoration: none;
    color: white;
    font-size: 16px;
}

footer .inner-social a i {
    font-size: 1.3rem;
}

footer .bottom-footer{
    color: white;
    font-size: 12px;
    margin-top: 25px !important;
}

footer .list-contact svg{
    max-width: 25px;
    max-height: 25px;
}

footer .list-contact li{
    color: white;
    font-size: var(--fs-18);
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1;
}

footer .list-contact li + li{
    margin-top: 15px;
}



.vasco-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vasco-form input:not([type="submit"]):not([type="radio"]),
.vasco-form select {
    border-radius: 8px;
    border: 1px solid #AAA;
    height: 56px;
    padding: 10px 16px;
    width: 100%;
}

.vasco-form textarea {
    border-radius: 8px;
    border: 1px solid #AAA;
    padding: 10px 16px;
    width: 100%;
}

.vasco-form .item-form{
    position: relative;
}

.vasco-form .contador{
    position: absolute;
    right: 0;
    bottom: -5px;
}

.vasco-form .contador p{
    margin: 0;
}

.vasco-form .group-items > p{
    display: flex;
    align-items: center;
    gap: 7px;
}

.vasco-form .group-items button{
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    color: #0018EE;
    text-decoration: underline;
}

#modalTerms .modal-header{
    padding-block: 0;
}

#modalTerms .modal-dialog {
    max-width: 780px;
}

#modalTerms .modal-dialog h1{
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

#modalTerms .modal-body{
    padding-inline: 30px;
}

#modalTerms .modal-body *{
    color: var(--primary-color);
}

#modalTerms .modal-body h4{
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-decoration: underline;
}

#modalTerms .modal-body ol{
    padding: 0;
    margin: 0 15px;
}

.wpcf7-radio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.wpcf7-radio .wpcf7-list-item{
    margin: 0;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}


.wpcf7-form-control-wrap[data-name="conductas"] label,
.wpcf7-form-control-wrap[data-name="karin"] label,
.wpcf7-form-control-wrap[data-name="terms"] label{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.wpcf7-form-control-wrap[data-name="conductas"] label input,
.wpcf7-form-control-wrap[data-name="karin"] label input,
.wpcf7-form-control-wrap[data-name="terms"] label input {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px;
    min-height: 17px;
    margin-top: 4px;
    flex: 1;
}

.wpcf7-form-control-wrap[data-name="conductas"] .wpcf7-list-item,
.wpcf7-form-control-wrap[data-name="karin"] .wpcf7-list-item,
.wpcf7-form-control-wrap[data-name="terms"] .wpcf7-list-item{
    display: flex;
}

.wpcf7-form-control-wrap[data-name="conductas"] .wpcf7-list-item + .wpcf7-list-item,
.wpcf7-form-control-wrap[data-name="karin"] .wpcf7-list-item + .wpcf7-list-item,
.wpcf7-form-control-wrap[data-name="terms"] .wpcf7-list-item + .wpcf7-list-item{
    margin-top: 15px;
}

.uploadFile{
    border-radius: 8px;
    border: 1px solid #AAA;
    height: 56px;
    padding: 10px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    font-weight: 300;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.uploadFile p{
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

.uploadFile:hover{
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.uploadFile:hover p{
    color: white;
}

.uploadFile + p input[type="file"]{
    display: none;
}

/** Single Causa // Product **/
.single-causa .causa-information,
.single-product .causa-information {
    padding: 80px 0;
    background: #f5f5f5;
}

.single-causa .swiper img,
.single-product .swiper img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.single-causa .swiper-slide,
.single-product .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
}

.single-causa h1,
.single-product h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
}

.single-causa .inner-info>.row>div[class*="col-md"]:first-child,
.single-product .inner-info>.row>div[class*="col-md"]:first-child {
    padding-right: 70px;
}

.single-causa .inner-info .entry-content,
.single-product .inner-info .entry-content {
    max-width: 460px;
    color: var(--primary-color);
}

.wpcf7-not-valid {
    border-color: #D70000 !important;
    background: rgba(215, 0, 0, 0.10);
    color: #D70000;
}

.wpcf7-not-valid::placeholder {
    color: #D70000;
}

.wpcf7-not-valid.wpcf7-radio,
.wpcf7-not-valid.wpcf7-checkbox {
    background: transparent;
}

/** Blog **/
.banner-blog_vasco {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    position: relative;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}

.banner-blog_vasco::after {
    content: '';
    background: white;
    height: 100%;
    width: 45vw;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

.inner-banner-blog_vasco {
    position: relative;
    z-index: 2;
    width: 1320px;
}

.banner-blog_vasco .row {
    display: flex;
    align-items: flex-end;
}

.banner-blog_vasco h1 {
    font-size: 60px;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 22px;
    color: white;
}

.banner-blog_vasco .categories-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    color: white;
}

.banner-blog_vasco .categories-list a {
    font-size: 18px;
    color: white;
}

.banner-blog_vasco p {
    margin-bottom: 0;
    font-size: var(--fs-18);
}

.content-banner-blog_vasco p {
    font-size: 38px;
    font-weight: 700;
    color: white;
}

.inner-post-destacado {
    padding: 60px 80px;
    background: #f4f4f4;
}

.featured-article {
    margin-bottom: 80px;
}

.inner-post-destacado {
    padding: 60px 80px;
    background: #f4f4f4;
    display: flex;
    gap: 46px;
    justify-content: space-between;
}

.post-destacado__info {
    max-width: 415px;
}

.post-destacado__info h2 {
    font-size: 25px;
    margin-block: 25px;
}

.post-destacado__image {
    flex: 0 0 515px;
}

.post-destacado__image img {
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 400px;
}

.post-destacado__category a {
    color: var(--primary-color);
    text-decoration: none;
}

.grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 34px;
    row-gap: 60px;
    margin-block: 100px;
}

.grid-blog article {
    overflow: hidden;
    position: relative;
    border-radius: 40px;
}

.grid-blog .card-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
    border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.grid-blog img {
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    width: 100%;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.grid-blog .card-thumbnail a {
    /* background: red; */
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.grid-blog .content-card {
    position: absolute;
    bottom: 0;
    padding: 15px 30px;
    z-index: 2;
    color: white;
    transform: translateY(60%);
    transition: all 0.4s ease-in-out;
}

.grid-blog .content-card *:not(h3) {
    color: white;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.grid-blog article .content-card a {
    text-decoration: none;
}

.grid-blog .content-card *:not(h3) {
    color: white;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.grid-blog article:hover .content-card {
    transform: translateY(0);
}

.grid-blog article:hover .content-card * {
    opacity: 1;
}

.grid-blog article .content-card a span, 
.grid-blog article .content-card a i {
    color: var(--tertiary-color) !important;
}

.pagination-blog {
    margin-block: 100px;
}

.pagination-blog .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-blog .navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.pagination-blog .navigation .nav-links .page-numbers {
    font-size: 25px;
    color: var(--primary-color);
    text-decoration: none;
}

.pagination-blog .navigation .nav-links .page-numbers.current {
    font-weight: 700;
    color: var(--tertiary-color);
}

.pagination-blog .navigation .nav-links .page-numbers.prev,
.pagination-blog .navigation .nav-links .page-numbers.next {
    color: #7b7b7b;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-blog .navigation .nav-links .page-numbers.prev i,
.pagination-blog .navigation .nav-links .page-numbers.next i {
    font-size: 15px;
}

.single-post .banner-blog_vasco h1 {
    font-size: 38px;
    margin-block: 24px;
}

.content-single__content {
    margin-block: 100px;
}

.content-single__content h3 {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.content-single__content p {
    font-size: var(--fs-18);
    color: var(--primary-color);
}

.related-posts {
    padding-block: 100px;
    background-color: #f5f5f5;
}

.related-posts .grid-blog {
    display: block;
}

.related-posts h2 {
    margin-bottom: 60px;
    text-align: center;
    font-size: 38px;
}

/* Globe Fixed */
.globo-fixed {
    bottom: 100px;
    position: fixed;
    right: 30px;
    z-index: 9;
}

.globo-fixed__content{
    max-width: 270px;
    border-radius: 20px;
    background: #D9D9D9;
    padding: 16px;
    transform: translateX(calc(100% + 30px));
    transition: transform 0.3s;
}

.globo-fixed.active .globo-fixed__content{
    height: auto;
    transform: translateX(0);
    transition: height 0.3s, transform 0.3s;
}

.globo-fixed__icon {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    cursor: pointer;
}

.globo-fixed__icon__inner{
    background: #d9d9d9;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.globo-fixed__icon__inner i{
    background: #7B7B7B;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulser-globe{
    position: absolute;
    height: 80px;
    background: #d9d9d9;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 80px 0 25px;
    font-weight: 500;
    font-size: 0;
    padding-inline: 40px;
    opacity: 0;
    /*transform: scaleX(0);
    transform-origin: left;*/
    z-index: 2;
    transition: opacity 0.3s, font-size 0.3s, padding-inline 0.3s;
}

.globo-fixed__item h4{
    font-size: var(--fs-20);
    color: var(--primary-color);
}

.globo-fixed__item p{
    font-size: var(--fs-16);
    margin: 0;
    color: var(--primary-color);
}

.globo-fixed__item{
    padding-block: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.globo-fixed__item a{
    color: black;
    text-decoration: none;
    font-size: var(--fs-16);
    font-weight: 600;
}

.globo-fixed__item a + a{
    text-decoration: underline;
}

.globo-fixed__item + .globo-fixed__item{
    border-top: 0.5px solid #7B7B7B;
}

.pulser-globe p{
    margin: 0;
}

.globo-fixed__icon:hover .pulser-globe{
    opacity: 1;
    font-size: var(--fs-16);
    padding-inline: 25px 90px;
    /*transform: scaleX(1);
    transform-origin: left;*/
}

.form-vasco input:not([type="submit"]){
    padding: 15px 15px 15px 15px !important;
    width: 100%;
    height: 55px;
    border-radius: 0px 0px 0px 0px !important;
    color: var(--primary-color) !important;
    border: none !important;
    border-bottom: 1px solid #12223B30 !important;
}

.form-vasco textarea{
    padding: 15px 0 15px 0 !important;
    width: 100%;
    border-radius: 0px 0px 0px 0px !important;
    color: var(--primary-color) !important;
    border: none !important;
    border-bottom: 1px solid #12223B30 !important;
}

.form-vasco input::placeholder,
.form-vasco textarea::placeholder{
    color: #12223B30;
}

.form-vasco input[type="submit"]{
    display: flex;
    min-width: 232px;
    height: 55px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    text-decoration: none;
    padding-inline: 25px;
    border: 1px solid;
    background-color: var(--tertiary-color);
    color: white !important;
    border-color: var(--tertiary-color);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.form-vasco input[type="submit"]:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/** Single proyecto **/

.content-proyecto .featured-image{
    margin-bottom: 20px;
}

.content-proyecto .featured-image img{
    border-radius: 15px;
    overflow: hidden;
}

.content-proyecto .sidebar{
    border: 1px solid #66728247;
    border-radius: 30px;
    padding: 40px;
}

.content-proyecto .sidebar ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-proyecto .sidebar ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-proyecto .sidebar ul li a{
    font-size: 1.7rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.content-proyecto .sidebar ul li.current a{
    color: var(--tertiary-color);
}

.content-proyecto .sidebar ul li a:hover{
    color: var(--tertiary-color);
}

.content-proyecto .sidebar ul li + li{
    border-top: 1px solid #66728247;
    margin-top: 20px;
    padding-top: 20px;
}

.content-proyecto .sidebar ul li p{
    margin-bottom: 0;
}

.content-proyecto .sidebar ul li p strong{
    display: block;
}

.content-proyecto .gallery-proyect{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.content-proyecto .gallery-proyect img{
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 285px;
    max-height: 285px;
    min-height: 285px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.content-proyecto .gallery-proyect img:hover{
    transform: scale(1.05);
}

.single-proyecto #imageModal .modal-body{
    padding: 0;
}

.single-proyecto #imageModal .modal-content img{
    width: 100%;
    max-height: 100dvh;
    object-fit: cover;
    object-position: center;
}

.single-proyecto #imageModal .modal-content .btn-close{
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: white;
    z-index: 9999;
    opacity: 1;
    font-size: 20px;
    padding: 15px;
    box-shadow: 2px 2px 6px 1px #00000099;
}

.contact-service{
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.contact-service h2,
.contact-service p{
    color: white;
}

.contact-service .title-section{
    margin-bottom: 45px;
}

.contact-service .form-services{
    max-width: 700px;
    margin: 0 auto;
}

.contact-service .form-services input,
.contact-service .form-services textarea{
    border-radius: 7px !important;
    padding: 15px !important;
}

.contact-service .form-services input[type="submit"]{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contact-service .form-services input[type="submit"]:hover{
    background-color: white !important;
    border-color: white !important;
    color: var(--primary-color) !important;
}


/* Hamburger Menu */
.hamburger {
    position: relative;
    height: 26px;
    margin-right: 27px;
    display: none;
}

.hamburger a.main-nav-toggle {
    display: block;
    width: 28px;
    height: 16px;
    position: absolute;
}

.hamburger a.main-nav-toggle::after,
.hamburger a.main-nav-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    height: 0;
    border-bottom: 2px solid var(--primary-color);
    width: 100%;
    left: 0;
    right: 0;
    transition: all ease-out 0.3s;
}

.hamburger a.main-nav-toggle::after {
    top: 100%;
}

.hamburger a.main-nav-toggle i {
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 2px;
    background-color: var(--primary-color);
    width: 100%;
    position: absolute;
    top: 50%;
    transition: all ease-out 0.1s;
}

.hamburger a.main-nav-toggle.active-menu::after {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 50%;
    border-color: var(--primary-color);
}

.hamburger a.main-nav-toggle.active-menu::before {
    transform: rotate(45deg);
    transform-origin: center;
    top: 50%;
    border-color: var(--primary-color);
}

.hamburger a.main-nav-toggle.active-menu i {
    opacity: 0;
}

.panel__navigation.nav-mobil {
    display: none;
}
.panel__navigation.nav-mobil .btn-vasco-primary, 
.panel__navigation.nav-mobil .btn-vasco-primary a,
.panel__navigation.nav-mobil .accordion-item button, 
.panel__navigation.nav-mobil a {
    background-color: transparent;
    color: var(--primary-color) !important;
    border-color: transparent;
}

@media screen and (max-width: 1200px) {
    .grid-blog {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    header .header__navigation.nav-desktop {
        display: none;
    }

    .panel__navigation {
        height: 100dvh;
        background: white;
        position: fixed;
        z-index: 99;
        left: 0;
        top: 73px;
        width: 100%;
        max-height: calc(100dvh - 73px);
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .menu-open {
        overflow: hidden;
    }

    .menu-open .panel__navigation {
        transform: translateX(0);
        opacity: 1;
    }

    .header__content {
        background: white;
        transition: background 0.3s ease-in-out;
    }

    .menu-open .header__content {
        background: white;
    }

    .hamburger {
        display: flex;
        align-items: center;
    }

    .panel__navigation.nav-mobil {
        display: block;
    }

    .panel__navigation.nav-mobil ul {
        list-style: none;
        padding: 0;
        margin: 0;
        border-block: 1px solid white;
    }

    .panel__navigation.nav-mobil li+li {
        border-top: 1px solid white;
    }

    .panel__navigation.nav-mobil .accordion-item {
        color: white;
        background-color: transparent;
        border: none;
    }

    .panel__navigation.nav-mobil .accordion-item button,
    .panel__navigation.nav-mobil a {
        font-size: 20px;
        font-weight: 700;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        padding: 1.25rem 1rem;
        max-width: 720px;
        margin: 0 auto;
    }

    .panel__navigation.nav-mobil .accordion-item button::after {
        content: "\f282";
        background-image: none;
        font-family: 'bootstrap-icons';
    }

    .panel__navigation.nav-mobil .btn-dlc {
        background-color: transparent !important;
        color: white !important;
        border-radius: 0;
        height: auto;
        padding: 0;
    }

    .panel__navigation.nav-mobil .btn-dlc a {
        background-color: transparent !important;
        color: white !important;
        border-radius: 0;
        width: 100%;
        padding: 1.25rem 1rem;
        height: auto;
    }

    .panel__navigation.nav-mobil .accordion-body {
        padding: 0;
    }

    .panel__navigation.nav-mobil .submenu ul,
    .panel__navigation.nav-mobil .submenu ul li {
        border: none;
    }

    .panel__navigation.nav-mobil .submenu li a {
        font-weight: 500;
    }

    .panel__navigation.nav-mobil .accordion-button:not(.collapsed) {
        background-color: transparent;
        box-shadow: none;
    }

    .panel__navigation.nav-mobil .accordion-button:focus {
        z-index: 3;
        border-color: transparent;
        outline: 0;
        box-shadow: none;
    }

    .globo-fixed__icon .pulser-globe {
        opacity: 0 !important;
        font-size: 0 !important;
        padding-inline: 0 !important;
    }

    .content-proyecto .sidebar{
        margin-bottom: 25px;
    }

}

@media screen and (max-width: 768px) {

    h2 {
        font-size: 30px;
    }

    .container-m {
        padding-inline: 15px;
    }

    .container-xl{
        max-width: 100%;
    }

    footer {
        padding: 24px 0;
        text-align: center;
    }

    footer .inner-social {
        flex-direction: column;
    }

    footer h4 {
        display: none;
    }

    footer ul a {
        font-size: 20px !important;
        font-weight: 600;
    }

    footer ul li {
        border-top: 1px solid white;
        padding: 10px;
    }

    footer img {
        margin-bottom: 40px;
    }

    footer .inner-social {
        display: grid;
        grid-template-columns: 1fr;
        padding-inline: 50px;
    }

    footer .inner-social a {
        justify-content: center;
    }

    footer .social-ftr {
        margin-top: 5px;
        padding-top: 40px;
    }

    .banner-blog_vasco {
        background-color: #f5f5f5;
        padding: 40px 15px;
        background-image: none !important;
    }

    .banner-blog_vasco::after {
        display: none;
    }

    .img-single-post {
        margin-bottom: 24px;
    }

    .img-single-post img {
        width: 100%;
        border-radius: 20px;
    }

    .content-banner-blog_vasco a,
    .card-post__date {
        color: white;
        text-decoration: none;
    }

    .inner-post-destacado {
        padding: 40px 15px;
        gap: 24px;
        justify-content: space-between;
        flex-direction: column-reverse;
    }

    .post-destacado__image {
        flex: 0 0 auto;
    }

    .post-destacado__image img {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .banner-blog_vasco h1 {
        font-size: 35px;
    }

    .grid-blog {
        grid-template-columns: repeat(1, 1fr);
    }

    .content-proyecto .gallery-proyect {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-proyecto .gallery-proyect img {
        height: 200px;
        max-height: 200px;
        min-height: 200px;
    }

    .content-proyecto .sidebar{
        margin-top: 25px;
    }

    .full-banner_vasco{
        padding-inline: 15px;
    }

    .full-banner_vasco__image::before,
    .full-banner_vasco img{
        border-radius: 15px;
    }

    .full-banner_vasco_page h1 {
        font-size: 2rem;
    }

    .single-proyecto #imageModal .modal-body{
        display: flex;
        align-items: center;
        background: var(--primary-color);
    }

    .full-banner_vasco img {
        max-height: calc(100dvh - 400px);
        height: calc(100dvh - 400px);
    }

    .full-banner_vasco__content {
        top: inherit;
        transform: translateY(0%);
        bottom: 35px;
        max-width: 90%;
    }

    .full-banner_vasco__content h2{
        font-size: var(--fs-35);
    }

    .full-banner_vasco__content--button {
        gap: 15px;
        flex-direction: column;
    }

    .full-banner_vasco__content p{
        font-size: var(--fs-14);
    }

}