/**********************************/
/************* HEADER *************/
/**********************************/

header {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

header.open {
    z-index: 12;
    transition: none;
}

header::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: var(--black); */
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

header.open::before {
    opacity: .8;
    pointer-events: auto;
    z-index: 1;
}

header.fixed{
    background-color: #fbfbfb;
    z-index: 99;
}

header .upper {
    display: flex;
    background-color: transparent;
    position: relative;
    /* background-color: var(--white); */
    height: 136px;
    transition: var(--transition);
    /* box-shadow: 0px 8px 51px 0 rgba(0, 0, 0, 0.07); */
    display: flex;
    align-items: flex-end;
    padding: 0 30px 28px;
    margin-top: 16px;
}

header .upper a.logo {
    position: relative;
    display: block;
    width: 300px;
    height: 95px;
    z-index: 1;
}
header .upper a.logo img {
    position: relative;
    display: block;
    height: 100%;
    filter: brightness(0) invert(1);
}

header.fixed .upper a.logo img{
    filter: invert(0);
}

header .upper .right-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 8px;
}



header .search.form {
    text-align: center;
    display: flex;
    align-items: center;
}

header .search.form input {
    line-height: 1;
    color: var(--white);
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-bottom: 1px solid var(--primary);
    width: 100%;
    height: 30px;
    border-radius: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    width: 0px;
    max-width: 0px;
    opacity: 0;
    transition: var(--transition);
}

header.open .search.form input,
header.fixed .search.form input {
    color: var(--black);
}

header.open .menu .search.form input{
    opacity: 1;
    width: 100%;
    max-width: 100%;
}

header .search.form.search-open input {
    max-width: 150px;
    width: 150px;
    opacity: 1;
    transition: var(--transition);
    padding-right: 20px;
    border-bottom: 1px solid rgb(255, 255, 255);
}

header.open .search.form.search-open input,
header.fixed .search.form.search-open input {
    border-bottom: 1px solid rgb(0, 0, 0);
}

header .search.form.search-open button {
    margin-left: -15px;
}

header .search.form button {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    transition: var(--transition);
    z-index: 2;
    margin: 0;
    background: none;
    border: none;
}

header .search.form button::before {
    overflow: visible;
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    transition: var(--transition);
    -webkit-mask-image: url(/assets/img/svg/search.svg);
    mask-image: url(/assets/img/svg/search.svg);
    background-color: var(--white);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 0;
    left: 0;
}

header .search.form button:hover::before {
    opacity: 0.5;
}

header.fixed .search.form button::before,
header.open .search.form button::before {
    background-color: var(--primary);
}

/* header .form {
    width: 449px;
    border: 2px solid #ececec;
    background-color: transparent;
    padding: 15px 40px 15px 22px;
    border-radius: 50px;
}

header .form input {
    font-size: 0.875rem;
    font-weight: 300;
    width: 100%;
} */

/* header .form a::before {
    content: "";
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    width: 21px;
    height: 15px;
    -webkit-mask-image: url(/assets/img/normal-arrow.svg);
    mask-image: url(/assets/img/normal-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    transition: var(--transition);
} */

header .upper ul {
    display: flex;
    height: 100%;
    justify-content: flex-end;
    padding: 0;
    gap: 30px;
    margin-left: 29px;
}
header .upper ul li {
    position: relative;
    transition: var(--transition);
}
header .upper ul li a {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-family2);
    font-size: 20px;
    font-weight: normal;
    line-height: 1.22;
    letter-spacing: -0.18px;
    color: var(--white);
    white-space: nowrap;
    padding: 10px 0;
}

header .upper ul .contact-pad {
    position: absolute;
    padding-top: 40px;
    width: 100%;
    top: 26px;
    right: 0;
    min-width: 100px;
    z-index: 1;
}

header .upper ul .submenu2-wrapper,
header .upper ul .submenu-wrapper {
    position: absolute;
    padding: 25px  0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: unset;
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
    left: 0;
    border-radius: 5px;
    box-shadow: 0px 10px 9px 0 rgba(0, 0, 0, 0.09);
    background-color: var(--white);
    pointer-events: none;
    min-width: 216px;
    max-width: 216px;
}
header .upper ul li.edge .submenu-wrapper {
    right: 0;
    left: unset;
}

header .upper ul .submenu2-wrapper {
    left: 216px;
    right: unset;
    top: 0;
}

header .upper ul li.edge .submenu2-wrapper {
    left: unset;
    right: 216px;
    top: 0;
}

header .upper .submenu-wrapper ul {
    flex-direction: column;
    gap: 0;
    margin: 0;
}

header .submenu-wrapper ul li {
    position: unset;
}

header .submenu-wrapper ul li a {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1a1a1a;
    justify-content: flex-start;
    padding: 7px 29px;
    line-height: 1.71;
    white-space: normal;
}

header li.edge .submenu-wrapper ul li a {
    text-align: right;
    justify-content: flex-end;
}

header .submenu-wrapper ul li a{
    position: relative;
}

header .submenu-wrapper ul li:hover,
header .submenu-wrapper ul li:has( a.active) {
    background-color: var(--primary);
}

header.fixed .upper .submenu-wrapper ul li:hover > a,
header .submenu-wrapper ul li:hover > a,
header .submenu-wrapper ul li > a.active{
    color: white;
}


header .upper  .submenu-wrapper ul li a::before {
    content: none;
}

header .submenu-wrapper ul li:has(.submenu2-wrapper) > a::before{
    content: "";
    width: 10px;
    height: 12px;
    display: block;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-mask-image: url(/assets/img/svg/submenu-caret.svg);
    mask-image: url(/assets/img/svg/submenu-caret.svg);
    background-color: var(--primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

}

header li.edge .submenu-wrapper ul li:has(.submenu2-wrapper) > a::before{
    left: 30px;
    right: unset;
        transform: rotate(180deg);
}


header .submenu-wrapper ul li:has(.submenu2-wrapper) > a.active::before,
header .submenu-wrapper ul li:has(.submenu2-wrapper):hover > a::before {
    background-color: var(--white);
}

header .contact-pad .submenu-wrapper:hover, 
header .contact-pad:hover .submenu-wrapper, 
header a:hover + .contact-pad .submenu-wrapper {
    opacity: 1;
    pointer-events: all;
}


header .submenu-wrapper .submenu2-wrapper:hover,
header .submenu-wrapper a:hover + .submenu2-wrapper{
    opacity: 1;
    pointer-events: all;
}



header.fixed .upper ul li a{
    color: var(--black);
}


header.fixed .upper  ul > li.active > a{
    color: var(--primary);
}


header.fixed .submenu-wrapper ul li:has(.active) {
    background-color: var(--primary);
}

header.fixed  .submenu-wrapper ul li a.active{
    color: white;
}




header .upper ul li a::before{
    content: "";
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: auto;
    right: auto;
    top:0;
    transition: var(--transition);
    opacity: 0;
}

header.fixed .upper ul li a::before{
    background-color: var(--primary);
}


header .upper ul li:has(:hover) a::before,
header .upper ul li.active a::before,
header .upper ul li a:hover::before {
    opacity: 1;
}



header .menu .menu-section .menu-toggle,
header .upper .right-wrapper .menu-toggle {
    position: relative;
    width: 27px;
    height: 16px;
    margin-left: 40px;
    cursor: pointer;
    pointer-events: all;
    display: none;
}

.mobile header .menu .menu-section .menu-toggle,
.mobile header .upper .right-wrapper .menu-toggle {
    display: block;
}

header .menu .menu-section .menu-toggle span, 
header .upper .right-wrapper .menu-toggle span {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 0 0 auto;
    width: 27px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 1;
}

header.fixed .menu .menu-section .menu-toggle span, 
header.fixed .upper .right-wrapper .menu-toggle span,
.mobile header .menu .menu-section .menu-toggle span, 
.mobile header .upper .right-wrapper .menu-toggle span {
    background-color: var(--primary);
}

header .upper.fixed .right-wrapper .menu-toggle span {
    background-color: var(--primary);
}

header .upper .right-wrapper .menu-toggle span:first-child {
    width: 27px;
    transform: translateY(-7px);
}

header .upper .right-wrapper .menu-toggle span:nth-of-type(2) {
    width: 27px;
    transform: translateY(0px);
}

header.open .menu .menu-section .menu-toggle span:nth-of-type(2) {
    opacity: 0;
}

header .upper .right-wrapper .menu-toggle span:last-child {
    width: 20px;
    transform: translateY(7px);
}

header .upper .right-wrapper .menu-toggle:hover span:last-child {
    width: 27px;
}

header .upper .right-wrapper .button {
    max-width: 205px;
    max-height: 55px;
    padding: 21px 0px;
    width: 100%;
}

/**********************************************/
/******************* MENU *********************/
/**********************************************/

header .menu {
    position: fixed;
    height: 100vh;
    max-width: 100%;
    background-color: white;
    top: 0;
    right: 0;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 999;
    width: 0;
}

header.open .menu {
    transform: translateX(0%);
    width: 40vw;
}

header .menu .menu-section {
    height: 100%;
    overflow: scroll;
    padding: 35px;
}

header .menu .menu-section .menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

header .menu .menu-section .menu-toggle  {
    display: block;
    width: 26px;
    height: 25px;
    margin: 0;
    transition: var(--transition);
}

header .menu .menu-section .menu-toggle span {
    background-color: var(--primary);
}

header .menu .menu-section .menu-toggle span:first-child {
    transform: rotate(45deg);
}
header .menu .menu-section .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

header .menu .menu-section .menu-toggle:hover span {
    background-color: var(--black);
}

header .menu .menu-section .menu-header > a:first-of-type {
    
    font-size: 1.125rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    gap: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: -0.45px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0;
}

header.open .menu .menu-section .menu-header > a:first-of-type {
    opacity: 1;
}

header .menu .menu-section .menu-header > a:first-of-type:hover {
    color: var(--black);
}


header .menu .menu-section .form.search {
    margin-top: 20px;
    height: 55px;
    position: relative;
    width: 100%;
}


header .menu .menu-section > ul {
    margin-top: 100px;
}

header .menu .menu-section > ul h4 a {
    font-size: 1.469rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.59px;
    color: var(--primary);
}

header .menu .menu-section > ul h5 {
    font-size: 1.063rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #7e7e7e;
}



header .menu ul {
    list-style: none;
    padding: 0;
}

header .menu .menu-section ul li {
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

header .menu .menu-section > ul > li {
    margin-bottom: 20px;
}

header .menu ul li.subsub,
header .menu ul li.sub {
    position: relative;
    transition: var(--transition);
}

header .menu ul li.sub.active h4 a {
    color: var(--primary);
}

header .menu ul li.sub.active li.sub.active h5 a.selected,
header .menu ul li.sub.active li.sub.active > h5 a {
    color: var(--primary);
}

header .menu ul li h5 a:hover {
    color: var(--primary);
}

header .menu .menu-section > ul > li:last-of-type {
    margin-bottom: 0;
}

header .menu .menu-section > ul > li > ul,
header .menu .menu-section > ul > li > h4 {
    /* max-width: 500px; */
    margin: 0;
    /* padding-right: 20px; */
}

header .menu .menu-section > ul > li > h4 {
    max-width: 360px;
    padding-right: 20px;
}

header .menu .menu-section > ul > li > h4 a {
    pointer-events: auto;
}

header .menu .menu-section > ul > li:hover h4 a{
    color: var(--primary);
}

header .menu ul li > ul {
    transition: var(--transition);
    max-height: 0;
}

header .menu ul li.subsub > ul:first-of-type {
    padding-top: 0;
}


header .menu ul li.subsub.active > ul:first-of-type,
header .menu ul li.sub.active > ul:first-of-type {
    padding-top: 20px;
}

header .menu ul li.subsub.active > ul,
header .menu ul li.sub.active > ul {
    max-height: 700px;
    margin-bottom: 20px;
    padding-right: 0;
    
}

header .menu ul li.sub .open-submenu,
header .menu ul li.sub .open-menu {
    position: absolute;
    right: 0;
    height: 17px;
    width: 17px;
    display: block;
    z-index: 0;
    top: 0px; 
}
header .menu ul li.sub:hover > .open-menu span {
    background-color: var(--primary);
}

header .menu ul li.sub .open-submenu { 
    width: 12px;
    top: -6px;
}

header .menu ul li.sub .open-submenu span,
header .menu ul li.sub .open-menu span {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    display: flex;
    position: absolute;
    top: 12px;
    transition: var(--transition);
}

header .menu ul li.sub .open-submenu span {
    width: 12px;
    height: 2px;
}

header .menu ul li.sub .open-submenu span:last-of-type,
header .menu ul li.sub .open-menu span:last-of-type {
    transform: rotate(90deg);
    transition: var(--transition);
}

header .menu ul li .subsub.active .open-submenu span,
header .menu ul li.sub.active .open-menu span {
    transform: none;
    background-color: var(--primary);
}

header .menu ul li ul li {
    color: #828181;
    padding-left: 20px;
}

header .menu ul li ul li:hover {
    color: var(--black);
}


@media(max-width: 992px) {

    header .upper .right-wrapper .form,
    header .upper .right-wrapper ul {
        display: none;
    }

}

@media(max-width: 768px) {

    header {
        height: 110px;
        transition: var(--transition);
    }

    header .upper.fixed,
    header .upper {
        padding: 0 15px;
        height: auto;
    }

    header .upper a.logo {
        padding: 21px 0 10px;
        z-index: 1;
        height: auto;
        width: 165px;
    }

    header .upper .logo img {
        width: 165px;
    }

    header .upper .right-wrapper{
        z-index: 999;
    }

/* 
    header.open .upper .right-wrapper {
        justify-content: flex-start;
    } */


    header .upper .right-wrapper .button {
        position: absolute;
        right: 0;
        width: 143px;
        padding: 18px 0px 18px;
    }

    header .upper .right-wrapper .button::before {
        border-top-right-radius: unset;
        border-bottom-right-radius: unset;
        top: 0px;
        bottom: 0px;
        right: 0px;
    }

    header .upper .right-wrapper .menu-toggle{
        display: block;
        height: 27px;
        margin-bottom: 9px;
        z-index: 999;
    }

    header .upper .right-wrapper .menu-toggle span:first-child {
        transform: translateY(0px);
    }

    header .upper .right-wrapper .menu-toggle span:nth-of-type(2) {
        transform: translateY(7px);
    }

    header .upper .right-wrapper .menu-toggle span:last-child {
        transform: translateY(14px);
    }


    header.open .menu {
        transform: translateX(0%);
        width: 100vw;
    }

    header .menu .menu-section {
        padding: 35px 30px;
    }

    header .menu .menu-section .menu-header {
        position: fixed;
        width: 100%;
        padding: 25px 25px;
        top: 0;
        left: 0;
        background: white;
        z-index: 1;
    }
    

    header .menu .menu-section>ul {
        margin-top: 50px;
    }

    header .menu .menu-section > ul h4 a {
        font-size: 1.2rem;
        max-width: 280px;
        display: block;
    }


    header .menu ul li.sub .open-submenu,
    header .menu ul li.sub .open-menu {
        top: 0; 
    }

    header .menu ul li.subsub.active > ul, header .menu ul li.sub.active > ul {
        margin-bottom: 0;
    }


    header .submenu-wrapper ul li a {
        padding: 7px 0px;
    }

    header .menu .menu-section > ul > li:first-of-type{
        border-top: 1px solid #f0f0f0;
    }


    header .menu .menu-section > ul > li{
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
    }
    
    header .menu .menu-section .submenu2-wrapper ul > li,
    header .menu .menu-section .submenu-wrapper ul > li{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
    }

    header .menu .menu-section > ul > li a{
        flex: 1;
    }

    header li.active > a,
    header .submenu-wrapper ul li:hover > a{
        color: var(--primary) !important;
    }
    header .submenu-wrapper ul li:hover{
        background: none !important;
    }

    header .menu .menu-section > ul > li .submenu2-wrapper,
    header .menu .menu-section > ul > li > .submenu-wrapper{
        position: relative;
        max-height: 0;
        overflow: hidden;
        max-width: 100%;
        min-width: 100%;
        opacity: 0;
        order: 3;
        background: none !important;
    }

    header .menu .menu-section > ul > li .submenu2-wrapper.open,
    header .menu .menu-section > ul > li > .submenu-wrapper.open {
        overflow: visible;
        opacity: 1;
        max-height: 100%;
        padding-bottom: 10px;
    }

    header .menu .menu-section > ul > li  .submenu-arrow {
        margin-left: 20px;
        height: 15px;
        width: 15px;
        position: relative;
        cursor: pointer;
        pointer-events: auto;
        z-index: 1;
        display: block;
    }

    header .menu .menu-section > ul > li .submenu-arrow::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-mask-image: url(/assets/img/svg/submenu-caret.svg);
        mask-image: url(/assets/img/svg/submenu-caret.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: var(--primary);
        transform: rotate(0deg);
    }

    header .menu .menu-section > ul li.active > .submenu-arrow:has( + .submenu2-wrapper.open)::before,
    header .menu .menu-section > ul > li.active > .submenu-wrapper.open + .submenu-arrow::before{
        transform: rotate(90deg);
    }

    header .submenu-wrapper ul li:has(.submenu2-wrapper) > a::before{
        content: none;
        display: none;
    }

}


/**********************************************/
/******************* FOOTER *******************/
/**********************************************/

/* 
.content.article.projects + footer,
.content:not(.contact-section, .article) + footer {
    margin-top: 150px;
} */


footer {
    background: #001a31;
    padding: 100px 130px 60px;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: normal;
    text-align: left;
    color: var(--white);
    z-index: 2;
    position: relative;
}

footer .upper{
    display: flex;
}

footer .upper > div:first-of-type{
    max-width: 415px;
    width: 100%;
    padding-right: 40px;
}

/* footer .upper > div:first-of-type p{
    max-width: 228px;
} */

footer .upper > div:first-of-type p:last-of-type{
    margin-bottom: 0;
}

footer .upper > div:nth-of-type(2){
    flex: 1;
}

footer .upper > div:last-of-type{
    text-align: right;
    display: flex;
    flex-direction: column;
}

footer .upper > div:last-of-type p{
    max-width: 220px;
}

footer .upper > div:last-of-type .button{
    padding: 17px 20px;
}

footer .upper > div:last-of-type > div:first-of-type{
    flex: 1;
}

footer .menus{
    display: flex;
    flex-direction: column;
}
footer .container > div:first-of-type a[href^="mailto:"],
footer .upper a:not(.button):hover,
footer .bottom > div span a:hover,
footer .menus a:hover{
    color: var(--primary-2);
}

footer .container > div:first-of-type a[href^="mailto:"]:hover{
    color: white;
}

footer .socials {
    display: flex;
    gap: 23px;
    justify-content: flex-end;
}

footer .socials i {
    font-size: 1.413rem;
}

footer .bottom{
    font-size: 14px;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    margin-top: 55px;
    padding-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


footer .bottom .credito{
    display: block;
    flex: 100%;
}

footer .bottom > div span{
    margin-right: 15px;
}

footer .bottom img{
    height: 33px;
}


.content:not(.contact-section) + footer {
    margin-top: 150px;
}

.content.product:has(:not(.related-products)) + footer{
    margin-top: 0;
}
.content.product:has(.related-products) + footer {
    margin-top: 150px;
}


@media(max-width: 992px) {

    .content:not(.contact-section) + footer {
        margin-top: 90px;
    }

    .content:not(.contact-section, .article) + footer {
        margin-top: 75px;
    }

    footer {
        padding: 60px 20px;
        /* margin-top: 75px; */
    }

    footer .upper,
    footer .bottom{
        flex-wrap: wrap;
        gap: 20px;
    }

    footer .upper > div:first-of-type{
        max-width: unset;
        padding-right: 0;
    }

    footer .upper > div:last-of-type{
        text-align: left;
        width: 100%;
        
    }

    footer .socials{
        margin-top: 40px;
        justify-content: center;
    }

    footer .bottom > div{
        width: 100%;
    }

    footer .bottom img{
        width: 100%;
        height: auto;
    }

    footer .bottom > div span{
        display: block;
        text-align: center;
    }

}







/**********************************************/
/************** HP BLOG SECTION ***************/
/**********************************************/
.related-section {
    position: relative;
    margin: auto;
    max-width: 1400px;
    padding: 0 40px;
    margin-top: 100px;
}

.blog-section.article .container-blog > a{
    width: 100%;
    position: relative;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: right;
    color:var(--primary-2);
    margin-bottom: 40px;
    max-width: 150px;
    margin-left: auto;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}


.blog-section.article .container-blog > a > span {
    display: inline-block;
    position: relative;
    width: 13px;
    height: 26px;
    -webkit-mask-image: url(/assets/img/svg/slider-arrow.svg);
    mask-image: url(/assets/img/svg/slider-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    margin-left: 20px;
    margin-block: -5px;
    transition: var(--transition);
    vertical-align: text-bottom;
}

.blog-section.article .container-blog {
    /* width: fit-content; */
    margin: auto;
}

.blog-section.article .container-blog .content-blog {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.blog-section.article .container-blog .content-blog .blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.blog-section.article .container-blog .content-blog .blog .img-blog a,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog a,
.blog-section.article .container-blog .content-blog .blog .img-blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog{
    padding-top: 0;
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 50px;
    aspect-ratio: 16/11;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.blog-section.article .container-blog .content-blog .blog img,
.blog-section .blog-container .blog-wrapper .blog-list .blog img {
    transition: var(--transition);
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.blog-section.article .container-blog .content-blog .blog .img-blog:hover a img,
.blog-section .blog-container .blog-wrapper .blog-list .blog .img-blog:hover a img {
    transform: scale(1.10);
}

.blog-section.article .container-blog .content-blog .blog .mid-content,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content{
    display: flex;
    margin-top: 18px;
    gap: 10px;
}


.blog-section.article .blog .date-blog,
.blog-section.article .blog .tag-blog,
.blog-section.article .blog-article-desc > div:last-of-type,
.blog-section.article .blog-article-desc > div:first-of-type,
.blog-section .blog-container .blog-wrapper .blog-list .blog .date-blog,
.blog-section .blog-container .blog-wrapper .blog-list .blog .tag-blog,
.blog-section .slider-blog-content .date-blog,
.blog-section .slider-blog-content .tag-blog {
    font-size: 0.688rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    line-height: 1;
    text-transform: uppercase;
    transition: var(--transition);
    color: var(--primary-2);
    margin: auto;
}

.blog-section .slider-blog-content .mid-content .date-blog {
    margin: 0;
}


.blog-section.article .container-blog .content-blog .blog .mid-content .tag-blog,
.blog-section.article .blog-page-title .blog-article-desc > div:last-of-type,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content .tag-blog {
    color: var(--primary);
}

.blog-section.article .container-blog .content-blog .blog .mid-content .tag-blog:hover,
.blog-section.article .blog-page-title .blog-article-desc > div:last-of-type:hover,
.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content .tag-blog:hover {
    opacity: 0.4;
}

.blog-section.article .container-blog .content-blog .blog > p,
.blog-section .blog-container .blog-wrapper .blog-list .blog > p{
    font-size: 1.75rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.12px;
    text-align: center;
    color: var(--primary);
    margin: 10px 0 auto 0;
    padding: 0;
}


.blog-section.article .container-blog .content-blog .blog > a.button,
.blog-section .blog-container .blog-wrapper .blog-list .blog > a.button {
    margin-top: 22px;
}

/*****************************************/
/****************  BLOG  *****************/
/*****************************************/

.blog-section {
    margin-top: 107px;
}

.blog-section .blog-container {
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
    margin-top: 109px;
}

.banner.no-img,
.blog-section .banner {
    padding: 90px 0 0 0;
}
.banner.no-img {
    margin-top: 109px;
}

.blog-section .banner .container {
    color: #c7c7c7;
    position: relative;
    
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.6px;
    text-align: center;
    padding: 0;
    margin: 0;
    left: unset;
    bottom: unset; 
    transform: none;
    max-width: 100%;
}

.contact-section .top-container.banner ul,
.blog-section .banner .container ul {
    color: var(--primary-2);
}


.blog-section .banner .blog-page-title {
    padding: 25px 0 0 0;
}
.blog-section .banner .blog-page-title .blog-article-desc {
    margin-top: 20px;
}

.blog-section .banner .blog-page-title h1 {
    font-size: 3.75rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.75px;
    text-align: center;
    color: var(--primary);
}


.blog-section .slider-blog-content > a {
    padding-top: 61%;
    min-height: 360px;
    overflow: hidden;
    position: relative;
    display: block;
}

.blog-section .blog-container .blog-wrapper .blog-list.items .blog .img-blog,
.blog-section .blog-container .blog-wrapper .blog-list.items .blog .img-blog a {
    aspect-ratio: 16/9.7;
}

.blog-section .blog-container .blog-wrapper .blog-list .blog img,
.blog-section .slider-blog-content > a img {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-section .blog-slider-container {
    position: relative;
    margin-top: 50px;
}


.blog-section .blog-slider-container .tns-slider {
    will-change: transform;
    transform: translateY(0);
}

.blog-section .blog-slider-container .blog-arrow-container  {
    position: absolute;
    display: flex;
    z-index: 1;
    left: 80px;
    top: 100px;
    justify-content: space-between;
    width: 100px;
    height: 61px;
}

.blog-section .blog-paging-container .page-arrow-left::before,
.blog-section .blog-paging-container .page-arrow-right::after,
.blog-section .blog-slider-container .blog-arrow-container span {
    content: "";
    position: relative;
    width: 31px;
    height: 61px;
    -webkit-mask-image: url(/assets/img/svg/slider-arrow.svg);
    mask-image: url(/assets/img/svg/slider-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--white);
    transition: var(--transition);
    top: 0;
    cursor: pointer;
    opacity: 1;
}

.blog-section .blog-slider-container .blog-arrow-container span:hover {
    opacity: 0.5;
}

.blog-section .blog-slider-container .blog-arrow-container span:first-of-type {
    /* margin-top: 58px; */
    transform: rotate(180deg);
}

.blog-section .slider-blog-content .mid-content {
    display: flex;
    gap: 10px;
}

.blog-section .slider-blog-content > a::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(56deg, rgba(9, 7, 18, 0.8) 12%, rgba(9, 7, 18, 0) 76%, rgba(9, 7, 18, 0) 100%);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.blog-section .slider-blog-content > .banner-details {
    position: absolute;
    bottom: 100px;
    max-width: 600px;
    margin-inline: 90px;
}

.blog-section .slider-blog-content > .banner-details .tag-blog {
    margin: 0;
}

.blog-section .slider-blog-content > .banner-details .banner-blog-title h2 {
    
    font-size: 3.75rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: left;
    color: var(--white);
    margin: 23px 0 30px 0;
}

.blog-section .slider-blog-content > .banner-details .button span {
    pointer-events: none;
    color: #241f20; 
}

.blog-section .slider-blog-content > .banner-details .button:hover span {
    color: var(--primary-2); 
}

.blog-section .blog-container .blog-wrapper {
    display: flex;
    margin-top: 100px;
    justify-content: space-between;
    gap: 80px;
}

.blog-section .blog-container .blog-wrapper {
    flex-direction: column-reverse;
}

.blog-section.projects .blog-container .blog-wrapper {
    flex-direction: row;
}

.blog-section .blog-container .blog-wrapper .blog-list {
    display: flex;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.blog-section.projects .blog-container .blog-wrapper .blog-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 100%;
    flex-wrap: nowrap;
}
/* 
.blog-section .blog-container .blog-wrapper .blog-list > div:last-of-type{
    margin-bottom: 100px;
} */

.blog-section .blog-container .blog-wrapper .blog-list .blog {
    max-width: calc(50% - 20px);
    width: 100%;
}

.blog-section.projects .blog-container .blog-wrapper .blog-list .blog {
    max-width: 810px;
}


.blog-section .blog-container .blog-wrapper .blog-list .blog .mid-content {
    margin-top: 25px;
}

.blog-section .blog-container .blog-wrapper .blog-list .blog > a {
   margin: 0 auto;
}

.blog-section .blog-container .blog-wrapper .blog-list .blog > a.button {
    margin-top: 34px;
    padding: 17px 30px;
    display: none;
}





.blog-section.projects .filter-container {
    width: 100%;
    max-width: 277px;
    padding-left: 30px;
    margin: 0;
    position: relative;
}

.blog-section .filter-container {
    max-width: 850px;
    margin: auto;  
    width: 100%;
}

.blog-section .filter-container > div:last-of-type {
    display: flex;
    background-color: var(--primary);
    border-radius: 100px;
    justify-content: space-around;
    align-items: center;
    padding: 30px 50px;
    position: relative;
}
.blog-section .filter-container > div:last-of-type > div {
    width:45%;
}
.blog-section.projects .filter-container > div:last-of-type > div {
    width:100%;
}

.blog-section.projects .filter-container > div:last-of-type {
    display: flex;
    background-color: white;
    border-radius: 0;
    justify-content: unset;
    align-items: unset;
    padding: 0;
    position: relative;
    flex-direction: column;
}

.blog-section .filter-container .apply-mobile {
    position: fixed;
    bottom:48px;
    width: 100vw;
    display: flex;
    transition: var(--transition);
    transform: translateY(100vh);
}


.blog-section .filter-container .filter-title {
    font-size: 1.406rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.96;
    letter-spacing: -0.56px;
    text-align: left;
    color: var(--primary);
    display: flex;
    flex-direction: column;
}

.blog-section .filter-container .filter-title p {
    display: none;
}

.blog-section .filter-container .filter-title span {
    text-align: center;
    display: none;
}

.blog-section .filter-container .input-wrapper {
    position: relative;
}

.contact-section.schedule .bottom-container .select-wrapper label,
.blog-section .filter-container .input-wrapper label {
    position: absolute;
    left: 0;
    top: 13px;
    transition: var(--transition);
    
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: var(--black-3);
    opacity: 1;
}

.contact-section.schedule .bottom-container .select-wrapper.filled label,
.blog-section .filter-container .input-wrapper.filled label {
    top: -5px;
    font-size: 0.7rem;
    opacity: 0.3;
}

/* .blog-section .custom-select.has-reset .placeholder > div.reset::before, 
.blog-section .custom-select.has-reset .placeholder > div.reset::after {
    background-color: var(--primary);
    opacity: 0.7;
} */

.blog-section  .custom-select {
    height: auto;
    padding: 0;
    background: initial;
    border: 0;
    border-radius: 0;
}

.blog-section .custom-select.has-reset .placeholder {
    /* border-bottom: 1px solid rgb(208, 209, 209, 0.5);
    cursor: pointer;
    color: var(--black) */
    border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 18px 0;
    padding-left: 32px;
    color: #7e7e7e;
    cursor: pointer;
    z-index: 3;
}

.blog-section:not(.projects) .custom-select.has-reset .placeholder {
    border: none;
}

.blog-section .custom-select.has-reset .placeholder,
.blog-section .blog-container .filter-container .filter-form .filter-input::placeholder {
    text-transform: capitalize;
    
    font-size: 15px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    
}
.blog-section .blog-container .filter-container .filter-form .filter-input::placeholder {
    color: var(--white);
}

.blog-section .custom-select.has-reset .placeholder {
    background-color: white;
}

.blog-section .custom-select.open .placeholder {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-section .custom-select.has-reset .options-wrapper {
    border-left: 2px solid #e3e3e2;
    border-right: 2px solid #e3e3e2;
    border-bottom: 2px solid #e3e3e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 0px;
    top: 57px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
    font-size: 15px;
}

.blog-section:not(.projects) .custom-select.has-reset .options-wrapper {
    border: none;
}

.blog-section  .custom-select.has-reset .placeholder > div.reset {
    width: 7px;
    height: 20px;
    right: 20px;
    top: 0;
    overflow: visible;
}

.blog-section  .custom-select.has-reset .placeholder > div.reset::before, 
.blog-section  .custom-select.has-reset .placeholder > div.reset::after {
    width: 8px;
    bottom: auto;
    height: 1px;
    transition: all .2s ease-in-out;
    background-color: #a5ae01;
}

.blog-section  .custom-select.has-reset .placeholder > div.reset::before {
    border-radius: 1px;
    transform-origin: 50%;
    left: -2px;
    transform: translateX(-25%) rotate(45deg) scaleX(0.9);
    top: 9px;
}

.blog-section  .custom-select.has-reset .placeholder > div.reset::after {
    border-radius: 1px;
    transform-origin: 50%;
    transform: translateX(25%) rotate(-45deg) scaleX(0.9);
    top: 9px;
}


.blog-section  .custom-select.has-reset.isSelected .placeholder > div.reset::before {
    transform: translateX(1px) rotate(45deg) scaleX(1.4);
    background-color: #ffffff;
}

.blog-section .custom-select.has-reset.isSelected .placeholder > div.reset::after {
    transform: translateX(0) rotate(-45deg) scaleX(1.4);
    background-color: #ffffff;
}

.blog-section .custom-select.has-reset.isSelected .placeholder > div.reset {
    height: 22px;
}

.blog-section .custom-select.has-reset.isSelected .placeholder > div.reset::after,
.blog-section  .custom-select.has-reset.isSelected .placeholder > div.reset::before {
    height: 2px;
    width: 9px;
}

.blog-section  .custom-select .options {
    padding: 0;
    overflow: auto;
}

.blog-section .custom-select.open .options-wrapper, 
.blog-section .custom-select.open .options {
    max-height: 250px;
    opacity: 1;
}

.blog-section .custom-select.isSelected .placeholder {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: #ffffff !important;
    pointer-events: none;
}

.blog-section .clear-btn {
    
    font-size: 0.688rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    color: #c4c3c3;
    margin-top: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    right: 70px;
    bottom: 10px;
}

.blog-section .clear-btn::before {
    content: "\00D7";
    font-size: 1rem;
    padding-right: 9px;
}

.blog-section .blog-container .filter-container .filter-form {
    margin-top: 0;
    position: relative;
}

.blog-section .blog-container .filter-container .filter-form .filter-input {
    padding-top: 27px;
    padding-bottom: 26.5px;
    padding-left: 26px;
    background-color: var(--primary);
    border: none;
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    text-align: left;
    color: var(--white);
    outline: none;
    border-radius: 100px;
    max-height: 60px;
    position: relative;

}


.blog-section:not(.projects) .blog-container .filter-container .filter-form .filter-input {
    background-color: var(--white);
    color: var(--primary);
}

.blog-section .blog-container .filter-container .filter-form span{
    right: 21px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.blog-section .blog-container .filter-container .filter-form span::after{
    content: "";
    margin: auto;
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-mask-image: url(/assets/img/svg/lupe.svg);
    mask-image: url(/assets/img/svg/lupe.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--white);
    transition: var(--transition); 
}

.blog-section:not(.projects) .blog-container .filter-container .filter-form span::after{
    background-color: var(--primary);
}

.blog-section:not(.projects) .blog-container .filter-container .filter-form .filter-input::placeholder{
    color: #7e7e7e;
    font-size: 15px;
}



.blog-section .paging_footer {
    width: 100%;
    display: block;
}

.blog-section .blog-paging-container .pages {
    padding-top: 20px;
    display: flex;
    
    font-size: 1.125rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 3.42px;
    font-style: normal;
    color: #b0aeae;
    gap: 40px;
    justify-content:center;
    align-items: baseline;
    line-height: 1;
    opacity: 1;
}

.blog-section .blog-paging-container .pages span.inactive {
    opacity: 0.3;
    pointer-events: none;
    cursor: auto;
}

.blog-section .blog-paging-container .pages a.active-page {
    color: var(--primary);
}

.blog-section .blog-paging-container .pages a.ordempag:hover{
    color: var(--primary);
    border: none;
    transition: var(--transition);
}

.blog-section .blog-paging-container .page-arrow-left,
.blog-section .blog-paging-container .page-arrow-right {
    position: relative;
    height: 20px;
    width: 13px;
}

.blog-section .blog-paging-container .page-arrow-left::before,
.blog-section .blog-paging-container .page-arrow-right::after{
    background-color: var(--primary);
    height: 26px;
    width: 13px;
    position: absolute;
}

.blog-section .blog-paging-container .page-arrow-left::before {
    transform: rotate(180deg);
}

.blog-section .filter-container .category-selected-container {
    margin-bottom: 20px;
}


@media(max-width: 768px) {

    .blog-section {
        margin-top: 74px;
    }

    .blog-section .blog-container {
        margin-top: 74px;
        padding: 0;
    }

    .blog-section .banner {
        padding: 50px 20px 0;
        margin: 0;
    }

    .blog-section .banner .blog-page-title h1 {
        font-size: 2.375rem;
    }

    .blog-section .filter-container {
        width: 100%;
        max-width: unset;
        position: fixed;
        bottom: -100vh;
        background: white;
        padding: 0px 50px;
        max-height: 100vh;
        box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 1);
        z-index: 5;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        padding: 50px 50px;
        height: 100%;
    }

    .blog-section.projects .filter-container{
        max-width: 100%;
        left: 0;
        box-shadow: none;
    }

    .blog-section .filter-container.open {
        bottom: 0;
    }
    .blog-section .filter-container > div:last-of-type {
        overflow: hidden;
        max-height: 0;
    }

    .blog-section .filter-container.open > div:last-of-type {
        overflow: hidden;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: start;
        border-radius: 0;
        padding: 0;
        align-items: start;
        justify-content: start;
        background-color: white;
    }

    .blog-section .filter-container .filter-title {
        position: relative;
    }

    .blog-section .filter-container.open .filter-title {
        padding-top: 100px;   
    }

    .blog-section .filter-container .filter-title .mobile-title {
        overflow: hidden;
        position: fixed;
        background-color: var(--primary);
        margin: auto;
        z-index: 1;
        height: 50px;
        width: 50px;
        right: 20px;
        bottom: 20px;
        border-radius: 100px;
        box-shadow: inset 0px 7px 5px -7px rgb(50 50 50 / 75%);
        opacity: 1;
    }

    .blog-section .filter-container .filter-title .mobile-title::after {
        content: "";
        margin: auto;
        position: absolute;
        width: 30px;
        height: 23px;
        -webkit-mask-image: url(/assets/img/svg/filter-icon.svg);
        mask-image: url(/assets/img/svg/filter-icon.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        background-color: var(--white);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .blog-section .filter-container.open .filter-title .mobile-title::after {
        -webkit-mask-image: url(/assets/img/svg/x.svg);
        mask-image: url(/assets/img/svg/x.svg);
        width: 25px;
        height: 23px;
    }

    .blog-section .filter-container.open .filter-title .mobile-title {
        z-index: 0;
        top: 90px;
        bottom: unset;
    }

    .blog-section .filter-container.open .apply-mobile {
        position: fixed;
        bottom: 0;
        width: 100vw;
        max-height: 53px;
        background-color: var(--primary);
        z-index: 10000000000;
        padding-block: 12px;
        display: flex;
        left: 0;
        justify-content: center;
        transform: translateX(0);
    }

    .blog-section .filter-container.open .apply-mobile span {
        width: 100%;
        text-align: center;
        font-size: 1.225rem;
        
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        color: var(--white);
    }


    .blog-section .filter-container .filter-title p {
        overflow: hidden;
        max-height: 0;
    }

    .blog-section .filter-container.open .filter-title p {
        max-height: 50px;
    }
    

    .blog-section .blog-container .blog-wrapper {
        display: flex;
        margin-top: 50px;
        justify-content: space-between;
        flex-direction: column-reverse;
        padding: 0 20px;
        align-items: center;
    }

    .blog-section .blog-container .filter-container .filter-form {
        margin-top: 30px;
        margin-bottom: 30px;
        position: relative;
        order: 1;
        width: 100%;
    }

    .blog-section .blog-container .filter-container .category-selected-container {
        order: 2;
        width: 100%;
    }

    .blog-section .blog-container .filter-container .archive-selected-container {
        order: 3;
        width: 100%;
    }

    .blog-section .filter-container .filter-title span {
        display: block;
        padding-bottom: 20px;
    }

    .blog-section .clear-btn {
        margin-top: 0px;
    }

    .blog-section .blog-slide {
        display: flex;
    }

    .blog-section .blog-slider-container .blog-arrow-container {
        left: 20px;
        top: unset;
        bottom: 320px;
        width: 76px;
        height: 47px;
    }

    .blog-section .blog-slider-container .blog-arrow-container span:first-of-type {
        margin: 0;
        left: 0;
    }



    .blog-section .slider-blog-content {
        position: relative;
        display: inline-flex !important;
        flex-direction: column;
    }

    .blog-section .slider-blog-content > .banner-details {
        position: relative;
        top: unset;
        max-width: 100%;
        background: var(--black);
        margin: 0;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 20px;
        width: 100%;
        bottom: 0;
    }

    .blog-section .slider-blog-content .mid-content {
        margin-top: 20px;
    }


    .blog-section .slider-blog-content > .banner-details .banner-blog-title h2 {
        
        font-size: 1.875rem;
        margin: 23px 0 50px;
        line-height: 1.15;
    }

    .blog-section .slider-blog-content > a {
        padding-top: 100%;
        min-height: 360px;
    }

    .blog-section .blog-slider-container .blog-arrow-container span {
        width: 23px;
        height: 45px;
    }

    .blog-section .blog-container .blog-wrapper .blog-list > div:last-of-type {
        margin-bottom: 70px;
    }

    .blog-section .blog-container .blog-wrapper .blog-list {
        gap: 60px;
    }

    .blog-section .blog-paging-container .pages {
        padding-top: 10px;
    }

    .blog-section .blog-container .blog-wrapper .blog-list .blog {
        max-width: 100%;
    }

    .banner.no-img .container h1, .blog-section .banner .blog-page-title {
        padding: 0;
    }
    .blog-section.projects .blog-container .blog-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .blog-section.projects .blog-container .blog-wrapper .blog-list {
        gap: 50px;
    }

    .blog-section:not(.projects) .blog-container .filter-container .filter-form .filter-input,
    .blog-section:not(.projects) .custom-select.has-reset .placeholder {
        border: 1px solid var(--primary);
    }
}

.blog-section.article .related-section {
    margin-bottom: 50px;
    max-width: 1220px;
}



.blog-section.article .related-section {
    margin-top: 100px;
}

.blog-section.article .container-blog .content-blog .blog .mid-content {
    margin-top: 20px;
}

.blog-section.article .container-blog .content-blog .blog > p {
    margin-top: 25px;
}

.blog-section.article .container-blog h2 {
    
    font-size: 2rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.7px;
    text-align: center;
    color: var(--primary);
}

.blog-section.article .container-blog .content-blog {
    margin-top: 75px;
}


@media(max-width: 768px) {


    .blog-section.article {
        margin: 0;
    }

    .blog-section.article .blog-container {
        max-width: 1250px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 20px;
    }

    .blog-section.article  .banner .blog-page-title h1 {
        font-size: 2.5rem;
    }

    .blog-section.article .blog-page-title {
        justify-content: space-between;
        padding: 10px 0 15px 0;
        flex-direction: column;
    }

    .blog-section.article .blog-page-title .blog-article-desc {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 25px;
    }

    .pagination {
        margin: 70px auto 0;
        padding: 30px 15px;
    }

    .pagination ul li {
        font-size: 1rem;
    }

    .pagination ul li.prev::before {
        left: -10px;
    }

    .pagination ul li.next::after {
        right: -10px;
    }

    .blog-section.article .related-section {
        padding: 0;
        margin: 70px 0;
    }

    .blog-section.article .container-blog .content-blog {
        flex-direction: column;
    }

    .blog-section.article .container-blog h2 {
        margin-top: 70px;
        font-size: 1.75rem;
    }
    
    .blog-section.article .container-blog .content-blog {
        margin-top: 50px;
    }
}

.blog-section.article.news .banner .container {
    text-align: center;
    padding: 0;
    margin: auto;
}

.blog-section.article.news .blog-page-title {
    justify-content: center;
    padding: 10px 0 60px 0;
}

.blog-section.article.news .container-blog .content-blog {
    margin-top: 0;
}

.blog-section.article.news  .container-blog .content-blog .blog .date-blog::after {
    content: "";
}


.blog-section .blog-container .blog-wrapper .blog-list .blog > p,
.blog-section.article.news .container-blog .content-blog .blog > p{
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.33;
}

.blog-section .blog-container .blog-wrapper .blog-list .blog > p {
    font-size: 1.75em;
    margin-top: 15px;
    font-weight: bold;
}

.blog-section .blog-container .blog-wrapper .blog-list .blog > p a:hover {
    opacity: 0.5;
}


.blog-section.article .container-blog .content-blog .blog > a > p {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.33;
    text-align: left;
    color: var(--primary);
    text-align: center;
    margin-top: 10px;
}

.blog-section.article.news .container-blog .content-blog .blog > p,
.blog-section.article.news .container-blog .content-blog .blog {
    align-items: start;
    text-align: left;

}

.blog-section.article.news .related-section {
    padding: 0;
    margin-bottom: 100px;
    padding: 0 20px;
}

.blog-section.article .related-section {
    padding: 0 20px;
    max-width: 1240px;
}

.blog-section.article .container-blog .content-blog {
    gap: 60px;
}

.blog-section.article .related-section .img-blog {
    padding-top: 60.75%;
    overflow: hidden;
    position: relative;
    display: block;
}

.blog-section.article .related-section .img-blog img {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.blog-section.article.news .container-blog .content-blog {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.blog-section.article.news .container-blog .content-blog .blog {
    max-width: 570px;
    margin-bottom: 60px;
}


.blog-section.article.news .paging_footer{
    margin-bottom: 150px;
    width: 100%;
}

.blog-section.article.news .pagination-wrapper {
    max-width: 890px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.blog-section.article.news .pagination-wrapper .pagination {
    background-color: var(--white);
    border-top: 2px solid #e6e6e8;
    padding: 55px 20px;
    width: 100%;
}

.blog-section.article.news  .pagination ul li {
    color: var(--primary);
}

.blog-section.article.news  .pagination ul li.prev::before {
    background-color: var(--primary);
}

.blog-section.article.news  .pagination ul li.next::after {
    background-color: var(--primary);
}

.blog-section.article .article-img-wrapper {
    max-width: 850px;
    position: relative;
    width: 100%;
    margin: auto;
}

.blog-section.article .banner > .blog-article-desc {
    margin: -10px 0 45px 0;
}

@media(max-width: 1200px) {
    .blog-section.article.news .container-blog .content-blog {
        justify-content: center;
    }
}

@media (max-width: 768px){

    .blog-section.article .blog-container {
        margin: 74px 0 0 0;
    }

    .blog-section.article.news .banner .blog-page-title h1 {
        text-align: center;
    }
    .blog-section.article.news .paging_footer {
        margin-bottom: 70px;
    }
    .blog-section.article.news .related-section {
        margin-bottom: 70px;
    }

    .blog-section.article.news .pagination-wrapper .pagination {
        padding: 30px 10px;
    }

    .blog-section.article.news .pagination-wrapper {
        margin: 0 auto 70px;
    }

    .pagination ul {
        align-items: center;
    }

}




/********************************************/
/****************  CONTACTS  ****************/
/********************************************/

.content.contact-section .banner h1 {
    font-size: 3.75rem;
}

.content.contact-section .template.contact{
    background: none;
    padding-block: 90px;
}

.content.contact-section .banner .container{
    max-width: 1240px;
}


.content.contact-section .template.contact .container{
    max-width: 1240px;
}

.content.contact-section .template.contact .container > .contact-left{
    max-width: 806px;
    margin-bottom: 40px;
}

.content.contact-section .contact-left > .box-address{
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
}

.content.contact-section .contact-left > .box-address img{
    max-width: 100%;
}

.content.contact-section .contact-left > .box-address > div{
    padding: 41px 47px;
    text-align: left;
    font-family: var(--font-family);
}

.content.contact-section .contact-left > .box-address h2{
    font-size: 34px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.94;
    letter-spacing: -0.34px;
    color: var(--primary);
    margin-bottom: 45px;
}

.content.contact-section .contact-left > .box-address p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    color: var(--black);
    padding-left: 25px;
    position: relative;
    margin: 0;
    margin-bottom: 1rem;
}

.content.contact-section .contact-left > .box-address p small{
    font-size: 14px;
}

.content.contact-section .contact-left > .box-address > div > div p > a{
    color: var(--black);
}

.content.contact-section .contact-left > .box-address > div > div p > small{
    font-size: 14px;
    font-weight: 300;
    color: #939393;
}


.content.contact-section .contact-left > .box-address > div > div p > a:hover{
    opacity: .5;
}

.content.contact-section .contact-left > .box-address > div > div p > small a{
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.content.contact-section .contact-left > .box-address > div > div p > small a:hover{
    border-bottom: 1px solid currentColor;
}



@media(min-width:768px){

   

    .content.contact-section .contact-left > .box-address > div > div{
        display: flex;
        gap: 105px;
    }
    .content.contact-section .contact-left > .box-address > div > div > *{
        width: 50%;
    }
}

@media(min-width:992px){

    .content.contact-section .template.contact .container{
        display: flex;
        gap: 40px;
        align-items: start;
    }

}

.content.contact-section .contact-left > .box-address > div > div > p::before{
    content: "";
    width: 16px;
    height: 20px;
    -webkit-mask-image: url(/assets/img/svg/location.svg);
    mask-image: url(/assets/img/svg/location.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -16px;
    top: 0;
}

.content.contact-section .box-teams .team p::before{
    content: "";
    width: 17px;
    height: 20px;
    -webkit-mask-image: url(/assets/img/svg/user.svg);
    mask-image: url(/assets/img/svg/user.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -16px;
    top: 0;
}

.content.contact-section .contact-left > .box-address p:has(a[href^="tel"])::before,
.content.contact-section .box-teams .team p:has(a[href^="tel"])::before{
    content: "";
    width: 20px;
    height: 20px;
    -webkit-mask-image: url(/assets/img/svg/phone.svg);
    mask-image: url(/assets/img/svg/phone.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -20px;
    top: 0;
}

.content.contact-section .contact-left > .box-address p:has(a[href^="fax"])::before{
    content: "";
    width: 21px;
    height: 18px;
    -webkit-mask-image: url(/assets/img/svg/fax.svg);
    mask-image: url(/assets/img/svg/fax.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -21px;
    top: 0;
}

.content.contact-section .contact-left > .box-address p:has(a[href^="mailto"])::before,
.content.contact-section .box-teams .team p:has(a[href^="mailto"])::before{
    content: "";
    width: 20px;
    height: 15px;
    -webkit-mask-image: url(/assets/img/svg/email.svg);
    mask-image: url(/assets/img/svg/email.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -20px;
    top: 5px;
}



.content.contact-section .box-teams{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.content.contact-section .box-teams .team{
    border-radius: 30px;
    box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.07);
    padding: 50px 40px 40px;
    text-align: center;
    flex: 1 1 100%; 
    max-width: 100%; 
    box-sizing: border-box; 

}

@media(min-width:768px){
    .content.contact-section .box-teams .team{
        flex: 1 1 50%; 
        max-width: calc(50% - 20px); 
        box-sizing: border-box; 
    
    } 
}

.content.contact-section .box-teams .team img{
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.content.contact-section .box-teams .team p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    color: var(--black);
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}

.content.contact-section .box-teams .team p > small{
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.content.contact-section .box-teams .team p a{
    color: var(--black);
}

.content.contact-section .box-teams .team p a + small{
    font-size: 14px;
    font-weight: 300;
    color: #939393;
    line-height: 1.43;
    margin-top: 0;
}

.content.contact-section .box-teams .team p a:hover{
    opacity: .8;
}

.content.contact-section .box-teams .team p:has(a[href^="tel"])::before{
    content: "";
    width: 20px;
    height: 20px;
    -webkit-mask-image: url(/assets/img/svg/phone.svg);
    mask-image: url(/assets/img/svg/phone.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -20px;
    top: 0;
}



.contact-section .form{
    padding: 50px 40px;
    background-color: var(--primary-2);
    border-radius: 30px;
    max-width: 354px;
    width: 100%;
}

.content.contact-section .template.contact .form h2,
.content.contact-section .template.contact .form .h2{
    color: white;
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.33;
  letter-spacing: normal;
}

.content.contact-section .template.contact .form .row > div{
    padding-top: 3px;
}

.content.contact-section .template.contact .form input,
.content.contact-section .template.contact .form textarea{
    border: solid 1px rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.25);
    padding: 20px 30px;
    color: white;
    font-size: 14px;
}

.content.contact-section .template.contact .form .input-wrapper label{
    color: white;
}

.content.contact-section .template.contact .form .input-wrapper input:focus + label,
.content.contact-section .template.contact .form .input-wrapper input[placeholder] + label,
.content.contact-section .template.contact .form .input-wrapper textarea:focus + label,
.content.contact-section .template.contact .form .input-wrapper textarea[placeholder] + label,
.content.contact-section .template.contact .form .input-wrapper.filled label {
    padding: 5px;
    background-color: transparent;
    font-size: 11px;
    color: white;
    transform: translateY(0px);
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 95, 181, 1) 43%, rgba(255, 255, 255, 0) 51%);
}

.content.contact-section .template .form input[type='checkbox'] + label,
.content.contact-section .template .form input[type='radio'] + label{
    border: solid 1px rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.25);
    width: 24px;
    height: 24px;
}

.content.contact-section .template .form input[type='checkbox'] + label::before{
    width: 6px;
    height: 11px;
    top:-4px
}

.content.contact-section .template .form input[type='checkbox'] + label + label,
.content.contact-section .template .form input[type='checkbox'] + label + label a{
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.content.contact-section .template .form input[type='checkbox'] + label + label a:hover{
    opacity: .7;
}

.content.contact-section .template.contact .form .button::before{
    background-color: white;
}

.content.contact-section .button{
    color:var(--primary-2);
    width: 100%;
}

.content.contact-section .button + span{
    font-size: 12px;
    font-weight: 300;
    color: white;
    opacity: .45;
}

.content.contact-section .template.contact .form .row .bot-container {
    gap: 20px;
}

/* .content.contact-section .template.contact .form input.not-filled,
.content.contact-section .template.contact .form textarea.not-filled,
.content.contact-section .template.contact .form select.not-filled + .custom-select .placeholder {
	border: 2px solid #ffffff;
}
*/
.content.contact-section .template.contact .form input.not-filled,
.content.contact-section .template.contact .form textarea.not-filled,
.content.contact-section .template.contact .form select.not-filled + .custom-select .placeholder,
.content.contact-section .template .form input[type='checkbox'].not-filled + label{
    border: 1px solid var(--warning)
}
.content.contact-section .template .form .warning{
    color: white;
} 



/* 



.contact-section {
    margin-top: 107px;
}

.contact-section .top-container {
    background-color: #fdfcfa;
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 645px;
    margin: 0;
    padding: 0;
}

.contact-section .top-container .contact-info {
    margin: 0 auto;
    padding: 0 20px
}


.contact-section .top-container .map-container {
    padding: 0;
    margin: 0;
    max-width: 60%;
    position: relative;
    width: 100%;
}

#map {
    height: 700px;
    width: 100%;
}

.contact-section .top-container.banner .contact-info {
    min-height: 700px;
    position: relative;
    max-width: 350px;
    width: 100%;
}

.contact-section .top-container.banner .container {
    position: relative;
    margin: 85px 0 0 0;
    padding: 0;
}


.contact-section .address p {
    
    letter-spacing: normal;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #626262;
}

.contact-section .address p small {
    font-size: 12px;
}

.contact-section .address p a {
    transition: var(--transition);
    color: var(--primary-2);
    font-weight: bold;
}



.contact-section .address p a:hover {
    opacity: 0.5;
}

.contact-section .address p b,
.contact-section .address p strong {
    color: #1a1a1a;
    font-weight: normal;
} */



.contact-section .contact-page-title {
    padding: 10px 0 50px 0;
}


.content .template.contact {
	background-color: #fcfcfc;
}

.content .template.contact .container{
    max-width: 1020px;
}

.content .template.contact .form h2,
.content .template.contact .form .h2 {
    font-size: 2.25rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1.44px;
    text-transform: none;
    text-align: center;
    font-weight: 300;
    margin-bottom: 45px;
    
}

.content .template.contact .form input {
	
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.28px;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
	background-color: rgba(255, 255, 255, 0);
	color: #001a31;
	border: 1px solid #8dbf41;
}

.content .template:not(.orcamentos) .template.contact .form input {
	background-color: #fafafa;
}


.content .template.orcamentos .template.contact .form .custom-select .options-wrapper,
.content .template.orcamentos .template.contact .form .input-wrapper.filled label,
.content .template.orcamentos .template.contact .form input[type='checkbox'] + label, 
.content .template.orcamentos .template.contact .form input[type='radio'] + label {
	background-color: #ffffff;
}


.content .template .form input:-webkit-autofill,
.content .template .form input:-webkit-autofill:hover, 
.content .template .form input:-webkit-autofill:focus, 
.content .template .form input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

.content .template.contact .form .input-wrapper label {
	color: #001a31;
	left: 32px;
	top: 3px;
	z-index: 1;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.28px;
    text-align: left;
}

.content .template.contact .form .input-wrapper.select-wrapper label {
	z-index: 3;
}

.content .template.contact .form .input-wrapper input:focus + label, 
.content .template.contact .form .input-wrapper input[placeholder] + label, 
.content .template.contact .form .input-wrapper textarea:focus + label, 
.content .template.contact .form .input-wrapper textarea[placeholder] + label, 
.content .template.contact .form .input-wrapper.filled label {
	padding: 5px;
	background-color: #ffffff;
	
	font-size: 11px;
	color: #767575;
	transform: translateY(-4px);
	z-index: 1;
}

.content .template.contact .form .input-wrapper .custom-select.isSelected .placeholder {
	background-color: rgba(255, 255, 255, 0);
	/* border-color: #d0d1d1; */
	color: #7e7e7e;
}

.content .template.contact .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::before, 
.content .template.contact .form .input-wrapper .custom-select.has-reset.isSelected .placeholder > div.reset::after {
	background-color: #7e7e7e;
}

.content .template.contact .form .custom-select .placeholder,
.content .template.contact .form select.custom-select {
	border: 1px solid #d1d946;
    border-radius: 30px;
	padding: 21px 0;
	padding-left: 32px;
	
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0.28px;
	color: #7e7e7e;
	z-index: 3;
    cursor: pointer;
}

.content .template.contact .form .custom-select .placeholder::before {
	width: 7px;
    height: 7px;
	right: 32px;
}


.content .template.contact .form .custom-select .options-wrapper {
	border-left: 1px solid #d1d946;
    border-right: 1px solid #d1d946;
    border-bottom: 1px solid #d1d946;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    /* padding-top: 20px; */
	margin-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    /* margin-top: -3px; */
	background-color: #ffffff;
}

.content .template.contact .form .custom-select.open .placeholder {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content .template.contact .form .custom-select .options-wrapper .options > div {
	
	font-size: 1rem;
	font-weight: normal;
	letter-spacing: 0.28px;
	color: #7e7e7e;
	padding-left: 0;
	transition: var(--transition);
}

.content .template.contact .form .custom-select .options-wrapper .options > div:hover {
	color: var(--primary);
}

.content .template.contact .form textarea {
	
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #001a31;
	border: 1px solid #8dbf41;
    border-radius: 20px;
    padding-inline: 32px;
}

.content .template.contact .form input.not-filled,
.content .template.contact .form textarea.not-filled,
.content .template.contact .form select.not-filled + .custom-select .placeholder {
	border: 2px solid var(--warning);
}

.content .template.contact .form select.not-filled + .custom-select.open .placeholder {
	border-bottom: 0;
}

.content .template.contact .form select.not-filled + .custom-select .options-wrapper {
	border-left: 2px solid var(--warning);
	border-bottom: 2px solid var(--warning);
	border-right: 2px solid var(--warning);
}

.content .template .form .warning {
	padding-left: 25px;
}

.content .template .form .warning::before {
	content: initial;
}

.content .template .form .checkbox-wrapper {
	align-items: center;
}

.content .template .form input[type='checkbox'] + label, 
.content .template .form input[type='radio'] + label {
	border: 1px solid #8dbf41;
	width: 20px;
	height: 20px;
    border-radius: 5px;
}

.content .template.has-sidebar .form input[type='checkbox'] + label,
.content .template.has-sidebar .form input[type='radio'] + label {
	background-color: rgba(255, 255, 255, 0);
}

.content .template .form input[type='checkbox'] + label::before {
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.content .template.contact .form label a {
	color: #8dbf41;
	border-bottom: 0;
    transition: var(--transition);
    font-weight: 600;
}

.content .template.contact .form label a:hover {
	color: var(--black);
}

.content .template .form input[type='checkbox'] + label + label, 
.content .template .form input[type='radio'] + label + label {
	
	font-size: 14px;
	font-weight: 300;
	letter-spacing: normal;
	text-align: left;
	color: #001a31;
    margin: 0;
}


/* .content.contact-us .template.contact .form .button {
	padding: 21px 65px;
} */

.content .template.contact .form .button::before {
	border-radius: 30px;
    background-color: #005fb5;
}

.content.shop.product .template.contact .form p.h2 {
    margin-bottom: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    color: var(--black);
}

.content.shop.product .template.contact .form  p.text-center {
    font-size: 1.375rem;
    color: #626262;
    line-height: 1.75;
	margin-bottom: 50px;
}

.content .template.contact .form .row .bot-container > div > span {
	
	margin-bottom: 25px;
	font-size: 11px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.22px;
	text-align: left;
	color: #aaa9a9;
}

.content .template.contact .form .row > div.lower.end {
	justify-content: end;
	align-items: center;
}

.content .template.contact .form .row .bot-container {
    display: flex;
	flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
	align-items: center;
	gap: 40px;
}

.content .template.contact:last-of-type {
    margin: 0;
}

.content .template.contact {
    margin: 0;
    padding-bottom: 60px;
    padding-top: 50px;
}

.content .template.contact.newsletter {
    background-color: white;
    padding-top: 22px;
}

.content .template.contact.newsletter .container {
    max-width: 540px;
}

.content .template.contact.newsletter .container > p {
    margin-bottom: 60px;
}


.content .template.contact.newsletter .form .row .bot-container {
    gap: 40px;
}

.content.contact-section .button {
    padding: 20.5px 56px;
}


@media(min-width: 375px) {
	.content .product-page .slider .slide img {
		height: 335px;
	}
}


@media (min-width: 768px) {
	.content .product-page .banner ul,
	.content .product-page .banner h1 + span,
	.content .product-page .banner h2 {
		font-size: 14px;
	}

	.content .product-page .product-details .button {
		padding: 14px 30px;
		font-size: 14px;
	}

	.content .template.contact .form .row {
		margin: 0 -13px;
        gap: 0;
	}

	.content .template.contact .form .row > div {
		padding: 15px 13px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(even) {
		padding-right: 15px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(odd) {
		padding-left: 15px;
	}

	.content .template.contact .form .row > div.lower.end {
		justify-content: end;
	}

	.content .template.contact .form p.h2 + .row {
		margin-top: 55px;
	}

}

@media (min-width: 992px) {

	.content .product-page .product-details + .template-module {
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.content .product-page .product-details + .template-module ~ .template-module {
		margin: 50px 0;
	}

	.content .product-page .slider .slide img {
		height: 451px;
	}

	.content .template.contact .form .row > div {
		padding: 9px 13px;
        width: 100%;
        max-width: 100%;
	}

	.content .template.contact .form .row .bot-container {
		display: flex;
		justify-content: space-between;
		margin-top: 13px;
		align-items: center;
	}

	.content .template.contact .form .row .bot-container > div:first-of-type {
		margin-right: auto;
	}


	.content .template.contact .form .row > div.lower {
		padding-top: 35px;
		padding-bottom: 31px;
	}

	.content .template.contact {
        margin: 0;
		padding-bottom: 100px;
        padding-top: 100px;
	}

	.content.product .template .listing:last-child {
		margin-top: 55px;
	}

}

@media (min-width: 1200px) {
	
	.content .product-page .banner h1 {
		font-size: 48px;
		margin-top: 10px;
		font-weight: normal;
		letter-spacing: -2.4px;
	}

	.content .product-page .product-details .button {
		padding: 19px 53px;
	}

	.content .product-page .product-details .button::before {
		border-radius: 30px;
	}

	.content .product-page .slider .slide img {
		height: 559px;
	}


}



@media (max-width: 992px){
    .content .template.contact .form .input-wrapper label {
        top: -9px;
    }
}

@media (max-width: 768px){

    .contact-section .top-container.banner .container {
        margin: 10px 0 0 0;
    }

    .contact-section .top-container {
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-section .address p {
        font-size: 1rem;
    }

    .contact-section .top-container.banner .contact-info {
        margin-bottom: 60px;
        /* max-width: 100%; */
        min-height: unset;
    }

    .contact-section .top-container .map-container {
        max-width: 100%;
    }

    .contact-section .top-container .map-container img {
        position: relative;
    }

    #map {
        height: 400px;
    }
    .content .template.contact.newsletter {
        padding-top: 0px;
    }

    .content .template.contact.newsletter .container > p {
        margin-bottom: 30px;
    }

    .content .template.contact.newsletter .form .button {
        padding: 20px 30px;
    }


  
}


html.lock .atss {
    z-index: 1;
}

/* .content .template:last-of-type {
    margin-bottom: 120px;
} */

@media (max-width: 768px){
    .content .template:last-of-type {
        margin-bottom: 60px;
    }
}


/************************************/
/******** HAND BACKGROUND ***********/
/************************************/

.logo-background {
    width: 460px;
    right: -100px;
    position: absolute;
    top: 1090px;
    height: 696px;
    pointer-events: none;
}

.logo-background::before {
    content: "";
    position: absolute;
    width: 780px;
    height: 274px;
    -webkit-mask-image: url("/assets/img/svg/bottom-hand.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("/assets/img/svg/bottom-hand.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
    background-color: var(--primary);
    top: 230px;right: 0;
    opacity: 0.05;
    transform: rotate(60deg) scaleX(-1);
}

.logo-background::after {
    content: "";
    position: absolute;
    width: 780px;
    height: 274px;
    -webkit-mask-image: url("/assets/img/svg/top-hand.svg");
    -webkit-mask-repeat: no-repeat;
    mask-image: url("/assets/img/svg/top-hand.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
    background-color: var(--primary);
    top: 100px;
    left: -150px;
    opacity: 0.05;
    transform: rotate(60deg) scaleX(-1);
}

.content.news .container.container-full,
.related .container.container-full {
    max-width: 1220px;
}

.related .card-wrapper{
    justify-content: center;
}
.news .card-wrapper .card,
.related .card-wrapper .card {
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: var(--transition);
    max-width: 366px;
    height: auto;
}

.news .video-card .card > div:first-of-type {
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.news .video-card .card .video::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-image: linear-gradient(to bottom, #c7c5c5, #c7c5c5);
    z-index: 1;
    will-change: transform;
    pointer-events: none;
}

.news .video-card .card a:hover + a.play {
    transform: scale(1.06);
}
.news .video-card .card a.play {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    z-index: 1;
    pointer-events: none;
}

.news .video-card .card a.play:before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	-webkit-mask-image:url(/assets/img/template/icon-play.svg);
	mask-image:url(/assets/img/template/icon-play.svg);
	background-color: white;
	opacity: 0.8;
}
.news .video-card .card .card-content > h3{
    margin-bottom: 10px;
}
.news .video-card .card p{
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: #626262;
    margin: 0;
    margin-bottom: 16px;
}

.news .video-card .filter-container > div:last-of-type {
    justify-content: center;
}

.news .video-card .filter-container > div:last-of-type > div.filter-form {
    max-width: 400px;
}

.news .card-content .categories,
.article .template-module:first-of-type .categories,
.related .card-content .categories{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-self: flex-start;
}

.news .listing .items .card-content .button,
.article .template-module:first-of-type .categories .button,
.related .card-content .button {
    margin-top: auto;
    color: white;
    font-family: var(--font-family2);
    font-size: 12px;
    font-weight: normal;
    letter-spacing: normal;
    padding: 10px;
}

.news .listing .items .card-content .button::before,
.article .template-module:first-of-type .categories .button::before,
.related .card-content .button::before {
    background-color: var(--primary);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border: 2px solid transparent;
    z-index: -1;
}

.news .card-content .date,
.article .template-module:first-of-type .date,
.related .card-content .date{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.46;
    letter-spacing: normal;
    color: #626262;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    text-align: left;
    margin-top: 20px;
    text-transform: capitalize;
}

.news .card-content .date::before,
.article .template-module:first-of-type .date::before,
.related .card-content .date::before{
    content: "";
    background: none;
    -webkit-mask-image: url(/assets/img/svg/date.svg);
	mask-image: url(/assets/img/svg/date.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: var(--primary);
    width: 15px;
    height: 15px;
}

@media(max-width: 768px) {
    section.news {
        margin-top: 0px;
    }

    .news .tns-ovh {
        margin: 0px -20px 0 -20px;
    }



    .news .card-wrapper .card:not(.tns-slide-active) {
        box-shadow: 0px 17px 29px 0 rgba(0, 0, 0, 0.07);
    }
    .news .card-wrapper .card,
    .related .card-wrapper .card {
        min-width: 100%;
    }
    .news .card-wrapper {
        gap: 20px;
    }

    .news .filter-container > div:last-of-type,
    .news .card-wrapper{
        flex-direction: column;
    }

  
}




.news .filter-container {
    width: 100%;
    margin: 0;
    margin-bottom: 97px;
    position: relative;
}

.news .filter-container > div:last-of-type {
    display: flex;
    background-color: var(--primary);
    border-radius: 100px;
    justify-content: space-around;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    gap: 10px;
}

.news .filter-container > div:last-of-type > div {
    max-width: 330px;
    width:100%;
}

.news .filter-container > div:last-of-type > div.filter-form{
    max-width: inherit;
}

.news .filter-container > div:last-of-type {
    display: flex;
    background-color: white;
    border-radius: 0;
    justify-content: unset;
    align-items: unset;
    padding: 0;
    position: relative;
}

.news .filter-container .apply-mobile {
    position: fixed;
    bottom:48px;
    width: 100vw;
    display: flex;
    transition: var(--transition);
    transform: translateY(100vh);
}


.news .filter-container .filter-title {
    font-size: 1.406rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.96;
    letter-spacing: -0.56px;
    text-align: left;
    color: var(--primary);
    display: flex;
    flex-direction: column;
}

.news .filter-container .filter-title p {
    display: none;
}

.news .filter-container .filter-title span {
    text-align: center;
    display: none;
}

.news .filter-container .input-wrapper {
    position: relative;
}

.news .filter-container .input-wrapper label {
    position: absolute;
    left: 0;
    top: 13px;
    transition: var(--transition);
    
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: var(--black-3);
    opacity: 1;
}

.news .filter-container .input-wrapper.filled label {
    top: -5px;
    font-size: 0.7rem;
    opacity: 0.3;
}


.news .custom-select {
    height: auto;
    padding: 0;
    background: initial;
    border: 0;
    border-radius: 0;
}

.news .custom-select.has-reset .placeholder,
.news .filter-container .filter-form .filter-input {
    border: solid 1px var(--primary);
    border-radius: 30px;
    padding: 16.5px 0;
    padding-left: 28px;
    cursor: pointer;
    z-index: 3;
}

.news .custom-select.has-reset .placeholder,
.news .filter-container .filter-form .filter-input::placeholder,
.news .filter-container .filter-form .filter-input {
    text-transform: capitalize;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
    
}
.news .filter-container .filter-form .filter-input::placeholder {
    color: var(--white);
    font-weight: 500;
}

.news .custom-select.has-reset .placeholder {
    background-color: white;
}

.news .custom-select.open .placeholder {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.news .custom-select.has-reset .options-wrapper {
    text-transform: capitalize;
    border: 1px solid var(--primary);
    border-top: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 0px;
    top: 57px;
    padding-right: 0;
    padding-left: 28px;
    margin-top: -3px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}

.news .custom-select.has-reset .placeholder > div.reset {
    width: 9px;
    height: 5px;
    right: 20px;
    top: 0;
    overflow: visible;
}

.news .custom-select.has-reset .placeholder > div.reset::before, 
.news .custom-select.has-reset .placeholder > div.reset::after {
    width: 6px;
    bottom: auto;
    height: 1px;
    transition: all .2s ease-in-out;
    background-color: var(--black);
}

.news .custom-select.has-reset .placeholder > div.reset::before {
    border-radius: 1px;
    transform-origin: 50%;
    left: -2px;
    transform: translateX(-25%) rotate(45deg) scaleX(0.9);
    top: 4px;
}

.news .custom-select.has-reset .placeholder > div.reset::after {
    border-radius: 1px;
    transform-origin: 50%;
    transform: translateX(25%) rotate(-45deg) scaleX(0.9);
    top: 4px;
}


.news .custom-select.has-reset.isSelected .placeholder > div.reset::before {
    transform: translateX(1px) rotate(45deg) scaleX(1.2);
    background-color: #ffffff;
}

.news .custom-select.has-reset.isSelected .placeholder > div.reset::after {
    transform: translateX(0) rotate(-45deg) scaleX(1.2);
    background-color: #ffffff;
}

.news .custom-select.has-reset.isSelected .placeholder > div.reset {
    height: 10px;
    width: 10px;
}

.news .custom-select.has-reset.isSelected .placeholder > div.reset::after,
.news .custom-select.has-reset.isSelected .placeholder > div.reset::before {
    height: 2px;
    width: 9px;
    top: 5px;
}

.news .custom-select .options {
    padding: 0;
    overflow: auto;
}

.news .custom-select.open .options-wrapper, 
.news .custom-select.open .options {
    max-height: 250px;
    opacity: 1;
}

.news .custom-select.isSelected .placeholder {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: #ffffff !important;
    pointer-events: none;
    font-weight: 500;
}

.news .clear-btn {
    
    font-size: 0.688rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    color: #c4c3c3;
    margin-top: 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    right: 70px;
    bottom: 10px;
}

.news .clear-btn::before {
    content: "\00D7";
    font-size: 1rem;
    padding-right: 9px;
}

.news .filter-container .filter-form {
    margin-top: 0;
    position: relative;
}

.news .filter-container .filter-form .filter-input {
    width: 100%;
    padding-left: 30px;
}

.news .filter-container .filter-form span{
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.news .filter-container .filter-form span::after{
    content: "";
    margin: auto;
    position: absolute;
    width: 15px;
    height: 15px;
    -webkit-mask-image: url(/assets/img/svg/search.svg);
    mask-image: url(/assets/img/svg/search.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--black);
    transition: var(--transition); 
}
.news .filter-container .filter-form .filter-input::placeholder{
    color: var(--black);
    font-size: 14px;
}



.content.article .banner.no-img .container,
.content.article .banner h1{
    text-align: center;
}

.content.article .banner.no-img .container ul li a{
    font-size: 12px;
    font-weight: 300;
}

.content.article .banner h1{
    font-size: 45px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: -1.13px;
    margin-top: 5px;
}

.content.article .image-news .image{
    padding-top: inherit;
}

.content.article .image-news .image > img{
    position: relative;
}

.content.article .date_categories{
    display: flex;
    align-items: center;
    gap:20px;
    margin-top: 29px;
}

.article .template-module:first-of-type .date{
    margin-top: 0;
}




.template .pagination {
    margin: 100px auto 0;
    padding: 51px 20px;
    mix-blend-mode: multiply;
}


.template .pagination ul {
    margin: auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.pagination ul li {
    display: inline-block;
    
    vertical-align: middle;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: .35px;
    transition: var(--transition);
    display: flex;
    align-items: center;

}

.template .pagination ul li a{
    font-size: 0.875rem;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: .35px;
}

.pagination ul li.next::after,
.pagination ul li.prev::before {
    content: '';
    display: inline-block;
    -webkit-mask-image: url(/assets/img/svg/arrow.svg);
    mask-image: url(/assets/img/svg/arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--primary);
    width: 20px;
    height: 16px;
    position: relative;
    top: 0px;
    transition: var(--transition);
}

.pagination ul li.prev::before {
    left: -20px;
    transform: rotate(180deg);
}

.pagination ul li.next::after {
    right: -20px; 
}

.pagination ul li:hover {
   opacity: 0.8;
}

.pagination ul li.disabled {
   opacity: 0.5;
}

.pagination ul li.prev:hover::before {
    left: -30px;
}

.pagination ul li.next:hover::after {
    right: -30px;
}

.pagination ul li.prev.disabled:hover::before {
    left: -20px;
}

.pagination ul li.next.disabled:hover::after {
    right: -20px;
}


@media(max-width: 768px) {
    

    .pagination {
        margin: 70px auto 0;
        padding: 30px 15px;
    }

    .pagination .container,
    .pagination ul {
        padding: 0 !important;
    }

    .pagination ul {
        align-items: center;
    }

    .pagination ul li {
        font-size: 1rem;
        text-align: center;
    }

    .pagination ul li.prev::before {
        left: -10px;
    }

    .pagination ul li.next::after {
        right: -10px;
    }

    .content.article .date_categories{
        flex-direction: column;
        margin-top: 29px;
        align-items: flex-start;
    }

    

}

.related{
    margin-top: 90px;
}
.related .container > span{
    font-size: 48px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: -1.2px;
    text-align: center;
    color: #001a31;
    display: block;
}

.related .container .card-wrapper{
    margin-top: 40px;
}


.video-wrapper-fullscreen.active iframe,
.video-wrapper-fullscreen.active video {
    width: 90%;
    margin: auto;
    object-fit: contain;
}


.video-wrapper-fullscreen {
    position: absolute;
    top: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.video-wrapper-fullscreen.active {
    opacity: 1;
    pointer-events: auto;
    position: fixed;
}

.video-wrapper-fullscreen .close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px;
    z-index: 10;
    cursor: pointer;
}

.video-wrapper-fullscreen .close-video::after,
.video-wrapper-fullscreen .close-video::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    background-color: #fff;
}

.video-wrapper-fullscreen .close-video::after {
    transform: rotate(-45deg);
}

.video-wrapper-fullscreen.active iframe,
.video-wrapper-fullscreen.active video {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: black;
}

.video-wrapper-fullscreen.active video{
    height: auto;
}
