.flex {
    display: flex;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    width: 100%;
    position: relative;
    color: #ffffff;
    background: var(--footer-bottom-bg-color);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
}

.media-icon.line:hover {
    background-color: #06C755 !important;
    border-color: #06C755 !important;
}

@media (min-width: 1441px) {
    .footer {
        background: var(--footer-bg-color);
    }

    .footer-wrapper {
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }

    .footer-content-wrapper {
        gap: 250px;
        width: 100%;
        padding: 60px;
        display: flex;
        justify-content: center;
    }

    .content-heading {
        color: #ffffff;
        font-size: 45px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact-info .flex {
        gap: 20px;
    }

    .footer-content-1 .flex svg {
        width: 40px;
        height: 40px;
        color: transparent;
    }

    .contact-info li {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 40px;
    }

    /* share links */
    .share-links {
        gap: 40px;
        display: inline-flex;
        list-style: none;
        justify-content: center;
    }

    .share-links svg {
        width: 40px;
        height: 40px;
    }

    .share-links .media-icon {
        position: relative;
        background: #fff;
        color: var(--footer-bg-color);
        border-radius: 50%;
        margin: 10px;
        width: 70px;
        height: 70px;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .tooltip {
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #fff;
        color: #fff;
        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.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        right: -5px;
        /* adjust this value as needed */
    }

    .share-links .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #fff;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .media-icon:hover .tooltip {
        top: -45px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .share-links .media-icon:hover span,
    .share-links .media-icon:hover .tooltip {
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
    }

    .share-links .x-twitter:hover,
    .share-links .x-twitter:hover .tooltip,
    .share-links .x-twitter:hover .tooltip::before {
        background: #000000;
        color: #fff;
    }

    .share-links .instagram:hover,
    .share-links .instagram:hover .tooltip,
    .share-links .instagram:hover .tooltip::before {
        background: #e4405f;
        color: #fff;
    }

    .contact-info h1 {
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .location li {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 15px;
    }

    .footer-wrapper .center {
        align-items: flex-end !important;
    }

    .footer-content-2 {
        overflow-y: hidden;
        overflow-x: hidden;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .footer {
        background: var(--footer-bg-color);
    }

    .footer-wrapper {
        background-image: url(footer-background.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }

    .footer-content-wrapper {
        gap: 50px;
        width: 100%;
        padding: 10px 50px;
    }

    .content-heading {
        color: #ffffff;
        font-size: 45px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact-info .flex {
        gap: 20px;
    }

    .footer-content-1 .flex svg {
        width: 40px;
        height: 40px;
        color: transparent;
    }

    .contact-info li {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 40px;
    }

    /* share links */
    .share-links {
        gap: 40px;
        display: inline-flex;
        list-style: none;
        justify-content: center;
    }

    .share-links svg {
        width: 40px;
        height: 40px;
    }

    .share-links .media-icon {
        position: relative;
        background: #fff;
        color: var(--footer-bg-color);
        border-radius: 50%;
        margin: 10px;
        width: 70px;
        height: 70px;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .tooltip {
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #fff;
        color: #fff;
        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.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        right: -5px;
        /* adjust this value as needed */
    }

    .share-links .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #fff;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .media-icon:hover .tooltip {
        top: -45px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .share-links .media-icon:hover span,
    .share-links .media-icon:hover .tooltip {
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
    }

    .share-links .x-twitter:hover,
    .share-links .x-twitter:hover .tooltip,
    .share-links .x-twitter:hover .tooltip::before {
        background: #000000;
        color: #fff;
    }

    .share-links .instagram:hover,
    .share-links .instagram:hover .tooltip,
    .share-links .instagram:hover .tooltip::before {
        background: #e4405f;
        color: #fff;
    }

    .contact-info h1 {
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .location li {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 15px;
    }

    .footer-wrapper .center {
        align-items: flex-end !important;
    }

    .footer-content-2 {
        width: 55%;
        padding: 20px 0;
        overflow-y: hidden;
        overflow-x: hidden;
    }
}

@media (max-width: 1023px) {
    .footer {
        background: var(--footer-bg-color);
    }

    .footer-wrapper {
        background-image: url(footer-background.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }

    .footer-content-wrapper {
        gap: 10px;
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    .footer-wrapper {
        align-items: flex-start !important;
    }

    .content-heading {
        color: #ffffff;
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .contact-info .flex {
        gap: 20px;
    }

    .footer-content-1 {
        margin: 40px 0 30px;
    }

    .footer-content-1 .flex svg {
        width: 20px;
        height: 20px;
        color: transparent;
    }

    .contact-info li {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 20px;
    }

    /* share links */
    .share-links {
        gap: 40px;
        display: inline-flex;
        list-style: none;
        justify-content: center;
    }

    .share-links svg {
        width: 40px;
        height: 40px;
    }

    .share-links .media-icon {
        position: relative;
        background: #fff;
        color: var(--footer-bg-color);
        border-radius: 50%;
        margin: 10px;
        width: 70px;
        height: 70px;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .tooltip {
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #fff;
        color: #fff;
        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.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        right: -5px;
        /* adjust this value as needed */
    }

    .share-links .tooltip::before {
        position: absolute;
        content: "";
        height: 8px;
        width: 8px;
        background: #fff;
        bottom: -3px;
        left: 50%;
        transform: translate(-50%) rotate(45deg);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .share-links .media-icon:hover .tooltip {
        top: -45px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .share-links .media-icon:hover span,
    .share-links .media-icon:hover .tooltip {
        text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
    }

    .share-links .x-twitter:hover,
    .share-links .x-twitter:hover .tooltip,
    .share-links .x-twitter:hover .tooltip::before {
        background: #000000;
        color: #fff;
    }

    .share-links .instagram:hover,
    .share-links .instagram:hover .tooltip,
    .share-links .instagram:hover .tooltip::before {
        background: #e4405f;
        color: #fff;
    }

    .contact-info h1 {
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .location li {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 450;
        margin-bottom: 15px;
    }

    .footer-content-2 {
        padding: 20px 0;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .footer-bottom {
        padding: 10px 20px;
        font-size: 14px;
    }
}