/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    background-color: var(--judges-black);
    z-index: 10;
}

.main-slider .item {
    position: relative;
    padding-top: 195px;
    padding-bottom: 200px;
    background-color: var(--judges-black);
    overflow: hidden;
    z-index: 10;
}

.main-slider__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
    z-index: -1;
}

.main-slider__bg:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.84) 30%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.active .main-slider__bg {
    transform: scale(1.1);
}

.main-slider__overly {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--judges-black);
    opacity: .7;
    z-index: -1;
}

.main-slider__shape-1 {
    position: absolute;
    left: -50px;
    bottom: -227px;
    width: 874px;
    height: 500px;
    background-color: var(--judges-base);
    opacity: .05;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.main-slider__shape-2 {
    position: absolute;
    bottom: -40px;
    left: -50px;
    z-index: -1;
}

.main-slider__shape-2 img {
    width: auto !important;
}

.main-slider__shape-3 {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -1;
}

.main-slider__shape-3 img {
    width: auto !important;
    opacity: .10;
    animation: shake-l-r 4s linear 0s infinite;
    filter: invert(1);
}

.main-slider__shape-4 {
    position: absolute;
    bottom: -200px;
    right: 0px;
    z-index: -1;
}

.main-slider__shape-4 img {
    width: auto !important;
    opacity: .10;
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider__sub-title-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider__sub-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider__sub-title {
    font-size: 18px;
    line-height: 24px;
    color: var(--judges-base);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.main-slider__sub-title-shape {
    position: relative;
    display: block;
    height: 1px;
    width: 40px;
    background-color: var(--judges-base);
}

.main-slider__title {
    position: relative;
    display: block;
    font-size: 60px;
    color: var(--judges-white);
    font-weight: 800;
    line-height: 1.3em;
    text-transform: capitalize;
    margin-top: 30px;
    margin-bottom: 12px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider__title span {
    color: var(--judges-base);
}

.active .main-slider__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.main-slider__text {
    color: rgba(var(--judges-white-rgb), .70);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 42px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider__btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1400ms;
    -moz-transition-delay: 1400ms;
    -ms-transition-delay: 1400ms;
    -o-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.main-slider__btn {
    position: relative;
    display: block;
}

.main-slider__btn .thm-btn {
    background-color: var(--judges-white);
}

.main-slider__btn .thm-btn:hover {
    border: 1px solid var(--judges-base);
}

.main-slider__video-link {
    position: relative;
    display: block;
}

.main-slider__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: var(--judges-white);
    background-color: rgba(var(--judges-base-rgb), 1);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.main-slider__video-icon:hover {
    background-color: var(--judges-white);
    color: var(--judges-base);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 43%;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 0px 80px;
    margin: 0 auto;
    height: 0;
    line-height: 0;
    transform: translateY(-50%);
}

.main-slider .owl-theme .owl-nav [class*=owl-] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 60px;
    height: 60px;
    font-size: 20px !important;
    color: rgba(var(--judges-white-rgb), .30) !important;
    opacity: 1;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    padding: 18px 0px !important;
    background-color: transparent !important;
    border: 2px solid rgba(var(--judges-white-rgb), .30) !important;
}

.main-slider .owl-theme .owl-nav [class*=owl-]:hover {
    color: rgba(var(--judges-white-rgb), 1) !important;
    border: 2px solid rgba(var(--judges-white-rgb), 1) !important;
}

.main-slider .owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
    margin-left: 0px;
}

.main-slider .owl-theme .owl-nav .owl-prev {
    transform: rotate(180deg);
    margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    background-color: var(--judges-black);
    z-index: 10;
}

.main-slider-two .item {
    position: relative;
    padding-top: 285px;
    padding-bottom: 200px;
    background-color: var(--judges-black);
    overflow: hidden;
    z-index: 10;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
    z-index: -1;
}

.active .main-slider-two__bg {
    transform: scale(1.1);
}

.main-slider-two__overly {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--judges-black);
    opacity: 0.9;
    z-index: -1;
}

.main-slider-two__shape-1 {
    position: absolute;
    bottom: 0px;
    left: -50px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-300px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-300px);
    transform: perspective(400px) rotateY(0deg) translateX(-300px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    visibility: hidden;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: -1;
}

.active .main-slider-two__shape-1 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(0px);
    -webkit-transition-delay: 2600ms;
    -moz-transition-delay: 2600ms;
    -ms-transition-delay: 2600ms;
    -o-transition-delay: 2600ms;
    transition-delay: 2600ms;
}

.main-slider-two__shape-1 img {
    width: auto !important;
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.main-slider-two__img {
    position: absolute;
    bottom: -30px;
    right: 200px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(0.8);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(0.8);
    transform: perspective(400px) rotateY(0deg) translateY(0px) scale(0.8);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    visibility: hidden;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider-two__img {
    visibility: visible;
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1);
    transform: perspective(400px) rotateY(0deg) translateY(0px) scale(1);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2200ms;
    -ms-transition-delay: 2200ms;
    -o-transition-delay: 2200ms;
    transition-delay: 2200ms;
}

.main-slider-two__img>img {
    width: 100%;
    animation: topBottom 3s ease-in-out infinite;
}

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-two__sub-title-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider-two__sub-title-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-two__sub-title {
    font-size: 18px;
    line-height: 24px;
    color: var(--judges-base);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.main-slider-two__sub-title-shape {
    position: relative;
    display: block;
    height: 1px;
    width: 40px;
    background-color: var(--judges-base);
}

.main-slider-two__title {
    position: relative;
    display: block;
    font-size: 65px;
    color: var(--judges-white);
    font-weight: 800;
    line-height: 1.3em;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 13px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-two__title span {
    color: var(--judges-base);
}

.active .main-slider-two__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.main-slider-two__text {
    color: var(--judges-white);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider-two__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-two__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 43px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.active .main-slider-two__btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1400ms;
    -moz-transition-delay: 1400ms;
    -ms-transition-delay: 1400ms;
    -o-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.main-slider-two__btn {
    position: relative;
    display: block;
}

.main-slider-two__btn .thm-btn {
    color: var(--judges-white);
}


.main-slider-two__video-link {
    position: relative;
    display: block;
}

.main-slider-two__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--judges-base);
    background-color: rgba(var(--judges-white-rgb), .30);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.main-slider-two__video-icon:hover {
    background-color: var(--judges-base);
    color: var(--judges-white);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.main-slider-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}




.main-slider-two .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1320px;
    width: 100%;
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    padding: 0 15px;
    margin: 0 auto 0 !important;
    height: 0;
    line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-left: 10px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(var(--judges-white-rgb), .30);
    border: 2px solid transparent;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-two .owl-theme .owl-dots .owl-dot.active span {
    background-color: rgba(var(--judges-white-rgb), 0);
    border: 2px solid var(--judges-white);
}

.main-slider-two .owl-theme .owl-nav {
    position: absolute;
    top: 43%;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 0px 50px;
    margin: 0 auto;
    height: 0;
    line-height: 0;
    transform: translateY(-50%);
}

.main-slider-two .owl-theme .owl-nav [class*=owl-] {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 60px;
    height: 60px;
    font-size: 20px !important;
    color: rgba(var(--judges-white-rgb), .30) !important;
    opacity: 1;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    padding: 18px 0px !important;
    background-color: transparent !important;
    border: 2px solid rgba(var(--judges-white-rgb), .30) !important;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]:hover {
    color: rgba(var(--judges-white-rgb), 1) !important;
    border: 2px solid rgba(var(--judges-white-rgb), 1) !important;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
    margin-left: 0px;
}

.main-slider-two .owl-theme .owl-nav .owl-prev {
    transform: rotate(180deg);
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    background-color: var(--judges-black);
    z-index: 10;
}

.main-slider-three .item {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    background-color: var(--judges-black);
    overflow: hidden;
    z-index: 10;
}

.main-slider-three__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
    z-index: -1;
}

.active .main-slider-three__bg {
    transform: scale(1.1);
}

.main-slider-three__overly {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--judges-black);
    opacity: 0.65;
    z-index: -1;
}

.main-slider-three__shape-1 {
    position: absolute;
    top: 0;
    left: -80px;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    opacity: 0;
    z-index: -1;
}

.active .main-slider-three__shape-1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider-three__shape-1 img {
    width: auto !important;
    animation: topBottom 3s ease-in-out infinite;
}

.main-slider-three__shape-2 {
    position: absolute;
    bottom: -30px;
    right: -50px;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 0;
    z-index: -1;
}

.active .main-slider-three__shape-2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transition-delay: 2400ms;
    transition-delay: 2400ms;
}

.main-slider-three__shape-2 img {
    width: auto !important;
}

.main-slider-three__content {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.main-slider-three__sub-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.03em;
    font-weight: 600;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.active .main-slider-three__sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-three__title {
    position: relative;
    display: block;
    font-size: 80px;
    color: var(--judges-white);
    font-weight: 800;
    line-height: 1.2em;
    text-transform: capitalize;
    margin-top: 21px;
    margin-bottom: 19px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1200ms ease;
    -moz-transition: all 1200ms ease;
    -ms-transition: all 1200ms ease;
    -o-transition: all 1200ms ease;
    transition: all 1200ms ease;
    z-index: 1;
}

.main-slider-three__title span {
    color: #fff;
}

.active .main-slider-three__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.main-slider-three__text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: rgba(var(--judges-white-rgb), .80);
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 1;
}

.active .main-slider-three__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.main-slider-three__btn-box {
    position: relative;
    display: block;
    margin-top: 43px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider-three__btn-box .thm-btn {
    color: var(--judges-white);
}


.active .main-slider-three__btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}


.main-slider-three__video-link {
    position: absolute;
    top: 40%;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px) translateY(-50%);
    z-index: 10;
}

.active .main-slider-three__video-link {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(-50%);
    transition-delay: 1500ms;
}

.main-slider-three__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 22px;
    color: var(--judges-black);
    background-color: rgba(var(--judges-white-rgb), .90);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.main-slider-three__video-icon:hover {
    background-color: var(--judges-base);
    color: var(--judges-black);
}

.main-slider-three__video-link .ripple,
.main-slider-three__video-icon .ripple:before,
.main-slider-three__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.main-slider-three__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.main-slider-three__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}


.main-slider-three .owl-theme .owl-dots {
    margin-top: 0px !important;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 99;
    padding-top: 100px;
    padding-bottom: 100px;
}

.main-slider-three .owl-theme .owl-dots::before {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 4px;
    height: 85px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
    transform: translateX(-50%);
    opacity: 0.3;
    content: "";
}

.main-slider-three .owl-theme .owl-dots::after {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 4px;
    height: 85px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
    transform: translateX(-50%);
    opacity: 0.3;
    content: "";
}

.main-slider-three .owl-theme .owl-dots .owl-dot {
    display: block;
}

.main-slider-three .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-top: 15px;
}

.main-slider-three .owl-theme .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(var(--judges-white-rgb), 0.4);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-slider-three .owl-theme .owl-dots .owl-dot.active span,
.main-slider-three .owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(var(--judges-white-rgb), 1.0);
}

.main-slider-three .owl-theme .owl-dots .owl-dot span::before {
    position: absolute;
    top: -8px;
    left: -8px;
    bottom: -8px;
    right: -8px;
    border: 1px solid rgba(var(--judges-white-rgb), 0.4);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.main-slider-three .owl-theme .owl-dots .owl-dot.active span::before,
.main-slider-three .owl-theme .owl-dots .owl-dot:hover span::before {
    transform: scaleX(1.0);
    border: 1px solid rgba(var(--judges-white-rgb), 1.0);
}



.site-footer {
    position: relative;
    display: block;
    background-color: var(--judges-black);
    overflow: hidden;
    z-index: 1;
}

.site-footer__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: difference;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

.site-footer__shape-1 img {
    width: auto;
}

.site-footer__shape-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    mix-blend-mode: difference;
    z-index: -1;
    opacity: 0.07;
}

.site-footer__shape-2 img {
    width: auto;
}

.site-footer__shape-3 {
    position: absolute;
    top: 150px;
    left: -80px;
    z-index: -1;
    opacity: 0.7;
    mix-blend-mode: soft-light;
}

.site-footer__shape-3 img {
    width: auto;
}

.site-footer__top {
    position: relative;
    display: block;
}

.footer-widget__about {
    position: relative;
    display: block;
    padding-top: 120px;
    z-index: 1;
}

.site-footer__bg-color {
    position: absolute;
    top: 0;
    left: -10000000px;
    bottom: -500px;
    right: -50px;
    background-color: rgba(var(--judges-base-rgb), 0.15);
    z-index: -1;
}

.footer-widget__logo {
    position: relative;
    display: block;
}

.footer-widget__about-text {
    color: rgba(var(--judges-white-rgb), .80);
    margin-top: 20px;
    margin-bottom: 22px;
}

.footer-widget__working-box {
    position: relative;
    display: block;
}

.footer-widget__working-title {
    font-size: 22px;
    line-height: 32px;
    color: var(--judges-white);
    margin-bottom: 15px;
}

.footer-widget__working-hour {
    position: relative;
    display: block;
}

.footer-widget__working-hour li {
    position: relative;
    display: block;
}

.footer-widget__working-hour li+li {
    margin-top: 18px;
    border-top: 1px dashed rgba(var(--judges-white-rgb), .30);
    padding-top: 18px;
}

.footer-widget__working-hour li p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(var(--judges-white-rgb), .80);
}

.footer-widget__right {
    position: relative;
    display: block;
    margin-left: 75px;
}

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.footer-widget__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: var(--judges-white);
    text-transform: capitalize;
}

.footer-widget__right-bottom {
    position: relative;
    display: block;
}

.footer-widget__usefull-link {
    position: relative;
    display: block;
}

.footer-widget__link-box {
    position: relative;
    display: block;
}

.footer-widget__link {
    position: relative;
    display: block;
}

.footer-widget__link li {
    position: relative;
    display: block;
}

.footer-widget__link li+li {
    margin-top: 12px;
}

.footer-widget__link li a {
    color: rgba(var(--judges-white-rgb), .80);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__link li a:hover {
    color: var(--judges-base);
}

.footer-widget__link-2 {
    margin-left: 55px;
}

.footer-widget__services {
    position: relative;
    display: block;
}

.footer-widget__newsletter {
    position: relative;
    align-items: center;
    justify-content: space-between;
    /* padding: 53px 0 57px; */
    margin-bottom: 30px;
    z-index: 1;
}

.footer-widget__newsletter-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    color: var(--judges-white);
    margin-bottom: 30px;
}

.footer-widget__newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.footer-widget__newsletter-form-input-box {
    position: relative;
    display: block;
    max-width: 200px;
    width: 100%;
}

.footer-widget__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 58px;
    width: 100%;
    background-color: rgba(var(--judges-white-rgb), .10);
    outline: none;
    border: none;
    color: rgba(var(--judges-white-rgb), .80);
    font-weight: 400;
    line-height: 58px;
    border-radius: 29px;
    padding-right: 10px;
    padding-left: 15px;
}

.footer-widget__newsletter-form .thm-btn {
    border: none;
    background-color: var(--judges-white);
        padding-left: 10px;
}

.footer-widget__newsletter-form .thm-btn:hover {
    border: none;
}

.footer-widget__contact {
    position: relative;
    display: block;
}

.footer-widget__contact li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-widget__contact li+li {
    margin-top: 14px;
}

.footer-widget__contact li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(var(--judges-white-rgb), .15);
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact li:hover .icon {
    background-color: var(--judges-base);
}

.footer-widget__contact li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--judges-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact li:hover .icon span {
    color: var(--judges-white);
}

.footer-widget__contact li .content {
    position: relative;
    display: block;
    flex: 1;
}

.footer-widget__contact li .content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--judges-white);
}

.footer-widget__contact li .content p {
    color: rgba(var(--judges-white-rgb), .80)
}

.footer-widget__contact li .content p a {
    color: rgba(var(--judges-white-rgb), .80)
}

.footer-widget__contact li .content p a:hover {
    color: var(--judges-base);
}

.site-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    border-top: 1px dashed rgba(var(--judges-white-rgb), .20);
    padding-top: 30px;
    padding-bottom: 30px;
}

.site-footer__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--judges-white);
    background-color: rgba(var(--judges-white-rgb), .10);
    font-size: 16px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer__social a:hover {
    color: var(--judges-white);
    background-color: var(--judges-base);
}

.site-footer__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--judges-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer__social a+a {
    margin-left: 10px;
}

.site-footer__bottom {
    position: relative;
    display: block;
    border-top: 1px dashed rgba(var(--judges-white-rgb), .10);
    z-index: 1;
}

.site-footer__bottom:before {
    content: "";
    position: absolute;
    left: 0;
    right: 20%;
    bottom: 0;
    top: 0;
    background-color: var(--judges-black);
    z-index: -1;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 26px 0 25px;
}

.site-footer__bottom-text {
    color: rgba(var(--judges-white-rgb), .80);
}

.site-footer__bottom-text a {
    color: var(--judges-base);
    font-weight: 600;
}

.site-footer__bottom-text a:hover {
    color: var(--judges-white);
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li+li {
    margin-left: 30px;
}

.site-footer__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--judges-white-rgb), .80);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--judges-base);
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site-footer-two {
    position: relative;
    display: block;
    background-color: #0f264f;
    overflow: hidden;
    z-index: 1;
}

.site-footer-two__shape-1 {
    position: absolute;
    left: -30px;
    top: 70px;
    opacity: 0.7;
    mix-blend-mode: soft-light;
    z-index: -1;
}

.site-footer-two__shape-1 img {
    width: auto;
}

.site-footer-two__shape-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    mix-blend-mode: difference;
    z-index: -1;
    opacity: 0.07;
}

.site-footer-two__shape-2 img {
    width: auto;
}

.site-footer-two__top {
    position: relative;
    display: block;
    padding: 80px 0 50px;
}

.footer-widget-two__about {
    position: relative;
    display: block;
}

.footer-widget-two__logo {
    position: relative;
    display: block;
    margin-top: -4px;
}

.footer-widget-two__about-text {
    margin-top: 20px;
    margin-bottom: 20px;
    color: rgba(var(--judges-white-rgb), .80);
}

.site-footer-two__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.site-footer-two__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--judges-white);
    background-color: rgba(var(--judges-white-rgb), .10);
    font-size: 16px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer-two__social a:hover {
    color: var(--judges-white);
    background-color: var(--judges-base);
}

.site-footer-two__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--judges-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
}

.site-footer-two__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.site-footer-two__social a+a {
    margin-left: 10px;
}

.footer-widget-two__title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.footer-widget-two__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    color: var(--judges-white);
    text-transform: capitalize;
}

.footer-widget-two__usefull-link {
    position: relative;
    display: block;
    margin-left: 30px;
}

.footer-widget-two__link-box {
    position: relative;
    display: flex;
}

.footer-widget-two__link {
    position: relative;
    display: block;
}

.footer-widget-two__link li {
    position: relative;
    display: block;
}

.footer-widget-two__link li+li {
    margin-top: 12px;
}

.footer-widget-two__link li a {
    color: rgba(var(--judges-white-rgb), .80);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget-two__link li a:hover {
    color: #fff;
}

.footer-widget-two__link-2 {
    margin-left: 55px;
}

.footer-widget-two__services {
    position: relative;
    display: block;
}

.footer-widget-two__instagram {
    position: relative;
    display: block;
}

.footer-widget-two__instagram-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    padding-top: 9px;
}

.footer-widget-two__instagram-list li {
    position: relative;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.footer-widget-two__instagram-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.footer-widget-two__instagram-img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--judges-black-rgb), .50);
    transition: all 700ms ease;
    transform: translateY(-100%);
    z-index: 1;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img:before {
    transform: translateY(0%);
}

.footer-widget-two__instagram-img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img img {
    transform: scale(1.1) rotate(2deg);
}

.footer-widget-two__instagram-img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--judges-white);
    transform: translateY(100px);
    opacity: 0;
    transition: all 700ms ease;
    z-index: 2;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
}

.footer-widget-two__instagram-list li .footer-widget-two__instagram-img a:hover {
    color: var(--judges-base);
}

.site-footer-two__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--judges-white-rgb), .10);
}

.site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0px;
}

.site-footer-two__bottom-text {
    color: rgba(var(--judges-white-rgb), .80);
}

.site-footer-two__bottom-text a {
    font-weight: 500;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-two__bottom-text a:hover {
    color: var(--judges-white);
}

.site-footer-two__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer-two__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer-two__bottom-menu li:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 6px;
    left: -10px;
    width: 1px;
    background-color: rgba(var(--judges-white-rgb), .80);
}

.site-footer-two__bottom-menu li:first-child:before {
    display: none;
}

.site-footer-two__bottom-menu li+li {
    margin-left: 20px;
}

.site-footer-two__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--judges-white-rgb), .80);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
    color: #fff;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 0 90px;
    z-index: 1;
}

.services-one:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--judges-primary);
    z-index: -1;
}

.services-one__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: -30px;
    height: 625px;
    overflow: hidden;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    mix-blend-mode: luminosity;
}

.services-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.services-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.services-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.services-one__single {
    position: relative;
    display: block;
    background-color: var(--judges-primary);
    border: 1px solid var(--judges-bdr-color);
    padding: 20px 19px 20px;
    border-radius: var(--judges-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    box-shadow: 0px 0px 12px rgb(94 94 94 / 30%);
}

.services-one__single:hover {
    box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.04);
    transform: translateY(-10px);
}

.services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.services-one__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--judges-black-rgb), 0.6);
    border-radius: var(--judges-bdr-radius);
    opacity: 0;
    z-index: 1;
    content: "";
}

.services-one__single:hover .services-one__img::before {
    opacity: 1;
}

.services-one__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
    height: 250px;
    object-fit: cover;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1);
}

.services-one__content {
    position: relative;
    display: block;
    margin-top: -40px;
    margin-bottom: 20px;
    padding: 0 20px 0;
}

.services-one__count {
    position: absolute;
    top: 60px;
    right: 0;
    font-size: 80px;
    line-height: .8em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--judges-extra);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-one__single:hover .services-one__count {
    -webkit-text-stroke: 1px var(--judges-base);
    color: var(--judges-base);
}

.services-one__icon {
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 15px;
    z-index: 2;
}

.services-one__single:hover .services-one__icon {
    background-color: var(--judges-base);
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--judges-base);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
    color: var(--judges-white);
}

.services-one__title {
    font-size: 25px;
    line-height: 25px;
    text-transform: capitalize;
    margin-top: 25px;
    margin-bottom: 14px;
    font-weight: 700;
}

.services-one__title a {
    color: var(--judges-black);
}

.services-one__title a:hover {
    color: var(--judges-base);
}

.services-one__text {
    margin-bottom: 17px;
}

.services-one__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--judges-white);
    background-color: var(--judges-base);
    padding: 6px 20px;
    border-radius: var(--judges-bdr-radius);
}

.services-one__btn:hover {
    background-color: var(--judges-black);
    color: var(--judges-white);
}

.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 100px 0 90px;
    background-color: #ffffff;
    z-index: 1;
}

.services-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .1;
    z-index: -1;
}

.services-two .section-title__title {
    color: #0b3a62;
}

.services-two__single {
    position: relative;
    display: block;
    text-align: center;
    background: var(--judges-base);
    padding: 15px 45px 20px;
    border-radius: var(--judges-bdr-radius);
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-two__single:hover {
    transform: translateY(-10px);
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 80px;
    margin: 0 auto 0;
    background-color: rgba(var(--judges-base-rgb), .10);
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--judges-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.services-two__single:hover .services-two__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.services-two__title {
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 20px;
}

.services-two__title a {
    color: var(--judges-white);
}

.services-two__title a:hover {
    color: #fff;
}

.services-two__text {
    margin-bottom: 4px;
}

.services-two__read-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    gap: 5px;
    font-size: 17px;
}

p.services-two__text {
    color:#fff;
}

.services-two__read-more span {
    font-size: 18px;
    font-weight: 700;
}

.services-two__read-more:hover {
    color: var(--judges-white);
}


/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 90px 0 170px;
    z-index: 1;
}

.services-three .section-title {
    margin-bottom: 98px;
}

.services-three__carousel {
    position: relative;
    display: block;
}

.services-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.services-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.services-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.services-three__single {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 49px 20px 41px;
    border-radius: var(--judges-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.services-three__single:hover {
    transform: translateY(-10px);
}

.services-three__icon {
    position: absolute;
    top: -40px;
    left: 40px;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--judges-base-rgb), .90);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-radius: 15px;
    border-top-left-radius: 0;
    z-index: 2;
}

.services-three__single:hover .services-three__icon {
    background-color: rgba(var(--judges-black-rgb), .90);
}

.services-three__icon::before {
    position: absolute;
    top: 0;
    left: -40px;
    border-bottom: 40px solid var(--judges-base);
    border-left: 40px solid transparent;
    border-right: 0px solid transparent;
    content: "";
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon::before {
    border-bottom: 40px solid var(--judges-black);
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--judges-white);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
    color: var(--judges-white)
}

.services-three__title {
    font-size: 25px;
    line-height: 25px;
    text-transform: capitalize;
    margin-top: 25px;
    margin-bottom: 14px;
    font-weight: 700;
}

.services-three__title a {
    color: var(--judges-black);
}

.services-three__title a:hover {
    color: var(--judges-base);
}

.services-three__text {
    margin-bottom: 17px;
}

.services-three__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--judges-white);
    background-color: var(--judges-base);
    padding: 6px 20px;
    border-radius: var(--judges-bdr-radius);
}

.services-three__btn:hover {
    background-color: var(--judges-black);
    color: var(--judges-white);
}


.services-three__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: -50px;
    left: 0px;
    right: 0;
    text-align: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-three__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--judges-base);
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.services-three__carousel.owl-carousel .owl-dot.active {
    width: 10px;
    height: 10px;
    background-color: var(--judges-black);
}

.services-three__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.services-three__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 100px 0 90px;
    z-index: 1;
}

.service-details__left {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
}

.service-details__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.service-details__title-1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    margin-top: 41px;
    margin-bottom: 30px;
}

.service-details__text-1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--judges-black);
}

.service-details__text-2 {
    margin-bottom: 15px;
}

.service-details__points-list {
    position: relative;
    display: block;
}

.service-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details__points-list li+li {
    margin-top: 16px;
}

.service-details__points-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--judges-base);
}

.service-details__points-list li p {
    color: var(--judges-black);
}

.service-details__img-box {
    position: relative;
    display: block;
    margin-top: 60px;
}

.service-details__img-box-single {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.service-details__img-box-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    z-index: 1;
}

.service-details__img-box-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(0, 0, 0);
    border-radius: 20px;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-details__img-box-img:hover:before {
    opacity: 0.2;
}

.service-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.service-details__img-box-img:hover img {
    transform: scale(1.06) rotate(0deg);
}

.service-details__img-box-content-single {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.service-details__img-box-content-icon-and-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-details__img-box-content-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__img-box-content-icon span {
    position: relative;
    display: inline-block;
    font-size: 36px;
    color: var(--judges-base);
}

.service-details__img-box-content-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.service-details__img-box-content-text {
    margin-top: 17px;
}

.service-details__faq-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__services-box {
    position: relative;
    display: block;
    padding: 31px 35px 40px;
    background-color: rgba(var(--judges-extra-rgb), .30);
    border-radius: var(--judges-bdr-radius);
}

.service-details__services-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 28px;
}

.service-details__services-list {
    position: relative;
    display: block;
}

.service-details__services-list li {
    position: relative;
    display: block;
}

.service-details__services-list li+li {
    margin-top: 12px;
}

.service-details__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--judges-white);
    border-radius: var(--judges-bdr-radius);
    padding: 13px 20px 14px;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--judges-font-two);
    color: var(--judges-black);
    overflow: hidden;
    z-index: 1;
}

.service-details__services-list li:hover a {
    color: var(--judges-white);
}

.service-details__services-list li.active a {
    color: var(--judges-white);
}

.service-details__services-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--judges-base);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.service-details__services-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__services-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-details__services-list li a span {
    color: #6E777D;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-details__services-list li:hover a span {
    color: var(--judges-white);
}

.service-details__services-list li.active a span {
    color: var(--judges-white);
}




.service-details__sidebar-download-box {
    position: relative;
    display: block;
    padding: 31px 35px 40px;
    background-color: rgba(var(--judges-extra-rgb), .30);
    border-radius: var(--judges-bdr-radius);
    margin-top: 50px;
    margin-bottom: 50px;
}

.service-details__sidebar-single-download {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(var(--judges-base-rgb), .30);
    padding: 14px 0px 14px;
    line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
    padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--judges-black);
    font-size: 45px;
    line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
    position: relative;
    display: block;
    margin-left: 17px;
    flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
    color: var(--judges-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
    color: var(--judges-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
    color: var(--judges-black);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
    color: var(--judges-black);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
    color: var(--judges-base);
}

.service-details__sidebar-single-download ul li .btn-box {
    position: relative;
    display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--judges-base);
    border-radius: 2px;
    overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
    background: var(--judges-black);
}

.service-details__sidebar-single-download ul li .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--judges-white);
    font-size: 20px;
    line-height: 20px;
}




.service-details__sidebar-contact {
    position: relative;
    display: block;
    padding-top: 18px;
    padding-bottom: 47px;
    background-color: rgba(var(--judges-extra-rgb), .30);
    border-radius: var(--judges-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.service-details__sidebar-contact::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--judges-base);
    height: 305px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -2;
}

.service-details__sidebar-contact::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--judges-black);
    height: 295px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -1;
}

.service-details__sidebar-contact-img {
    position: relative;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    z-index: 1;
}

.service-details__sidebar-contact-img .inner {
    position: relative;
    display: block;
}

.service-details__sidebar-contact-img .inner img {
    width: auto;
}

.service-details__sidebar-contact-content {
    position: relative;
    display: block;
    margin-top: -65px;
    z-index: 2;
}

.service-details__sidebar-contact-content .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--judges-black);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-details__sidebar-contact-content .icon span {
    position: relative;
    display: inline-block;
    color: var(--judges-white);
    font-size: 20px;
    line-height: 20px;
}

.service-details__sidebar-contact-content h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 13px;
    font-family: var(--judges-font);
    color: var(--judges-black);
}

.service-details__sidebar-contact-content h2 a {
    color: var(--judges-black);
}

.service-details__sidebar-contact-content h2 a:hover {
    color: var(--judges-base);
}

.service-details__sidebar-contact-content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.services-page .services-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--judges-primary);
    padding: 100px 0 80px;
    z-index: 1;
}

.why-choose-one__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: -1;
    mix-blend-mode: luminosity;
}

.why-choose-one__shape-1 {
    position: absolute;
    top: 0;
    right: -30px;
    opacity: .30;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.why-choose-one__shape-1 img {
    width: auto;
}

.why-choose-one__left {
    position: relative;
    display: block;
}

.why-choose-one__left .section-title {
    margin-bottom: 31px;
}

.why-choose-one__text {
    margin-bottom: 12px;
}

.why-choose-one__points-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-choose-one__points {
    position: relative;
    display: block;
}

.why-choose-one__points li {
    position: relative;
    display: flex;
    gap: 15px;
}

.why-choose-one__points li+li {
    /* margin-top: 17px; */
}

.why-choose-one__points li .icon {
    position: relative;
    display: block;
    top: 3px;
}

.why-choose-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--judges-base);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.why-choose-one__points li .content {
    position: relative;
    display: block;
    flex: 1;
}

.why-choose-one__points li .content h3 {
    font-size: 25px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 9px;
}

.why-choose-one__points li .content h3 a {
    color: var(--judges-black);
}

.why-choose-one__points li .content h3 a:hover {
    color: var(--judges-base);
}

.why-choose-one__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.why-choose-one__right {
    position: relative;
    display: block;
    margin-left: 60px;
    z-index: 1;
}

.why-choose-one__circle {
    position: absolute;
    top: 48px;
    right: 100px;
    height: 448px;
    width: 448px;
    border-radius: 50%;
    border: 2px dashed var(--judges-base);
    transform: rotate(0deg);
    z-index: -1;
}

.why-choose-one__content-one {
    position: relative;
    display: block;
}

.why-choose-one__img-one {
    position: relative;
    display: block;
    border-radius: var(--judges-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.why-choose-one__img-one::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.why-choose-one__img-one:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.why-choose-one__img-one img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
}

.why-choose-one__img-one:hover img {
    transform: scale(1);
}

.why-choose-one__content-two {
    position: relative;
    display: block;
    margin-top: 27px;
}


.why-choose-one__img-two {
    position: relative;
    display: block;
    border-radius: var(--judges-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.why-choose-one__img-two::before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.why-choose-one__img-two:hover:before {
    height: 100%;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.why-choose-one__img-two img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
    margin-top: 140px;
}

.why-choose-one__img-two:hover img {
    transform: scale(1);
}


/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
}

.why-choose-two__shape-1 {
    position: absolute;
    bottom: 80px;
    right: 0;
    z-index: -1;
}

.why-choose-two__shape-1 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.05;
}

.why-choose-two__left {
    position: relative;
    display: block;
    margin-right: 30px;
    z-index: 1;
}

.why-choose-two__left:before {
    content: "";
    position: absolute;
    top: -120px;
    bottom: -120px;
    left: -10000000px;
    right: 300px;
    background-color: rgba(var(--judges-base-rgb), .10);
    z-index: -1;
}

.why-choose-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.why-choose-two__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.why-choose-two__video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

.active .why-choose-two__video-link {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 500ms;
}

.why-choose-two__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 22px;
    color: var(--judges-black);
    background-color: rgba(var(--judges-white-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.why-choose-two__video-icon:hover {
    background-color: var(--judges-base);
    color: var(--judges-white);
}

.why-choose-two__video-link .ripple,
.why-choose-two__video-icon .ripple:before,
.why-choose-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--judges-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.why-choose-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.why-choose-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.why-choose-two__right {
    position: relative;
    display: block;
}

.why-choose-two__right .section-title {
    margin-bottom: 31px;
}

.why-choose-two__text {
    margin-bottom: 37px;
}

.why-choose-two__points-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-choose-two__points {
    position: relative;
    display: block;
}

.why-choose-two__points li {
    position: relative;
    display: flex;
    gap: 15px;
}

.why-choose-two__points li+li {
    margin-top: 17px;
}

.why-choose-two__points li .icon {
    position: relative;
    display: block;
    top: 3px;
}

.why-choose-two__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--judges-base);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.why-choose-two__points li:hover .icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.why-choose-two__points li .content {
    position: relative;
    display: block;
    flex: 1;
}

.why-choose-two__points li .content h3 {
    font-size: 25px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 9px;
}

.why-choose-two__points li .content h3 a {
    color: var(--judges-black);
}

.why-choose-two__points li .content h3 a:hover {
    color: var(--judges-base);
}

.why-choose-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}


/*--------------------------------------------------------------
# Testimonials Six
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: -30px;
    right: 0;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.06;
    z-index: -1;
}

.testimonial-one__left {
    position: relative;
    display: block;
    margin-top: -43px;
    z-index: 5;
}

.testimonial-one__left .section-title {
    margin-bottom: 22px;
}

.testimonial-one__satisfied-clients {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-one__satisfied-clients-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: var(--judges-base);
    border-radius: var(--judges-bdr-radius);
}

.testimonial-one__satisfied-clients-icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--judges-white);
    transition: all 500ms ease;
}

.testimonial-one__satisfied-clients:hover .testimonial-one__satisfied-clients-icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.testimonial-one__satisfied-clients-text {
    font-size: 18px;
    line-height: 28px;
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-one__satisfied-clients-text span {
    font-family: var(--judges-font) !important;
    line-height: 28px !important;
    font-weight: 700;
    color: var(--judges-black);
}

.testimonial-one__right {
    position: relative;
    display: block;
    margin-right: -375px;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}


.testimonial-one__single {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 49px 49px 41px;
    border-radius: var(--judges-bdr-radius);
    border-top: 10px solid var(--judges-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.testimonial-one__single:hover {
    transform: translateY(-10px);
    border-top: 10px solid var(--judges-black);
}

.testimonial-one__img {
    position: absolute;
    top: -50px;
    right: 49px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-one__img:before {
    background-color: var(--judges-base);
    border-radius: 120px 120px 0 0;
    content: "";
    height: 50%;
    left: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-one__single:hover .testimonial-one__img:before {
    background-color: var(--judges-black);
}

.testimonial-one__img img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--judges-white);
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 22px;
}

.testimonial-one__client-content {
    position: relative;
    display: block;
}

.testimonial-one__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
}

.testimonial-one__client-name a {
    color: var(--judges-black);
}

.testimonial-one__client-name a:hover {
    color: var(--judges-base);
}

.testimonial-one__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-one__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--judges-base);
}

.testimonial-one__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--judges-gray);
}

.testimonial-one__quote {
    position: absolute;
    bottom: 10px;
    left: 170px;
    z-index: 1;
}

.testimonial-one__quote span {
    position: relative;
    display: inline-block;
    font-size: 195px;
    line-height: 195px;
    color: var(--judges-gray);
    opacity: .08;
}

.testimonial-one__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 40px;
    left: -550px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.testimonial-one__carousel .owl-nav .owl-next,
.testimonial-one__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: var(--judges-base-rgb) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .09;
    z-index: -1;
}

.testimonial-two__shape-1 img {
    width: auto;
}

.testimonial-two__shape-2 {
    position: absolute;
    bottom: 0;
    right: -40px;
    opacity: 0.2;
    z-index: -1;
}

.testimonial-two__shape-2 img {
    width: auto;
}

.testimonial-two .section-title {
    margin-bottom: 90px;
}

.testimonial-two__carousel {
    position: relative;
    display: block;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-two__single {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 59px 30px 22px;
    border-radius: var(--judges-bdr-radius);
    border-top: 10px solid var(--judges-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.testimonial-two__single:hover {
    transform: translateY(-10px);
    border-top: 10px solid var(--judges-black);
}

.testimonial-two__img {
    position: absolute;
    top: -50px;
    right: 49px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-two__img:before {
    background-color: var(--judges-base);
    border-radius: 120px 120px 0 0;
    content: "";
    height: 50%;
    left: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__img:before {
    background-color: var(--judges-black);
}

.testimonial-two__img img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--judges-white);
}

.testimonial-two__client-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
}

.testimonial-two__client-content {
    position: relative;
    display: block;
}

.testimonial-two__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
}

.testimonial-two__client-name a {
    color: var(--judges-black);
}

.testimonial-two__client-name a:hover {
    color: var(--judges-base);
}

.testimonial-two__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-two__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--judges-base);
}

.testimonial-two__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    color: var(--judges-gray);
}

.testimonial-two__quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--judges-base);
    margin-top: -59px;
    margin-bottom: 20px;
    margin-left: -30px;
    border-bottom-right-radius: var(--judges-bdr-radius);
}

.testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 38px;
    line-height: 38px;
    color: var(--judges-white);
    top: -3px;
}

.testimonial-two__carousel.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    transform: translateY(-50%);
    height: 0;
    line-height: 0;
    z-index: 100;
}

.testimonial-two__carousel .owl-nav .owl-next,
.testimonial-two__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: rgba(var(--judges-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-three__shape-1 {
    position: absolute;
    bottom: -30px;
    left: 0;
    opacity: .3;
    z-index: -1;
}

.testimonial-three__shape-1 img {
    width: auto;
}

.testimonial-three__left {
    position: relative;
    display: block;
    z-index: 15;
}

.testimonial-three__left .section-title {
    margin-bottom: 20px;
}

.testimonial-three__right {
    position: relative;
    display: block;
    margin-top: 45px;
}

.testimonial-three__carousel {
    position: relative;
    display: block;
}

.testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-three__single {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 76px 30px 40px;
    border-radius: var(--judges-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.testimonial-three__single:hover {
    transform: translateY(-10px);
}

.testimonial-three__single:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 10px;
    background-color: var(--judges-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-three__single:hover:before {
    background-color: var(--judges-black);
}

.testimonial-three__client-info {
    position: absolute;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    top: -45px;
    left: 40px;
}

.testimonial-three__client-img {
    position: relative;
    display: block;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-three__client-img:before {
    background-color: var(--judges-base);
    border-radius: 120px 120px 0 0;
    content: "";
    height: 50%;
    left: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-three__single:hover .testimonial-three__client-img:before {
    background-color: var(--judges-black);
}

.testimonial-three__client-img img {
    width: 100%;
    border: 5px solid var(--judges-white);
    border-radius: 50%;
}

.testimonial-three__client-content {
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-three__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
}

.testimonial-three__client-name a {
    color: var(--judges-black);
}

.testimonial-three__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 31px;
}

.testimonial-three__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--judges-base);
}

.testimonial-three__quote {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--judges-base);
    border-bottom-right-radius: var(--judges-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    bottom: 0;
    right: 0;
}

.testimonial-three__single:hover .testimonial-three__quote {
    background-color: var(--judges-black);
}

.testimonial-three__quote span {
    position: relative;
    display: inline-block;
    font-size: 38px;
    line-height: 38px;
    color: var(--judges-white);
    top: -3px;
}

.testimonial-three__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 0;
    left: -440px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.testimonial-three__carousel .owl-nav .owl-next,
.testimonial-three__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: rgba(var(--judges-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-three__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    padding: 160px 0 40px;
}

.testimonials-page .testimonial-one__single {
    margin-bottom: 80px;
}

/*--------------------------------------------------------------
# Case One
--------------------------------------------------------------*/
.case-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.case-one:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-color: var(--judges-primary);
    z-index: -1;
}

.case-one__top {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.case-one__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.case-one__top-inner .section-title {
    margin-bottom: 0;
}

.case-one__btn-box {
    position: relative;
    display: block;
}

.case-one__bottom {
    position: relative;
    display: block;
}

.case-one__bottom .container {
    max-width: 1720px;
}

.case-one__carousel {
    position: relative;
    display: block;
}

.case-one__single {
    position: relative;
    display: block;
    margin-bottom: 40px;
}

.case-one__bottom .owl-item:nth-child(even) .case-one__single-inner {
    margin-top: 30px;
}

.case-one__single-inner {
    position: relative;
    display: block;
}

.case-one__img-box {
    position: relative;
    display: block;
}

.case-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    background-color: var(--judges-black);
    z-index: 1;
}

.case-one__single:hover .case-one__img img {
    opacity: 0.5;
    transform: scaleX(1.05);
}

.case-one__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
    transition: all 500ms ease;
}

.case-one__content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background-color: var(--judges-white);
    border-radius: var(--judges-bdr-radius);
    padding: 108px 30px 32px;
    overflow: hidden;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 5;
}

.case-one__single:hover .case-one__content {
    -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transform: perspective(400px) rotateX(0deg) scaleY(1.0);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


.case-one__content::before {
    position: absolute;
    top: 0;
    left: 60px;
    bottom: 0;
    width: 2px;
    background: var(--judges-base);
    content: "";
    transition: -webkit-transform 2.0s ease;
    transition: transform 2.0s ease;
    transition: transform 2.0s ease, -webkit-transform 2.0s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.case-one__single:hover .case-one__content::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.case-one__content::after {
    position: absolute;
    left: 0px;
    bottom: 43px;
    right: 55%;
    height: 2px;
    background: var(--judges-base);
    content: "";
    transition: transform 2000ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
}

.case-one__single:hover .case-one__content::after {
    transform: scale(1, 1);
    transform-origin: left center;
}


.case-one__content-box {
    position: relative;
    display: block;
    text-align: right;
}

.case-one__content-box h3 {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 30px;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 700ms ease;
}

.case-one__content-box h3 a {
    color: var(--judges-black);
}

.case-one__single:hover .case-one__content-box h3 {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 700ms;
}

.case-one__content-box h3 a:hover {
    color: var(--judges-base);
}

.case-one__content-box p {
    font-size: 18px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 700ms ease;
}

.case-one__single:hover .case-one__content-box p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.case-one__icon-box {
    position: absolute;
    top: 40px;
    right: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 700ms ease;
    z-index: 2;
}

.case-one__single:hover .case-one__icon-box {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.case-one__icon-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--judges-white);
    width: 45px;
    height: 45px;
    background-color: var(--judges-black);
    border-radius: 50%;
}

.case-one__icon-box a:hover {
    background-color: var(--judges-base);
    color: var(--judges-white);
}

/*--------------------------------------------------------------
# Case Two
--------------------------------------------------------------*/
.case-two {
    position: relative;
    display: block;
    padding: 90px 0 90px;
    z-index: 2;
}

.case-two .container {
    max-width: 1275px;
}

.case-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-two__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.case-two__img-box::before {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    width: 2px;
    background: var(--judges-base);
    content: "";
    transition: -webkit-transform 1.0s ease;
    transition: transform 1.0s ease;
    transition: transform 1.0s ease, -webkit-transform 1.0s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 2;
}

.case-two__single:hover .case-two__img-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.case-two__img-box::after {
    position: absolute;
    left: 0px;
    bottom: 30px;
    right: 0;
    height: 2px;
    background: var(--judges-base);
    content: "";
    transition: transform 1000ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
}

.case-two__single:hover .case-two__img-box::after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.case-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.case-two__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--judges-black-rgb), .85);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.case-two__single:hover .case-two__img:before {
    opacity: 1;
    transform: translateY(0px);
}

.case-two__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.case-two__content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    padding: 0 30px 40px;
    z-index: 3;
}

.case-two__icon-box {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-two__single:hover .case-two__icon-box {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.case-two__icon-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--judges-white);
    width: 45px;
    height: 45px;
    background-color: var(--judges-base);
    border-radius: 50%;
    margin-left: auto;
    font-size: 18px;
}

.case-two__icon-box a:hover {
    background-color: var(--judges-white);
    color: var(--judges-base);
}

.case-two__content-box h3 {
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-two__single:hover .case-two__content-box h3 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 700ms;
}

.case-two__content-box h3 a {
    color: var(--judges-white);
}

.case-two__content-box h3 a:hover {
    color: var(--judges-base);
}

.case-two__content-box p {
    position: relative;
    display: block;
    font-size: 18px;
    color: var(--judges-base);
    font-weight: 600;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-two__single:hover .case-two__content-box p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

/*--------------------------------------------------------------
# Case Three
--------------------------------------------------------------*/
.case-three {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 90px;
    z-index: 1;
}

.case-three__bg-box {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 650px;
    background-color: #000000;
    z-index: -1;
}

.case-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .08;
}

.case-three .container {
    max-width: 1780px;
}

.case-three .section-title__title {
    color: var(--judges-white);
}

.case-three__filter-box {
    position: relative;
    display: block;
    margin-bottom: 72px;
}

.case-three__filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.case-three__filter.style1 li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.case-three__filter.style1 li .filter-text {
    position: relative;
    display: inline-block;
    color: var(--judges-gray);
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    background-color: var(--judges-primary);
    padding: 16px 30px 16px;
    border-radius: var(--judges-bdr-radius);
    text-transform: capitalize;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.case-three__filter.style1 li .filter-text::before {
    content: "";
    background-color: var(--judges-base);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.case-three__filter.style1 li:hover .filter-text::before,
.case-three__filter.style1 li.active .filter-text::before {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.case-three__filter.style1 li:hover .filter-text,
.case-three__filter.style1 li.active .filter-text {
    color: var(--judges-white);
}


.case-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.case-three__img-box {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.case-three__img-box::before {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    width: 2px;
    background: var(--judges-base);
    content: "";
    transition: -webkit-transform 1.0s ease;
    transition: transform 1.0s ease;
    transition: transform 1.0s ease, -webkit-transform 1.0s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 2;
}

.case-three__single:hover .case-three__img-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.case-three__img-box::after {
    position: absolute;
    left: 0px;
    bottom: 30px;
    right: 0;
    height: 2px;
    background: var(--judges-base);
    content: "";
    transition: transform 1000ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
}

.case-three__single:hover .case-three__img-box::after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.case-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.case-three__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--judges-black-rgb), .85);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.case-three__single:hover .case-three__img:before {
    opacity: 1;
    transform: translateY(0px);
}

.case-three__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.case-three__content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    padding: 0 30px 40px;
    z-index: 3;
}

.case-three__icon-box {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-three__single:hover .case-three__icon-box {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.case-three__icon-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--judges-white);
    width: 45px;
    height: 45px;
    background-color: var(--judges-base);
    border-radius: 50%;
    margin-left: auto;
    font-size: 18px;
}

.case-three__icon-box a:hover {
    background-color: var(--judges-white);
    color: var(--judges-base);
}

.case-three__content-box h3 {
    position: relative;
    display: block;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-three__single:hover .case-three__content-box h3 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 700ms;
}

.case-three__content-box h3 a {
    color: var(--judges-white);
}

.case-three__content-box h3 a:hover {
    color: var(--judges-base);
}

.case-three__content-box p {
    position: relative;
    display: block;
    font-size: 18px;
    color: var(--judges-base);
    font-weight: 600;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.case-three__single:hover .case-three__content-box p {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}


/*--------------------------------------------------------------
# Case Details
--------------------------------------------------------------*/
.case-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.case-details__left {
    position: relative;
    display: block;
}

.case-details__img {
    position: relative;
    display: block;
}

.case-details__img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.case-details__title-1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    text-transform: capitalize;
    margin-top: 41px;
    margin-bottom: 29px;
}

.case-details__title-2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    text-transform: capitalize;
    margin-top: 62px;
    margin-bottom: 29px;
}

.case-details__text-and-img {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 31px;
    margin-bottom: 61px;
}

.case-details__text-img {
    position: relative;
    display: block;
}

.case-details__text-img img {
    width: auto;
    border-radius: var(--judges-bdr-radius);
}

.case-details__title-3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    text-transform: capitalize;
}

.case-details__text-4 {
    margin-top: 29px;
    margin-bottom: 31px;
}

.case-details__img-and-points {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.case-details__points-img {
    position: relative;
    display: block;
    max-width: 410px;
    width: 100%;
}

.case-details__points-img img {
    width: 100%;
    border-radius: var(--judges-bdr-radius);
}

.case-details__points {
    position: relative;
    display: block;
}

.case-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-details__points li+li {
    margin-top: 16px;
}

.case-details__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.case-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--judges-base);
}

.case-details__points li p {
    color: var(--judges-black);
}

.case-details__sidebar {
    position: relative;
    display: block;
}

.case-details__information {
    position: relative;
    display: block;
    background-color: rgba(var(--judges-extra-rgb), .50);
    border-radius: var(--judges-bdr-radius);
    padding: 35px 35px 40px;
    margin-bottom: 60px;
}

.case-details__information-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 30px;
}

.case-details__information-list {
    position: relative;
    display: block;
}

.case-details__information-list li {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    border-radius: var(--judges-bdr-radius);
    padding: 18px 30px 19px;
}

.case-details__information-list li+li {
    margin-top: 12px;
}

.case-details__information-list li h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    color: var(--judges-black);
}

.case-details__get-started {
    position: relative;
    display: block;
    background-color: rgba(var(--judges-extra-rgb), .50);
    border-radius: var(--judges-bdr-radius);
    padding: 35px 40px 40px;
}

.case-details__get-started-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
}

.case-details__get-started-text {
    margin-top: 18px;
    margin-bottom: 29px;
    color: var(--judges-black);
}

.case-details__get-started-points {
    position: relative;
    display: block;
}

.case-details__get-started-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-details__get-started-points li+li {
    margin-top: 11px;
}

.case-details__get-started-points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.case-details__get-started-points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--judges-black);
}

.case-details__get-started-points li p {
    color: var(--judges-black);
    font-weight: 600;
}

.case-details__get-started-points li p a {
    color: var(--judges-black);
}

.case-details__get-started-points li p a:hover {
    color: var(--judges-base);
}

.case-details__get-started-btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.case-details__previous-next {
    position: relative;
    display: block;
    margin-top: 60px;
}

.case-details__previous-next ul {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--judges-black-rgb), 0.1);
    padding: 15px 20px 15px;
    border-radius: var(--judges-bdr-radius);
}

.case-details__previous-next ul li {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
}

.case-details__previous-next ul li::before {
    position: absolute;
    top: -16px;
    right: 0;
    bottom: -16px;
    width: 2px;
    background: rgba(var(--judges-black-rgb), 0.1);
    content: "";
}

.case-details__previous-next ul li:last-child:before {
    display: none;
}

.case-details__previous-next ul li:nth-child(2) {
    float: right;
    text-align: right;
}

.case-details__previous-next ul li:nth-child(2) .text-box {
    margin-left: 0px;
    margin-right: 20px;
}

.case-details__previous-next ul li:nth-child(2) .icon a {
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.case-details__previous-next ul li .icon {
    position: relative;
    display: block;
}

.case-details__previous-next ul li .icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: var(--judges-base);
    color: var(--judges-white);
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.case-details__previous-next ul li .icon a:hover {
    background: var(--judges-black);
}

.case-details__previous-next ul li .icon a span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
}

.case-details__previous-next ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.case-details__previous-next ul li .text-box a {
    color: var(--judges-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.case-details__previous-next ul li .text-box a:hover {
    color: var(--judges-base);
}

/*--------------------------------------------------------------
# Case Page
--------------------------------------------------------------*/
.case-page {
    padding: 120px 0 90px;
}


/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 100px 0 90px;
    background-color: var(--judges-primary);
    overflow: hidden;
    z-index: 1;
}

.team-one__carousel {
    position: relative;
    display: block;
}

.team-one__single {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    border: 1px solid rgba(var(--judges-gray-rgb), .15);
    border-radius: 8px;
    text-align: center;
    padding: 30px 24px 0;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__single:hover {
    transform: translateY(-10px);
}

.team-one__content {
    position: relative;
    display: block;
    z-index: 1;
}

.team-one__shape-box-2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    background: rgba(246, 246, 246, 0.8);
    border-radius: 50%;
    left: 50%;
    right: 0;
    top: -170px;
    transform: translateX(-50%);
    z-index: -1;
}

.team-one__shape-2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    background: rgba(18, 18, 18, 0.03);
    border-radius: 50%;
    transform: scale(1.0);
    opacity: 1;
    transition-delay: 0.6s;
    transition: .7s;
}

.team-one__single:hover .team-one__shape-2 {
    transform: scale(1.1);
    background: rgba(18, 18, 18, 0.05);
}

.team-one__name {
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-one__name a {
    color: var(--judges-black);
}

.team-one__name a:hover {
    color: var(--judges-base);
}

.team-one__sub-title {
    font-weight: 400;
}

.team-one__social {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    z-index: 1;
}

.team-one__social:before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0px;
    right: 0px;
    height: 2px;
    background-color: rgba(var(--judges-gray-rgb), .15);
    z-index: -1;
}

.team-one__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    border: 1px solid rgba(var(--judges-gray-rgb), .15);
    background-color: var(--judges-white);
    border-radius: 50%;
    font-size: 12px;
    color: var(--judges-black);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__social a:hover {
    color: var(--judges-white);
    background-color: var(--judges-base);
    border: 1px solid var(--judges-base);
}

.team-one__img-box {
    position: relative;
    display: block;
    margin-top: 24px;
    z-index: 1;
}

.team-one__shape-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 350px;
    background: rgba(246, 246, 246, 0.8);
    border-radius: 50%;
    left: 50%;
    right: 0;
    bottom: -170px;
    transform: translateX(-50%);
}

.team-one__shape-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 260px;
    background: rgba(18, 18, 18, 0.03);
    border-radius: 50%;
    transform: scale(1.0);
    opacity: 1;
    transition-delay: 0.6s;
    transition: .7s;
}

.team-one__single:hover .team-one__shape-1 {
    transform: scale(1.1);
    background: rgba(18, 18, 18, 0.05);
}

.team-one__img {
    position: relative;
    display: block;
}

.team-one__img img {
    width: 100%;
}


.team-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.team-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.team-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.team-one__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.team-one__carousel .owl-nav .owl-next,
.team-one__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: rgba(var(--judges-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.team-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.team-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.team-one__carousel.owl-theme .owl-nav .owl-next span,
.team-one__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-one__carousel.owl-theme .owl-nav .owl-next:hover,
.team-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.team-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-color: rgba(var(--judges-base-rgb), .03);
    z-index: -1;
}

.team-two__carousel {
    position: relative;
    display: block;
}

.team-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.team-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.team-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.team-two__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-two__single:hover {
    transform: translateY(-10px);
}

.team-two__img-box {
    position: relative;
    display: block;
}

.team-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.team-two__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 34, 34, .85);
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    opacity: 0;
    transform: translateY(-50%);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.team-two__single:hover .team-two__img::after {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.team-two__img:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1%;
    border: 3px solid var(--judges-base);
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    background-color: transparent;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 1;
}

.team-two__single:hover .team-two__img:before {
    opacity: 1;
    height: 100%;
}

.team-two__img img {
    width: 100%;
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    transition: all 500ms ease;
}

.team-two__single:hover .team-two__img img {
    transform: scaleX(1.05);
    transition-delay: 700ms;
}

.team-two__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
}

.team-two__single:hover .team-two__social {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 700ms;
}

.team-two__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--judges-white);
    border-radius: var(--judges-bdr-radius);
    font-size: 15px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--judges-white-rgb), .50);
    z-index: 1;
}

.team-two__social a:hover {
    color: var(--judges-white);
    border: 1px solid var(--judges-base);
}

.team-two__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--judges-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-two__social a:hover:before {
    transform: scaleX(1);
}

.team-two__social a+a {
    margin-left: 15px;
}

.team-two__content {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    text-align: center;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 33px 20px 33px;
    border-radius: var(--judges-bdr-radius);
    border-bottom: 5px solid var(--judges-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-two__single:hover .team-two__content {
    border-bottom: 5px solid var(--judges-black);
}

.team-two__name {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-two__name a {
    color: var(--judges-black);
}

.team-two__name a:hover {
    color: var(--judges-base);
}

.team-two__sub-title {
    font-size: 18px;
    font-weight: 500;
}

.team-two__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.team-two__carousel .owl-nav .owl-next,
.team-two__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: rgba(var(--judges-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.team-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.team-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.team-two__carousel.owl-theme .owl-nav .owl-next span,
.team-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-two__carousel.owl-theme .owl-nav .owl-next:hover,
.team-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.team-three:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-color: rgba(var(--judges-base-rgb), .05);
    z-index: -1;
}

.team-three__carousel {
    position: relative;
    display: block;
}

.team-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.team-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.team-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.team-three__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-three__single:hover {
    transform: translateY(-10px);
}

.team-three__img-box {
    position: relative;
    display: block;
}

.team-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    z-index: 1;
}

.team-three__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 34, 34, .85);
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    opacity: 0;
    transform: translateY(-50%);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
}

.team-three__single:hover .team-three__img::after {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.team-three__img:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1%;
    border: 3px solid var(--judges-base);
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    background-color: transparent;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 1;
}

.team-three__single:hover .team-three__img:before {
    opacity: 1;
    height: 100%;
}

.team-three__img img {
    width: 100%;
    border-top-left-radius: var(--judges-bdr-radius);
    border-top-right-radius: var(--judges-bdr-radius);
    transition: all 500ms ease;
}

.team-three__single:hover .team-three__img img {
    transform: scaleX(1.05);
    transition-delay: 700ms;
}

.team-three__arrow-and-social {
    position: absolute;
    bottom: -20px;
    right: 20px;
    z-index: 3;
}

.team-three__arrow {
    position: relative;
    display: block;
    z-index: 3;
}

.team-three__arrow span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--judges-base);
    border-radius: var(--judges-bdr-radius);
    font-size: 16px;
    color: var(--judges-white);
    cursor: pointer;
}

.team-three__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 50px;
    right: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
}

.team-three__arrow-and-social:hover .team-three__social {
    opacity: 1;
    transform: translateY(0px);
}

.team-three__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--judges-white);
    border-radius: var(--judges-bdr-radius);
    font-size: 15px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--judges-white-rgb), .50);
    z-index: 1;
}

.team-three__social a:hover {
    color: var(--judges-white);
    border: 1px solid var(--judges-base);
}

.team-three__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--judges-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-three__social a:hover:before {
    transform: scaleX(1);
}

.team-three__social a+a {
    margin-top: 10px;
}

.team-three__content {
    position: relative;
    display: block;
    background-color: var(--judges-white);
    text-align: left;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 33px 20px 33px;
    border-radius: var(--judges-bdr-radius);
    border-bottom: 5px solid var(--judges-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-three__single:hover .team-three__content {
    border-bottom: 5px solid var(--judges-black);
}

.team-three__name {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-three__name a {
    color: var(--judges-black);
}

.team-three__name a:hover {
    color: var(--judges-base);
}

.team-three__sub-title {
    font-size: 18px;
    font-weight: 500;
}

.team-three__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.team-three__carousel .owl-nav .owl-next,
.team-three__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--judges-white) !important;
    background-color: rgba(var(--judges-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.team-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.team-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.team-three__carousel.owl-theme .owl-nav .owl-next span,
.team-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-three__carousel.owl-theme .owl-nav .owl-next:hover,
.team-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--judges-black) !important;
    color: var(--judges-white) !important;
}



/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
    position: relative;
    display: block;
    padding: 120px 0 108px;
    z-index: 1;
}

.team-details__top {
    position: relative;
    display: block;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--judges-bdr-color);
    margin-bottom: 37px;
}

.team-details__top-left {
    position: relative;
    display: block;
}

.team-details__img-1 {
    position: relative;
    display: block;
}

.team-details__img-1 img {
    width: 100%;
    border-radius: 20px;
}

.team-details__top-right {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: -12px;
}

.team-details__client-box {
    position: relative;
    display: block;
}

.team-details__client-name {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    text-transform: capitalize;
}

.team-details__client-sub-title {
    position: relative;
    display: block;
    margin-top: 3px;
}

.team-details__social {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 19px;
    margin-bottom: 30px;
}

.team-details__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--judges-base);
    font-size: 16px;
    border-radius: var(--judges-bdr-radius);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--judges-base);
    z-index: 1;
}

.team-details__social a:hover {
    color: var(--judges-white);
    border: 1px solid var(--judges-base);
}

.team-details__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--judges-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.team-details__social a:hover:before {
    transform: scaleX(1);
}

.team-details__social a+a {
    margin-left: 10px;
}

.team-details__client-address {
    position: relative;
    display: block;
    border-top: 1px solid var(--judges-bdr-color);
    margin-top: 19px;
    padding-top: 20px;
}

.team-details__client-address li {
    position: relative;
    display: block;
}

.team-details__client-address li+li {
    margin-top: 21px;
}

.team-details__client-address li p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--judges-black);
}

.team-details__client-address li p span {
    color: var(--judges-black);
}

.team-details__client-address li h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 10px;
    font-family: var(--judges-font);
}

.team-details__client-address li h5 a {
    color: var(--judges-black);
}

.team-details__client-address li h5 a:hover {
    color: var(--judges-base);
}

.team-details__bottom {
    position: relative;
    display: block;
}

.team-details__bottom-left {
    position: relative;
    display: block;
}

.team-details__bottom-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    margin-bottom: 13px;
}

.team-details__practice-area {
    position: relative;
    display: block;
    margin-top: 15px;
}

.team-details__practice-area-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.team-details__practice-area-list-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.team-details__practice-area-list {
    position: relative;
    display: block;
}

.team-details__practice-area-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.team-details__practice-area-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6px;
    width: 6px;
    background-color: var(--judges-base);
}

.team-details__practice-area-list li .text {
    position: relative;
    display: block;
    flex: 1;
}

.team-details__practice-area-list li .text p {
    font-weight: 500;
    color: var(--judges-base);
}


.team-details__bottom-right {
    position: relative;
    display: block;
}

.team-details__progress-title-1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    margin-bottom: 23px;
}

.team-details__progress-list {
    position: relative;
    display: block;
}

.team-details__progress-list li {
    position: relative;
    display: block;
}

.team-details__progress-list li+li {
    margin-top: 20px;
}

.team-details__progress {
    position: relative;
    display: block;
}

.team-details__progress-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--judges-black);
    margin-bottom: 11px;
}

.team-details__progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: var(--judges-bdr-color);
    border-radius: 6px;
}

.team-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--judges-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.team-details__progress .count-text {
    position: absolute;
    right: -18px;
    bottom: 22px;
    color: var(--judges-black);
    line-height: 26px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    font-family: var(--judges-font);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.team-details__progress .bar.marb-0 {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.team-details-contact {
    position: relative;
    display: block;
    padding: 0px 0 120px;
    z-index: 1;
}

.team-details-contact .container {
    max-width: 830px;
}

.team-details-contact__inner {
    position: relative;
    display: block;
    text-align: center;
}

.team-details-contact__form {
    position: relative;
    display: block;
}

.team-details-contact__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-details-contact__input-box input[type="text"],
.team-details-contact__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--judges-gray);
    display: block;
    border-radius: var(--judges-bdr-radius);
}

.team-details-contact__input-box .select-box {
    width: 100%;
}

.team-details-contact__input-box .nice-select {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--judges-gray);
    font-weight: 400;
    border-radius: var(--judges-bdr-radius);
    line-height: 60px;
    display: block;
    float: none;
}

.team-details-contact__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--judges-gray);
    border-right: 2px solid var(--judges-gray);
    margin-top: 0px;
    z-index: 10;
}

.team-details-contact__input-box textarea {
    height: 200px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding: 15px 30px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--judges-gray);
    position: relative;
    display: block;
    border-radius: var(--judges-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
    height: 200px;
}

.team-details-contact__btn-box {
    position: relative;
    display: block;
}

.team-details-contact__btn-box .thm-btn {
    background-color: transparent;
}



/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: var(--judges-primary);
    z-index: 1;
}

.team-page .team-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 118px 0 90px;
    counter-reset: count;
    z-index: 1;
}

.process-one__shape-4 {
    position: absolute;
    top: 108px;
    left: -73px;
    opacity: .02;
    z-index: -1;
}

.process-one__shape-4 img {
    width: auto;
}

.process-one__inner {
    position: relative;
    display: block;
}

.process-one__inner li:nth-child(1) {
    margin-top: 110px;
}

.process-one__inner li:nth-child(3) {
    margin-top: 110px;
}

.process-one__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    z-index: 1;
}

.process-one__shape-1 {
    position: absolute;
    top: -165px;
    right: 0;
    height: 300px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(62deg);
    z-index: -1;
}

.process-one__shape-2 {
    position: absolute;
    bottom: -25px;
    right: 0;
    height: 320px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(-71deg);
    z-index: -1;
}

.process-one__shape-3 {
    position: absolute;
    top: -165px;
    right: 0;
    height: 300px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(62deg);
    z-index: -1;
}

.process-one__icon-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 0;
    z-index: 1;
}

.process-one__count {
    position: absolute;
    top: 0;
    left: -16px;
    height: 35px;
    width: 35px;
    z-index: 2;
}

.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: var(--judges-white);
    background-color: var(--judges-base);
    border-radius: 50%;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__inner li:hover .process-one__count:before {
    color: var(--judges-base);
    background-color: var(--judges-white);
    box-shadow: 0px 0px 5px 1px #F7F7F7;
}

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: var(--judges-white);
    border: 1px solid var(--judges-base);
    border-radius: 50%;
    margin: 0 auto 0;
    overflow: hidden;
    z-index: 1;
}

.process-one__icon:before {
    content: "";
    position: absolute;
    bottom: -45px;
    right: -34px;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--judges-base-rgb), .20);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.process-one__inner li:hover .process-one__icon:before {
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--judges-base-rgb), 1);
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--judges-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.process-one__inner li:hover .process-one__icon span {
    color: var(--judges-white);
    transform: scale(1.2);
}

.process-one__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    margin-top: 13px;
    margin-bottom: 14px;
}


/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
    position: relative;
    display: block;
    background-color: var(--judges-base);
    padding: 30px 0 30px;
    z-index: 1;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text-one__list li {
    osition: relative;
    display: block;
    float: left;
    margin-right: 35px;
}

.sliding-text-one__list li span {
    position: relative;
    display: block;
    width: 60px;
    height: 35px;
    border: 1px solid var(--judges-bdr-color);
    border-radius: 30px;
    top: 13px;
}

.sliding-text-one__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    color: var(--judges-white);
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--judges-font-two);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.sliding-text-one__list li .sliding-text-one__title:hover {
    color: transparent;
    -webkit-text-stroke: 1px transparent;
}

.sliding-text-one__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--judges-black);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text-one__list li:hover .sliding-text-one__title:before {
    width: 100%;
    color: var(--judges-black);
}


/*==============================================
   Video One
===============================================*/
.video-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.video-one:before {
    content: "";
    position: absolute;
    bottom: -300px;
    left: 0;
    right: 0;
    height: 500px;
    background: rgb(193, 183, 154);
    background: linear-gradient(180deg, rgba(193, 183, 154, 0.20211834733893552) 2%, rgba(193, 183, 154, 0) 100%);
    z-index: -1;
}

.video-one__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 66%;
    background-color: var(--judges-black);
    z-index: -1;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.10;
}

.video-one__inner {
    position: relative;
    display: block;
    text-align: center;
}

.video-one__inner .section-title {
    margin-bottom: 30px;
}

.video-one__inner .section-title__title {
    color: var(--judges-white);
}

.video-one__inner .section-title__tagline-border::after {
    background: var(--judges-black);
}

.video-one__text {
    color: var(--judges-white);
}

.video-one__video-link {
    position: relative;
    display: inline-block;
    margin: 32px 0 70px;
}

.video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    color: var(--judges-white);
    background-color: var(--judges-base);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
    background-color: var(--judges-white);
    color: var(--judges-base);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-one__contact-box {
    position: relative;
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--judges-white);
    box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);
    border-radius: var(--judges-bdr-radius);
    padding: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.video-one__contact-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    height: 354px;
    width: 100%;
    background-color: var(--judges-primary);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 0);
    z-index: -1;
}

.video-one__contact-box:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -100%;
    height: 354px;
    width: 100%;
    background-color: var(--judges-primary);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    z-index: -1;
}

.video-one-contact__form {
    position: relative;
    display: block;
}

.video-one-contact__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.video-one-contact__input-box input[type="text"],
.video-one-contact__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--judges-gray);
    display: block;
    border-radius: var(--judges-bdr-radius);
}

.video-one-contact__input-box .select-box {
    width: 100%;
}

.video-one-contact__input-box .nice-select {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--judges-gray);
    font-weight: 400;
    border-radius: var(--judges-bdr-radius);
    line-height: 60px;
    display: block;
    float: none;
}

.video-one-contact__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--judges-gray);
    border-right: 2px solid var(--judges-gray);
    margin-top: 0px;
    z-index: 10;
}

.video-one-contact__input-box .nice-select .option {
    color: var(--judges-white);
}

.video-one-contact__input-box .nice-select .option.selected {
    font-weight: 500;
}

.video-one-contact__input-box .nice-select .list {
    background-color: var(--judges-base);
    border-radius: var(--judges-bdr-radius);
}

.video-one-contact__input-box .nice-select .option:hover,
.video-one-contact__input-box .nice-select .option.focus,
.video-one-contact__input-box .nice-select .option.selected.focus {
    color: var(--judges-white);
}

.video-one-contact__input-box textarea {
    height: 150px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--judges-bdr-color);
    padding: 15px 30px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--judges-gray);
    position: relative;
    display: block;
    border-radius: var(--judges-bdr-radius);
}

.video-one-contact__input-box.text-message-box {
    height: 150px;
}

.video-one-contact__btn-box {
    position: relative;
    display: block;
    text-align: left;
}

.video-one-contact__btn-box .thm-btn {
    border: none;
    background-color: var(--judges-primary);
}

.video-one-contact__btn-box .thm-btn:hover {
    border: none;
}

.video-one__img-1 {
    position: absolute;
    top: -141px;
    right: -360px;
    mix-blend-mode: luminosity;
    animation: leftRight 4s ease-in-out infinite;
    z-index: -1;
}

.video-one__img-1 img {
    width: auto;
}

.video-one-contact__info-box {
    position: relative;
    display: block;
    text-align: left;
    background-color: var(--judges-black);
    padding: 32px 30px 27px;
    border-radius: var(--judges-bdr-radius);
    border-bottom: 5px solid var(--judges-base);
}

.video-one-contact__info-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 34px;
    color: var(--judges-white);
    margin-bottom: 24px;
}

.video-one-contact__info-list {
    position: relative;
    display: block;
}

.video-one-contact__info-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.video-one-contact__info-list li+li {
    margin-top: 20px;
}

.video-one-contact__info-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(var(--judges-white-rgb), .30);
    border-radius: 5px;
    top: 8px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.video-one-contact__info-list li:hover .icon {
    background-color: var(--judges-base);
}

.video-one-contact__info-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--judges-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.video-one-contact__info-list li:hover .icon span {
    color: var(--judges-white);
}

.video-one-contact__info-list li .content {
    position: relative;
    display: block;
    flex: 1;
}

.video-one-contact__info-list li .content p {
    color: var(--judges-white);
}

.video-one-contact__info-list li .content p a {
    color: var(--judges-white);
}

.video-one-contact__info-list li .content p a:hover {
    color: var(--judges-base);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    border-top: 1px solid var(--judges-bdr-color);
    border-bottom: 1px solid var(--judges-bdr-color);
    padding: 29px 0 29px;
    z-index: 1;
}

.brand-one.border-top-none {
    border-top: none;
}

.brand-one__left {
    position: relative;
    display: block;
}

.brand-one__text {
    font-size: 22px;
    color: var(--judges-black);
    font-weight: 500;
    line-height: 1.5em;
}

.brand-one__text span {
    color: var(--judges-base);
    font-weight: 700;
}

.brand-one__right {
    position: relative;
    display: block;
}

.brand-one__carousel {
    position: relative;
    display: block;
}

.brand-one__single {
    position: relative;
    display: block;
}

.brand-one__img {
    position: relative;
    display: block;
}

.brand-one__img img {
    width: auto !important;
    margin: 0 auto;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    filter: brightness(0.5);
}

.brand-one__img img:hover {
    filter: brightness(0.9);
    transform: scale(0.9);
}

/*--------------------------------------------------------------
# Skill One
--------------------------------------------------------------*/
.skill-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.skill-one__shape-1 {
    position: absolute;
    bottom: -310px;
    right: 0;
    z-index: -1;
}

.skill-one__shape-1 img {
    width: auto;
    animation: 3s ease-in-out 0s infinite normal none running topBottom;
}

.skill-one__left {
    position: relative;
    display: block;
}

.skill-one__left .section-title {
    margin-bottom: 31px;
}

.skill-one__progress-box {
    position: relative;
    display: block;
    margin-top: 28px;
    margin-right: 60px;
}

.skill-one__progress-title {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 25px;
    margin-bottom: 22px;
}

.skill-one__progress-box .progress-box {
    position: relative;
    display: block;
}

.skill-one__progress-box .progress-box+.progress-box {
    margin-top: 23px;
}

.skill-one__progress-box .progress-box .bar-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 13px;
    font-family: var(--judges-font-two);
    color: var(--judges-black);
}

.skill-one__progress-box .progress-box .bar {
    position: relative;
    width: 100%;
    height: 7px;
    background-color: rgba(var(--judges-black-rgb), .10);
    border-radius: 4px;
}

.skill-one__progress-box .progress-box .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 7px;
    background: var(--judges-base);
    border-radius: 4px;
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.skill-one__progress-box .progress-box .count-box {
    position: absolute;
    right: 0px;
    margin-right: -35px;
    bottom: 18px;
    width: 40px;
    height: 22px;
    background: var(--judges-base);
    color: #ffffff;
    line-height: 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 0;
    opacity: 0;
    font-family: var(--judges-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.skill-one__progress-box .progress-box .counted .count-box {
    opacity: 1;
}

.skill-one__progress-box .progress-box .count-box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -5px;
    border: 5px solid transparent;
    border-top: 5px solid var(--judges-base);
    border-left: 5px solid var(--judges-base);
}

.skill-one__right {
    position: relative;
    display: block;
    margin-left: 162px;
}

.skill-one__right-img-box {
    position: relative;
    display: block;
}

.skill-one__right-img {
    position: relative;
    display: block;
    border-radius: 7px;
    background-color: var(--judges-base);
}

.skill-one__right-img img {
    width: 100%;
    border-radius: 7px;
    mix-blend-mode: multiply;
}

.skill-one__video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.skill-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 17px;
    color: var(--judges-base);
    background-color: rgba(var(--judges-white-rgb), 0.30);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.skill-one__video-icon:hover {
    color: var(--judges-white);
}

.skill-one__video-icon:before {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: var(--judges-white);
    border-radius: 50%;
    content: "";
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: -1;
}

.skill-one__video-icon:hover::before {
    background-color: var(--judges-base);
}

.skill-one__video-link .ripple,
.skill-one__video-icon .ripple:before,
.skill-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.30);
    -o-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.30);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.30);
    box-shadow: 0 0 0 0 rgba(var(--judges-white-rgb), 0.30);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.skill-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.skill-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.skill-one__video-content {
    position: absolute;
    top: 50%;
    left: -98px;
    max-width: 195px;
    background-color: var(--judges-base);
    padding: 52px 24px 52px;
    border-radius: 6px;
    transform: translateY(-50%);
    z-index: 2;
}

.skill-one__video-content p {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    font-family: var(--judges-font-two);
    color: var(--judges-white);
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/












/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/












/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/