.footer-section {
    /* Structure Block */
    padding: 70px 0 30px;
    margin-top: 75px;
    /* Positioning Block*/
    position: relative;
    /* Typography Block */
    color: var(--light);
    /* Modifier Block*/
    background: linear-gradient(rgba(22, 22, 22, 0.85), rgba(22, 22, 22, 0.9)), url('https://wordpress.zozothemes.com/garland/wp-content/uploads/sites/15/2023/11/footer-bg-1-1.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.footer-overlay {
    /* Structure Block */
    width: 100%;
    height: 100%;
    /* Positioning Block*/
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.footer-container {
    /* Structure Block */
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    /* Positioning Block*/
    position: relative;
    z-index: 2;
}

.footer-content {
    /* Structure Block */
    margin-bottom: 50px;
    /* Modifier Block*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    /* Modifier Block*/
    display: flex;
    flex-direction: column;
}

.footer-logo {
    /* Structure Block */
    margin-bottom: 25px;
}

.logo-text {
    /* Structure Block */
    display: inline-block;
    /* Typography Block */
    font-size: 2rem;
    font-weight: 800;
    color: var(--light);
    /* Modifier Block*/
    background: linear-gradient(135deg, var(--light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-description {
    /* Structure Block */
    margin-bottom: 25px;
    /* Typography Block */
    text-align: justify;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.social-links {
    /* Modifier Block*/
    display: flex;
    gap: 15px;
}

.social-link {
    /* Structure Block */
    width: 40px;
    height: 40px;
    /* Typography Block */
    color: var(--light);
    font-size: 1.2rem;
    /* Modifier Block*/
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    /* Typography Block */
    color: var(--dark);
    /* Modifier Block*/
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-title {
    /* Structure Block */
    margin-bottom: 25px;
    padding-bottom: 10px;
    /* Positioning Block*/
    position: relative;
    /* Typography Block */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
}

.footer-title::after {
    /* Structure Block */
    content: '';
    width: 40px;
    height: 3px;
    /* Positioning Block*/
    position: absolute;
    bottom: 0;
    right: 0;
    /* Modifier Block*/
    background: var(--secondary);
    border-radius: 3px;
}

.footer-links {
    /* Modifier Block*/
    list-style: none;
}

.footer-links li {
    /* Structure Block */
    margin-bottom: 12px;
}

.footer-links a {
    /* Typography Block */
    color: var(--gray);
    text-decoration: none;
    /* Modifier Block*/
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    /* Typography Block */
    color: var(--secondary);
    /* Modifier Block*/
    transform: translateX(-5px);
}

.footer-links i {
    /* Typography Block */
    color: var(--secondary);
    font-size: 0.9rem;
}

.contact-info {
    /* Modifier Block*/
    list-style: none;
}

.contact-info li {
    /* Structure Block */
    margin-bottom: 20px;
    /* Modifier Block*/
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info i {
    /* Structure Block */
    margin-top: 3px;
    /* Typography Block */
    color: var(--secondary);
    font-size: 1.2rem;
    /* Modifier Block*/
    flex-shrink: 0;
}

.contact-text {
    /* Typography Block */
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    /* Modifier Block*/
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-text {
    /* Structure Block */
    margin-bottom: 10px;
    /* Typography Block */
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.form-group {
    /* Positioning Block*/
    position: relative;
}

.form-input {
    /* Structure Block */
    width: 100%;
    padding: 15px 20px;
    /* Typography Block */
    color: var(--light);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    /* Modifier Block*/
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.form-input:focus {
    /* Modifier Block*/
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
}

.form-input::placeholder {
    /* Typography Block */
    color: var(--gray);
}

.submit-btn {
    /* Structure Block */
    padding: 15px 30px;
    /* Typography Block */
    color: var(--dark);
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    /* Modifier Block*/
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    /* Modifier Block*/
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    /* Structure Block */
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Modifier Block*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    /* Typography Block */
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-bottom-links {
    /* Modifier Block*/
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    /* Typography Block */
    color: var(--gray);
    font-size: 0.95rem;
    text-decoration: none;
    /* Modifier Block*/
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    /* Typography Block */
    color: var(--secondary);
}

.header {
    /* Structure Block */
    width: 100%;
    height: 100vh;
    min-height: 500px;
    margin-bottom: 50px;
    /* Positioning Block*/
    position: relative;
    /* Modifier Block*/
    overflow: hidden;
}

._menu_header{
    width: 100%;
    min-height: 80px;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background: rgba(23, 72, 16, 0.5);
}
._menu_header_ul>ul{
    margin-right: 2.5%;
}
._menu_header_ul>ul>li{
    display: inline-block;
    color: white;
    padding: 25px 10px 10px 10px;
}
._menu_header_ul>ul>li>a{
    padding-bottom: 10px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    transition: 0.8s ease all;
}
._menu_header_ul>ul>li>i{
    padding : 0 15px 10px 0;
    color: #FFFFFF;
    transition: 0.8s ease all;
}
._menu_header_ul>ul>li:hover i{
    transition: 0.8s ease all;
    color: rgb(78, 155, 78);
}
._menu_header_ul>ul>li:hover a{
    transition: 0.8s ease all;
    color: rgb(103, 186, 103);
}

._menu_header_ul>ul>li>a:after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    transform: translateX(0) scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 500ms;
    background: #ecce2e;
}
._menu_header_ul>ul>li>a:hover:after{
    transform: translateY(50%) scaleY(1);
}

/* Icon Menu Left */
._wrapper{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    z-index: 2;
}
._wrapper ._icon{
    position: relative;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
._wrapper ._icon i{
    color: white;
    transition: 0.5s linear;
}
._wrapper ._tooltip {
    position: absolute;
    top: 0;
    width: 70px;
    font-size: 14px;
    background: #111;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}
._wrapper ._icon::before,
._wrapper ._icon::after{
    content: '';
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.4s linear;
}
._wrapper ._icon:hover ._tooltip{
    top: 60px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
._wrapper ._icon:hover span,
._wrapper ._icon:hover ._tooltip{
    text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
    transform: scale(0.8);
    transition: 0.4s linear;
}
._wrapper ._icon:hover::before{
    border-radius: 50%;
    border-left: 4px solid;
    border-right: 4px solid;
    transform: skewX(20deg);
    color: #4e9b4e;
}
._wrapper ._icon:hover::after{
    border-radius: 50%;
    border-top: 4px solid;
    border-bottom: 4px solid;
    transform: skewX(-20deg);
    color: #4e9b4e;
}




#_check{
    display: none;
}
._label_check{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    margin: 5px 0;
    text-align: center;
    cursor: pointer;
}
._label_check i{
    font-size: 20px;
    color: white;
}
._bars{
    font-size: 22px;
    text-align: center;
    margin: 17px;
    color: white;
    transition: transform 1s;
}
._menu ul{
    list-style-type: none;
    width: 60px;
    height:300px;
    top: 100px;
    position: absolute;
}
._menu ul li{
    width: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    cursor: pointer;
    transform: translateX(-20px);
}
._menu ul li i{
    color: white;
    display: none;
    font-size: 22px;
    transition: 0.5s;
}
._menu ul li:hover i{
    transform: scale(1.2);
}
input:checked ~ ._menu>ul>li{
    animation: w 2s 1 forwards;
    transform: translateX(0);
}
input:checked ~ ._menu label, ._bars {
    transform: rotate(1turn);
}
@keyframes w {
    0%{
        width: 0;
    }
    50%{
        width: 120px;
    }
    100%{
        width: 60px;
    }
}
input:checked ~ ._menu>ul>li:nth-child(2) {
    transition-delay: 0.5s;
    animation-delay: 0.5s;
}
input:checked ~ ._menu>ul>li:nth-child(3) {
    transition-delay: 1s;
    animation-delay: 1s;
}
input:checked ~ ._menu>ul>li:nth-child(4) {
    transition-delay: 1.5s;
    animation-delay: 1.5s;
}
input:checked ~ ._menu>ul>li:nth-child(5) {
    transition-delay: 2s;
    animation-delay: 2s;
}


.dynamic-background {
    /* Positioning Block*/
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    /* Structure Block */
    width: 100%;
    height: 100%;
    /* Modifier Block*/
    pointer-events: none;
    overflow: hidden;
}
.particle {
    /* Positioning Block*/
    position: absolute;
    /* Structure Block */
    width: 6px;
    height: 6px;
    /* Typography Block */
    opacity: 0;
    /* Modifier Block*/
    background: var(--secondary);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% {
        /* Modifier Block*/
        transform: translateY(100vh) rotate(0deg);
        /* Typography Block */
        opacity: 0;
    }
    10% {
        /* Typography Block */
        opacity: 0.3;
    }
    90% {
        /* Typography Block */
        opacity: 0.1;
    }
    100% {
        /* Modifier Block*/
        transform: translateY(-100px) rotate(360deg);
        /* Typography Block */
        opacity: 0;
    }
}


@media only screen and (max-width:1400px){
    ._prev, ._next{
        color: white;
        text-decoration: none;
        font-size: 50px;
        position: absolute;
        top:50%;
        transform: translate(0,-50%);
    }
}
@media only screen and (max-width:1200px){
}
@media only screen and (max-width:992px){
}
@media only screen and (max-width:765px){
}
@media only screen and (max-width:576px){
}

