@media screen and (max-width: 1400px) {

}


@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 992px) {

.nav__links,
    .menu {
        display: none;
    }


    .nav.active .menu,
    .nav.active .nav__links {
        display: flex;
        flex-direction: column;
        background-color: var(--section-bg-color);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 1.5rem 2rem;
        border-radius: 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        gap: 1rem;
        position: fixed; 
        top: 70px; 
        right: 0;
        left: 0;
    }
    .menu{
        z-index: 1;
    }

    .nav__links{
        position: relative;
    }

    .floating-widget{
        display: block;
        position: fixed;
            left: 1.5rem;
    bottom: 1.5rem;

    background-color: #ffffff;
    color: #333;
    padding: 1.2rem 1.2rem;
    border-radius: 1rem;

    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;

    font-size: 0.95rem;
    cursor: pointer;

    transition: all 0.3s ease;
    }

    .menu__item {
        margin: 0;
    }

    .menu_link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        color: var(--text-color);
        transition: 0.3s;
    }

    .menu_link:hover {
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 576px) {
    .wrapper{
        padding: 2rem 12px;
    }
}

@media screen and (max-width: 410px) {
    .major-icon{
        display: none;
    }
    .header-content__title{
        font-size: 2.5rem;
    }
    .wrapper{
        padding: 2rem 9px;
    }
    
.main_title {

    font-size: 1.5rem;
}
}

@media screen and (max-width: 350px) {
    .header-content__title{
        font-size: 2rem;
    }
    .wrapper{
        padding: 2rem 6px;
    }
}