/* ============================= */
/* Gradient Border Box */
/* ============================= */
.footer-gradient-border-box {
    position: relative;
    border-radius: 6px;
}

/* Gradient border */
.footer-gradient-border-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* border thickness */
    border-radius: 6px;

    background: linear-gradient(135deg, #0096D9 0%, #C1D82F 100%);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.footer-gradient-border-box svg {
    width: 24px !important;
    height: 24px !important;
}

.footer-gradient-border-box a {
    color: white;
}

/* ============================= */
/* Social Icons */
/* ============================= */
.footer-social-icons .elementor-social-icon svg {
    fill: var(--e-social-icon-icon-color);
    height: 100%;
    width: auto;
}

.footer-social-icons a.elementor-social-icon {
    background: none;
    margin: 0 15px 0 0 !important;
    height: 40px !important;
    width: 40px !important;
}

.footer-social-icons .elementor-social-icon:hover path {
    fill: var(--green);
}

/* ============================= */
/* Footer Links */
/* ============================= */
.footer-link a:hover {
    color: var(--green) !important;
}

.footer-link:before {
    content: "";
    height: 5px;
    width: 5px;
    background: var(--gray-dark-bg);
    display: block;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
}

/* ============================= */
/* Tiny Footer Text */
/* ============================= */
.tiny-text-footer {
    text-align: center;
}

.tiny-text-footer span {
    font-size: 12px;
    color: white;
	padding: 0 2px;
}

/* Hover states */
.tiny-text-footer span:hover,
.footer-gradient-border-box a:hover {
    color: var(--green);
}

/* ============================= */
/* WPML Footer */
/* ============================= */
.wpml-footer .elementor-shortcode {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.wpml-footer .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-vertical ul {
    display: flex;
}

.wpml-footer span {
    color: white;
    font-size: 16px;
}

.wpml-footer .wpml-ls-current-language a span {
    position: relative;
}

.wpml-footer .wpml-ls-current-language a span:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    background-color: white;
}

.wpml-footer span.wpml-ls-display {
    display: none;
}

/* Btn */
.footer-box .eec-btn {
    display: inline-block;
}

/* ============================= */
/* Mobile */
/* ============================= */
@media (max-width: 767px) {

    .footer-main-container,
    .copyright-wrapper {
        background: var(--black-dark-bg) !important;
    }
}


/* ============================= */
/* Laptop */
/* ============================= */
@media screen and (min-width: 1025px) and (max-width: 1600px) {

    .footer-box,
    .footer-gradient-border-box {
        padding: 20px !important
    }

    .footer-main-links-wrapper {
        padding: 20px 20px 20px 40px !important;
    }

    .footer-social-icons a.elementor-social-icon {
        width: 30px !important;
        height: 30px !important;
    }
}