/* Created By AkinaCss */
/* Social Icon area */

.socialMedia {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, var(--gradient) 0, var(--gradient1) 100% );
    padding: 30px 100px;
}

.socialMedia h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.socialIco {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contactbtn {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contactbtn a {
    background-color: var(--white);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 10px;
}

.contactbtn a:hover {
    background: linear-gradient(90deg, var(--gradient) 0, var(--gradient1) 100%);
    color: var(--white);
}

/* Social Icon area Css End */

/* =================================================================== */

/* Footer area Css Start */

footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}

.footer-img {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.footer-imgBox {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.footer-imgBox::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #33333398;
}

.footer-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-img-txt {
    width: 70%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-img-txt p {
    color: var(--white);
    font-weight: 800;
}

.footer-img-txt h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 100;
}

.linka2 {
    padding: 15px 20px;
    background-color: var(--red);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    width: fit-content;
}

.footer-txt {
    width: 45%;
    height: 500px;
    background-color: var(--textclr);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-txt-inside {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-menu {
    width: 60%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menu a {
    flex: 1 1 50%;
    width: 50%;
    max-width: calc(50% - 20px);
    color: var(--white);
}

.footer-menu a:hover {
    color: var(--red);
}

.footerlinks {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerlinks a {
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.footerlinks a svg {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
}
.linksvg path {
    fill: var(--white);
}

.footer-bottom {
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
}

.footer-bottom a {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
}

.footer-bottom a:hover {
    color: var(--red);
}

/* Footer area Css End */

/* =================================================================== */

/* Responsive area Css */

@media (max-width: 1200px) {
    .footer-menu, .footer-bottom, .footer-img-txt, .footerlinks {
        width: 80%;
    }
}

@media (max-width: 730px) {
    .socialMedia {
        flex-direction: column;
        gap: 20px;
    }
    .socialIco {
        width: 100%;
    }

    .blNone1 {
        border-left: none !important;
    }

    footer {
        flex-direction: column;
    }
    .footer-img {
        width: 100%;
        height: 300px;
    }
    .footer-txt {
        width: 100%;
        height: auto;
        padding: 50px 0px;
    }
}