/*==============================================
    Banner One
===============================================*/
.banner-one {
    position: relative;
    display: block;
    background-color: var(--arovan-black);
    padding: 182px 0 180px;
    overflow: hidden;
    z-index: 5;
}

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

.banner-one__line-shpae1 {
    position: absolute;
    top: -300px;
    bottom: -300px;
    right: -5px;
    width: 250px;
    background-color: var(--arovan-base);
    transform: rotate(34deg);
    z-index: -1;
}

.banner-one__line-shpae2 {
    position: absolute;
    top: 310px;
    bottom: -150px;
    right: 452px;
    width: 100px;
    background-color: var(--arovan-base);
    transform: rotate(34deg);
    z-index: -1;
}

.banner-one__inner {
    position: relative;
    display: block;
}

.banner-one__content-box {
    position: relative;
    display: block;
}

.banner-one__sub-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: #4fcff4;
    font-weight: 600;
    line-height: 1em;
    font-family: var(--arovan-font-two);
    text-transform: uppercase;
}

.banner-one__title {
    font-size: 60px;
    color: var(--arovan-white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-top: 26px;
    margin-bottom: 21px;
}

.banner-one__title span {
    color: var(--arovan-base);
}

.banner-one__text {
    font-size: 18px;
    color: rgba(var(--arovan-white-rgb), .70);
    font-weight: 500;
}

.banner-one__btn-and-review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 53px;
}

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

.banner-one__btn-box .thm-btn::before,
.banner-one__btn-box .thm-btn::after {
    background-color: var(--arovan-white);
}

.banner-one__btn-box .thm-btn:hover {
    color: var(--arovan-base);
}

.banner-one__btn-box .thm-btn:hover>span {
    background-color: var(--arovan-base);
    color: var(--arovan-white);
}

.banner-one__img {
    position: absolute;
    bottom: 0;
    right: -40px;
    z-index: 1;
}

.banner-one__img img {
    max-width: 700px;
    width: 100%;
    animation: leftRight 4s ease-in-out infinite;
}

.banner-one__shape-3 {
    position: absolute;
    top: 0;
    right: 60px;
}

.banner-one__shape-3 img {
    width: auto;
}


.banner-one .banner__shape-wrap img {
    opacity: 0.2;
    width: 100%;
    height: 100%;
    inset: 0;
}
.banner-one .banner__shape-wrap img {
    position: absolute;
    z-index: -1;

}

.rotateme {
    animation-name: rotateme;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateme{
0% {
    transform: translate(-50%, -50%) rotate(0deg);
}
100% {
    transform: translate(-50%, -50%) rotate(1turn);
}
}