.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--box-color);
    box-shadow: var(--div-box-shadow);
    border-radius: 50px 50px 0px 0px;
    gap: 0px;
    padding: 20px;
    margin-top: 30px;
}

.footer_link {
    color: var(--dark-text-color);
}

.footer_main_content_wraper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer_image {
    width: 30%;
}




.main_content {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.weblog_info_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.weblog_link_button {
    width: 130px;
    height: 30px;
}

.footer_contact_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.footer_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
}

.footer_contact_way_link_internal_sosial_media {
    background-image: url(../svg/bale.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}

.footer_contact_way_link_contact_number {
    background-image: url(../svg/phone.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}

.footer_contact_way_link_instagran {
    background-image: url(../svg/instagram.svg);
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
}

.developer_box {
    position: relative;
    width: 240px;
}

.developer_name {
    text-align: center;
}

.developer_box::after {
    content: "";
    position: absolute;
    top: -10px;
    width: 100%;
    height: 2px;
    box-shadow: var(--div-box-shadow);
    background-color: white;
}

@media(min-width:1100px) {
    .footer_image {
        width: 20%;
    }

}

@media(max-width:800px) {
    .footer {
        gap: 30px;
    }

}

@media(max-width:600px) {
    .footer_image {
        width: 40%;
    }

    .weblog_info_title {
        font-size: 14px;
    }

    .weblog_link {
        font-size: 12px;
    }

}