footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.email-container {
    max-width: 1250px;
    width: 90%;
    display: flex;
    border-top: 2px solid #ccc;
}

.email-caption {
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.email-caption h2 {
    font-size: 30px;
}

p {
    font-family: 'Vazir', sans-serif;
    /* فونت یکسان برای همه */
    font-size: 16px;
    /* سایز دلخواه */
    color: #333;
    /* رنگ دلخواه */
    line-height: 1.6;
    /* فاصله بین خطوط */
}

.email-input {
    width: 50%;
    height: 200px;
    display: flex;
    align-items: center;
}

/* From Uiverse.io by neerajbaniwal */
.btn-shine {
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #6e6e6e 0, #cccccc 10%, #ffffff 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 50px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
}

@-moz-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@-webkit-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@-o-keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}


.email-input form {
    display: flex;
    justify-content: end;
    width: 100%;
}

.input {
    border: 1px solid #8b8b8b;
    padding: 10px;
    width: 85%;
    height: 50px;
    border-radius: 5px;
    margin: 0 5px 0 0;
}

.email-input form input[type="submit"] {
    border: 1px solid #202020;
    padding: 0px 20px 0 20px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    background-color: #202020;
    color: #fff;
    align-content: center;
}

.footer-info {
    max-width: 1250px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    border-top: 2px solid #ccc;
    padding: 40px 0;
}

.footer-social,
.footer-address,
.footer-links {
    font-size: 20px;
    color: #333;
}

.footer-social h2,
.footer-address h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #000;
}

.footer-social i {
    font-size: 40px;
    margin: 0 4px;
    transition: transform 0.3s ease;
}


.footer-social i:hover {
    transform: scale(1.2);
}

a .whatsappsize {
    font-size: 43px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-links img:hover {
    cursor: pointer;
}

@media (max-width: 1024px) {
    header {
        background-position: center;
        background-image: url(../image/MountainClimbing-4.webp);
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .link-container {
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 10px;
        height: 25vh;
    }

    .logo {
        width: 97px;
        height: 68px;
        margin: 10px 0;
    }

}

@media (max-width: 768px) {
    .email-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .email-caption {
        width: 100%;
        text-align: center;
        height: 100px;
    }

    .email-caption h2 {
        font-size: 25px;
    }

    .email-caption p {
        font-size: 15px;
    }

    .email-input {
        width: 100%;
        height: 100px;
        justify-content: center;
    }

    .email-input form {
        width: 100%;
        justify-content: center;
    }

    .input {
        width: 100%;
    }

    .email-caption .search-box:hover,
    .search-box:focus-within {
        width: 240px;
    }

    .search-box:active {
        width: 240px;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .footer-social,
    .footer-address,
    .footer-links {
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .header-bottem h1 {
        font-size: 30px;
        margin-bottom: 20px;
        display: none;
    }

    .header-bottem p {
        font-size: 15px;
        display: none;

    }

    .link {
        width: 100%;
    }

    .search-container {
        width: 75%;
        padding: 10px 15px;
    }

    .logo-container {
        width: 35%;
        position: relative;
        top: 0px;
        right: 10px;
    }

    .link-container {
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 10px;
        height: 25vh;
    }

    .link-container a {
        font-size: 15px;
        width: 100%;
    }

}