/*******************************
    Footer 5106
*******************************/

.footer-5106 {
    overflow: hidden;
}

/*  footer backgrounds  */

.footer-5106 .footer__background-left {
    width: 200vw;
    left: -150vw;
    top: 0;
    bottom: 0;
    transform: skew(-35deg, 0deg)
}

.footer-5106 .footer__background-right {
    width: 200vw;
    right: -150vw;
    top: 0;
    bottom: 0;
    transform: skew(-35deg, 0deg)
}

.footer-5106 .footer__title {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-5106 .footer__title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
}

.footer-5106 .footer__background-bottom {
    width: 150vw;
    right: -5vw;
    top: 0;
    bottom: 0;
    position: absolute;
    transform: skew(35deg, 0deg)
}

/* External Link */

.footer-5106 .footer__external-link {
    z-index: 5;
    right: 15px;
    bottom: 15px;
    opacity: 0;
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
}

.footer-5106 .footer__external-link.is-showing {
    opacity: 1;
}

@keyframes enhanced-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 204, 125, 0.7);
    }
    50% {
        box-shadow: 0 0 25px 15px rgba(218, 204, 125, 0.4); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 204, 125, 0);
    }
}

.footer__external-link.is-showing {
    position: relative; 
    display: inline-block;
    animation: enhanced-pulse 1.5s infinite; 
    border-radius: 50%; 
}

/* External link animation green */

.footer__external-link.footer__external-link--green.is-showing,
.footer-5106 .footer__phone-icon.footer__phone-icon--anim-green.is-showing {
    animation: enhanced-pulse-green 1.5s infinite; 
}

@keyframes enhanced-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(35, 225, 35, 0.7);
    }
    50% {
        box-shadow: 0 0 25px 15px rgba(35, 225, 35, 0.4); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(35, 225, 35, 0);
    }
}

/* External link animation color-var-3 */

.footer__external-link.footer__external-link--3.is-showing,
.footer-5106 .footer__phone-icon.footer__phone-icon--anim-3.is-showing {
    animation: enhanced-pulse-3 2s infinite; 
}

@keyframes enhanced-pulse-3 {
    0% {
        box-shadow: 0 0 0 0 hsl(from var(--color-3) h s 100% / 0.7);
    }
    50% {
        box-shadow: 0 0 25px 15px hsl(from var(--color-3) h s l / 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 hsl(from var(--color-3) h s l / 0);
    }
}

/* External link animation color-var-4 */

.footer__external-link.footer__external-link--4.is-showing,
.footer-5106 .footer__phone-icon.footer__phone-icon--anim-4.is-showing {
    animation: enhanced-pulse-4 2s infinite; 
}

@keyframes enhanced-pulse-4 {
    0% {
        box-shadow: 0 0 0 0 hsl(from var(--color-4) h s 100% / 0.7);
    }
    50% {
        box-shadow: 0 0 25px 15px hsl(from var(--color-4) h s l / 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 hsl(from var(--color-4) h s l / 0);
    }
}

/* Phone Link */

.footer-5106 .footer__phone-icon {
    z-index: 5;
    left: 15px;
    bottom: 15px;
    opacity: 0;
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    transform: scaleX(-1);
}

.footer-5106 .footer__phone-icon--right {
    right: 15px;
    left: unset;
}

.footer-5106 .footer__phone-icon--mirrored {
    transform: scaleX(1);
}

.footer-5106 .footer__phone-icon.is-showing {
    opacity: 1;
}

/* To top */

.footer-5106 .footer__to-top {
    z-index: 5;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
    font-size: 24px;
    line-height: 1;
    opacity: 0;
	transition: opacity .4s;
	pointer-events: none;
}

.footer-5106 .footer__to-top.is-showing {
	opacity: 1;
	pointer-events: all;
}

.footer-5106 .footer__to-top:hover {
	opacity: .8;
}

.footer-5106 .show-footer-line-mobile .footer__line {
    display: inline-block;
    width: 1px;
    margin: 0 5px;
    height: 14px;
    line-height: 12px;
    vertical-align: middle;
}

.footer-5106 .show-footer-line-mobile li:last-child .footer__line {
    display: none;
}

@media (min-width: 767px) {
    
    .footer-5106 .footer__bar .footer__line {
        display: inline-block;
        width: 2px;
        margin: 0 10px;
        height: 23px;
        line-height: 20px;
        vertical-align: middle;
    }

    .footer-5106 .footer__bar ul li:last-child .footer__line {
        display: none;
    }

    .footer-5106 .footer__to-top {
        font-size: 34px;
        line-height: 1;
    }
}

/* Arrow hover effect - Enev*/

.footer-5106 .hover_footer-effect li a {
    display: inline-flex;
    align-items: center;
    position: relative; 
    transition: padding-left 0.4s ease;
}

.footer-5106 .hover_footer-effect li a::before {
    content: '\27A7';
    position: absolute; 
    left: -10px; 
    opacity: 0; 
    transition: opacity 0.4s ease, transform 0.4s ease; 
    font-size: 1.5em;
}

.footer-5106 .hover_footer-effect li a:hover {
    padding-left: 15px;
}

.footer-5106 .hover_footer-effect li a:hover::before {
    opacity: 1; 
    transform: translateX(10px); 
}

/* Kupi Gumi line above title */

.footer-5106 .footer__line--3 {
    position: relative;
    padding-top: 10px;
}
  
.footer-5106 .footer__line--3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-3);
}

/* style-1 */

.footer-5106.style-1 {
    overflow-x: clip !important;
    overflow: unset;
}

.footer-5106.style-1 .footer__bar {
    overflow: hidden;
}

.footer-5106.style-1 .footer__content:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -27px;
    background: #212529;    
    transform: skewX(-20deg);
    width: 55px;
}

.footer-5106.style-1 .footer__content:after {
    content:'';
    background: #212529;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 50vw;
}

/* Used for images that are full width */

.footer-5106 .position-static {
    position: static  !important;
}

/* footer-box-shadow-inset */

.footer-5106.footer-box-shadow-inset {
    padding-top: 61px;
}

.footer-5106.footer-box-shadow-inset .footer__background-left {
    background: #fff;
    box-shadow: inset -3px 3px 3px 0 rgba(0, 0, 0, .15);
    height: 61px;
    top: 3px;
    bottom: auto;
    width: 50vw;
    left: 0;
    z-index: 2;
    transform: skew(35deg, 0deg);
}

.footer-5106.footer-box-shadow-inset .footer__background-right {
    box-shadow: inset 0px -3px 3px 0 rgba(0, 0, 0, .15);
    width: 50vw;
    right: 0;
    bottom: auto;
    height: 9px;
    top: 55px;
}


/* Newsletter form style */

.footer-5106 .footer__newsletter--style-1 input {
    border: 1px solid #bebebe;
    border-radius: 0;
    color: #666;
    padding: 0 17px;
    height: 40px;
    width: 100vw;
    max-width: 280px;
    margin: 5px 0;
}

.footer-5106 .footer__newsletter--style-1 input::placeholder {
    font-size: 14px;
}

.footer-5106 .footer__newsletter--style-1 button {
    height: 40px;
    line-height: 38px;
    display: inline-block !important;
    white-space: nowrap;
    background: var(--color-3);
    padding: 0 30px !important;
    border: 1px solid var(--color-3);
    color: #fff !important;
    border-radius: 0;
    transition: background .4s, color .4s;
    margin: 5px 0 5px 10px;
}

.footer-5106 .footer__newsletter--style-1 form .form-group {
    margin-bottom: 0;
}

.footer-5106 .footer__newsletter--style-1 button:hover {
    background: #fff;
    color: var(--color-3) !important;
    border-color: var(--color-3);
}

.footer-5106 .footer__newsletter--style-1 form .row {
    justify-content: center;
}

@media (min-width: 575.92px) {

    .footer-5106 .footer__newsletter--style-1 input {
        max-width: 320px;
    }

    .footer-5106 .footer__newsletter--style-1 input::placeholder {
        font-size: 16px;
    }
}

/* Newsletter form style-1 rounded */

.footer-5106 .footer__newsletter--style-1.footer__newsletter--style-1-rounded input,
.footer-5106 .footer__newsletter--style-1.footer__newsletter--style-1-rounded button {
    border-radius: 5px;
}

/* footer__top */

.footer-5106 .footer__top.style-2 .has-mask {
    position: relative;
}

.footer-5106 .footer__top.style-2 .has-mask:before {
    content: '';
    width: 30px;
    height: 30px;
    background: var(--color-14);
    mask: radial-gradient(circle 30px at 0% 0%, transparent 0 30px, var(--color-14) 31px);
    position: absolute;
    right: 0;
    bottom: 0;
}
