.masked-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}
.textblursik {
    opacity: 0.7;
    filter: blur(1px);
}
.mirror-hor {
 transform: scaleX(-1);
transform-origin: center;
}

.fade-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%, 
    rgba(0, 0, 0, 1) 70%, 
    rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%, 
    rgba(0, 0, 0, 1) 70%, 
    rgba(0, 0, 0, 0) 100%);
}


.Background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.Background__gradient {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top right, rgba(245, 222, 179, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(210, 180, 140, 0.8) 0%, transparent 50%),
        #000000;
    filter: brightness(80%);
}

canvas#neuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: .25;
}



.knopkanasayte-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #039141, #012d13);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: knopkanasayte-pulse 4s infinite;
  overflow: hidden;
  z-index: 1000;
  display: none;
}
.knopkanasayte-button.show-text {
  width: 175px;
  border-radius: 15px;
}

.knopkanasayte-button-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.knopkanasayte-button.show-text .knopkanasayte-button-icon {
  left: auto;
  right: 5px;
  transform: none;
}

.knopkanasayte-button-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.knopkanasayte-button-icon .active-image {
  opacity: 1;
}

.knopkanasayte-button-icon .hidden-image {
  opacity: 0;
}

.knopkanasayte-button-text {
  color: white;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  margin-right: 65px;
  padding-left: 5px;
}
.knopkanasayte-button.show-text .knopkanasayte-button-text {
  opacity: 1;
}

@keyframes knopkanasayte-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(129, 199, 132, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(129, 199, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(129, 199, 132, 0);
  }
}

.knopkanasayte-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.knopkanasayte-overlay.active {
  opacity: 1;
  display: flex;
}

.knopkanasayte-popup {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 300px;
  min-width: 300px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.knopkanasayte-overlay.active .knopkanasayte-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.knopkanasayte-popup-title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #263238;
}

.knopkanasayte-popup-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.4;
}

.knopkanasayte-input-container {
  position: relative;
  margin-bottom: 15px;
}

.knopkanasayte-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  resize: none;
  font-family: inherit;
  color: #333;
}

.knopkanasayte-input--question {
  height: 60px;
}

.knopkanasayte-input--phone {
  height: 45px;
  margin-top: 8px;
}

.knopkanasayte-send-button {
  width: 100%;
  height: 40px;
  border-radius: 25px;
  background: linear-gradient(135deg,rgba(48, 48, 47, 1) 0%, rgba(43, 42, 29, 1) 48%, rgba(46, 46, 32, 1) 98%);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 16px;
  margin-top: 10px;
}

.knopkanasayte-send-button:hover {
  transform: scale(1.02);
}

.knopkanasayte-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.knopkanasayte-close-button:hover {
  opacity: 1;
}

.knopkanasayte-close-button::before,
.knopkanasayte-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #263238;
  transform: translate(-50%, -50%) rotate(45deg);
}

.knopkanasayte-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.knopkanasayte-contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.knopkanasayte-contact-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.knopkanasayte-contact-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.knopkanasayte-whatsapp {
  background: linear-gradient(135deg, #189c49, #013717);
}

.knopkanasayte-call {
  background: linear-gradient(135deg, #860f0f, #3d0201);
}

.knopkanasayte-telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}
.knopkanasayte-max {
  background: linear-gradient(135deg, #00BFFF, #8A2BE2);
}

.knopkanasayte-option-icon {
  margin-right: 10px;
  font-size: 18px;
}
.knopkanasayte-divider {
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 12px 0; 
  width: 100%;
}

.knopkanasayte-error {
  border-color: #ff5555 !important;
}

        .video-container {
            margin: 20px 0;
            display: inline-block;
        }
        
        .video-preview {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            background-color: #000;
            border: 1px solid black;
            border-radius: 20px;

        }
        
        .video-preview-img {
            display: block;
            width: 100%;
            height: auto;
            transition: opacity 0.3s;
        }
        
        .video-preview:hover .video-preview-img {
            opacity: 0.8;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 1, 1, 0.5);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            animation: vidpulse 1s infinite;
        }
        
        .play-button::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-35%, -50%);
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #fff;
        }
        
@keyframes vidpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 27, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(221, 27, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 27, 18, 0);
  }
}
        .video-player {
            display: none;
        }
        
        .video-player video {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid black;
            border-radius: 20px;

        }
        
        .hidden {
            display: none;
        }
        
        .manual-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ff0000;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            z-index: 10;
        }

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.clouds img {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: animateSteam calc(3s * var(--i)) linear infinite;
}
@keyframes animateSteam {
    0% {
        opacity: 0;
        transform: scale(1.8);
    }

    25%, 75%{
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

    .unique-progress-bar-container {
        width: 310px;
        height: 6px;
        background-color: #444;
        border-radius: 3px;
        margin: 0 auto 20px auto;
        overflow: hidden;
    }

    .unique-progress-bar {
        height: 100%;
        width: 0;
        background-color: #DCC07F;
        transition: width 0.3s ease;
    }

    .unique-application-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .unique-application-form__container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .unique-application-form__row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .unique-application-form__input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
    }

    .unique-application-form__input--name {
        width: 100%;
    }

    .unique-application-form__input--phone,
    .unique-application-form__input--file {
        width: 100%;
    }

    .unique-application-form__services {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .unique-application-form__checkbox-label {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .unique-application-form__button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .unique-application-form__button:hover {
        background-color: #555;
    }

    .unique-application-form__file-label {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        cursor: pointer;
    }

    .unique-application-form__file-icon {
        font-size: 20px;
    }

    .unique-application-form__file-name {
        font-size: 14px;
        color: #aaa;
        margin-top: 5px;
        display: none;
    }

    .unique-divider {
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        margin: 3px 0;
        border: none;
    }

    .unique-field-highlight {
        animation: pulse-border 1.3s infinite;
    }

    @keyframes pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .error {
        border-color: #ff5555 !important;
    }

    .custom-contact-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .custom-form-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .custom-form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .custom-form-input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
        width: 100%;
    }

    .custom-form-button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .custom-form-button:hover {
        background-color: #555;
    }

    .custom-field-highlight {
        animation: custom-pulse-border 1.3s infinite;
    }

    @keyframes custom-pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .error {
        border-color: #ff5555 !important;
    }

    .uniqueImageMarqueeWidget {
        max-width: 380px;
        height: 300px;
        background-color: rgba(0,0,0,0.5);
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .unique-marquee-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        touch-action: pan-y;
    }
    
    .unique-marquee-track {
        display: flex;
        animation: unique-marquee-scroll 20s linear infinite;
        width: max-content;
        cursor: grab;
    }
    
    .unique-marquee-track:active {
        cursor: grabbing;
    }
    
    .unique-marquee-track.manual-scroll {
        animation: none;
    }
    
    .unique-marquee-items {
        flex: 0 0 auto;
        width: 200px;
        height: 260px;
        margin: 0 10px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .unique-marquee-items img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }
    
    @keyframes unique-marquee-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 9 - 10px * 18));
        }
    }

.hint-widget {
    width: 100px;
    height: 30px;
    position: absolute;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.hint-widget.visible {
    opacity: 1;
}

.hint-circle {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    right: 0;
    display: none;
}

.hint-circle.animate {
    display: block;
    animation: swipeHint 3s ease-in-out 3 forwards;
}

@keyframes swipeHint {
    0% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circlewd-cam video {
    overflow: hidden;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30px;

}
.circlewd-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .question-contact-form {
        background-color: rgba(51, 51, 51, 0);
        padding: 20px;
        border-radius: 0px;
        border: 0px solid #555;
        width: 350px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .question-form-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .question-form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .question-form-input {
        padding: 10px;
        border: 2px solid #555;
        border-radius: 10px;
        background-color: rgba(51, 51, 51, 0.4);
        font-size: 16px;
        color: white;
        box-sizing: border-box;
        transition: border-color 0.5s ease;
        resize: none;
        min-height: 50px;
        overflow: hidden;
        font-family: inherit;
        line-height: 1.4;
    }

    .question-form-input--question {
        width: 100%;
    }

    .question-form-input--phone {
        width: 100%;
    }

    .question-form-button {
        width: 60%;
        padding: 10px;
        background-color: #444;
        color: white;
        border: 2px solid grey;
        border-radius: 40px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .question-form-button:hover {
        background-color: #555;
    }

    .question-field-highlight {
        animation: question-pulse-border 1.3s infinite;
    }

    @keyframes question-pulse-border {
        0% { border-color: #555; }
        50% { border-color: #DCC07F; }
        100% { border-color: #555; }
    }

    .question-file-attachment {
        color: #aaa;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .question-file-attachment:hover {
        color: #fff;
    }

    .question-file-attachment input[type="file"] {
        display: none;
    }

    .question-file-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .question-file-item {
        background-color: rgba(51, 51, 51, 0.6);
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .question-file-remove {
        color: #ff6b6b;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
    }

    .question-file-remove:hover {
        color: #ff5252;
    }

    .error {
        border-color: #ff5555 !important;
    }

.dynamicVideoContainer {
    position: relative;
    width: 380px;
    height: 500px;
    overflow: hidden;
}
.dynamicVideoPlayer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 1) 20%, 
        rgba(0, 0, 0, 1) 20%, 
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 1) 20%, 
        rgba(0, 0, 0, 1) 20%, 
        transparent 100%
    );
}

.bstroka-marquee {
  color: var(--color-border);
  text-transform: uppercase;
  opacity: 0.1;
  font-size: 90px;
  line-height: 1;
  margin-top: 20px;
  overflow: hidden; 
  position: relative;
}

.bstroka-wrap {
  width: 100%;
}

.bstroka-content {
  display: flex; 
}

.bstroka-text {
  animation: bstroka-animation 80s linear infinite;
  white-space: nowrap;
  display: flex;
  align-items: center;
  min-height: 120px;
}

.bstroka-item {
  margin-right: 40px;
  position: relative;
  display: inline-block;
}

.bstroka-item:after {
  content: "";
  background-color: var(--color-border);
  border-radius: 100%;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

@keyframes bstroka-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

        .rewuw-reviews-container {
            max-width: 380px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            padding-top: 30px;
        }
        
        .rewuw-scroll-hint {
            position: absolute;
            right: 20px;
            top: 0;
            font-size: 24px;
            color: white;
            animation: rewuw-hint-animation 2s infinite;
        }
        
        @keyframes rewuw-hint-animation {
            0% { transform: translateX(0); }
            50% { transform: translateX(-10px); }
            100% { transform: translateX(0); }
        }
        
        .rewuw-reviews-scroller {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding: 5px 15px;
            scrollbar-width: none; 
        }
        .rewuw-reviews-scroller::before {
    content: '';
    flex: 0 0 5px;
    scroll-snap-align: start;
}

        .rewuw-reviews-scroller::-webkit-scrollbar {
            display: none;
        }
        
        .rewuw-review-card {
            scroll-snap-align: start;
            flex: 0 0 280px;
            background: white;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            color: black;
        }

        .rewuw-review-header {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .rewuw-review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .rewuw-review-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .rewuw-review-city {
            font-size: 10px;
            color: #666;
            margin-bottom: 3px;
        }
        
        .rewuw-review-stars {
            color: #FFD700;
            font-size: 12px;
        }
        
        .rewuw-review-text {
            font-size: 14px;
            font-weight: 300;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .rewuw-review-date {
            font-size: 12px;
            color: #888;
        }

.globe-container,
.globe {
	width: 200px;
	height: 200px;  
}
.globe-container {
	position: relative;  
	display: inline-block;
	margin: 0px;
	transform: scale(1.1);
}
.globe {
	position: relative;  
	display: block;
	margin: 0;
	padding: 0;
	top: 0; 
	left: 0;
}
.globe-worldmap,
.globe-worldmap-front,
.globe-worldmap-back,
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
	position: absolute; 
	display: block; 
	margin: 0; 
}
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
	left: 0; 
	top: 0; 
	width: 200px; 
	height: 200px;
	background-position: 0 0; 
	background-repeat: no-repeat;
}
.globe-worldmap {
	left: 0; 
	top: 0; 
	width: 200px; 
	height: 200px; 
	overflow: hidden;
	border-radius: 50%;
}
.globe-worldmap-front,
.globe-worldmap-back {
	left: 0; 
	top: 0; 
	width: 1000px; 
	height: 200px; 
	overflow: visible;
	background-image: url("{{ asset('assets/demo/svg/worldmap-1.svg') }}");
	background-repeat: no-repeat;
}
.globe-outer-shadow { 
	left: 0; 
	top: 186px; 
	width: 200px; 
	height: 30px;
	background-image: url("{{ asset('assets/demo/svg/outer_shadow.svg') }}");
}
.globe-inner-shadow { 
	background-image: url("{{ asset('assets/demo/svg/inner_shadow.svg') }}");
}

.globe-worldmap-front { 
	background-position: 0px 0px;
	animation: textureSpinreverse 8s linear infinite;
}
.globe-worldmap-back { 
	background-position: 0px -220px;
    animation: textureSpin 8s linear infinite;
}

@keyframes textureSpin {
	from {
		transform: translateX(0);
	}
	to {
        transform: translateX(-47.5%);
	}
}
@keyframes textureSpinreverse {
	from {
        transform: translateX(-47.5%);
	}
	to {
		transform: translateX(0);
	}
}
.change-globe {
	margin-bottom: 20px;
}	


