html {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    scroll-behavior: smooth!important;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto Condensed'!important;
    scroll-behavior: smooth!important;
    overflow-x: hidden;
}

.error-404 {
}

.error-404 span {
    font-weight: 700;
    color: #777777!important;
    opacity: .3;
    font-size: 6rem;
}

.header-top {
    padding: 0.25rem;
    font-size: .7rem;
    font-weight: 500;
    background-color: #b13d1f!important;
    color: white;
}

.desktop-menu-wrapper {
    height: calc(4rem + 4px);
}

.mobile-menu-wrapper {
    height: calc(4rem + 4px);

}

.mobile-menu-item-child {
    font-size: 1rem;
    line-height: 1.5;
    color: grey;
    padding-top: .5rem;
    padding-bottom: .5rem;
    cursor: pointer;
}

.mobile-menu-item-parent {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    color: black;
    padding-top: 1.5rem;
    padding-bottom: .5rem;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-menu-item {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    color: black;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.menu {
    padding: 2px;
    background-color: #e2973a;
}

#close-mobile {
    width: 2rem;
    height: 2rem;
}

.mobile-menu.active {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 10000;
    display: block;
    background-color: rgba(255, 255, 255, .95);
}

.mobile-menu {
    display: none;
}

.desktop-menu.pin, .mobile-menu-wrapper.pin {
    position: fixed;
    z-index: 1000;
    width: 100%;
    left: 0;
    top: 0;
    animation-name: menu-appear;
    animation-duration: 1s;
}

@keyframes menu-appear {
    0% {
        top: -100%
    } 100% {
        top: 0;
    }
}

.menu-logo {
    height: 4rem;
    transition: all .3s linear;
}

.menu-logo img {
    height: 100%;
}

.search-wraper {
    margin: auto 0 auto 1rem;
    padding: 1rem .5rem 1rem 1rem;
    position: relative;
}

.search-wraper i {
    font-size: 1.25rem;
    cursor: pointer;
}

.search-wraper:hover .box-top{
    display: block;
}

.search-container {
    width: 16rem;
}

.menu-logo {
    cursor: pointer;
}

.menu-item {
    position: relative;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    color: #222222;
    background-color: transparent;
    margin: auto 0;
    padding: .35rem .75rem;
    cursor: pointer;
}

.menu-item i {
    font-size: .7rem;
}

.menu-item:hover, .menu-item.active {
    color: white;
    background-color: #333333;
}

.dropdown {
    pointer-events: none;
    position: absolute;
    background-color: #e6e1d8;
    top: 150%;
    opacity: 0;
    left: 0;
    z-index: 999;
    transition-property: top, opacity;
    transition-duration: .5s;
}

.menu-item:hover > .dropdown {
    pointer-events: visible;
    top: 100%;
    opacity: 1;
}

.dropdown-item {
    white-space: normal;
    text-align: left;
    line-height: 2.25rem;
    width: 16rem;
    text-transform: none;
    position: relative;
    padding: 0rem 0.75rem;
    font-size: .85rem;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.dropdown-item > .dropdown {
    top: 50%;
    left: 100%;
}

.dropdown-item:hover > .dropdown {
    pointer-events: visible;
    left: 100%;
    top: 0;
    opacity: 1;
}

@media only screen and (min-width: 992px) {
    .desktop-menu-wrapper {
        height: calc(5rem + 4px);
    }
    .menu-logo {
        height: 5rem;
    }
}

.box-top {
    display: none;
    position: absolute;
    z-index: 10000;
    top: 82%;
    left: -0%;
    padding: 1.5rem;
    background-color: #e6e1d8;
}
  
.box-top::after {
    content: "";
    position: absolute;
}

.box-top::after {
    top: -0.8rem;
    left: 0.8rem;
    border-top: .4rem solid transparent;
    border-bottom: .45rem solid #e6e1d8;
    border-left: .4rem solid transparent;
    border-right: .4rem solid transparent;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background-color: white !important;
}

.swiper-button-prev {
    margin-left: .75rem;
    background-image: url("/Content/frontend/images/left.png") !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: ''!important;
}

.swiper-button-next {
    margin-right: .75rem;
    background-image: url("/Content/frontend/images/right.png") !important;
}

.swiper-button-next, .swiper-button-prev {
    height: 0!important;
    padding: 1rem;
    background-size: contain;
    opacity: 0;
    transition: all .5s;
}

.swiper:hover .swiper-button-prev, .swiper:hover .swiper-button-next {
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}

#to-top {
    z-index: 9999;
    width: 2.5rem;
    height: 2.5rem;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    border-radius: 15%;
    border: 2px solid #747373;
}

#to-top::after {
    content: '';
    position: absolute;
    top: .875rem;
    border: 1px solid #747373;
    left: .95rem;
    height: .5rem;
    width: 0px; 
    transform: rotate(45deg);
}

#to-top::before {
    content: '';
    position: absolute;
    top: .875rem;
    border: 1px solid #747373;
    right: .95rem;
    height: .5rem;
    width: 0px;
    transform: rotate(-45deg);
}

#to-top:hover {
    background-color: #446084;
    border-color: #446084;
}

#to-top:hover::after, #to-top:hover::before {
    border-color: white;
}

.ring-images {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 4rem;
    height: 12rem;
    margin-bottom: 4rem;
    z-index: 10001;
}

.ring-image-wrapper {
    position: relative;
    padding: .5rem;
    /* display: inline-block; */
}

.ring-image img {
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    padding: .25rem;
    border-radius: 50%;
}

.red-icon {
    background-color: #dd3333;
}

.blue-icon {
    background-color: #2196F3;
}

.ring-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1005;
    cursor: pointer;
}

.ring-image img {
    animation: ring 1s ease-in-out infinite;
    padding: .5rem;
    transform-origin: 0% 0%;
    z-index: 100;
}

.bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
    z-index: 2;
    border-radius: 50%;
    animation: zoom 1s ease-in-out .05s infinite;
    z-index: 1001;
}

.ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
    border-radius: 50%;
    background: red;
    opacity: 0;
    animation: zoom-outer 1s ease-in-out infinite;
    z-index: 1000;
}

.bg-icon.blue {
    background-color: #2196F3;
}

.bg-icon.red {
    background-color: #dd3333;
}

.ring-description {
    border-radius: 1.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    width: 11rem;
    position: absolute;
    z-index: -1!important;
    color: white;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    margin: auto;
    top: -1.25rem;
    left: -11rem;
    pointer-events: none;
    opacity: 0;
}

.ring-image:hover .ring-description {
    pointer-events: visible;
    opacity: 1;
}

.ring-description.red {
    background-color: #dd3333;
}

.ring-description.blue {
    background-color: #2196F3;
}

@keyframes ring-wrapper {
    0% {
        background-color: rgba(221, 51, 51, 0);
    } 10% {
        background-color: rgba(221, 51, 51, .25);
    } 20% {
        background-color: rgba(221, 51, 51, .15);
    } 30% {
        background-color: rgba(221, 51, 51, 0);
    } 40% {
        background-color: rgba(221, 51, 51, 0);
    } 50% {
        background-color: rgba(221, 51, 51, 0);
    } 60% {
        background-color: rgba(221, 51, 51, .25);
    } 70% {
        background-color: rgba(221, 51, 51, .15);
    } 80% {
        background-color: rgba(221, 51, 51, 0);
    } 90% {
        background-color: rgba(221, 51, 51, 0);
    } 100% {
        background-color: rgba(221, 51, 51, 0);
    }
}

@keyframes zoom {
    0% {
        height: 1.5rem;
        width: 1.5rem;
    }  50% {
        height: 3rem;
        width: 3rem;
    }  100% {
        height: 1.5rem;
        width: 1.5rem;
    }
}

@keyframes zoom-outer {
    0% {
        height: 2rem;
        width: 2rem;
        opacity: .6;
    }  75% {
        height: 4.75rem;
        width: 4.75rem;
        opacity: 0;
    }  100% {
        height: 4.75rem;
        width: 4.75rem;
        opacity: 0;
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    } 15% {
        transform: rotate(-15deg) translate(-50%, -50%);
    } 30% {
        transform: rotate(30deg) translate(-50%, -50%);
    } 45% {
        transform: rotate(-5deg) translate(-50%, -50%);
    } 60% {
        transform: rotate(20deg) translate(-50%, -50%);
    } 75% {
        transform: rotate(0deg) translate(-50%, -50%);
    } 90% {
        transform: rotate(0deg) translate(-50%, -50%);
    } 100% {
        transform: rotate(0deg) translate(-50%, -50%);
    }
}

.item-down {
    position: absolute;
    right: 1rem; 
    top: 50%; 
    transform: translateY(-50%) rotate(0);
    transition: all .35s;
}

.mobile-menu-item {
    position: relative;
}

.mobile-menu-item:hover, .mobile-menu-item.active, .mobile-menu-child {
    background-color: rgba(0, 0, 0, 0.15);
}