section.section_full {
    scroll-margin-top: var(--header-height); 
}
.section_full {
    /* height: calc(100vh - var(--header-height)); */
    min-height: calc(100vh - var(--header-height));
    width: 100%; 
}

.main_banner--cnt, 
.main_banner--wrapper,
.main_banner--media {
    height: 100%; 
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.main_banner--media video {
    width: 100%;
    object-fit: cover;
    /* filter: brightness(0.6); */
}

.main_banner--wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    display: flex;    
    border: none;
    justify-content: center; 
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* background-color: rgb(0 0 0 / 10%); */
    z-index: 5; 
}

.main_banner--content-left {
    position: relative;
    width: 91%;
    padding-left: 7%;
}

.main_banner--content-left p {  
    line-height: 1.3;
    text-align: center;
    font-size: 1.85514rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 35px;
}


.main_banner--content-left p span {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
}

.main_banner--content-left p strong {
    font-weight: 600;
}

.main_banner--content-left .call-to-action-btn {
    width: fit-content;
    height: fit-content;
    position: relative;
    background-color: var(--secondary);
    color: #fff;
    padding: 13px 48px;
    border: var(--secondary);
    border-radius: 50px;
    font-size: 1.48545rem;
    font-weight: 400;
    transition: var(--ease);
    display: flex;
    margin: auto;
}

.main_banner--content-left .call-to-action-btn:hover {
    background-color: var(--primary);
}

.main_banner--content-left .icon-gif {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.main_banner--content-left .icon-gif .responsive-gif {
    max-width: 253px;
    height: auto;
}

.home_family {
    width: 100%;
    position: relative;
    padding: 3.125em 0;
    display: block;
}

.home_family--cnt {
    width: 96%;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.home_family--cnt .home_family--title {
    width: 100%;
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;    
    align-items: baseline;
    margin-bottom: 5%;
}

.home_family--cnt .home_family--title img {
    width: auto; 
    max-width: 100%;
    height: 80px;
}

.home_family--cnt .home_family--title h2 {
    width: fit-content;
    position: relative;
    display: block;
    font-weight: 500;
    color: var(--primary);
}

.home_family--cnt .home_family--wrapper {
    width: 100%;
    position: relative;
    display: block;
}

.home_family--cnt .home_family--wrapper .slide_itm{
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 40px;
    transition: var(--ease);
}

.home_family--cnt .home_family--wrapper .slide_itm picture {
    width: 100%;
    position: relative;
    display: block;
    aspect-ratio: 370 / 220;
}

.home_family--cnt .home_family--wrapper .slide_itm ._info {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    display: block;
    top: 40px;
    z-index: 1;
}

.home_family--cnt .home_family--wrapper .slide_itm ._info p {
    width: 100%;
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 500;
    text-align: center;
}

.home_family--cnt .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
}

.home_family--cnt .slide_itm:hover .card-overlay {
    opacity: 1; /* Hace el overlay completamente visible */
}

.home_family--cnt .card-overlay ._text{
    position: absolute;
    top: 100px;
    width: 80%;
}

.home_family--cnt .card-overlay ._text p{
    color: #fff;
    font-size: 1.2rem;
}

.home_family--cnt .card-overlay ._text ul{
    text-align: left;
}

.home_family--cnt .card-overlay ._text ul li{
    display: flex;
    align-items: start;
    gap: 5px;
    color: #fff;
    margin-bottom: 11px;
    font-size: 1rem;
}

.home_family--cnt .card-overlay ._text ul li:before{
    content: url('../img/icons/checked-secondary.png');
}

.home_family--cnt .card-overlay ._text .overlay-btn {
    width: fit-content;
    height: fit-content;
    position: relative;
    background-color: var(--secondary);
    border: var(--secondary);
    color: #fff;
    padding: 7px 24px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 400;
    transition: var(--ease);
    display: flex;
    margin: auto;
    margin-top: 22px;
}

.home_family--cnt .card-overlay ._text .overlay-btn:hover{
    background-color: var(--secondary-hover);
}

.home_family._controls{
    width: 85%;
    max-width: 1312px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 125px;
    margin-top: 30px;
}

.home_family._controls button {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    transition: var(--ease);
}

.home_family._controls button svg {
    stroke: var(--primary);
    transition: var(--ease);
    width: 70px;
}

.home_family._controls button:hover {
    background: var(--secondary);
}

.home_family._controls button:hover svg {
    stroke: #fff;
}



.home_heritage {
    width: 100%;
    position: relative;
    padding: 4.125em 0;
    display: block;
    background: var(--primary);
}

.home_heritage--cnt {
    width: 90%;
    position: relative;
    display: block;
    margin: 0 auto;
}

.home_heritage--cnt .home_heritage--title {
    width: 100%;
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.home_heritage--cnt .home_heritage--title img {
    width: auto; 
    max-width: 100%;
    height: 100px;
}

.home_heritage--cnt .home_heritage--title h2 {
    width: fit-content;
    position: relative;
    display: block;
    font-weight: 500;
    color: #fff;
}

.home_heritage--cnt .home_heritage--wrapper {
    width: 87%;
    position: relative;
    display: block;
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm{
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--ease);
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm picture {
    width: 100%;
    position: relative;
    display: block;
    aspect-ratio: 370 / 220;
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm ._media{
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 35px;
    transition: var(--ease);
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm ._button {
    position: relative;
    width: fit-content;
    margin: auto;
    background: #fff;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 7px 25px;
    border-radius: 50px;
    margin-top: -22px;
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm ._button p{
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 500;
}


.home_heritage--cnt ._media .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 35px;
}

.home_heritage--cnt ._media .card-overlay ._text button {    
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.home_heritage--cnt .slide_itm ._media:hover .card-overlay {
    opacity: 1; /* Hace el overlay completamente visible */
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm ._text_bottom{
    margin-top: 27px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home_heritage--cnt .home_heritage--wrapper .slide_itm ._text_bottom p{
    padding: 0 25px;
    text-align: center;
    color: #fff;
    font-size: 1.22517rem;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.home_heritage._controls {
    position: absolute;
    margin: 0 auto;
    margin-top: 30px;
    top: 27%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.home_heritage._controls button {
    background: #fff;
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    transition: var(--ease);
}

.home_heritage._controls button svg {
    stroke: var(--primary);
    transition: var(--ease);
    width: 70px;
}

.home_heritage._controls button:hover {
    background: var(--secondary);
}

.home_heritage._controls button:hover svg {
    stroke: #fff;
}

.about_us {
    background-image: url('../img/background-about_us.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    position: relative;
    padding: 35px 0;
    display: block;
}

.about_us--cnt {
    width: 88%;
    position: relative;
    display: block;
    margin: 0 auto;
}

.about_us--cnt .about_us--title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: left;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about_us--cnt .about_us--title img {
    width: auto; 
    max-width: 100%;
    height: 80px;
}

.about_us--cnt .about_us--title h2 {
    width: fit-content;
    position: relative;
    display: block;
    font-weight: 500;
    color: #fff;
}

.about_us--cnt .about_us--wrapper {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    gap: 30px;
}

.about_us--cnt .about_us--wrapper ._content-left {
    width: 65%;
}

.about_us--cnt .about_us--wrapper ._content-right {
    width: 35%;
}

.about_us--cnt .about_us--wrapper ._content-right ._content {
    height: fit-content;
    position: relative;
    border-radius: 20px;
    padding: 28px 40px;
    background-color: #ffffff8a;
    backdrop-filter: blur(7px);
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._title img {
    width: fit-content;
    height: 74px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._title h3 {
    width: fit-content;
    position: relative;
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--primary);
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text {
    width: 100%;
    margin-top: 18px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text p{
    font-size: 1.1865rem;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text p:not(:last-child){
    margin-bottom: 15px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text p span{
    font-weight: 600;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text h6{
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1865rem;
    letter-spacing: 1px;
    margin-top: -16px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text ul{
    display: block;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text ul li{
    display: flex;
    align-items: start;
    margin-bottom: 4px;
    font-size: 1.1865rem;
    letter-spacing: 1px;
}

.about_us--cnt .about_us--wrapper ._content-right ._content ._text ul li:before{
    content: "";
    width: 17px; 
    height: 17px; 
    display: block;
    background-image: url('../img/icons/checked-primary.png');
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: 17px; 
    margin-right: 4px;
    margin-top: 3px;
}

.about_us--cnt .about_us--wrapper ._content-right .call-to-action-btn {
    width: fit-content;
    height: fit-content;
    position: relative;
    background-color: var(--primary);
    color: #fff;
    padding: 13px 70px;
    border: var(--primary);
    border-radius: 50px;
    font-size: 1.48545rem;
    font-weight: 400;
    transition: var(--ease);
    display: flex;
    margin: auto;
    margin-top: 30px;
}

.about_us--cnt .about_us--wrapper ._content-right .call-to-action-btn:hover {
    background-color: var(--secondary);
    color: #fff;
}

/*------------------------------------Footer--------------------------------------*/
.footer_wrapper {
    background: var(--primary);
    width: 100%;
    position: relative;
    display: block;
    padding: 90px 0 80px 0;
}
.footer_wrapper .footer_navigation {
    width: 100%;
    position: relative;
    display: block;
    padding: 12px 0;
    margin-top: 12px;
}
.footer_wrapper .footer_navigation .footer_navigation--wrapper {
    width: 90%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 32px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .footer_wrapper .footer_navigation .footer_navigation--wrapper {
        padding: 12px 0;
        gap: 24px;
    }
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links {
    position: relative;
    display: block;
}

.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links:first-child {
    display: flex;
    flex-direction: column;
    row-gap: 135px;
}

.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links .logo img {
        width: 480px;
}

.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links .contact {
        display: flex;
        gap: 20px;
}

.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links .contact h6{
        width: fit-content;
}

.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links .contact p{
        width: 100%;
        position: relative;
        display: block;
        font-size: 1.4rem;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 12px;
        color: #ffffff;
        line-height: 100%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links:nth-child(1) {
    width: 36%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links:nth-child(2) {
    width: 17%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links:nth-child(3) {
    width: 17%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links:nth-child(4) {
    width: 30%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    h6 {
    width: 100%;
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    ul {
    width: 100%;
    position: relative;
    display: block;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    ul
    li {
    width: 100%;
    position: relative;
    display: block;
    line-height: 100%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    ul
    li
    a {
    width: 100%;
    position: relative;
    display: block;    
    font-size: 1.4rem;
    color: #ffffff;
    transition: 0.4s ease-in-out;
    line-height: 100%;
}
.footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    ul
    li
    p {
    width: 100%;
    position: relative;
    display: block;
    font-weight: 300;
    color: #ccc;
    line-height: 100%;
}

    .footer_wrapper
    .footer_navigation
    .footer_navigation--wrapper
    .footer_links
    ul
    li:not(:last-child) {
    margin-bottom: 12px;
}

@media (max-width: 1680px) { 
    section.section_full {
        scroll-margin-top: calc(var(--header-height) - 25px);
    }
    .main_banner--content-left .icon-gif .responsive-gif {
        max-width: 220px;
    } 

    .main_banner--content-left p {
        font-size: 1.5rem;
    }
    .main_banner--content-left p span {
        font-size: 2.6rem;
        font-weight: 400;
    }

    .main_banner--content-left .call-to-action-btn {
        padding: 10px 31px;
        font-size: 1.1545rem;
    }

    .home_family--cnt .home_family--title img {
        height: 65px;
    }
    .home_family--cnt .home_family--title h2, 
    .home_heritage--cnt .home_heritage--title h2, 
    .about_us--cnt .about_us--title h2 {
        font-size: 4.3rem;
    }

    .home_family--cnt .home_family--wrapper .slide_itm ._info {
        top: 25px;
    }
    .home_family--cnt .home_family--wrapper .slide_itm ._info p {
        font-size: 1.2rem;
        font-weight: 400;
    }
    .home_family--cnt .card-overlay ._text {
        top: 75px;
    }
    .home_family--cnt .card-overlay ._text p {
        font-size: 0.9rem;
    }
    .home_family--cnt .card-overlay ._text ul li {
        font-size: 0.9rem;
    }

    .home_family--cnt .card-overlay ._text .overlay-btn {
        color: #fff;
        padding: 7px 16px;
        font-size: .75rem;
    }
    .home_family._controls {
        gap: 120px;
        margin-top: 0;
    }
    .home_family._controls button, .home_heritage._controls button {
        width: 56px;
        height: 56px;
    }
    .home_heritage--cnt .home_heritage--title img {
        height: 74px;
    }
    .home_heritage--cnt ._media .card-overlay ._text button {
        font-size: 1.2rem;
    }
    .home_heritage--cnt .home_heritage--wrapper .slide_itm ._button p {
        font-size: 1.2rem;
    }
    .home_heritage--cnt .home_heritage--wrapper .slide_itm ._text_bottom p {
        font-size: 1.02517rem;
        letter-spacing: 1.4px;
        font-weight: 300;
    }
    .about_us--cnt .about_us--title img {
        height: 70px;
    }
    .about_us--cnt .about_us--title {
        margin-bottom: 17px;
        margin-top: 22px;
    }
    .about_us--cnt .about_us--wrapper ._content-right ._content ._title img {
        height: 60px;
    }
    .about_us--cnt .about_us--wrapper ._content-right ._content ._title h3 {
        font-size: 1.7rem;
    }
    .about_us--cnt .about_us--wrapper ._content-right ._content ._text p,
    .about_us--cnt .about_us--wrapper ._content-right ._content ._text h6,
    .about_us--cnt .about_us--wrapper ._content-right ._content ._text ul li {
        font-size: 0.965rem;
    }
    .about_us--cnt .about_us--wrapper ._content-right ._content ._text ul li:before {
        width: 20px;
        height: 20px;
        background-size: 14px;
        margin-right: 4px;
        margin-top: 3px;
    }
    .about_us--cnt .about_us--wrapper ._content-right ._content {
        padding: 15px 20px 15px 40px;
    }

    .about_us--cnt .about_us--wrapper ._content-right .call-to-action-btn {
        padding: 10px 52px;
        font-size: 1.18545rem;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links .logo img {
        width: 359px;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links h6 {
        font-size: 1.5rem;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links ul li a {
        font-size: 1.2rem;
        font-weight: 300;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links .contact p {
        font-size: 1.2rem;
        font-weight: 300;
    }
}

@media (max-width: 1440px) {
}

@media (max-width: 1210px) {
}

@media (max-width: 1100px) {
}
@media (max-width: 1024px) {
    .main_banner--content-left p {
        font-size: 1.3rem;
    }

    .main_banner--content-left .icon-gif .responsive-gif {
        max-width: 135px;
    }
    .main_banner--content-left .icon-gif {
        margin-top: 20px;
    }

    .main_banner.section_full {
        min-height: initial;
        width: 100%;
    }

    .home_family.section_full {
        min-height: initial;
        width: 100%;
    }
    .home_heritage.section_full {
        min-height: initial;
        width: 100%;
    }
    .footer_wrapper.section_full {
        min-height: initial;
        width: 100%;
    }
    .home_heritage--cnt .home_heritage--wrapper .slide_itm ._button p {
        font-size: 1.3rem;
    }
    .home_heritage._controls {
        top: 36%;
    }
    .home_heritage._controls button.home_heritage--prev {
        margin-left: -32px;
    }
    .home_heritage._controls button.home_heritage--next {
        margin-right: -32px;
    } 

    .about_us {
        background-size: cover;
    }

    .about_us--cnt .about_us--wrapper {
        display: block;
    }

    .about_us--cnt .about_us--wrapper ._content-left {
        width: 100%;
    }

    .about_us--cnt .about_us--wrapper ._content-right {
        width: 100%;
        margin-top: 30px;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper {
        width: 100%;
        padding: 0 30px;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:first-child {
        row-gap: 0;
        order: 4;
        width: 50%;
        margin-top: 40px;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links .contact {
        display: block;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(2) {
        width: 50%;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(3) {
        width: 50%;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(4) {
        width: 50%;
        margin-top: 40px;
    }
}

@media (max-width: 834px) {
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links .logo img {
        width: 93%;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .main_banner--media video {
        height: 500px;
    }
    .main_banner--content-left p {
        font-size: 1.3rem;
    }
    .main_banner--content-left .call-to-action-btn {
        padding: 12px 30px;
        font-size: 1.28545rem;
    }
    .main_banner--content-left .icon-gif .responsive-gif {
        max-width: 115px;
    }

    .home_family {
        padding: 3.1em 0;
    }

    .home_family--cnt .home_family--title {
        align-items: center;
    }

    .home_family--cnt .home_family--title h2 {
        font-size: 3rem;
    }
    .home_heritage--cnt .home_heritage--title h2 {
        font-size: 3rem;
    }

    .home_heritage._controls {
        top: 27%;
    }

    .home_heritage._controls button.home_heritage--prev {
        margin-left: -32px;
    }
    .home_heritage._controls button.home_heritage--next {
        margin-right: -32px;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(1) {
        width: 46%;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(2) {
        width: 46%;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(3) {
        width: 46%;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(4) {
        width: 46%;
    }
}

@media (max-width: 575px) {
    .main_banner--media video {
        height: 350px;
        filter: brightness(0.6);
    }
    .blur-overlay {
        width: 100%;
        backdrop-filter: initial;
        -webkit-backdrop-filter: initial;
    }
    .main_banner--content-left p {
        margin-bottom: 10px;
    }

    .home_family--cnt .home_family--title img {
        height: 50px;
    }

    .home_family--cnt .home_family--title h2 {
        font-size: 30px;
    }

    .home_family._controls {
        gap: 60px;
        margin-top: 0;
    }

    .home_family._controls button {
        width: 50px;
        height: 50px;
    }

    .home_heritage--cnt .home_heritage--wrapper {
        width: 100%;
    }

    .home_heritage--cnt .home_heritage--title img {
        height: 50px;
    }

    .home_heritage--cnt .home_heritage--title h2 {
        font-size: 30px;
    }
    .home_heritage._controls {
        position: relative;
        justify-content: space-evenly;
        height: 100px;
        margin-top: -33px;
    }
    .home_heritage._controls button {
        width: 50px;
        height: 50px;
    }

    .about_us--cnt .about_us--title img {
        height: 60px;
    }

    .about_us--cnt .about_us--title h2 {
        font-size: 40px;
    }

    .about_us--cnt .about_us--wrapper ._content-right ._content ._title h3 {
        font-size: 2rem;
    }

    .footer_wrapper {
        padding: 6% 0 100px 0;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(2) {
        width: 44%;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(3) {
        width: 44%;
    }
    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:nth-child(4) {
        width: 100%;
    }

    .footer_wrapper .footer_navigation .footer_navigation--wrapper .footer_links:first-child {
        order: initial;
        width: 100%;
        margin-top: 0;
    }
    
}

@media (max-width: 480px) {
    .main_banner--content-left .call-to-action-btn {
        padding: 10px 20px;
        font-size: 18px;
    }
}

@media (max-width: 414px) {
}

@media (max-width: 393px) {   
    .main_banner--content-left p {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .main_banner--content-left p {
        font-size: 12px;
    }
}