/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    background-color: var(--gorent-black);
    z-index: 10;
}

.main-slider .item {
    position: relative;
    padding-top: 199px;
    padding-bottom: 256px;
    background-color: var(--gorent-black);
    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;
    opacity: .30;
    z-index: -1;
}

.active .main-slider__bg {
    transform: scale(1.1);
}

.main-slider__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider__sub-title-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
    transform: perspective(400px) rotateY(0deg) translateX(200px);
    -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) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateX(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: 70px;
    line-height: 1em;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    text-transform: uppercase;
    font-weight: 700;
}

.main-slider__title {
    position: relative;
    display: block;
    font-size: 30px;
    color: var(--gorent-white);
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    margin-top: 9px;
    margin-bottom: 4px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
    transform: perspective(400px) rotateY(0deg) translateX(-200px);
    -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(--gorent-base);
}

.active .main-slider__title {
    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: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.main-slider__sub-title-two {
    position: relative;
    display: block;
    font-size: 65px;
    line-height: 1.2em;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(200px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(200px);
    transform: perspective(400px) rotateY(0deg) translateX(200px);
    -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-two {
    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: 1600ms;
    -moz-transition-delay: 1600ms;
    -ms-transition-delay: 1600ms;
    -o-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.main-slider__btn-and-video-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 34px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-200px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-200px);
    transform: perspective(400px) rotateY(0deg) translateX(-200px);
    -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-and-video-box {
    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: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider__btn-box {
    position: relative;
    display: block;
}

.main-slider__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.main-slider__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

.main-slider__video-link {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.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: 50px;
    text-align: center;
    font-size: 18px;
    color: var(--gorent-base);
    background-color: var(--gorent-white);
    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__video-icon:after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50%;
    z-index: -1;
}

.main-slider__video-icon:hover {
    background-color: var(--gorent-base);
    color: var(--gorent-white);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__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(--gorent-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--gorent-white-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__video-title {
    font-size: 20px;
    color: var(--gorent-base);
    font-weight: 600;
    font-family: var(--gorent-font);
}

.main-slider .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1320px;
    width: 100%;
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    padding: 0 15px;
    margin: 0 auto;
    height: 0;
    line-height: 0;
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-left: 60px;
}

.main-slider .owl-theme .owl-dots .owl-dot {
    position: relative;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(var(--gorent-base-rgb), .30);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot span:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 26px;
    width: 50px;
    height: 1px;
    background-color: rgba(var(--gorent-white-rgb), .30);
}

.main-slider .owl-theme .owl-dots .owl-dot:last-child span:before {
    display: none;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
    background-color: rgba(var(--gorent-white-rgb), .30);
}

.main-slider .owl-theme .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--gorent-base);
    border-radius: 50%;
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span::after,
.main-slider .owl-theme .owl-dots .owl-dot.active span::after {
    background-color: rgba(var(--gorent-white-rgb), 1);
}


.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    padding: 0px 50px;
    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(--gorent-white-rgb), .30) !important;
    opacity: 1;
    margin: 0;
    padding: 19px 0 !important;
    text-align: center;
    border-radius: 50%;
    background-color: transparent !important;
    border: 2px solid rgba(var(--gorent-white-rgb), .30) !important;
    transition: all 500ms ease;
}

.main-slider .owl-theme .owl-nav [class*=owl-]:hover {
    color: rgba(var(--gorent-white-rgb), 1) !important;
    border: 2px solid rgba(var(--gorent-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);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    background-color: var(--gorent-black);
    z-index: 10;
}

.main-slider-two .item {
    position: relative;
    padding-top: 335px;
    padding-bottom: 200px;
    background-color: var(--gorent-black);
    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;
    opacity: .30;
    z-index: -1;
}

.active .main-slider-two__bg {
    transform: scale(1.1);
}

.main-slider-two__img {
    position: absolute;
    bottom: -40px;
    right: 130px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(400px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(400px);
    transform: perspective(400px) rotateY(0deg) translateX(400px);
    -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;
}

.main-slider-two__img img {
    width: auto !important;
}

.active .main-slider-two__img {
    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: 1600ms;
    -moz-transition-delay: 1600ms;
    -ms-transition-delay: 1600ms;
    -o-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

.main-slider-two__content {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider-two__sub-title-box {
    position: relative;
    display: block;
    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: 26px;
    color: var(--gorent-base);
    text-transform: capitalize;
    font-weight: 400;
}

.main-slider-two__title {
    position: relative;
    display: block;
    font-size: 75px;
    color: var(--gorent-white);
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 16px;
    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(--gorent-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 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: rgba(var(--gorent-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-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: 10px;
    margin-top: 45px;
    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-box a {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--gorent-base);
    color: var(--gorent-white);
    padding: 10px 25px 11px;
    border-radius: 5px;
}

.main-slider-two__btn-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-slider-two__btn-icon i {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--gorent-white);
}

.main-slider-two__btn-content {
    position: relative;
    display: block;
    margin-left: 10px;
}

.main-slider-two__btn-content p {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
}

.main-slider-two__btn-content h3 {
    color: var(--gorent-white);
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    margin-top: 5px;
}

.main-slider-two .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1320px;
    width: 100%;
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
    padding: 0 15px;
    margin: 0 auto;
    height: 0;
    line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot+.owl-dot {
    margin-left: 60px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot {
    position: relative;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: rgba(var(--gorent-white-rgb), .30);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 15px;
    width: 50px;
    height: 1px;
    background-color: rgba(var(--gorent-white-rgb), .30);
}

.main-slider-two .owl-theme .owl-dots .owl-dot:last-child span:before {
    display: none;
}

.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(--gorent-base-rgb), 1);
}


.main-slider-two .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    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(--gorent-white-rgb), .30) !important;
    opacity: 1;
    margin: 0;
    padding: 19px 0 !important;
    text-align: center;
    border-radius: 50%;
    background-color: transparent !important;
    border: 2px solid rgba(var(--gorent-white-rgb), .30) !important;
    transition: all 500ms ease;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]:hover {
    color: rgba(var(--gorent-white-rgb), 1) !important;
    border: 2px solid rgba(var(--gorent-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);
}

/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sliding Text One
--------------------------------------------------------------*/
.sliding-text-one {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    padding: 23px 0 22px;
    z-index: 1;
}

.sliding-text-one__wrap {
    position: relative;
    display: block;
}

.sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
}

.sliding-text__list li {
    position: relative;
    display: block;
    float: left;
    margin-right: 35px;
}

.sliding-text__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--gorent-black);
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--gorent-font-two);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sliding-text__title span {
    position: relative;
    font-size: 45px;
}

.sliding-text__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--gorent-white);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}

.sliding-text__list li:hover .sliding-text__title:before {
    width: 100%;
    color: var(--gorent-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Call One
--------------------------------------------------------------*/
.call-one {
    position: relative;
    display: block;
    z-index: 1;
}

.call-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.call-one__inner::before {
    position: absolute;
    top: 0;
    left: -180px;
    border-bottom: 180px solid var(--gorent-base);
    border-left: 180px solid transparent;
    border-right: 0px solid transparent;
    content: "";
    transition: all 500ms ease;
}

.call-one__inner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--gorent-base);
    padding: 59px 60px 59px;
    border-top-right-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.call-one__inner-content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -1px;
    right: -5px;
    width: 55%;
    background-color: var(--gorent-black);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
    z-index: -1;
}

.call-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .05;
}

.call-one__left {
    position: relative;
    display: block;
}

.call-one__sub-title {
    font-size: 16px;
    color: var(--gorent-black);
    font-weight: 500;
    margin-bottom: 8px;
}

.call-one__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
}

.call-one__details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.call-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: rgba(var(--gorent-white-rgb), .90);
    border-radius: 50%;
    z-index: 1;
}

.call-one__icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid rgba(var(--gorent-white-rgb), .30);
    border-radius: 50%;
}

.call-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--gorent-black);
}

.call-one__content {
    position: relative;
    display: block;
}

.call-one__content p {
    color: var(--gorent-base);
    font-weight: 500;
}

.call-one__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    margin-top: 3px;
}

.call-one__content h4 a {
    color: var(--gorent-base);
}

.call-one__content h4 a:hover {
    color: var(--gorent-white);
}

.call-one__btn-box {
    position: relative;
    display: block;
}

.call-one__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.call-one__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gorent-bdr-color);
    z-index: 1;
}

.brand-one__carousel {
    position: relative;
    display: block;
}

.brand-one__single {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.brand-one__img {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-one__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 100px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.blog-one__shape-2 {
    position: absolute;
    width: 481px;
    height: 448px;
    right: -125px;
    top: 448px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

/* Removed duplicate .blog-one__shape-1 to fix duplicate class error */

.blog-one__shape-1 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.05;
}

.blog-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border: 1px solid var(--gorent-bdr-color);
    padding: 20px 19px 22px;
    border-radius: var(--gorent-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__single:hover {
    background-color: var(--gorent-white);
    box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
    transform: translateY(-10px);
}

.blog-one__img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.blog-one__date {
    position: absolute;
    bottom: -40px;
    right: 0;
    text-align: center;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 2;
}

.blog-one__date p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 60px;
    background-color: var(--gorent-base);
    color: var(--gorent-white);
    font-weight: 600;
    font-size: 25px;
}

.blog-one__date span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 60px;
    background-color: var(--gorent-extra);
    color: var(--gorent-black);
    font-weight: 600;
    font-size: 18px;
}

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.blog-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(--gorent-black-rgb), 0.6);
    border-radius: var(--gorent-bdr-radius);
    opacity: 0;
    z-index: 1;
    content: "";
}

.blog-one__single:hover .blog-one__img::before {
    opacity: 1;
}

.blog-one__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-one__single:hover .blog-one__img img {
    transform: scale(1);
}

.blog-one__tags {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 5;
}

.blog-one__single:hover .blog-one__tags {
    opacity: 1;
    transform: translateY(0px);
}

.blog-one__tags span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gorent-white);
    font-weight: 500;
    line-height: 16px;
    font-family: var(--gorent-font-two);
    text-transform: capitalize;
    background-color: var(--gorent-base);
    border-radius: 18px;
    padding: 9px 17px 9px;
}

.blog-one__content {
    position: relative;
    display: block;
    margin-top: 24px;
}

.blog-one__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-one__meta li {
    position: relative;
    display: block;
}

.blog-one__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--gorent-gray);
}

.blog-one__meta li a span {
    position: relative;
    font-size: 16px;
    color: var(--gorent-base);
}

.blog-one__meta li a:hover {
    color: var(--gorent-base);
}

.blog-one__title {
    font-size: 24px;
    line-height: 1.4em;
    margin-top: 15px;
    margin-bottom: 14px;
    font-weight: 700;
}

.blog-one__title a {
    color: var(--gorent-black);
}

.blog-one__title a:hover {
    color: var(--gorent-base);
}

.blog-one__text {
    margin-bottom: 13px;
}

.blog-one__read-more {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-black);
}

.blog-one__read-more span {
    position: relative;
    display: inline-block;
    font-size: 15px;
}

.blog-one__read-more:hover {
    color: var(--gorent-base);
}

.blog-one__carousel .owl-nav .owl-next,
.blog-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(--gorent-white) !important;
    background-color: rgba(var(--gorent-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/

.blog-two__user-name a {
    color: var(--gorent-black);
}

.blog-two__user-name a:hover {
    color: var(--gorent-base);
}

.blog-two__title a {
    color: var(--gorent-black);
}

.blog-two__title a:hover {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
    display: block;
}

.blog-details__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}

.blog-details__date {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 5px solid var(--gorent-base);
    background-color: var(--gorent-white);
    border-radius: var(--gorent-bdr-radius);
    text-align: center;
}

.blog-details__date p {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    font-family: var(--gorent-font-two);
    color: var(--gorent-black);
}

.blog-details__content {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-details__user-and-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-details__user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 31px;
    background-color: var(--gorent-base);
    border-radius: 16px;
}

.blog-details__user p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--gorent-font-two);
    color: var(--gorent-white);
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-details__meta li {
    position: relative;
    display: block;
}

.blog-details__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gorent-gray);
}

.blog-details__meta li a:hover {
    color: var(--gorent-base);
}

.blog-details__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 19px;
}

.blog-details__text-2 {
    margin-top: 21px;
    margin-bottom: 40px;
}

.blog-details__author-box {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-base-rgb), .20);
    border-radius: var(--gorent-bdr-radius);
    padding: 40px 40px 37px;
}

.blog-details__author-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.72px;
    color: var(--gorent-black);
    margin-bottom: 30px;
}

.blog-details__author-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-align: right;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
}

.blog-details__author-name span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--gorent-font);
}

.blog-details__title-2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    margin-top: 41px;
    margin-bottom: 19px;
}


.blog-details__tag-list li a {
    position: relative;
    background-color: var(--gorent-white);
    border: 1px solid rgba(var(--gorent-black-rgb), 0.10);
    color: var(--gorent-gray);
    padding: 10px 15px 10px;
    border-radius: 10px;
}

.blog-details__tag-list li a:hover {
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-base);
    color: var(--gorent-white);
}

.blog-details__share a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
    color: var(--gorent-black);
    border: 1px solid rgba(var(--gorent-black-rgb), 0.10);
    background-color: var(--gorent-white);
    border-radius: 50%;
}

.blog-details__share a:hover {
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-base);
    color: var(--gorent-white);
}

.comment-one {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
    padding: 40px 40px 40px;
}

.comment-one__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--gorent-white);
    border: 1px solid rgba(var(--gorent-black-rgb), 0.10);
    border-radius: var(--gorent-bdr-radius);
    padding: 29px 29px 30px;
}

.comment-one__image {
    position: relative;
    display: block;
    max-width: 70px;
    width: 100%;
}

.comment-one__image img {
    width: 100%;
    border-radius: 50%;
}

.comment-one__content {
    position: relative;
    display: block;
}

.comment-one__content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--gorent-black);
    margin-bottom: 3px;
}

.comment-one__content p {
    margin-top: 14px;
}

.comment-one__btn-box {
    position: absolute;
    top: 28px;
    right: 0px;
}

.comment-one__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    font-family: var(--gorent-font-two);
    color: var(--gorent-black);
}

.comment-one__btn span {
    font-size: 11px;
    color: var(--gorent-base);
}

.comment-one__btn:hover {
    color: var(--gorent-base);
}

.comment-form {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 40px 40px 40px;
    border-radius: var(--gorent-bdr-radius);
    margin-top: 60px;
}

.comment-form__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.comment-form__text {
    margin-top: 23px;
    margin-bottom: 38px;
}

.comment-one__form {
    position: relative;
    display: block;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    background-color: var(--gorent-white);
    border: 1px solid rgba(var(--gorent-black-rgb), 0.10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
}

.comment-form__input-box textarea {
    font-size: 16px;
    color: var(--gorent-gray);
    height: 140px;
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    background-color: var(--gorent-white);
    border: 1px solid rgba(var(--gorent-black-rgb), 0.10);
    padding: 20px 20px 30px;
    outline: none;
    font-weight: 400;
}

.comment-form__btn-box {
    position: relative;
    display: block;
}

.comment-form__btn-box .thm-btn {
    border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
}

.sidebar__title {
    position: relative;
    margin: 0;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-left: 40px;
}

.sidebar__title::before {
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 2px;
    width: 30px;
    background: var(--gorent-base);
    content: "";
}

.sidebar__search {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 50px 30px 50px;
    border-radius: var(--gorent-bdr-radius);
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--gorent-white);
    color: var(--gorent-gray);
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--gorent-gray);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--gorent-gray);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--gorent-gray);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--gorent-gray);
}

.sidebar__search-form button[type="submit"] {
    background-color: var(--gorent-base);
    color: var(--gorent-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}


.sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--gorent-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    padding: 15px 20px 16px;
    background-color: var(--gorent-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--gorent-font-two);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.sidebar__category-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--gorent-base);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
    transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
    color: var(--gorent-white);
}

.sidebar__category-list li.active a {
    background-color: var(--gorent-base);
    color: var(--gorent-white);
}

.sidebar__category-list li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    right: 0;
    color: var(--gorent-black);
    font-size: 15px;
    font-weight: 600;
    background-color: rgba(var(--gorent-black-rgb), .10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--gorent-font);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gorent-white);
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 42px 30px 42px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.sidebar__post-box {
    position: relative;
    display: block;
}

.sidebar__post-single {
    position: relative;
    display: block;
}

.sidebar-post__img {
    position: relative;
    display: block;
    background: var(--gorent-black);
    overflow: hidden;
    border-radius: 10px;
}

.sidebar-post__img::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 100%;
    background-color: rgba(var(--gorent-base-rgb), .80);
    border-radius: 10px;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
}

.sidebar-post__img img {
    width: 100%;
    border-radius: 10px;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
    position: relative;
    margin-top: 18px;
}

.sidebar__post-content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.sidebar__post-content-box h3 a {
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list__title a {
    color: var(--gorent-black);
}

.blog-list__title a:hover {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-page .blog-one__single {
    margin-bottom: 30px;
}

.blog-page .car-listing__pagination {
    margin-top: 30px;
}

/*--------------------------------------------------------------
# Blog Left Sidebar
--------------------------------------------------------------*/
.blog-left-sidebar .blog-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Blog Right Sidebar
--------------------------------------------------------------*/
/* .blog-right-sidebar class removed due to unused class error */

.blog-right-sidebar .blog-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    counter-reset: count;
    z-index: 1;
}

.process-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 45px 25px 33px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.process-one__single-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .05;
    z-index: -1;
}

.process-one__icon-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
}

.process-one__icon-shape {
    position: absolute;
    top: 50%;
    left: 25px;
    right: 80px;
    height: 5px;
    background-color: var(--gorent-white);
    transform: translateY(-50%);
    opacity: .20;
    transition: all 500ms ease;
    z-index: -1;
}

.process-one__icon-shape:before {
    content: "";
    position: absolute;
    top: -8px;
    right: -10px;
    height: 20px;
    width: 20px;
    background-color: var(--gorent-white);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 500ms ease;
}

.process-one__single:hover .process-one__icon-shape,
.process-one__single:hover .process-one__icon-shape:before {
    background-color: var(--gorent-base);
    opacity: 1;
}

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: rgba(var(--gorent-base-rgb), 1);
    border-radius: 50%;
    z-index: 1;
}

.process-one__icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid rgba(var(--gorent-base-rgb), .20);
    border-radius: 50%;
    z-index: -1;
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}

.process-one__single:hover .process-one__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;
}

.process-one__count {
    position: relative;
    display: block;
}

.process-one__count::before {
    position: relative;
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--gorent-white-rgb), .70);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.process-one__single:hover .process-one__count::before {
    -webkit-text-stroke: 1px rgba(var(--gorent-base-rgb), 1);
}

.process-one__title {
    color: var(--gorent-base);
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 33px;
    margin-bottom: 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.process-one__text {
    color: rgba(var(--gorent-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Process Three
--------------------------------------------------------------*/
.process-three {
    padding: 0px 0px 90px;
}

/*--------------------------------------------------------------
# Services Page Process 
--------------------------------------------------------------*/
.services-page-process {
    padding: 90px 0 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.why-choose-one__shape-1 {
    position: absolute;
    top: -100px;
    left: -70px;
    width: 730px;
    height: 765px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
    opacity: 0.4;
    filter: blur(120px);
    z-index: -1;
}

.why-choose-one__shape-2 {
    position: absolute;
    bottom: -255px;
    right: 100px;
    width: 730px;
    height: 765px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 181, 29, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
    opacity: 0.4;
    filter: blur(120px);
    z-index: -1;
}

.why-choose-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.why-choose-one__icon {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    background-color: rgba(var(--gorent-base-rgb), 1);
    border-radius: 50%;
    z-index: 1;
}

.why-choose-one__icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid rgba(var(--gorent-base-rgb), .50);
    border-radius: 50%;
    z-index: -1;
}

.why-choose-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-one__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;
}

.why-choose-one__btn-box {
    position: absolute;
    bottom: -3px;
    left: 25px;
    z-index: 2;
}

.why-choose-one__single-inner {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 92px 30px 113px;
    text-align: center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='410' height='350' viewBox='0 0 410 350'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='410' height='350'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='410' height='350' viewBox='0 0 410 350'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZoAAAFeCAYAAAC8f9nBAAAAAXNSR0IArs4c6QAAGzZJREFUeF7t3QmQLVdZB/B/doisghEKiggIIrgilIqIlIIUi4qIkR2FVBAKqFJTBSlUFIFYmALFCBJkF5Edq0AkImDYBAIIiKCIEgERAghkARJCvJ/pG+fNm3kz86bPvb38btWrvMzc/vqc3zkz/9d9u08fkeTyeBEgQGC8Ahcl+VKSbyb5QJI3JPlM9/dPJ/l6973x9nDkLT9C0Ix8BDWfAIHtBM5L8rYkL03yriQXJ7kQ1+oFBM3qze2RAIHVClyQpELnPUmeneSDSeooyGtFAoJmRdB2Q4DAIAQqYM7qjnLen+SSQbRq4o0QNBMfYN0jQGBLgU8keVqSlyQ5n1FbAUHT1ld1AgSGLfDyJM9M8r4kXx52U8fbOkEz3rHTcgIE+hGoz3Cen+T07mq1fqqqcqWAoDEZCBAgcIXAK7vTaW8H0q+AoOnXUzUCBMYt8PEkj+lCZ9w9GVDrBc2ABkNTCBAYhEDd5Pkb3ZVpGxt0VJLLBtHCkTVC0IxswDSXAIGVCHw2yVO7S6Fr1YF6XaVbZcBqKnscAkGzRzBvJ0BgNgJ19PL4JE9Jculset2go4KmAaqSBAhMRuALi6OY07oVBSbTqVV3RNCsWtz+CBAYm8CnFkvY/EqSN46t4UNpr6AZykhoBwECQxY4J8mDk9SKAl57FBA0ewTzdgIEZilQn9ecuVj9+dQk35ilwD46LWj2gWdTAgRmJVArCPxWkqd7vMrexl3Q7M3LuwkQmLfAR5OclORD82bYW+8Fzd68vJsAgXkL1FM8X9ydQvvcvCl233tBs3sr7yRAgEAJ1CrPD0nyKhy7ExA0u3PyLgIECGwUqNWefy1JrRpQv0frZcWAbeaIoPHDQ4AAgb0LVMCcvGHxzVqe5mt7LzOPLQTNPMZZLwkQ6F/gDYvn1zxscTPneYtlao5Pcmx3hNP/nkZeUdCMfAA1nwCBtQmcm+RBST7SnT67TpJassYptE1DImjWNkftmACBkQt8JckZSf5w8ViBusfmakkuTlJXpnltEBA0pgMBAgQOX+Cfuvtq6qjmmC5kPLPGEc3hzyhbEiBAYJNAnSq7X5Kzu9Nn9XA0S9QIGj8oBAgQ6FXgd5KcnuSSJEcLmoNtnTrrdb4pRoDADAVem+QRST65CJzjuqdwzpBh+y4LGtOBAAEC+xOoI5n7d/fUuOJsC0tBs78JZmsCBAiUQC1JU6sFCBpB4yeCAAECTQRqlYAXdp/PCBsXAzSZZIoSIDBvgb9I8ujuhs15SziiMf4ECBBoIvDKJA9Pcn6T6iMv6jOakQ+g5hMgMAiBDye5d5J6MJrfq06dDWJSagQBAtMSqNWc75rkHwTNwQMreac12fWGAIH1CPxnkp9J8sEkR1rv7MBBEDTrmZT2SoDAtAQ+nuQe3akzQePU2bRmt94QIDAIgY1BU+udWVhzw7A4ohnEHNUIAgRGLrAxaKx35ohm5NNZ8wkQGKLAxqCpxwVcOsRGrqtNjmjWJW+/BAhMSWDzEU2dOrNCQDfCgmZKU11fCBBYl4DPaA4hL2jWNS3tlwCBKQkIGkEzpfmsLwQIDFBA0AiaAU5LTSJAYEoCgkbQTGk+6wsBAgMUEDSCZoDTUpMIEJiSgKARNFOaz/pCgMAABQSNoBngtNQkAgSmJCBoBM2U5rO+ECAwQAFBI2gGOC01iQCBKQnUYwLu0q3ebFHNTSPrhs0pTXV9IUBgXQL1COc7CJqt+QXNuqal/RIgMCWBC5P8WPfgM0c0jmimNLf1hQCBAQncPsnbkwgaQTOgaakpBAhMSeAxSZ4iaA4eUqfOpjTN9YUAgXUKvCbJLySp36uesLlhJATNOqelfRMgMDWBn15cFPAmQXPgsAqaqU1z/SFAYJ0Cz0jyaEEjaNY5Ce2bAIFpC/xrkocmedu0u7m33jmi2ZuXdxMgQGAngTOTPGqnN83p+4JmTqOtrwQIrELgo0lOS1IXB3h1V0dcToIAAQIEehV4UZIH9VpxxMUc0Yx48DSdAIHBClyQ5NQkZw22hStsmKBZIbZdESAwK4FzkjwkSa3sPOuXoJn18Os8AQKNBf5ucQXanRrvY/DlBc3gh0gDCRAYscDnk7yku7dmxN3YX9MFzf78bE2AAIGdBC5K8sQkv7/TG6f6fUEz1ZHVLwIEhiRQRzYPS/KqITVqVW0RNKuSth8CBOYuUPfX1FHNC+YGIWjmNuL6S4DAOgX+OcmvJ3nDOhux6n0LmlWL2x8BAnMXqHts6mbO2awcIGjmPuX1nwCBdQh8uruZ8wnr2Pmq9yloVi1ufwQIELhC4Lwkb1ksBfa7Sf5jyiiCZsqjq28ECIxBoD6vqQsE6n6bSb4EzSSHVacIEBiZQD3H5l3d6bTJPctG0IxsNmouAQKTFnhPktcneW53am0SnRU0kxhGnSBAYGICtUbaO5P8bZIKn6+OuX+CZsyjp+0ECMxB4BOLx0N/Msn5SS7dRYfrGWP15xtJ/jHJZ5Pcpgurs5N8LsnFi5UKPtPV++Yuau7rLYJmX3w2JkCAwBUCRxxRv07//3X55YN8puTXu8D5VJIKnQqwDyf5wOLx019IclmL8RQ0LVTVJEBgdgKbg6YABho2m8fmy0nen+Svkrw9SYVQHe309hI0vVEqRIDAnAVGHDQbh61Os52b5JlJ3pHkf/oYU0HTh6IaBAjMXmAiQbMcxwuTvC7JmYsHt211ufWRSa7dvblOuR3yJWh2EvJ9AgQI7EJgYkGz7HGtWPCn3Q2ldbSzfFXQnJjkmCQf6y4+2FZJ0OxiAnkLAQIEdhKYaNBUt+vqtb9P8pxNqxdUyByV5JIkh7xyTdDsNHt8nwABArsQmHDQLHtfn9c8rfv8ph7ktuuXoNk1lTcSIEBge4EZBE11vi6PrptIH7mXlQsEjZ8cAgQI9CAwk6BZStVCoBU2/7aBrj632fIUmqDpYYIpQYAAgZkFTQ14Xf782CRv7Ua/Pq+poDnoTlVB4+eDAAECPQhsFTRVdiQ3bR6uQD2a+oFJ3neoAoLmcHltR4AAgQ0CMw2aEqgjmlOSfHS7CSFo/KgQIECgB4EZB03pvWyxdM3JSS7YilLQ9DDBlCBAgMDMg6butTl1sVrAHwkaPwsECBBoJDDzoCnVevzAfZK8eTOxI5pGk05ZAgTmJSBo/m+83734c7fukQNXTgBBM6+fBb0lQKCRgKC5EvYJizXQntQtTVOXPF8maBpNOmUJEJiXwAzvo9lugGupmjsneW+SuonzckEzr58FvSVAoJGAoDkAtp5n84juK0cLmkaTTlkCBOYlIGgOGO96vMD9k7wzybGCZl4/C3pLgEAjAUFzEOxfJrlvfVXQNJp0yhIgMC+BzUEz8aVndjO45yS5a5KLBc1uuLyHAAECOwgImoOA6pk1j0tylqDx40OAAIEeBATNloivS3IvQdPDBFOCAAECG4PGabMr58O/JDlJ0Pj5IECAQA8CgmZLxAuTPFzQ9DDBlCBAgMAyaBzNHDAX6kForxA0fj4IECDQg4Cg2RbxQ4KmhwmmBAECBCpoHM1sOQ/eL2j8fBAgQKAHAUGzLeLnBU0PE0wJAgQIENhW4EuCxuwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgIGjMAQIECBBoKiBomvIqToAAAQKCxhwgQIAAgaYCgqYpr+IECBAgUEFzUZLjURAgQIAAgRYCFTQXJ7lqi+JqEiBAgACBCppLkhyDggABAgQItBCooHl3ktu2KK4mAQIECBCooHlOkoegIECAAAECLQQqaB6Z5I9bFFeTAAECBAhU0HxPknOTHIeDAAECBAj0LVBBU1ecvSfJrfourh4BAgQIEKigqddLk5yEgwABAgQI9C2wDJq7JPmbvourR4AAAQIElkFzrSTvTXITJAQIECBAoE+BZdBUzVOT/EGfxdUiQIAAAQIbg+ZGST6Y5JpYCBAgQIBAXwIbg6ZqvjrJPfsqrg4BAgQIENgcNLdJco5FNk0MAgQIEOhLYHPQ1P+/LMm9+9qBOgQIECAwb4HNQVMaP5TkzUmuPm8avSdAgACBPgS2Cpqq++Qkp/WxAzUIECBAYN4C2wXNLZK8Jcm3z5tH7wkQIEBgvwLbBU3VfUCS5yc5ar87sT0BAgQIzFfgUEFTKo9L8sT58ug5AQIECOxXYKegqZs335Tk1vvdke0JECBAYJ4COwVNqdw8ydlJTpwnkV4TIECAwH4Etgua+vrlGwrfNcmLFk/ivM5+dmZbAgQIEJifwKGC5sgkl20g+fEkf53kavNj0mMCBAgQOFyBQ506q6vNNgZN7eNHk7wgyc0Od4e2I0CAAIF5CezmM5rNIt+7+Lzmed0KAvPS0lsCBAgQ2LPA4QRN7eR6Sf4syd33vEcbECBAgMCsBHYbNMcnqT+f36Bz1SRnJblfkvo8x4sAAQIECBwksNugqQ0raI5O8pVNVX528b2nJPkuvgQIECBAYLPAXoKmtj0myXGLxz5fuKlQ3Wvzc4tLoh+/eBz0t2AmQIAAAQJLgb0GzcbtNl/+XN/7xe5ZNrdKUn+8CBAgQGDmAocbNEu25Wcz39zkeN0kD03y4CTfPXNj3SdAgMCsBfYbNEu8re65qe+dkORGSU7qjnbq1NsNZi2u8wQIEJiZQF9BU2xVq/5sPrpZktZnNxU0dYTzsSTX6D7vqZtCL1g8bO3Y7mKD+gyo6ny1e8pnHTVdsngQ29e7G0i/1n2/6tXX6yKF2nZ5kUI9GbSujrt+97WrdLWqXf/VBV3to9pSr9p/1flS16ZrJflGktquany8W46nluSpfdyk265qXdQF6X937aj/r2f41GKk70ry/V3dT3a1q15drffv3eMXqt6lXb1qU/V12bbqR7Wt/tTfK6A/17W12redc1lU26vu+d1/y7L6W/8gqAs66vvL7Wscqs31tRqHL3T9rLZUW6vfX0xSLstxqG3LuNpa36991T8oamyqndW/etWY1dFt2darxqrGrT7jq7aV07J/td/avr62bGv1s+ZCvaduEq79Vft/YrHY6x2607NV04sAgQEL9Bk0A+7mKJt24y4MzutaX2N1w+6Xf4Xc8oKMCoT6Zb9xbbqtOrwc653et3nbjevebfx77beCa7nvCrh6LYNn+d7lZ3n19fracpsKq43/MFl+f+OcXNberu31j5b7LEK91uK77ShHWaMJzEBA0Ax7kLc7Sqx/1S+XB6ojjTpiqaOHem11kcYqelkBUu2to5BVv26/OFo9JckPd6uNr3r/9keAwCEEphQ0e+nL8l/PG2m2+tq6Js/yqGN51FChsvzXfZ3qqlNwn05ycXdKrv67/Jzs2t1pqTrNVKe66sih6ixPQS2POrY6ctlvf/d6tLTf/W3e/r7dBSh36buwegQIHL7AXn45H/5ebLlfgfqspAJjedRS9ZZHEPX1ZQhVoCw/e1ke9dT36vEOFTz1WdKhPkfbbzu32n5j+Gyeb4f63m7aslWw1SnHup/rjp6htBtC7yHQXkDQtDfuYw/LU2jLWsswqWCpD/Lr/+vD9O1OW9WH6/W9zb+YN37m0kc7h1Tjt7vTaa5yHNKoaMssBQTNuIa9PnCvq6yWV3EtW7+8n6n+u47PSIaqeM/FVYIv7K7aG2obtYvA5AUEzTiHuC53rkuK63Lg5avGsk6XVRDVkUtdar35eULj7O3+Wl2f1zw1yS33V8bWBAgcroCgOVw5241JoFaoeGySW4yp0dpKYCoCgmYqI6kfOwnca3G13rO6G0h3eq/vEyDQo4Cg6RFTqcEL1FHNb1phfPDjpIETExA0ExtQ3dlR4OlJ6n6bWhrHiwCBFQgImhUg28XgBN6Y5KcG1yoNIjBRAUEz0YHVrUMK3HSxCOhzu4U5UREg0FhA0DQGVn6wArU22hnusRns+GjYhAQEzYQGU1f2LFA3cz5wz1vZgACBPQkImj1xefPEBGrlgNPdXzOxUdWdwQkImsENiQatWKCuQnvUivdpdwRmJSBoZjXcOruFwO0Wqzw/z3NszA0C7QQETTtblccj8CeLx2Q/YjzN1VIC4xIQNOMaL61tI3DnJGe3Ka0qAQKCxhwgcMUTSOu+mlp804sAgZ4FBE3PoMqNVqAuc67Lnb0IEOhZQND0DKrcaAVOSPLZ0bZewwkMWEDQDHhwNG2lAsd1RzQnrXSvdkZgBgKCZgaDrIu7Fjg5ybN3/W5vJEBgVwKCZldM3jQTgXoC50dm0lfdJLAyAUGzMmo7GoFAXX32xSTXHEFbNZHAaAQEzWiGSkNXJPCJxUoBJ65oX3ZDYBYCgmYWw6yTexB4X5If3MP7vZUAgR0EBI0pQuBAgbcmuT0UAgT6ExA0/VmqNA2B1ya5+zS6ohcEhiEgaIYxDloxHIFXJfn54TRHSwiMX0DQjH8M9aBfAU/d7NdTNQIRNCYBgQMFBI0ZQaBnAUHTM6hyoxcQNKMfQh0YmoCgGdqIaM+6BQTNukfA/icnIGgmN6Q6tE8BQbNPQJsT2CwgaMwJAj6jMQcINBUQNE15FR+hgCOaEQ6aJg9bQNAMe3y0bvUCgmb15vY4cQFBM/EB1r09C7woyQP2vJUNCBDYVkDQmBwEDhT48yT3h0KAQH8CgqY/S5WmIfDA7pHO0+iNXhAYgICgGcAgaMKgBGrl5lrB2YsAgZ4EBE1PkMpMRuDeSV4+md7oCIEBCAiaAQyCJgxK4JQkzxpUizSGwMgFBM3IB1Dzexe4XpK3Jblp75UVJDBTAUEz04HX7UMKeJyzCUKgRwFB0yOmUpMQ+NYkH0lywiR6oxMEBiAgaAYwCJowKIFjkzw/yX0H1SqNITBiAUEz4sHT9GYCpyV5UuLBgM2EFZ6VgKCZ1XDr7C4Fbp3k3UmO2uX7vY0AgUMICBrTg8DBAjdK8pYkN4ZDgMD+BQTN/g1VmKbA85L88jS7plcEVisgaFbrbW/jEbhfkhePp7laSmC4AoJmuGOjZesVqM9p3pjk2utthr0TGL+AoBn/GOpBG4H62Xiu02dtcFWdl4Cgmdd46+3eBO6V5BUuc94bmncT2CwgaMwJAtsL1M2br1usfXYnSAQIHL6AoDl8O1vOQ+DuSV69uIHzmHl0Vy8J9C8gaPo3VXFaAtdIcu7iCrSbTatbekNgdQKCZnXW9jRegZMXi2w+w1HNeAdQy9crIGjW62/v4xC4SpLXL1YLuOM4mquVBIYlIGiGNR5aM1yBeyR5jfXPhjtAWjZcAUEz3LHRsmEJHJnkzCQPH1aztIbA8AUEzfDHSAuHI/BtSd6R5DuH0yQtITB8AUEz/DHSwmEJPHZx+uz3khw9rGZpDYHhCgia4Y6Nlg1X4FlJThlu87SMwLAEBM2wxkNrxiMgbMYzVlq6ZgFBs+YBsPvRCly/ezjazUfbAw0nsCIBQbMiaLuZpMAPdMvTfMcke6dTBHoSEDQ9QSozW4EfSXJ2kqvPVkDHCewgIGhMEQL7F6iHpL0kidNo+7dUYYICgmaCg6pLaxG4ZZJnL45ubreWvdspgQELCJoBD46mjU7g+CRnWD1gdOOmwY0FBE1jYOVnJ1A3cv5qktMXoXO12fVehwlsISBoTAsCbQTqqZxPXjyh87ZtyqtKYDwCgmY8Y6Wl4xOoy57rxs6ftGTN+AZPi/sTEDT9WapEoH6eLt/EUF+rx0Gf5kIBE2SuAoJmriOv36sWuGGSuyV5sMBZNb39rVtA0Kx7BOx/bgInLo56Ht99dnO9xTNurjs3AP2dn4Cgmd+Y6/EwBOpS6BskeUKS70tS9+F4EZikgKCZ5LDq1MgETuguiT4uyS8luenI2q+5BA4p8L8kK4da57vmUgAAAABJRU5ErkJggg==' x='0' y='0' width='410' height='350'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    border-radius: var(--gorent-bdr-radius);
}

.why-choose-one__title {
    font-size: 22px;
    color: var(--gorent-white);
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 17px;
}

.why-choose-one__text {
    color: var(--gorent-white);
    opacity: .70;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/