/*==============================================
   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);
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/