/* --- module-css/about.css --- */
/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 90px 0 0px;
    z-index: 1;
}

.about-one__left {
    position: relative;
    display: block;
    margin-left: 210px;
    margin-right: -30px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.about-one__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-one__img:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-one__img-2 {
    position: absolute;
    left: -210px;
    bottom: -211px;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
}

.about-one__img-2 img {
    width: auto;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-one__img-2:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-one__experience {
    position: absolute;
    top: 35px;
    left: -75px;
    max-width: 150px;
    width: 100%;
    background-color: var(--gorent-base);
    border-radius: 10px;
    text-align: center;
    padding: 36px 30px 34px;
    border-bottom-left-radius: 0;
    z-index: 2;
}

.about-one__experience::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    border-top: 35px solid var(--gorent-base);
    border-left: 75px solid transparent;
}

.about-one__experience-count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-one__experience-count h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px !important;
    font-family: var(--gorent-font-two) !important;
    color: var(--gorent-black);
}

.about-one__experience-count span {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px !important;
    font-family: var(--gorent-font-two) !important;
    color: var(--gorent-black);
}

.about-one__experience-text {
    color: var(--gorent-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 5px;
}

.about-one__shape-1 {
    position: absolute;
    top: 0;
    left: -180px;
    z-index: -1;
}

.about-one__shape-1 img {
    width: auto;
}

.about-one__shape-2 {
    position: absolute;
    top: 133px;
    left: -190px;
    z-index: -1;
}

.about-one__shape-2 img {
    width: auto;
}

.about-one__shape-3 {
    position: absolute;
    bottom: -197px;
    right: -11px;
    z-index: -1;
}

.about-one__shape-3 img {
    width: auto;
}

.about-one__shape-4 {
    position: absolute;
    bottom: -164px;
    right: 0px;
    z-index: -1;
}

.about-one__shape-4 img {
    width: auto;
}

.about-one__right {
    position: relative;
    display: block;
    margin-left: 80px;
}

.about-one__right .section-title {
    margin-bottom: 23px;
}

.about-one__text-1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: var(--gorent-font-two);
    color: var(--gorent-base);
}

.about-one__text-2 {
    margin-top: 21px;
    margin-bottom: 20px;
}

.about-one__progress-box {
    position: relative;
    display: block;
}

.about-one__progress-box li {
    position: relative;
    display: block;
}

.about-one__progress-box li+li {
    margin-top: 18px;
}

.about-one__progress {
    position: relative;
    display: block;
}

.about-one__progress-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--gorent-black);
    margin-bottom: 7px;
}

.about-one__progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: var(--gorent-extra);
}

.about-one__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    background-color: var(--gorent-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;
}

.about-one__progress .count-text {
    position: absolute;
    right: 0;
    bottom: 17px;
    color: var(--gorent-black);
    line-height: 30px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    font-family: var(--gorent-font-two);
    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;
}

.about-one__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.about-one__progress .bar.marb-0 {
    margin-bottom: 0;
}

.about-one__btn-box-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.about-one__call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-one__call-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-one__call-box-icon:hover {
    background-color: var(--gorent-black);
}

.about-one__call-box-icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-one__call-box-icon:hover span {
    color: var(--gorent-white);
}

.about-one__call-box-content {
    position: relative;
    display: block;
}

.about-one__call-box-content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 2px;
}

.about-one__call-box-content h4 a {
    color: var(--gorent-black);
}

.about-one__call-box-content h4 a:hover {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.about-two__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.about-two__left .section-title {
    margin-bottom: 23px;
}

.about-two__text-1 {
    margin-bottom: 29px;
}

.about-two__points {
    position: relative;
    display: block;
}

.about-two__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-two__points li+li {
    margin-top: 7px;
}

.about-two__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--gorent-base);
}

.about-two__points li p {
    color: var(--gorent-black);
    font-weight: 500;
}

.about-two__progress-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 33px;
}

.about-two__progress-single {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-two__progress-single .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    top: 4px;
    z-index: 1;
}

.about-two__progress-single .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.about-two__progress-single .graph-outer .count-text {
    position: relative;
    display: inline-block;
    color: var(--gorent-base);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--gorent-font);
}

.about-two__progress-single .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--gorent-base);
    font-size: 20px;
    font-weight: 500;
}

.about-two__progress-text-box {
    position: relative;
    display: block;
}

.about-two__progress-text-box h4 {
    color: var(--gorent-base);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-two__btn-box-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 46px;
}

.about-two__call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-two__call-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-two__call-box-icon:hover {
    background-color: var(--gorent-black);
}

.about-two__call-box-icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-two__call-box-icon:hover span {
    color: var(--gorent-white);
}

.about-two__call-box-content {
    position: relative;
    display: block;
}

.about-two__call-box-content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 2px;
}

.about-two__call-box-content h4 a {
    color: var(--gorent-black);
}

.about-two__call-box-content h4 a:hover {
    color: var(--gorent-base);
}

.about-two__right {
    position: relative;
    display: block;
    margin-left: 180px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.about-two__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-two__img:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-two__img-two {
    position: absolute;
    bottom: -240px;
    left: -260px;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    z-index: 2;
}

.about-two__img-two img {
    width: auto;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-two__img-two:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-two__video-link {
    position: absolute;
    top: 86px;
    left: -150px;
    z-index: 3;
}

.active .about-two__video-link {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 500ms;
}

.about-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(--gorent-black);
    background-color: rgba(var(--gorent-base-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;
}

.about-two__video-icon:hover {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-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(--gorent-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.about-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.about-two__experience {
    position: absolute;
    bottom: -169px;
    left: 200px;
    max-width: 150px;
    width: 100%;
    background-color: var(--gorent-base);
    border-radius: 10px;
    text-align: center;
    padding: 36px 30px 34px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 2;
}

.about-two__experience::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    border-top: 35px solid var(--gorent-base);
    border-left: 75px solid transparent;
}

.about-two__experience-count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two__experience-count h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px !important;
    font-family: var(--gorent-font-two) !important;
    color: var(--gorent-black);
}

.about-two__experience-count span {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px !important;
    font-family: var(--gorent-font-two) !important;
    color: var(--gorent-black);
}

.about-two__experience-text {
    color: var(--gorent-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 5px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.about-three__left .section-title {
    margin-bottom: 23px;
}

.about-three__text-1 {
    margin-bottom: 29px;
}

.about-three__points-box {
    position: relative;
    display: block;
}

.about-three__points {
    position: relative;
    display: block;
}

.about-three__points li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.about-three__points li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-three__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    z-index: 1;
}

.about-three__points li .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;
}

.about-three__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 42px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}

.about-three__points li:hover .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;
}

.about-three__points li .content {
    position: relative;
    display: block;
    flex: 1;
}

.about-three__points li .content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 16px;
}

.about-three__points li .content p {}




.about-three__btn-box-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.about-three__call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-three__call-box-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-three__call-box-icon:hover {
    background-color: var(--gorent-black);
}

.about-three__call-box-icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-three__call-box-icon:hover span {
    color: var(--gorent-white);
}

.about-three__call-box-content {
    position: relative;
    display: block;
}

.about-three__call-box-content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 2px;
}

.about-three__call-box-content h4 a {
    color: var(--gorent-black);
}

.about-three__call-box-content h4 a:hover {
    color: var(--gorent-base);
}

.about-three__right {
    position: relative;
    display: block;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img-1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.about-three__img-1 img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-three__img-1:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-three__img-2 {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: 30px;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
}

.about-three__img-2 img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-three__img-2:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-three__satisfied-and-img {
    position: relative;
    display: block;
}

.about-three__satisfied-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--gorent-base);
    border-radius: 20px;
    max-width: 270px;
    width: 100%;
    gap: 20px;
    padding: 30px 30px 26px;
    margin-bottom: 30px;
}

.about-three__satisfied-box .icon {
    position: relative;
    display: inline-block;
}

.about-three__satisfied-box .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--gorent-black);
}

.about-three__count-box {
    position: relative;
    display: block;
}

.about-three__count {
    position: relative;
    display: block;
}

.about-three__count h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

.about-three__count-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--gorent-black);
    margin-top: 2px;
}

.about-three__img-3 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.about-three__img-3 img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-three__img-3:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page {
    padding: 120px 0 0px;
}










/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/banner.css --- */
/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgba(var(--gorent-extra-rgb), .30);
    clip-path: polygon(50% 0%, 100% 0, 100% 81%, 81% 94%, 16% 94%, 0 100%, 0 0);
    padding: 146px 0 177px;
    z-index: 1;
}

.banner-one__shape-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    mix-blend-mode: difference;
    z-index: -1;
}

.banner-one__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 360px;
    background-color: var(--gorent-base);
    z-index: 1;
}

.banner-one__shape-1-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.banner-one__shape-2 {
    position: absolute;
    top: -400px;
    bottom: -535px;
    left: -290px;
    width: 808px;
    background-color: var(--gorent-base);
    z-index: -1;
    transform: rotate(-45deg);
    opacity: .05;
}

.banner-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.banner-one__content {
    position: relative;
    display: block;
}

.banner-one__sub-title {
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 500;
}

.banner-one__title {
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 20px;
}

.banner-one__title span {
    color: var(--gorent-base);
}

.banner-one__text {
    color: rgba(var(--gorent-black-rgb), .70);
}

.banner-one__btn-box {
    position: relative;
    display: block;
    margin-top: 42px;
}

.banner-one__img-one {
    position: absolute;
    bottom: 0;
    right: -200px;
}

.banner-one__img-one img {
    width: auto;
}














/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/blog.css --- */
/*--------------------------------------------------------------
# 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;
}

.blog-one__shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.blog-one__shape-1 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.05;
}

.blog-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.blog-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.blog-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.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-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.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-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.blog-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.blog-one__carousel.owl-theme .owl-nav .owl-next span,
.blog-one__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-one__carousel.owl-theme .owl-nav .owl-next:hover,
.blog-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--gorent-black) !important;
    color: var(--gorent-white) !important;
}


/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-two__carousel {
    position: relative;
    display: block;
}

.blog-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.blog-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.blog-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.blog-two__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-two__single:hover {
    background-color: var(--gorent-white);
    box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
    transform: translateY(-10px);
}

.blog-two__img-box {
    position: relative;
    display: block;
    z-index: 1;
}

.blog-two__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-two__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-two__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-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.blog-two__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-two__single:hover .blog-two__img::before {
    opacity: 1;
}

.blog-two__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
}

.blog-two__single:hover .blog-two__img img {
    transform: scale(1);
}

.blog-two__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-two__single:hover .blog-two__tags {
    opacity: 1;
    transform: translateY(0px);
}

.blog-two__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-two__content {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-two__user {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-two__user-img {
    position: relative;
    display: block;
    height: 56px;
    width: 56px;
    overflow: hidden;
    border-radius: 50%;
}

.blog-two__user-img img {
    width: 100%;
    border-radius: 50%;
}

.blog-two__user-content {
    position: relative;
    display: block;
    top: 3px;
}

.blog-two__user-name {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-two__user-name a {
    color: var(--gorent-black);
}

.blog-two__user-name a:hover {
    color: var(--gorent-base);
}

.blog-two__title {
    font-size: 24px;
    line-height: 1.4em;
    margin-top: 15px;
    margin-bottom: 14px;
    font-weight: 700;
}

.blog-two__title a {
    color: var(--gorent-black);
}

.blog-two__title a:hover {
    color: var(--gorent-base);
}

.blog-two__text {
    margin-bottom: 13px;
}

.blog-two__read-more {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-black);
}

.blog-two__read-more span {
    position: relative;
    display: inline-block;
    font-size: 15px;
}

.blog-two__read-more:hover {
    color: var(--gorent-base);
}

.blog-two__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -110px;
    right: 0px;
    display: flex;
    align-items: center;
    margin: 0 !important;
    z-index: 100;
}

.blog-two__carousel .owl-nav .owl-next,
.blog-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(--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__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.blog-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.blog-two__carousel.owl-theme .owl-nav .owl-next span,
.blog-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-two__carousel.owl-theme .owl-nav .owl-next:hover,
.blog-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--gorent-black) !important;
    color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# 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__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
}

.blog-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.blog-details__img-box-img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}

.blog-details__tag-and-share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
    padding: 30px 30px 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.blog-details__tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.blog-details__tag-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.blog-details__tag-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details__tag-list li {
    position: relative;
    display: block;
}

.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-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.blog-details__share-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.blog-details__share {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.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__single+.comment-one__single {
    margin-top: 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__input-box.text-message-box {
    height: 140px;
}

.comment-form__btn-box {
    position: relative;
    display: block;
}

.comment-form__btn-box .thm-btn {
    border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
    position: relative;
    display: block;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.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 :-ms-input-placeholder {
    color: var(--gorent-gray);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-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 ::-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 {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
    padding: 42px 30px 50px;
}

.sidebar__category-list {
    position: relative;
    display: block;
    margin: 0;
}

.sidebar__category-list li+li {
    position: relative;
    margin-top: 15px;
}

.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-single+.sidebar__post-single {
    margin-top: 27px;
}

.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);
}

.sidebar__tags {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
    padding: 41px 30px 40px;
    overflow: hidden;
}

.sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px 0px;
    margin-bottom: 10px;
}

.sidebar__tags-list li a {
    position: relative;
    display: block;
    color: var(--gorent-gray);
    font-size: 15px;
    font-weight: 400;
    background: var(--gorent-white);
    padding: 6px 24px;
    border-radius: 5px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
    color: var(--gorent-white);
    background: var(--gorent-base);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.blog-list__left {
    position: relative;
    display: block;
}

.blog-list__single {
    position: relative;
    display: block;
    margin-bottom: 56px;
}

.blog-list__img {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.blog-list__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1;
}

.blog-list__single:hover .blog-list__img:before {
    opacity: 0.2;
}

.blog-list__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.blog-list__single:hover .blog-list__img img {
    transform: scale(1.06) rotate(0deg);
}

.blog-list__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: 50%;
    text-align: center;
    z-index: 2;
}

.blog-list__date p {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    font-family: var(--gorent-font-two);
    color: var(--gorent-black);
}

.blog-list__content {
    position: relative;
    display: block;
    margin-top: 30px;
}

.blog-list__user-and-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-list__user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 31px;
    background-color: var(--gorent-base);
    border-radius: 16px;
}

.blog-list__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-list__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-list__meta li {
    position: relative;
    display: block;
}

.blog-list__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gorent-gray);
}

.blog-list__meta li a:hover {
    color: var(--gorent-base);
}

.blog-list__title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 19px;
}

.blog-list__title a {
    color: var(--gorent-black);
}

.blog-list__title a:hover {
    color: var(--gorent-base);
}

.blog-list__read-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--gorent-font-two);
    color: var(--gorent-black);
    margin-top: 27px;
}

.blog-list__read-more:hover {
    color: var(--gorent-base);
}

.blog-list__read-more span {
    color: var(--gorent-base);
}

.blog-list__read-more::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #6E777D;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-list__read-more:hover::before {
    background-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 {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.blog-left-sidebar .blog-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Blog Right Sidebar
--------------------------------------------------------------*/
.blog-right-sidebar {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.blog-right-sidebar .blog-one__single {
    margin-bottom: 30px;
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/booking.css --- */
/*--------------------------------------------------------------
# Booking One
--------------------------------------------------------------*/
.booking-one {
    position: relative;
    display: block;
    padding: 90px 0 0;
    z-index: 1;
}

.booking-one__wrap {
    position: relative;
    display: block;
    max-width: 1680px;
    width: 100%;
    background-color: var(--gorent-black);
    border-radius: 30px;
    margin: 0 auto;
    z-index: 1;
}

.booking-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    opacity: .08;
    z-index: -1;
}

.booking-one__left {
    position: relative;
    display: block;
    margin-left: 150px;
    margin-right: 180px;
    margin-top: 50px;
}

.booking-one__img {
    position: relative;
    display: block;
}

.booking-one__img img {
    width: 100%;
    animation: leftRight 4s ease-in-out infinite;
}

.booking-one__shape-1 {
    position: absolute;
    top: 30px;
    right: -239px;
}

.booking-one__shape-1 img {
    width: auto;
}

.booking-one__right {
    position: relative;
    display: block;
    margin-left: 60px;
}

.booking-one__content {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    border-bottom-left-radius: var(--gorent-bdr-radius);
    border-bottom-right-radius: var(--gorent-bdr-radius);
    border-bottom: 5px solid var(--gorent-base);
}

.booking-one__title-box {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    text-align: center;
    padding: 17.5px 0;
    z-index: 1;
}

.booking-one__title-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.booking-one__title {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
}

.booking-one__form {
    position: relative;
    display: block;
    padding: 55px 30px 60px;
}

.booking-one__form .row {
    --bs-gutter-x: 20px;
}

.booking-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.booking-one__input-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-black);
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.booking-one__input-title span {
    font-size: 18px;
}

.booking-one__input-box input[type="text"],
.booking-one__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
}

.booking-one__input-box .select-box {
    width: 100%;
}

.booking-one__input-box .nice-select {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gorent-bdr-color);
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    font-weight: 400;
    border-radius: 25px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    float: none;
}

.booking-one__input-box .nice-select:after {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--gorent-bdr-color);
    border-right: 2px solid var(--gorent-bdr-color);
    margin-top: 0px;
    z-index: 10;
}

.booking-one__input-box .nice-select .option {
    color: var(--gorent-white);
}

.booking-one__input-box .nice-select .option.selected {
    font-weight: 500;
}

.booking-one__input-box .nice-select .list {
    background-color: var(--gorent-base);
    border-radius: var(--gorent-bdr-radius);
}

.booking-one__input-box .nice-select .option:hover,
.booking-one__input-box .nice-select .option.focus,
.booking-one__input-box .nice-select .option.selected.focus {
    color: var(--gorent-white);
}

.booking-one__btn-box {
    position: relative;
    display: block;
}

.booking-one__btn-box .thm-btn {
    border: none;
}







#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--gorent-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--gorent-base) none repeat scroll 0 0;
    border: 2px solid var(--gorent-base);
    border-radius: 0;
    color: var(--gorent-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: var(--gorent-black) !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--gorent-black) !important;
    background: var(--gorent-black) !important;
    color: var(--gorent-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--gorent-white);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: var(--gorent-black);
    color: var(--gorent-white);
    border-color: var(--gorent-black);
}

#ui-datepicker-div.ui-widget {
    font-family: var(--gorent-font);
}


/*--------------------------------------------------------------
# Booking Two
--------------------------------------------------------------*/
.booking-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.booking-two__left {
    position: relative;
    display: block;
    margin-top: 54px;
    z-index: 2;
}

.booking-two__left .booking-one__content {
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
}

.booking-two__left .booking-one__title-box {
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
}

.booking-two__right {
    position: relative;
    display: block;
    margin-left: -120px;
}

.booking-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
}

.booking-two__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}
















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/brand.css --- */
/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
    padding: 80px 0 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;
}

.brand-one__img>a>img {
    width: auto !important;
    position: relative;
    opacity: .50;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.brand-one__img>a:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    border-top: 1px solid var(--gorent-bdr-color);
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding: 29px 0 29px;
    z-index: 1;
}

.brand-two__left {
    position: relative;
    display: block;
}

.brand-two__text {
    font-size: 22px;
    color: var(--gorent-black);
    font-weight: 500;
    line-height: 1.5em;
}

.brand-two__text span {
    color: var(--gorent-base);
    font-weight: 700;
}

.brand-two__right {
    position: relative;
    display: block;
}

.brand-two__carousel {
    position: relative;
    display: block;
}

.brand-two__single {
    position: relative;
    display: block;
}

.brand-two__img {
    position: relative;
    display: block;
}

.brand-two__img img {
    width: auto !important;
    margin: 0 auto;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    filter: brightness(0.5);
}

.brand-two__img img:hover {
    filter: brightness(0.9);
    transform: scale(0.9);
}


/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
    padding: 50px 0 80px;
    border-bottom: 0;
}
















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/call.css --- */
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/* --- module-css/contact.css --- */
/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .05;
    z-index: -1;
}

.contact-one__img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.contact-one__img img {
    width: auto;
    animation: topBottom 3s ease-in-out infinite;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.contact-one__left .section-title__title {
    color: var(--gorent-white);
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--gorent-white-rgb), .70);
    display: block;
    border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box .select-box {
    width: 100%;
}

.contact-one__input-box .nice-select {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--gorent-white-rgb), .70);
    font-weight: 400;
    border-radius: var(--gorent-bdr-radius);
    line-height: 60px;
    display: block;
    float: none;
}

.contact-one__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(var(--gorent-white-rgb), .70);
    border-right: 2px solid rgba(var(--gorent-white-rgb), .70);
    margin-top: 0px;
    z-index: 10;
}

.contact-one__input-box .nice-select .option {
    color: var(--gorent-white);
}

.contact-one__input-box .nice-select .option.selected {
    font-weight: 500;
}

.contact-one__input-box .nice-select .list {
    background-color: var(--gorent-base);
}

.contact-one__input-box .nice-select .option:hover,
.contact-one__input-box .nice-select .option.focus,
.contact-one__input-box .nice-select .option.selected.focus {
    color: var(--gorent-white);
}

.contact-one__input-box textarea {
    height: 175px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding: 15px 20px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--gorent-white-rgb), .70);
    position: relative;
    display: block;
    border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box.text-message-box {
    height: 175px;
}

.contact-one__btn-box {
    position: relative;
    display: block;
}

.contact-one__btn-box .thm-btn {
    border: none;
}

.contact-one__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.contact-one__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}


/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.contact-info__single {
    position: relative;
    display: block;
    border-radius: var(--gorent-bdr-radius);
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    text-align: center;
    padding: 40px 40px 41px;
    margin-bottom: 30px;
}

.contact-info__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;
}

.contact-info__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--gorent-black);
    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;
}

.contact-info__single:hover .contact-info__icon:before {
    transform: scaleX(1);
}

.contact-info__icon span {
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--gorent-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
    transform: scale(0.9);
    color: var(--gorent-white);
}


.contact-info__single p {
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-info__single h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: var(--gorent-black);
}

.contact-info__single h3 a {
    color: var(--gorent-black);
}

.contact-info__single h3 a:hover {
    color: var(--gorent-base)
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.contact-page__inner {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 60px 0 60px;
}

.contact-page__left {
    position: relative;
    display: block;
    margin-left: 60px;
    margin-right: 10px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 523px;
    width: 100%;
    border-radius: 20px;
}

.contact-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 40px;
}

.contact-page__form-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -1.44px;
    color: var(--gorent-white);
    margin-bottom: 26px;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
    height: 57px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
    border-radius: 10px;
}

.contact-page__input-box .select-box {
    width: 100%;
}

.contact-page__input-box .nice-select {
    height: 57px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    display: block;
    font-weight: 400;
    border-radius: 20px;
    line-height: 57px;
    float: none;
}

.contact-page__input-box textarea {
    font-size: 16px;
    color: var(--gorent-gray);
    height: 175px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding: 15px 20px 30px;
    border-radius: 20px;
    outline: none;
    font-weight: 400;
    position: relative;
    display: block;
}

.contact-page__input-box.text-message-box {
    height: 175px;
}


.contact-page__btn-box {
    position: relative;
    display: block;
}

.contact-page__btn-box .thm-btn {
    border: none;
}

.contact-page__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

.contact-page__btn-box .thm-btn::before,
.contact-page__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/counter.css --- */
/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    padding: 90px 0 0;
    z-index: 1;
}

.counter-one__left {
    position: relative;
    display: block;
}

.counter-one__left .section-title {
    margin-bottom: 24px;
}

.counter-one__text {
    margin-bottom: 33px;
}

.counter-one__main-content {
    position: relative;
    display: block;
    margin-right: 70px;
}

.counter-one__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.counter-one__list li {
    position: relative;
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    padding: 0 10px;
}

.counter-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    padding: 15px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
}

.counter-one__shape-1 {
    position: absolute;
    top: -10px;
    left: 0;
    height: 172px;
    width: 172px;
    background-color: rgba(var(--gorent-black-rgb), .03);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: -1;
}

.counter-one__single:hover .counter-one__shape-1 {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-one__shape-2 {
    position: absolute;
    bottom: -10px;
    right: 0;
    height: 172px;
    width: 172px;
    background-color: rgba(var(--gorent-black-rgb), .03);
    clip-path: polygon(50% 1%, 50% 1%, 100% 100%, 0 100%);
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: -1;
}

.counter-one__single:hover .counter-one__shape-2 {
    transform: rotateY(180deg);
    transition-delay: 0.5s;
}

.counter-one__single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    padding: 42px 0 48px;
}

.counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-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;
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 15px;
}

.counter-one__count-box h3 {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two) !important;
    line-height: 1em !important;
}

.counter-one__count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}

.counter-one__count-box .odometer-formatting-mark {
    display: none;
}

.counter-one__count-text {
    color: var(--gorent-black);
}


.counter-one__list li:nth-child(2) .counter-one__single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__single-inner {
    border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__icon span {
    color: var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__count-text {
    color: var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__single-inner {
    border: 1px solid var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__icon span {
    color: var(--gorent-base);
}

.counter-one__list li:nth-child(3) .counter-one__count-text {
    color: var(--gorent-base);
}

.counter-one__list li:nth-child(2) .counter-one__shape-1 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-one__list li:nth-child(2) .counter-one__shape-2 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-one__list li:nth-child(3) .counter-one__shape-1 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-one__list li:nth-child(3) .counter-one__shape-2 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-one__right {
    position: relative;
    display: block;
    margin-left: -30px;
    margin-right: 90px;
}

.counter-one__img-box {
    position: relative;
    display: block;
}

.counter-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.counter-one__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}

.counter-one__img-two {
    position: absolute;
    bottom: -222px;
    right: -205px;
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.counter-one__img-two img {
    width: auto;
    border-radius: var(--gorent-bdr-radius);
}

.counter-one__dot-1 {
    position: absolute;
    top: 0;
    right: -100px;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.counter-one__dot-1 img {
    width: auto;
}

.counter-one__dot-2 {
    position: absolute;
    bottom: -220px;
    left: 100px;
    z-index: -1;
}

.counter-one__dot-2 img {
    width: auto;
}



@keyframes wobble-horizontal-hover {
    16.65% {
        transform: translateX(5px);
    }

    33.3% {
        transform: translateX(-3px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}


/*--------------------------------------------------------------
# Counter Two 
--------------------------------------------------------------*/
.counter-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.counter-two__inner {
    position: relative;
    display: block;
}

.counter-two__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.counter-two__list li {
    position: relative;
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    padding: 0 10px;
}

.counter-two__single {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    padding: 15px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
}

.counter-two__shape-1 {
    position: absolute;
    top: -10px;
    left: 0;
    height: 172px;
    width: 172px;
    background-color: rgba(var(--gorent-black-rgb), .03);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 50% 100%);
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: -1;
}

.counter-two__single:hover .counter-two__shape-1 {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-two__shape-2 {
    position: absolute;
    bottom: -10px;
    right: 0;
    height: 172px;
    width: 172px;
    background-color: rgba(var(--gorent-black-rgb), .03);
    clip-path: polygon(50% 1%, 50% 1%, 100% 100%, 0 100%);
    transition-delay: 0.1s;
    transition: all 500ms ease;
    z-index: -1;
}

.counter-two__single:hover .counter-two__shape-2 {
    transform: rotateY(180deg);
    transition-delay: 0.5s;
}

.counter-two__single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    padding: 42px 0 48px;
}

.counter-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}

.counter-two__single:hover .counter-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;
}

.counter-two__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 15px;
}

.counter-two__count-box h3 {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two) !important;
    line-height: 1em !important;
}

.counter-two__count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}

.counter-two__count-box .odometer-formatting-mark {
    display: none;
}

.counter-two__count-text {
    color: var(--gorent-black);
}


.counter-two__list li:nth-child(2) .counter-two__single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__single-inner {
    border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__icon span {
    color: var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__count-text {
    color: var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__single-inner {
    border: 1px solid var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__icon span {
    color: var(--gorent-base);
}

.counter-two__list li:nth-child(4) .counter-two__count-text {
    color: var(--gorent-base);
}

.counter-two__list li:nth-child(2) .counter-two__shape-1 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-two__list li:nth-child(2) .counter-two__shape-2 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-two__list li:nth-child(4) .counter-two__shape-1 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}

.counter-two__list li:nth-child(4) .counter-two__shape-2 {
    background-color: rgba(var(--gorent-white-rgb), .03);
}


/*==============================================
   Counter Three
===============================================*/
.counter-three {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 60px 0 30px;
    z-index: 1;
}

.counter-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .06;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.counter-three ul li:nth-child(4) .counter-three__single::before {
    display: none;
}

.counter-three__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 21px;
}

.counter-three__single::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -26px;
    width: 1px;
    height: 146px;
    background-color: rgba(var(--gorent-white-rgb), .10);
    transform: translateY(-50%);
}

.counter-three__icon {
    position: relative;
    display: inline-block;
}

.counter-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--gorent-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-three__single:hover .counter-three__icon span {
    transform: scale(0.9);
}

.counter-three__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 13px 0 5px;
}

.counter-three__count-box h3 {
    font-size: 40px;
    color: var(--gorent-white);
    line-height: 40px !important;
    font-family: var(--gorent-font-two) !important;
    font-weight: 700;
}

.counter-three__count-box span {
    font-size: 40px;
    color: var(--gorent-white);
    line-height: 40px;
    font-family: var(--gorent-font-two);
    font-weight: 700;
    text-transform: uppercase;
}

.counter-three__count-text {
    color: rgba(var(--gorent-white-rgb), .50);
}

.counter-three__count-box .odometer-formatting-mark {
    display: none;
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/download-app.css --- */
/*--------------------------------------------------------------
# Download App One 
--------------------------------------------------------------*/
.download-app-one {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 120px 0 120px;
    z-index: 1;
}

.download-app-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.download-app-one__inner {
    position: relative;
    display: block;
}

.download-app-one__inner .row {
    align-items: center;
}

.download-app-one__content {
    position: relative;
    display: block;
}

.download-app-one__sub-title {
    font-size: 20px;
    color: var(--gorent-base);
    font-weight: 500;
    line-height: 20px;
}

.download-app-one__title {
    font-size: 50px;
    color: var(--gorent-base);
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 8px;
}

.download-app-one__text {
    font-size: 18px;
    color: var(--gorent-white);
    line-height: 28px;
}

.download-app-one__google-and-app-store {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 42px;
}

.download-app-one__google-and-app-store a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-base);
    padding: 15px 30px 15px;
    border-radius: 10px;
}

.download-app-one__right {
    position: relative;
    display: block;
}

.download-app-one__img {
    position: relative;
    display: block;
    max-width: 470px;
    width: 100%;
    margin-left: auto;
}

.download-app-one__img1 {
    position: relative;
    display: block;
}

.download-app-one__img1 img {
    width: 100%;
}

.download-app-one-car__img {
    position: absolute;
    bottom: -85px;
    right: 35px;
    z-index: -1;
}

.download-app-one-car__img img {
    width: auto;
}









/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/error.css --- */
/***
=============================================
Error Page
=============================================
***/
.error-page {
    position: relative;
    display: block;
    background: var(--gorent-white);
    padding: 120px 0px 120px;
    z-index: 1;
}

.error-page__inner {
    position: relative;
    display: block;
}

.error-page__img {
    position: relative;
    display: block;
}

.error-page__img img {
    width: auto;
}

.error-page__content {
    position: relative;
    display: block;
    margin-top: 20px;
}

.error-page__content h2 {
    color: var(--gorent-base);
    font-size: 40px;
    line-height: 1.5em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.error-page__content p {
    color: var(--gorent-black);
    margin: 0;
}

.error-page__content .btn-box {
    position: relative;
    display: block;
    line-height: 0px;
    margin-top: 21px;
}

/* --- module-css/faq.css --- */
/*--------------------------------------------------------------
# Faq One
--------------------------------------------------------------*/
.faq-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--gorent-extra-rgb), 0.1);
    z-index: -1;
}

.faq-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;
}

.faq-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;
}

.faq-one__left {
    position: relative;
    display: block;
}

.faq-one__img-box {
    position: relative;
    display: block;
    margin-right: 252px;
}

.faq-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.faq-one__img img {
    width: 100%;
    border-radius: 10px;
}

.faq-one__experience-box {
    position: absolute;
    bottom: 30px;
    right: -70px;
    background: linear-gradient(270deg, #FFB51D 45%, #ffffff 100%);
    max-width: 180px;
    width: 100%;
    text-align: center;
    padding: 30px 0 30px;
    border-radius: 10px;
    z-index: 1;
}

.faq-one__experience-year {
    position: relative;
    display: block;
}

.faq-one__experience-year h2 {
    font-size: 50px;
    color: var(--gorent-black);
    font-weight: 700;
    line-height: 1.2em !important;
    font-family: var(--gorent-font-two) !important;
}

.faq-one__experience-text {
    color: var(--gorent-black);
    font-weight: 500;
}

.faq-one__right {
    position: relative;
    display: block;
}

.faq-one .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--gorent-black-rgb), .15);
    background: var(--gorent-white);
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--gorent-black-rgb), .15);
    background: var(--gorent-white);
}

.faq-one .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--gorent-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one .faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    font-size: 17px;
    color: var(--gorent-white);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--gorent-base-rgb), 1);
}

.faq-one .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--gorent-white);
    background-color: var(--gorent-black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
}

.faq-one .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-two__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;
}

.faq-two__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;
}

.faq-two .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--gorent-black-rgb), .15);
    background: var(--gorent-white);
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-two .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--gorent-black-rgb), .15);
    background: var(--gorent-white);
}

.faq-two .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-two .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--gorent-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-two .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-two .faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    font-size: 17px;
    color: var(--gorent-white);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--gorent-base-rgb), 1);
}

.faq-two .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--gorent-white);
    background-color: var(--gorent-black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-two .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
}

.faq-two .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
    padding: 120px 0 100px;
}

.faq-page__left {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.faq-page__right {
    position: relative;
    display: block;
    margin-bottom: 20px;
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/feature.css --- */
/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.feature-one__inner {
    position: relative;
    display: block;
}

.feature-one__inner-single {
    position: relative;
    display: block;
    padding: 38px 45px 50px;
    background-color: var(--gorent-base);
    border-radius: var(--gorent-bdr-radius);
    margin-bottom: 30px;
    z-index: 1;
}

.feature-one__inner-single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--gorent-bdr-radius);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .10;
    z-index: -1;
}

.feature-one__inner-single--two {
    background-color: var(--gorent-black);
}

.feature-one__inner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--gorent-black);
    text-transform: uppercase;
}

.feature-one__inner-single--two .feature-one__inner-title {
    color: var(--gorent-base);
}

.feature-one__inner-text {
    color: var(--gorent-white);
    margin-top: 12px;
    margin-bottom: 28px;
}

.feature-one__inner-single--two .feature-one__inner-text {
    opacity: .70;
}

.feature-one__inner-btn-box {
    position: relative;
    display: block;
}

.feature-one__inner-btn-box .thm-btn {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.feature-one__inner-btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.feature-one__inner-btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn {
    background-color: var(--gorent-base);
    color: var(--gorent-black);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.feature-one__inner-single--two .feature-one__inner-btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
    padding: 120px 0 0;
}













/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/footer.css --- */
/*==============================================
    Site Footer
===============================================*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    z-index: 1;
}

.site-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer__top {
    position: relative;
    display: block;
}

.site-footer__top-inner {
    position: relative;
    display: block;
    padding: 120px 0 113px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-right: 50px;
}

.footer-widget__about-logo {
    position: relative;
    display: inline-block;
}

.footer-widget__about-text {
    margin: 0;
    color: rgba(var(--gorent-white-rgb), .70);
    padding-top: 24px;
    padding-bottom: 62px;
}

.footer-widget__form {
    position: relative;
    display: block;
}

.footer-widget__input {
    position: relative;
    display: block;
}

.footer-widget__input input[type="email"] {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 2px solid rgba(var(--gorent-white-rgb), .10);
    border-radius: 40px;
    outline: none;
    font-size: 18px;
    color: var(--gorent-gray);
    font-weight: 400;
    padding-right: 90px;
    padding-left: 40px;
    margin: 0 auto;
}

.footer-widget__btn {
    position: absolute;
    top: 50%;
    right: 0px;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget__btn:hover {
    color: var(--gorent-base);
    background-color: var(--gorent-white);
}

.footer-widget__title {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--gorent-white);
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__links-list {
    position: relative;
    display: block;
}

.footer-widget__links-list li+li {
    margin-top: 16px;
}

.footer-widget__links-list li a {
    color: rgba(var(--gorent-white-rgb), .70);
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
    color: var(--gorent-base);
}

.footer-widget__contact {
    position: relative;
    display: block;
    margin-left: -24px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget__contact-list li+li {
    margin-top: 20px;
}

.footer-widget__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-list li .icon:hover {
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-base);
}

.footer-widget__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--gorent-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-list li p {
    color: rgba(var(--gorent-white-rgb), .70);
}

.footer-widget__contact-list li p a {
    color: rgba(var(--gorent-white-rgb), .70);
}

.footer-widget__contact-list li p a:hover {
    color: var(--gorent-base);
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 30px;
}

.site-footer__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--gorent-white-rgb), .20);
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 28px;
}

.site-footer__copyright {
    position: relative;
    display: block;
}

.site-footer__copyright-text {
    color: rgba(var(--gorent-white-rgb), .70);
}

.site-footer__copyright-text a {
    color: var(--gorent-base);
}

.site-footer__copyright-text a:hover {
    color: var(--gorent-white);
}

.site-footer__bottom-menu-box {
    position: relative;
    display: block;
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li+li {
    margin-left: 25px;
}

.site-footer__bottom-menu li a {
    position: relative;
    display: inline-block;
    color: rgba(var(--gorent-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--gorent-base);
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/gallery.css --- */
/*==============================================
    Gallery One
===============================================*/
.gallery-one {
    position: relative;
    display: block;
}

.gallery-one__carousel {
    position: relative;
    display: block;
}

.gallery-one__single {
    position: relative;
    display: block;
}

.gallery-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.gallery-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--gorent-black-rgb), .85);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.gallery-one__single:hover .gallery-one__img:before {
    opacity: 1;
    transform: translateY(0px);
}

.gallery-one__img img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.gallery-one__single:hover .gallery-one__img img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-one__img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gorent-white);
    opacity: 0;
    transform: translateY(100px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
}

.gallery-one__single:hover .gallery-one__img a {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
}

.gallery-one__img a:hover {
    color: var(--gorent-base);
}
















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/lets-talk.css --- */
/*==============================================
    Lets Talk Start
===============================================*/
.lets-talk {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    overflow: hidden;
    padding: 78px 0 81px;
    z-index: 1;
}

.lets-talk__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .05;
    z-index: -1;
}

.lets-talk__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lets-talk__title {
    position: relative;
    display: block;
}

.lets-talk__title p {
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 500;
    line-height: 20px;
}

.lets-talk__title h2 {
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 17px;
}

.lets-talk__btn-boxes {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lets-talk__btn-1 {
    position: relative;
    display: block;
}

.lets-talk__btn-1 .thm-btn {
    background-color: var(--gorent-white);
}

.lets-talk__btn-2 {
    position: relative;
    display: block;
}

.lets-talk__btn-2 .thm-btn {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.lets-talk__btn-2 .thm-btn::after {
    background-color: var(--gorent-white);
}

.lets-talk__btn-2 .thm-btn:hover {
    color: var(--gorent-black);
}









/*==============================================
    End
===============================================*/

/* --- module-css/listing.css --- */
/*--------------------------------------------------------------
# Listing One
--------------------------------------------------------------*/
.listing-one {
    position: relative;
    display: block;
    padding: 100px 0 120px;
    z-index: 1;
}

.listing-one__tab-box {
    position: relative;
    display: block;
}

.listing-one__tab-box .listing-one-tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background-color: var(--gorent-black);
    padding: 8px 16px 8px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gorent-base);
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn:hover::before {
    transform: scaleY(1.0);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn.active-btn::before {
    transform: scaleY(1.0);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn:hover span {
    color: var(--gorent-white);
}

.listing-one__tab-box .listing-one-tab-buttons .p-tab-btn.active-btn span {
    color: var(--gorent-white);
}

.listing-one__tab-box .p-tabs-content {
    position: relative;
    display: block;
}

.listing-one__tab-box .p-tab {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.listing-one__tab-box .p-tab.active-tab {
    position: relative;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    z-index: 5;
}

.listing-one__inner {
    position: relative;
    display: block;
}

.listing-one__carousel {
    position: relative;
    display: block;
}

.listing-one__carousel .owl-stage-outer {
    overflow: visible;
}

.listing-one__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-one__single:hover {
    transform: translateY(-10px);
}

.listing-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.listing-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: "";
}

.listing-one__single:hover .listing-one__img::before {
    opacity: 1;
}

.listing-one__img img {
    width: 100%;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
}

.listing-one__single:hover .listing-one__img img {
    transform: scale(1);
}

.listing-one__brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--gorent-base);
    padding: 8px 25px;
    border-top-right-radius: 15px;
    z-index: 2;
}

.listing-one__brand-name p {
    color: var(--gorent-black);
}

.listing-one__content {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 23px 25px 30px;
    border-bottom-left-radius: var(--gorent-bdr-radius);
    border-bottom-right-radius: var(--gorent-bdr-radius);
}

.listing-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.listing-one__title a {
    color: var(--gorent-black);
}

.listing-one__title a:hover {
    color: var(--gorent-base);
}

.listing-one__meta-box-info {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding-top: 13px;
    margin-top: 18px;
}

.listing-one__meta {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.listing-one__meta li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
}

.listing-one__meta--two {
    margin-top: 10px;
}

.listing-one__car-rent-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--gorent-extra-rgb), .40);
    padding: 10px 0;
    margin-top: 23px;
    margin-bottom: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.listing-one__car-rent {
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 500;
    line-height: 30px;
}

.listing-one__car-rent span {
    color: var(--gorent-base);
    font-weight: 700;
}

.listing-one__btn-box {
    position: relative;
    display: block;
}

.listing-one__btn-box .thm-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 30px 8px;
}

.listing-one__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin: 40px 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 16px;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--gorent-black);
    margin: 0px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.listing-one__carousel.owl-carousel .owl-dot.active {
    background-color: var(--gorent-base);
    width: 145px;
}

.listing-one__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.listing-one__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# Listing Two
--------------------------------------------------------------*/
.listing-two {
    position: relative;
    display: block;
    padding: 110px 0 120px;
    z-index: 1;
}

.listing-two__carousel {
    position: relative;
    display: block;
}

.listing-two__carousel .owl-stage-outer {
    overflow: visible;
}

.listing-two__single {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    border-radius: var(--gorent-bdr-radius);
}

.listing-two__img-box {
    position: relative;
    display: block;
}

.listing-two__img {
    position: relative;
    display: block;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.listing-two__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--gorent-black-rgb), .50);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.listing-two__single:hover .listing-two__img:before {
    opacity: 1;
    transform: translateY(0px);
}

.listing-two__img img {
    width: 100%;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.listing-two__single:hover .listing-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.listing-two__content {
    position: relative;
    display: block;
    padding: 14px 20px 20px;
}

.listing-two__sub-title {
    font-weight: 500;
    color: var(--gorent-base);
    text-transform: capitalize;
}

.listing-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 5px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.listing-two__title a {
    color: var(--gorent-black);
}

.listing-two__title a:hover {
    color: var(--gorent-base);
}

.listing-two__price-and-btn {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(190, 190, 190, .30);
    padding-top: 12px;
}

.listing-two__price-box {
    position: relative;
    display: block;
}

.listing-two__price-box span {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.listing-two__price-box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--gorent-black);
}

.listing-two__btn-box {
    position: relative;
    display: block;
}

.listing-two__btn-box .thm-btn {
    padding: 3px 20px 3px;
    border-radius: 5px;
}


/*--------------------------------------------------------------
# Listing Three
--------------------------------------------------------------*/
.listing-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.listing-three__carousel {
    position: relative;
    display: block;
}

.listing-three__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.listing-three__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.listing-three__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.listing-three__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-three__single:hover {
    transform: translateY(-10px);
}

.listing-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.listing-three__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: "";
}

.listing-three__single:hover .listing-three__img::before {
    opacity: 1;
}

.listing-three__img img {
    width: 100%;
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    transition: .5s ease;
    transform: scale(1.05);
}

.listing-three__single:hover .listing-three__img img {
    transform: scale(1);
}

.listing-three__brand-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--gorent-base);
    padding: 8px 25px;
    border-top-right-radius: 15px;
    z-index: 2;
}

.listing-three__brand-name p {
    color: var(--gorent-black);
}

.listing-three__content {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 23px 25px 30px;
    border-bottom-left-radius: var(--gorent-bdr-radius);
    border-bottom-right-radius: var(--gorent-bdr-radius);
}

.listing-three__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.listing-three__title a {
    color: var(--gorent-black);
}

.listing-three__title a:hover {
    color: var(--gorent-base);
}

.listing-three__meta-box-info {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding-top: 13px;
    margin-top: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.listing-three__meta {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.listing-three__meta li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
}

.listing-three__meta--two {
    margin-top: 10px;
}

.listing-three__car-rent-and-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing-three__car-rent {
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 500;
    line-height: 30px;
}

.listing-three__car-rent span {
    color: var(--gorent-base);
    font-weight: 700;
}

.listing-three__btn-box {
    position: relative;
    display: block;
}

.listing-three__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--gorent-black);
    height: 40px;
    width: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
}

.listing-three__btn span {
    position: relative;
    display: block;
    transform: rotate(-45deg);
}

.listing-three__btn:hover {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.listing-three__carousel .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
    margin: 0 !important;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-three__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.listing-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next span,
.listing-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-three__carousel.owl-theme .owl-nav .owl-next:hover,
.listing-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: rgba(var(--gorent-black-rgb), 1);
    color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Cars Page
--------------------------------------------------------------*/
.cars-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.cars-page .listing-one__single {
    margin-bottom: 30px;
}



/*--------------------------------------------------------------
# Car Listing Page One
--------------------------------------------------------------*/
.car-listing-page-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.car-listing-page-one .listing-one__single {
    margin-bottom: 30px;
}

.car-listing-page-one .listing-one__content {
    padding: 23px 20px 30px;
}

.car-listing-page-one .listing-one__meta li {
    gap: 5px;
}

.car-listing-page-one .listing-one__meta li .text p {
    font-size: 14px;
}

.car-listing-page-one .listing-one__car-rent {
    font-size: 18px;
}

.car-listing-page-one .listing-one__title {
    font-size: 22px;
}

/*--------------------------------------------------------------
# Car Listing Sidebar
--------------------------------------------------------------*/
.car-listing-page-one__right {
    position: relative;
    display: block;
}

.car-listing__pagination {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.car-listing__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
}

.car-listing__pagination .pg-pagination li a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    color: var(--gorent-black);
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    font-family: var(--gorent-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.car-listing__pagination .pg-pagination li:hover a,
.car-listing__pagination .pg-pagination li.active a {
    border: 1px solid var(--gorent-base);
    color: var(--gorent-black);
    background-color: var(--gorent-base);
}

.car-listing__sidebar {
    position: relative;
    display: block;
}

.car-listing__sidebar-single+.car-listing__sidebar-single {
    margin-top: 30px;
}

.car-listing__sidebar-title {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    margin-bottom: 22px;
    padding-left: 27px;
}

.car-listing__sidebar-title::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background-color: var(--gorent-base);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.car-listing__search {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 30px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.car-listing__search form {
    position: relative;
}

.car-listing__search form input[type=search],
.car-listing__search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: var(--gorent-white);
    padding-left: 30px;
    padding-right: 60px;
    font-size: 16px;
    color: var(--gorent-gray);
    font-family: var(--gorent-font);
    border: none;
    outline: none;
    font-weight: 400;
    border-radius: 10px;
}

.car-listing__search form ::placeholder {
    color: inherit;
    opacity: 1;
}

.car-listing__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: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.car-listing__search form button:hover[type="submit"] {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}





.car-listing__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.car-listing__price-ranger.price-ranger {
    margin-top: 7px;
    margin-bottom: 0px;
}

.car-listing__price-ranger .price-ranger .ui-widget-content {
    background: var(--gorent-black);
    border: none;
    height: 5px;
}

.car-listing__price-ranger .price-ranger .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--gorent-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.car-listing__price-ranger .price-ranger .ui-slider .ui-slider-range {
    background: var(--gorent-base);
}

.car-listing__price-ranger .price-ranger #slider-range {
    margin-left: 3px;
    margin-right: 0;
    margin-top: 0;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 17px;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input {
    display: inline-block;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    background: var(--gorent-black);
    float: right;
    text-align: center;
    border: none;
    color: var(--gorent-white);
    font-size: 12px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    color: var(--gorent-gray);
    font-size: 14px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.car-listing__price-ranger .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--gorent-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
}



.car-listing__category {
    position: relative;
    display: block;
    padding: 27px 30px 30px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.car-listing__category ul {
    position: relative;
    display: block;
}

.car-listing__category ul li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--gorent-white);
    padding: 10px 15px 10px;
    border-radius: 10px;
}

.car-listing__category ul li+li {
    margin-top: 10px;
}

.car-listing__category ul li .checked-box {
    position: relative;
    display: block;
}

.car-listing__category ul li .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--gorent-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--gorent-font);
}

.car-listing__category ul li .checked-box input[type="checkbox"] {
    display: none;
}

.car-listing__category ul li .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    vertical-align: middle;
    background-color: transparent;
    background: var(--gorent-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.car-listing__category ul li .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--gorent-white);
    border-right: 2px solid var(--gorent-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.car-listing__category ul li.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--gorent-white);
}

.car-listing__category ul li .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.car-listing__category ul li .counts-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-bdr-color);
    color: var(--gorent-black);
    padding: 5px 8px 4px;
    border-radius: 10px;
}

.car-listing__category ul li .counts-box p {
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
}




.car-listing__rating {
    position: relative;
    display: block;
    padding: 27px 30px 30px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.car-listing__rating-box {
    position: relative;
    display: block;
}

.car-listing__rating-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.car-listing__rating-box ul li {
    position: relative;
    display: block;
}

.car-listing__rating-box ul li+li {
    margin-top: 30px;
}

.car-listing__rating-box ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.car-listing__rating-box ul li label {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #ffc009;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.car-listing__rating-box ul li label span.gray {
    color: #dddbdb;
}

.car-listing__rating-box ul li input[type=radio]+label i {
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--gorent-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.car-listing__rating-box ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--gorent-base);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.car-listing__rating-box ul li input[type=radio]:checked+label i {
    border-color: var(--gorent-base);
}

.car-listing__rating-box ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
}

.car-listing__google-map {
    position: relative;
    display: block;
    padding: 27px 30px 30px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.car-listing__google-map-box {
    position: relative;
    display: block;
    border: none;
    height: 200px;
    width: 100%;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Car Listing Page Two
--------------------------------------------------------------*/
.car-listing-page-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.car-listing-page-two .listing-two__single {
    margin-bottom: 30px;
}

.car-listing-page-two__right {
    position: relative;
    display: block;
}


/*--------------------------------------------------------------
# Car Listing Page Three
--------------------------------------------------------------*/
.car-listing-page-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.car-listing-page-three .listing-three__single {
    margin-bottom: 30px;
}

.car-listing-page-three__right {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Listing Single
--------------------------------------------------------------*/
.listing-single {
    position: relative;
    display: block;
    padding: 111px 0 120px;
    z-index: 1;
}

.listing-single__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.listing-single__top-left {
    position: relative;
    display: block;
}

.listing-single__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.listing-single__sub-title {
    font-weight: 600;
    color: var(--gorent-black);
}

.listing-single__car-details-box {
    position: relative;
    display: block;
    margin-top: 20px;
}

.listing-single__car-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.listing-single__car-details+.listing-single__car-details {
    margin-top: 15px;
}

.listing-single__car-details li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 22px 5px;
    background-color: rgba(var(--gorent-base-rgb), .15);
    border-radius: 6px;
}

.listing-single__car-details li span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--gorent-black);
}

.listing-single__car-details li p {
    color: var(--gorent-black);
    font-weight: 500;
}

.listing-single__top-right {
    position: relative;
    display: block;
    text-align: right;
}

.listing-single__tag {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.listing-single__tag a {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--gorent-black);
    font-weight: 600;
}

.listing-single__tag a:hover {
    color: var(--gorent-base);
}

.listing-single__tag a span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: 50%;
    color: var(--gorent-black);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-single__tag a:hover span {
    border: 1px solid var(--gorent-base);
    background-color: var(--gorent-base);
    color: var(--gorent-white);
}

.listing-single__price {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 29px;
    margin-bottom: 9px;
}

.listing-single__offer-price {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.listing-single__offer-price .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-single__offer-price .icon span {
    color: var(--gorent-base);
    font-size: 18px;
}

.listing-single__offer-price .text {
    position: relative;
    display: block;
}

.listing-single__offer-price .text p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gorent-black);
}

.listing-single__inner {
    position: relative;
    display: block;
}

.listing-single__main-content {
    position: relative;
    display: block;
}

.listing-single__main-content-inner {
    position: relative;
    display: block;
}

.listing-single__left {
    position: relative;
    display: block;
}

.listing-single__img {
    position: relative;
    display: block;
    border-radius: 10px;
}

.listing-single__img img {
    width: 100%;
    border-radius: 10px;
}

.listing-single__right {
    position: relative;
    display: block;
    margin-left: 225px;
}

.listing-single__title-two {
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
}

.listing-single__text {
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 18px;
}

.listing-single__meta {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.listing-single__meta li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-single__meta li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-single__meta li .icon span {
    font-size: 18px;
    color: var(--gorent-base);
}

.listing-single__meta li .text {
    position: relative;
    display: block;
    flex: 1;
}

.listing-single__meta li .text p {
    color: var(--gorent-black);
}

.listing-single__meta li .text p a {
    position: relative;
    display: inline-block;
    color: var(--gorent-black);
    font-weight: 700;
    text-decoration: underline;
}

.listing-single__meta li .text p a span {
    position: relative;
    display: block;
    padding-left: 7px;
}

.listing-single__btn-and-video-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 37px;
}

.listing-single__btn-box {
    position: relative;
    display: block;
}

.listing-single__video-link {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.listing-single__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-black);
    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;
}

.listing-single__video-icon:hover {
    background-color: var(--gorent-base);
    color: var(--gorent-white);
}

.listing-single__video-link .ripple,
.listing-single__video-icon .ripple:before,
.listing-single__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(--gorent-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--gorent-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.listing-single__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.listing-single__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.listing-single__video-title {
    font-size: 20px;
    color: var(--gorent-base);
    font-weight: 600;
    font-family: var(--gorent-font);
}

.listing-single__thumb-box {
    position: absolute;
    top: 0;
    left: 552px;
    width: 161px;
    height: 523px;
    overflow: hidden;
    z-index: 100;
}

#listing-single__thumb {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
}

@media (max-width: 767px) {
    #listing-single__thumb {
        display: none;
    }
}

.listing-single__img-holder-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 161px;
    width: 161px;
    overflow: hidden;
    z-index: 1;
}

.listing-single__img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 500ms ease;
    border-radius: 10px;
    width: 161px;
    height: 161px;
    cursor: pointer;
    z-index: 1;
}

.listing-single__img-holder:before {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    content: "";
    background-color: rgba(var(--gorent-base-rgb), 0);
    border-radius: 10px;
    z-index: 1;
    transition: all 500ms ease;
}

.swiper-slide-active .listing-single__img-holder:before,
.swiper-slide-thumb-active .listing-single__img-holder:before {
    background-color: rgba(var(--gorent-black-rgb), .40);
}

.listing-single__img-holder>img {
    width: 100%;
    transition: all 0.5s ease-in-out 0.6s;
    border-radius: 10px;
}

.listing-single__nav {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 100;
}

.listing-single__nav .swiper-button-next {
    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;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.listing-single__nav .swiper-button-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;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.listing-single__nav .swiper-button-next:hover,
.listing-single__nav .swiper-button-prev:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-black);
}

.listing-single__nav .swiper-button-next {
    margin-right: 10px;
}

.listing-single__nav .swiper-button-next i,
.listing-single__nav .swiper-button-prev i {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-single__nav .swiper-button-next::after,
.listing-single__nav .swiper-button-prev::after {
    display: none;
}

.listing-single__bottom {
    position: relative;
    display: block;
    margin-top: 60px;
}

.listing-single__bottom-left {
    position: relative;
    display: block;
}

.listing-single__car-overview {
    position: relative;
    display: block;
}

.listing-single__car-overview-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.listing-single__car-overview-points-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.listing-single__car-overview-point {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
}

.listing-single__car-overview-point li {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-single__car-overview-point li+li {
    margin-top: 22px;
}

.listing-single__car-overview-point-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 145px;
    width: 100%;
}

.listing-single__car-overview-point-left i {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--gorent-black);
}

.listing-single__car-overview-point-left p {
    font-size: 18px;
    color: var(--gorent-black);
}

.listing-single__car-overview-point-right {
    position: relative;
    display: block;
    margin-left: 100px;
}

.listing-single__car-overview-point-right p {
    font-size: 18px;
    color: var(--gorent-black);
}

.listing-single__description {
    position: relative;
    display: block;
    border-top: 1px solid var(--gorent-bdr-color);
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding-top: 45px;
    padding-bottom: 40px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.listing-single__description-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 25px;
}

.listing-single__description-text-1 {
    margin-bottom: 18px;
}

.listing-single__feature {
    position: relative;
    display: block;
}

.listing-single__feature-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 34px;
}

.listing-single__feature-points-box {
    position: relative;
    display: flex;
    gap: 50px;
}

.listing-single__feature-point-single {
    position: relative;
    display: block;
}

.listing-single__feature-point-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.listing-single__feature-point {
    position: relative;
    display: block;
}

.listing-single__feature-point li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.listing-single__feature-point li+li {
    margin-top: 16px;
}

.listing-single__feature-point li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: var(--gorent-base);
    color: var(--gorent-white);
    font-size: 8px;
    border-radius: 5px;
}

.listing-single__feature-point li .text {
    position: relative;
    display: block;
}

.listing-single__feature-point li .text p {
    color: var(--gorent-black);
    font-size: 18px;
    font-weight: 500;
}

.listing-single__review-and-comment {
    position: relative;
    display: block;
    margin-top: 50px;
    border-top: 1px solid var(--gorent-bdr-color);
    padding-top: 50px;
}

.listing-single__review-and-comment .review-one__title h3 {
    text-transform: uppercase;
}

.listing-single__review-and-comment .review-form-one__title {
    text-transform: uppercase;
}

.listing-single__review-and-comment .comments-area .comment-box {
    border-bottom: 1px solid var(--gorent-bdr-color);
}

.listing-single__sidebar {
    position: relative;
    display: block;
    margin-top: 7px;
    margin-left: 60px;
}

.listing-single__single-box+.listing-single__single-box {
    margin-top: 30px;
}

.listing-single__rent-car-daily-price {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border: 1px solid var(--gorent-bdr-color);
    padding: 35px 30px 26px;
    border-radius: var(--gorent-bdr-radius);
}

.listing-single__rent-car-daily-price p {
    font-size: 20px;
}

.listing-single__rent-car-daily-price h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 10px;
}

.listing-single__rent-car {
    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: 27px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.listing-single__rent-car-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 19px;
}

.listing-single__rent-car-content {
    position: relative;
    display: block;
}

.listing-single__rent-car-content-form {
    position: relative;
    display: block;
}

.listing-single__rent-car-date-box {
    position: relative;
    display: block;
}

.listing-single__rent-car-date-box+.listing-single__rent-car-date-box {
    margin-top: 15px;
}

.listing-single__rent-car-date-title {
    font-size: 18px;
    color: var(--gorent-black);
    font-weight: 500;
    margin-bottom: 10px;
}

.listing-single__rent-car-date-time-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.listing-single__rent-car-date-time-box input[type="text"],
.listing-single__rent-car-date-time-box input[type="email"] {
    height: 50px;
    width: 60%;
    background-color: transparent;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: 12px;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
}

.listing-single__rent-car-time-box {
    width: 36% !important;
}

.listing-single__rent-car-extra {
    position: relative;
    display: block;
    border-top: 1px solid var(--gorent-bdr-color);
    border-bottom: 1px solid var(--gorent-bdr-color);
    margin-top: 30px;
    padding-top: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.listing-single__rent-car-extra-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 15px;
}

.listing-single__rent-car-extra ul {
    position: relative;
    display: block;
}

.listing-single__rent-car-extra ul li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding-bottom: 8px;
}

.listing-single__rent-car-extra ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.listing-single__rent-car-extra ul li+li {
    margin-top: 10px;
}

.listing-single__rent-car-extra ul li .checked-box {
    position: relative;
    display: block;
}

.listing-single__rent-car-extra ul li .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--gorent-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--gorent-font);
}

.listing-single__rent-car-extra ul li .checked-box input[type="checkbox"] {
    display: none;
}

.listing-single__rent-car-extra ul li .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    vertical-align: middle;
    background-color: transparent;
    background: var(--gorent-extra);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.listing-single__rent-car-extra ul li .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--gorent-black);
    border-right: 2px solid var(--gorent-black);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.listing-single__rent-car-extra ul li.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--gorent-white);
}

.listing-single__rent-car-extra ul li .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.listing-single__rent-car-price-box {
    position: relative;
    display: block;
}

.listing-single__rent-car-price-box ul {
    position: relative;
    display: block;
}

.listing-single__rent-car-price-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.listing-single__rent-car-price-box ul li+li {
    margin-top: 8px;
}

.listing-single__rent-car-price-box ul li .title {
    position: relative;
    display: block;
}

.listing-single__rent-car-price-box ul li .title p {
    font-size: 18px;
    color: var(--gorent-black);
    font-weight: 400;
}

.listing-single__rent-car-price-box ul li:last-child .title p {
    font-weight: 700;
}

.listing-single__rent-car-price-box ul li .price {
    position: relative;
    display: block;
}

.listing-single__rent-car-price-box ul li .price p {
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 600;
}

.listing-single__btn-box-2 {
    position: relative;
    display: block;
    margin-top: 20px;
}

.listing-single__btn-box-2 .thm-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 30px 8px;
}

.listing-single__contact-info {
    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: 30px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.listing-single__contact-phone {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-extra-rgb), .50);
    padding: 25px 25px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.listing-single__contact-phone-number {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--gorent-black);
    font-weight: 600;
}

.listing-single__contact-phone-number:hover {
    color: var(--gorent-base);
}

.listing-single__contact-phone-number span {
    position: relative;
    display: inline-block;
    font-size: 25px;
    color: var(--gorent-base);
    padding-right: 15px;
}

.listing-single__contact-phone-text {
    color: #636A80;
    font-size: 14px;
    margin-top: 13px;
}

.listing-single__contact-btn-box {
    position: relative;
    display: block;
}

.listing-single__contact-btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border-radius: 10px;
    padding: 13px 0 13px;
}

.listing-single__contact-btn-box a+a {
    margin-top: 15px;
}

.listing-single__contact-btn-box a i {
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 400;
    padding-right: 10px;
}

.listing-single__contact-btn-box a:nth-child(2) {
    background-color: var(--gorent-black);
}

.listing-single__contact-btn-box a:nth-child(3) {
    background-color: rgba(var(--gorent-extra-rgb), .50);
    color: var(--gorent-black);
}

.listing-single__contact-btn-box a:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-black);
}

.listing-single__seller-info {
    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: 30px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.listing-single__seller-info-details {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 24px;
}

.listing-single__seller-info-img {
    position: relative;
    display: block;
    width: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.listing-single__seller-info-img img {
    width: 100%;
    border-radius: 50%;
}

.listing-single__seller-info-content {
    position: relative;
    display: block;
}

.listing-single__seller-info-content p {
    color: #767E94;
}

.listing-single__seller-info-content h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    font-family: var(--gorent-font);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-single__seller-info-content h5 span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    background-color: #27C200;
    border-radius: 50%;
    font-size: 6px;
    color: var(--gorent-white);
}

.listing-single__seller-contact-info {
    position: relative;
    display: block;
}

.listing-single__seller-contact-info-list {
    position: relative;
    display: block;
}

.listing-single__seller-contact-info-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.listing-single__seller-contact-info-list li+li {
    margin-top: 11px;
}

.listing-single__seller-contact-info-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.listing-single__seller-contact-info-list li .icon i {
    color: var(--gorent-base);
    font-size: 17px;
}

.listing-single__seller-contact-info-list li .text {
    position: relative;
    display: block;
}

.listing-single__seller-contact-info-list li .text p {
    color: #636A80;
}

.listing-single__seller-contact-info-list li .text p a {
    color: #636A80;
}

.listing-single__seller-contact-info-list li .text p a:hover {
    color: var(--gorent-base);
}

.listing-single__seller-profile {
    position: relative;
    display: block;
    margin-top: 20px;
}

.listing-single__seller-profile .thm-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 30px 8px;
}












/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/page-header.css --- */
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--gorent-black);
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__shape-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    height: 87px;
    z-index: -1;
    animation: slide 50s linear infinite;
    -webkit-animation: slide 50s linear infinite;
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 158px 0 167px;
    z-index: 15;
}

.page-header__inner h3 {
    font-size: 60px;
    color: var(--gorent-white);
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: var(--gorent-white);
    text-transform: uppercase;
    font-family: var(--gorent-font-two);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    color: var(--gorent-white);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--gorent-base);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 12px;
    color: var(--gorent-base);
}

/* --- module-css/popular-car.css --- */
/*--------------------------------------------------------------
# Popular Car One
--------------------------------------------------------------*/
.popular-car-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    overflow: hidden;
    background-color: var(--gorent-black);
    z-index: 1;
}

.popular-car-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .01;
    z-index: -1;
}

.popular-car-one .section-title__title {
    color: var(--gorent-white);
}

.popular-car-one__carousel {
    position: relative;
    display: block;
}

.popular-car-one__single {
    position: relative;
    display: block;
    z-index: 1;
}

.popular-car-one__single-inner {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-white-rgb), .05);
    text-align: center;
    z-index: 1;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='234' height='180' viewBox='0 0 234 180'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='234' height='180'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='234' height='180' viewBox='0 0 234 180'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='234' height='180'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    border-radius: 20px;
}

.popular-car-one__icon {
    position: absolute;
    top: 12px;
    right: 10px;
}

.popular-car-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--gorent-base);
}

.popular-car-one__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.popular-car-one__title a {
    color: var(--gorent-white);
}

.popular-car-one__title a:hover {
    color: var(--gorent-base);
}

.popular-car-one__count {
    position: absolute;
    bottom: 20px;
    left: 5px;
    font-size: 18px;
    color: var(--gorent-white);
    font-weight: 400;
}


.popular-car-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.popular-car-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.popular-car-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}


/*--------------------------------------------------------------
# Popular Car Two
--------------------------------------------------------------*/
.popular-car-two {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.popular-car-two__carousel {
    position: relative;
    display: block;
}

.popular-car-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.popular-car-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.popular-car-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.popular-car-two__single {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.popular-car-two__single:hover {
    transform: translateY(-10px);
}

.popular-car-two__icon {
    position: relative;
    height: 110px;
    width: 110px;
    margin: 0 auto -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    z-index: 2;
}

.popular-car-two__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.popular-car-two__single:hover .popular-car-two__icon::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.popular-car-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 80px;
    color: var(--gorent-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.popular-car-two__single:hover .popular-car-two__icon span {
    transform: scale(0.9);
    color: var(--gorent-base);
}

.popular-car-two__single-inner {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
    text-align: center;
    overflow: hidden;
    padding: 99px 0 44px;
    z-index: 1;
}

.popular-car-two__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 12px;
}

.popular-car-two__title a {
    color: var(--gorent-black);
}

.popular-car-two__title a:hover {
    color: var(--gorent-base);
}

.popular-car-two__count {
    font-size: 18px;
    font-weight: 400;
}







/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/pricing.css --- */
/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
    position: relative;
    display: block;
    padding: 100px 0 90px;
    z-index: 1;
}

.pricing-one__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 160px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.pricing-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;
}

.pricing-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 36px 40px 37px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.pricing-one__single:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--gorent-base);
}

.pricing-one__title-box {
    position: relative;
    display: block;
}

.pricing-one__title {
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    margin-bottom: 18px;
}

.pricing-one__text {
    font-size: 14px;
    line-height: 20px;
    color: var(--gorent-black);
}

.pricing-one__price-and-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 18px;
    margin-bottom: 29px;
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding-bottom: 16px;
}

.pricing-one__price-box {
    position: relative;
    display: block;
}

.pricing-one__price {
    font-size: 45px;
    font-weight: 600;
    line-height: 45px;
}

.pricing-one__price span {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: var(--gorent-gray);
    font-family: var(--gorent-font);
}

.pricing-one__icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.pricing-one__icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.pricing-one__single:hover .pricing-one__icon-box::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.pricing-one__icon-box span {
    font-size: 30px;
    color: var(--gorent-black);
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.pricing-one__single:hover .pricing-one__icon-box span {
    transform: scale(0.9);
    color: var(--gorent-white);
}

.list-unstyled.pricing-one__points {
    position: relative;
    display: block;
}

.list-unstyled.pricing-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.list-unstyled.pricing-one__points li+li {
    margin-top: 16px;
}

.list-unstyled.pricing-one__points li .price {
    position: relative;
    display: flex;
    align-items: center;
}

.list-unstyled.pricing-one__points li .price p {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--gorent-black);
    font-weight: 500;
}

.list-unstyled.pricing-one__points li .text {
    position: relative;
    display: block;
}

.pricing-one__btn-box {
    position: relative;
    display: block;
    margin-top: 38px;
}

/*--------------------------------------------------------------
# Pricing Two
--------------------------------------------------------------*/
.pricing-two {
    position: relative;
    display: block;
    padding: 100px 0 90px;
    z-index: 1;
}

.pricing-two__list {
    position: relative;
    display: block;
}

.pricing-two__list>li {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--gorent-bdr-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-two__list>li:last-child {
    border-bottom: 0px;
    padding-bottom: 0;
}

.pricing-two__single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1;
}

.pricing-two__left-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.pricing-two__img {
    position: relative;
    display: block;
    width: 280px;
    overflow: hidden;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: var(--gorent-bdr-radius);
}

.pricing-two__img img {
    width: 100%;
}

.pricing-two__img-content {
    position: relative;
    display: block;
    flex: 1;
}

.pricing-two__title {
    font-size: 40px;
    color: var(--gorent-base);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 40px;
    font-family: var(--gorent-font);
    margin-bottom: 15px;
}

.pricing-two__price-box {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    color: var(--gorent-black);
}

.pricing-two__price-box span {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--gorent-base);
}

.pricing-two__right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px;
}

.pricing-two__points {
    position: relative;
    display: block;
}

.pricing-two__points>li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pricing-two__points>li+li {
    margin-top: 10px;
}

.pricing-two__points>li .icon {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--gorent-base);
}

.pricing-two__points>li .text {
    position: relative;
    display: block;
    flex: 1;
}

.pricing-two__points>li .text p {
    color: var(--gorent-black);
    font-weight: 500;
}

.pricing-two__btn-box {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Pricing Page One
--------------------------------------------------------------*/
.pricing-page-one {
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Pricing Page Two
--------------------------------------------------------------*/
.pricing-page-two {
    padding: 0px 0 90px;
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/process.css --- */
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/* --- module-css/search-car.css --- */
/*--------------------------------------------------------------
# Search Car
--------------------------------------------------------------*/
.search-car {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
    z-index: 1;
}

.search-car__shape-1 {
    position: absolute;
    top: 150px;
    left: -300px;
    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;
}

.search-car__shape-2 {
    position: absolute;
    top: -255px;
    right: -300px;
    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;
}

.search-car__inner {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-base-rgb), .10);
    padding: 50px 60px 40px;
    border-radius: var(--gorent-bdr-radius);
    margin-right: 50px;
}

.search-car__tab-box {
    position: relative;
    display: block;
}

.search-car__tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.search-car__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.search-car__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 0;
}

.search-car__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--gorent-white);
    background-color: var(--gorent-black);
    padding: 17px 30px 17px;
    text-transform: capitalize;
    cursor: pointer;
    border-radius: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    overflow: hidden;
    z-index: 1;
}

.search-car__tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--gorent-black);
}

.search-car__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--gorent-base);
    border-radius: 10px;
    background-position: top bottom;
    opacity: 0;
    transform: translateY(10px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: -1;
}

.search-car__tab-box .tab-buttons .tab-btn.active-btn span:before {
    opacity: 1;
    transform: translateY(0%);
}

.search-car__tab-box .tabs-content {
    position: relative;
    display: block;
}

.search-car__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.search-car__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);

}

.search-car__tab-box .tabs-content__inner {
    position: relative;
    display: block;
    padding-top: 35px;
}


.search-car__form {
    position: relative;
    display: block;
}

.search-car__form .row {
    --bs-gutter-x: 20px;
}

.search-car__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.search-car__input-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-black);
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.search-car__input-title span {
    font-size: 18px;
}

.search-car__input-box input[type="text"],
.search-car__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
}

.search-car__input-box .select-box {
    width: 100%;
}

.search-car__input-box .nice-select {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    font-weight: 400;
    border-radius: 25px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    float: none;
}

.search-car__input-box .nice-select:after {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--gorent-gray);
    border-right: 2px solid var(--gorent-gray);
    margin-top: 0px;
    z-index: 10;
}

.search-car__input-box .nice-select .option {
    color: var(--gorent-white);
}

.search-car__input-box .nice-select .option.selected {
    font-weight: 500;
}

.search-car__input-box .nice-select .list {
    background-color: var(--gorent-base);
    border-radius: var(--gorent-bdr-radius);
}

.search-car__input-box .nice-select .option:hover,
.search-car__input-box .nice-select .option.focus,
.search-car__input-box .nice-select .option.selected.focus {
    color: var(--gorent-white);
}

.search-car__btn-box {
    position: relative;
    display: block;
}

.search-car__btn-box .thm-btn {
    border: none;
}





/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/services.css --- */
/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 0;
    z-index: 1;
}

.services-one__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 50px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-one__shape-2 {
    position: absolute;
    width: 481px;
    height: 448px;
    right: -125px;
    bottom: -100px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 30px 25px 37px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-one__single-shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transform: translateX(-50%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-1 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-2 {
    position: absolute;
    top: -97px;
    right: -60px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-2 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-one__single-shape-3 {
    position: absolute;
    bottom: -57px;
    right: -123px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover .services-one__single-shape-3 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}


.services-one__single::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--gorent-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-one__single:hover::after {
    background-color: var(--gorent-black);
}

.services-one__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gorent-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-one__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-one__icon {
    position: relative;
    display: inline-block;
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    transform: scale(0.9);
    color: var(--gorent-black);
}

.services-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 49px;
    margin-bottom: 6px;
}

.services-one__title a {
    color: var(--gorent-base);
}

.services-one__single:hover .services-one__title a {
    color: var(--gorent-black);
}

.services-one__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(var(--gorent-white-rgb), .70);
}

.services-one__single:hover .services-one__text {
    color: var(--gorent-black);
}

.services-one__count {
    position: absolute;
    top: 45%;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.services-one__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__count::before {
    color: var(--gorent-base);
}

.services-one__count:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: var(--gorent-black);
    opacity: 0;
    transform: translateX(55px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: -1;
}

.services-one__single:hover .services-one__count:after {
    opacity: 1;
    transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1;
}

.services-two__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 50px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-two__shape-2 {
    position: absolute;
    width: 481px;
    height: 448px;
    right: -125px;
    bottom: -100px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.services-two__single {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 30px 25px 37px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

.services-two__single-shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transform: translateX(-50%);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-1 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-2 {
    position: absolute;
    top: -104px;
    right: -60px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-2 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}

.services-two__single-shape-3 {
    position: absolute;
    bottom: -57px;
    right: -123px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover .services-two__single-shape-3 {
    border-bottom: 178px solid rgba(var(--gorent-black-rgb), 0.02);
}


.services-two__single::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--gorent-base);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    z-index: -1;
}

.services-two__single:hover::after {
    background-color: var(--gorent-black);
}

.services-two__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gorent-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-two__single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--gorent-white-rgb), .08);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: -30px;
    margin-left: -25px;
    z-index: 1;
}

.services-two__icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid rgba(var(--gorent-white-rgb), .15);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: -1;
}

.services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
    transform: scale(0.9);
    color: var(--gorent-black);
}

.services-two__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 49px;
    margin-bottom: 6px;
}

.services-two__title a {
    color: var(--gorent-base);
}

.services-two__single:hover .services-two__title a {
    color: var(--gorent-black);
}

.services-two__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(var(--gorent-white-rgb), .70);
}

.services-two__single:hover .services-two__text {
    color: var(--gorent-black);
}

.services-two__count {
    position: absolute;
    top: 45%;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.services-two__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__single:hover .services-two__count::before {
    color: var(--gorent-base);
}

.services-two__count:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    background-color: var(--gorent-black);
    opacity: 0;
    transform: translateX(55px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: -1;
}

.services-two__single:hover .services-two__count:after {
    opacity: 1;
    transform: translateX(0px);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    padding: 120px 0 19px;
    counter-reset: count;
    z-index: 1;
}

.services-three .section-title {
    margin-bottom: 83px;
}

.services-three__single {
    position: relative;
    display: block;
    text-align: center;
    padding: 90px 25px 45px;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 101px;
    z-index: 1;
}

.services-three__single:hover {
    transform: translateY(-10px);
}

.services-three__icon {
    position: relative;
    height: 90px;
    width: 90px;
    margin: -135px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    z-index: 2;
}

.services-three__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--gorent-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    transform: scale(0.9);
    color: var(--gorent-base);
}

.services-three__content {
    position: relative;
    display: block;
    margin-top: 23px;
    margin-bottom: 24px;
}

.services-three__title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-three__title a {
    color: var(--gorent-black);
}

.services-three__title a:hover {
    color: var(--gorent-base);
}

.services-three__count {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto -71px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50px;
    z-index: 1;
}

.services-three__count::before {
    position: relative;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    font-family: var(--gorent-font-two);
    counter-increment: count;
    content: "0"counter(count);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__count::before {
    color: var(--gorent-base);
}

.services-three__count:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--gorent-black);
    transform: scaleY(0.7) rotateY(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.services-three__single:hover .services-three__count:after {
    transform: scaleY(1.0) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

/*--------------------------------------------------------------
# Services Four
--------------------------------------------------------------*/
.services-four {
    padding: 90px 0 45px;
}




/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/shop.css --- */
/***
=============================================
Product
=============================================
***/
.product {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.product__sidebar {
    position: relative;
    display: block;
}

.product__sidebar-single+.product__sidebar-single {
    margin-top: 30px;
}

.product__sidebar-title {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    margin-bottom: 22px;
    padding-left: 27px;
}

.product__sidebar-title::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background-color: var(--gorent-base);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 30px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.shop-search form {
    position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: var(--gorent-white);
    padding-left: 30px;
    padding-right: 60px;
    font-size: 16px;
    color: var(--gorent-gray);
    font-family: var(--gorent-font);
    border: none;
    border-radius: 10px;
    outline: none;
    font-weight: 400;
}

.shop-search form ::placeholder {
    color: inherit;
    opacity: 1;
}

.shop-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: 4px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.product__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: var(--gorent-bdr-radius);
}

.product__price-ranger.price-ranger {
    margin-top: 7px;
    margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
    background: var(--gorent-white);
    border: none;
    height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--gorent-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
    background: var(--gorent-base);
}

.product__price-ranger .price-ranger #slider-range {
    margin-left: 3px;
    margin-right: 0;
    margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
    display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    background: var(--gorent-black);
    float: right;
    text-align: center;
    border: none;
    color: var(--gorent-white);
    font-size: 12px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    color: var(--gorent-gray);
    font-size: 14px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--gorent-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
}


.shop-category {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 29px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
}

.shop-category ul {
    position: relative;
    display: block;
}

.shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--gorent-gray);
    margin-bottom: 15px;
}

.shop-category ul li:last-child {
    margin-bottom: 0;
}

.shop-category ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--gorent-gray);
    font-weight: 400;
    border-radius: 10px;
    background-color: var(--gorent-white);
    padding: 13px 15px 13px;
    transition: all 0.3s ease;
    z-index: 1;
}

.shop-category ul li:hover a {
    color: var(--gorent-base);
}

.shop-category ul li a:after {
    position: absolute;
    right: 5px;
    top: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    background-color: var(--gorent-base);
    font-family: 'icomoon' !important;
    content: "\e940";
    opacity: 1;
    font-size: 12px;
    color: var(--gorent-white);
    line-height: 30px;
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.shop-product-tags {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 25px 30px 30px;
    border-radius: var(--gorent-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.shop-product__tags-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-product__tags-list a {
    font-size: 12px;
    color: var(--gorent-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--gorent-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
    color: var(--gorent-white);
    background: var(--gorent-base);
}


.sidebar-rating-box {
    position: relative;
    display: block;
}

.sidebar-rating-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.sidebar-rating-box ul li {
    position: relative;
    display: block;
}

.sidebar-rating-box ul li+li {
    margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sidebar-rating-box ul li label {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #ffc009;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
    color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--gorent-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--gorent-base);
    border-radius: 0%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
    border-color: var(--gorent-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
}

.shop-product-recent-products {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 29px 30px 27px;
    border-radius: var(--gorent-bdr-radius);
}

.shop-product-recent-products ul {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddbdb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--gorent-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
}

.shop-product-recent-products ul li:hover .img::before {
    opacity: 1;
}

.shop-product-recent-products ul li .img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
    transform: scale(1);
}

.shop-product-recent-products ul li .img a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gorent-white);
    font-size: 16px;
    line-height: 0;
    transform: translateY(10px) scale(0);
    z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
    color: var(--gorent-base);
    transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
    position: relative;
    display: block;
}

.shop-product-recent-products ul li .content .title h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
    color: var(--gorent-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
    color: var(--gorent-base);
}

.shop-product-recent-products ul li .content .price {
    position: relative;
    display: block;
    padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
    color: var(--gorent-base);
}

.shop-product-recent-products ul li .content .review {
    position: relative;
    display: flex;
    align-items: center;
}

.shop-product-recent-products ul li .content .review i {
    color: #ffc009;
    font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
    color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
    margin-left: 5px;
}

.product__items {
    position: relative;
    display: block;
}

.product__showing-result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-right: 130px;
}

.product__showing-text-box {
    position: relative;
    display: block;
}

.product__showing-text {
    font-size: 16px;
    font-weight: 400;
}

.product__showing-sort {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
}

.product__showing-sort .select-box .nice-select {
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    color: var(--gorent-gray);
    font-size: 16px;
    font-weight: 400;
    height: 70px;
    line-height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.product__all {
    position: relative;
    display: block;
}

.product__all-tab {
    position: relative;
    display: block;
}

.product__all-tab-button {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: 5;
}

.product__all-tab-button ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 15px 15px 15px;
    border-radius: var(--gorent-bdr-radius);
}

.product__all-tab-button ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 3px;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
    background-color: var(--gorent-base);
}

.product__all-tab-button ul li+li {
    margin-left: 10px;
}

.product__all-tab-button-icon {
    position: relative;
    display: block;
    color: var(--gorent-base);
    font-size: 18px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
    transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
    color: var(--gorent-white);
}

.product__all-tab .tabs-content-box {
    position: relative;
    display: block;
}

.product__all-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(5px);
    transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
    opacity: 1.0;
    transform: translateY(0px);
    transform-origin: bottom top;
}

.product__all-tab-single {
    position: relative;
    display: block;
}

.single-product-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    padding: 0 0 30px;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
    z-index: 1;
}

.single-product-style1:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.single-product-style1__img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-product-style1__img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-style1__overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.single-product-style1__overlay li {
    position: relative;
    display: block;
}

.single-product-style1__overlay li+li {
    margin-top: 8px;
}

.single-product-style1__overlay li p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--gorent-base);
    line-height: 35px;
    font-weight: 600;
}

.single-product-style1__info {
    position: absolute;
    left: 0;
    bottom: 20px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s linear 0s;
    z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
    opacity: 1;
    transform: translateY(0);
}

.single-product-style1__info li {
    position: relative;
    display: block;
}

.single-product-style1__info li+li {
    margin-left: 8px;
}

.single-product-style1__info li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--gorent-base);
    font-size: 15px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-base);
}

.single-product-style1__content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 23px 15px 0px;
}

.single-product-style1__content-left {
    position: relative;
    display: block;
}

.single-product-style1__content-left h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 12px;
}

.single-product-style1__content-left h4 a {
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
    color: var(--gorent-base);
}

.single-product-style1__content-left p {
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-gray);
    margin-top: 4px;
}

.single-product-style1__content-left p del {
    color: var(--gorent-base);
    margin-right: 5px;
}

.single-product-style1__content-right {
    position: relative;
    display: block;
}

.single-product-style1__review {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 3.5px 5px 3.5px;
    top: 8px;
}

.single-product-style1__review i {
    color: var(--gorent-base);
    font-size: 12px;
    margin-right: 5px;
}

.single-product-style1__review p {
    color: var(--gorent-black);
    font-weight: 500;
}


.single-product-style2 {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
    z-index: 1;
}

.single-product-style2:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
    --bs-gutter-x: 0px;
    align-items: center;
}

.single-product-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    border-right: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.single-product-style2__img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-product-style2__img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-style2__content {
    position: relative;
    display: block;
    padding: 0px 15px 0px;
}

.single-product-style2__review {
    position: relative;
    display: flex;
    align-items: center;
}

.single-product-style2__review i {
    color: var(--gorent-base);
    font-size: 16px;
}

.single-product-style2__review i+i {
    margin-left: 5px;
}

.single-product-style2__text {
    position: relative;
    display: block;
    padding-top: 17px;
}

.single-product-style2__text h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 1px;
}

.single-product-style2__text h4 a {
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
    color: var(--gorent-base);
}

.single-product-style2__text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--gorent-gray);
    margin-top: 4px;
}

.single-product-style2__text p del {
    color: var(--gorent-base);
    margin-right: 5px;
}

.single-product-style2__info {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-left: 0;
}

.single-product-style2__info li {
    position: relative;
    display: block;
}

.single-product-style2__info li+li {
    margin-left: 8px;
}

.single-product-style2__info li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--gorent-base);
    font-size: 15px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-base);
}



/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 30px;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    color: rgba(var(--gorent-gray-rgb), .50);
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    border: 1px solid rgba(var(--gorent-gray-rgb), .50);
    text-align: center;
    transition: all 500ms ease;
    font-family: var(--gorent-font);
    z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: var(--gorent-white);
    background: var(--gorent-base);
    border-color: var(--gorent-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    border-radius: 50%;
    color: rgba(var(--gorent-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: var(--gorent-white);
}

.styled-pagination li a span:before {
    position: relative;
    top: 0px;
    color: rgba(var(--gorent-gray-rgb), .50);
    font-size: 14px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
    color: var(--gorent-white);
}




/***
=============================================
Product Details
=============================================
***/
.product-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
}


.product-details__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.product-details__left-inner {
    position: relative;
    display: block;
}

.product-details__thumb-box {
    position: relative;
    display: block;
    max-width: 400px;
    margin-top: 20px;
}

#shop-details-one__thumb {
    z-index: 10;
}

.product-details__thumb-img {
    position: relative;
    display: block;
    width: 125px !important;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.product-details__thumb-img img {
    width: 100%;
    border-radius: 10px;
}

.product-details__thumb-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gorent-base);
    opacity: 0;
    transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
    opacity: 1;
}

.product-details__content-box {
    position: relative;
    display: block;
}

.product-details__img {
    position: relative;
    display: block;
}

.product-details__img img {
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-radius: 15px;
}


.product-details__nav {
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--gorent-black);
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-base);
}

.product-details__nav .swiper-button-next {
    margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
    display: none;
}


.product-details__right {
    position: relative;
    display: block;
    margin-top: -9px;
}

.product-details__top {
    position: relative;
    display: block;
}

.product-details__title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--gorent-base);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 0;
}

.product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 26px;
    padding-bottom: 37px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.product-details__reveiw i {
    font-size: 16px;
    color: var(--gorent-base);
}

.product-details__reveiw i+i {
    margin-left: 4px;
}

.product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--gorent-gray);
    margin-left: 18px;
}

.product-details__content {
    position: relative;
    display: block;
}

.product-details__content-text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 31px;
}

.product-details__content-text2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
}

.product-details__select {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.product-details__select-size {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__select-size h3 {
    font-size: 20px;
    line-height: 30px;
    margin-right: 15px;
}

.product-details__select-size ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.product-details__select-size ul li {
    position: relative;
    display: block;
    width: 45px;
    height: 35px;
}

.product-details__select-size ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-details__select-size ul li label {
    position: relative;
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gorent-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
    color: var(--gorent-white);
    font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 35px;
    overflow: hidden;
    border: 1px solid var(--gorent-gray);
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.product-details__select-size ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0.3);
    opacity: 0;
    background-color: var(--gorent-base);
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
    border-color: var(--gorent-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
    opacity: 1;
}


.product-details__inner {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 25px;
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
}

.product-details__quantity-title {
    margin: 0;
    color: var(--gorent-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-right: 20px;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.product-details__quantity .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--gorent-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--gorent-gray);
}

.product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--gorent-gray);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border: none;
    border-left: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.product-details__buttons-1 {
    position: relative;
    display: block;
}

.product-details__buttons-2 {
    position: relative;
    display: block;
}

.product-details__social {
    position: relative;
    display: block;
}

.product-details__social .title {
    position: relative;
    display: block;
}

.product-details__social .title h3 {
    color: var(--gorent-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.product-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-details__social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gorent-white);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--gorent-black);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.product-details__social-link a+a {
    margin-left: 10px;
}

.product-details__social-link a:hover {
    color: var(--gorent-white);
    background-color: var(--gorent-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
}

.product-details__description {
    position: relative;
    display: block;
}

.product-details__main-tab-box {
    position: relative;
    display: block;
}

.product-details__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 18px;
    line-height: 18px;
    color: var(--gorent-black);
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding: 16px 25px 16px;
    text-transform: capitalize;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--gorent-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background-color: var(--gorent-base);
    transition: all 0.3s ease;
    z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
    height: 100%;
}

.product-details__main-tab-box .tabs-content {
    position: relative;
    display: block;
}

.product-details__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.product-details__tab-content-inner {
    position: relative;
    display: block;
    padding: 40px 40px 50px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.product-details__description-content {
    position: relative;
    display: block;
}

.product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-description__list ul {
    position: relative;
    display: block;
}

.product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px;
}

.product-description__list ul li:last-child {
    margin-bottom: 0px;
}

.product-description__list ul li p {
    color: var(--gorent-black);
    margin: 0;
    font-weight: 500;
}

.product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--gorent-base);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px;
    font-weight: 700;
}

.product-details__additional-information-content {
    position: relative;
    display: block;
}

.product-details__additional-information-text-1 {
    padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
    position: relative;
    display: block;
}

.comments-area {
    position: relative;
    display: block;
}

.review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.review-one__title h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}


.comments-area .comment-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.comments-area .comment {
    position: relative;
    display: flex;
    align-items: center;
}

.comments-area .comment-box .author-thumb {
    position: relative;
    display: block;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
}

.comments-area .comment-box .author-thumb figure {
    margin: 0;
}

.review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
}

.review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-one__content-top .info {
    position: relative;
    display: block;
}

.review-one__content-top .info h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.review-one__content-top .info h2 span {
    color: var(--gorent-base);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    font-family: var(--gorent-font);
}

.review-one__content-top .reply-btn {
    position: relative;
    display: block;
}

.review-one__content-top .reply-btn i:before {
    color: var(--gorent-base);
    font-size: 15px;
}

.review-one__content-bottom {
    position: relative;
    display: block;
}

.review-one__content-bottom p {
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
    position: relative;
    display: block;
    padding: 16px 0px 0px;
}

.review-form-one__inner {
    position: relative;
    display: block;
}

.review-form-one__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 17px;
    margin-bottom: 37px;
}

.review-form-one__rate-text {
    font-size: 18px;
    font-weight: 400;
}

.review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 17px;
}

.review-form-one__rate i {
    font-size: 16px;
    color: var(--gorent-base);
}

.review-form-one__rate i+i {
    margin-left: 5px;
}

.review-form-one__form {
    position: relative;
    display: block;
}

.review-form-one__form .row {
    --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
    font-size: 14px;
    color: var(--gorent-gray);
    height: 160px;
    width: 100%;
    background-color: var(--gorent-white);
    padding: 20px 30px 30px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    outline: none;
    margin-bottom: 0px;
    font-weight: 500;
    border-radius: var(--gorent-bdr-radius);
}

.review-form-one__input-box.text-message-box {
    height: 160px;
}

.review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--gorent-gray);
    display: block;
    font-weight: 500;
    border-radius: var(--gorent-bdr-radius);
}

.review-form-one__form .thm-btn {
    border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
}

.related-products__title {
    position: relative;
    display: block;
    padding-bottom: 52px;
}

.related-products__title h3 {
    font-size: 40px;
    line-height: 1.0em;
    margin-bottom: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.related-products__title p {
    margin: 0;
}

.single-product-style1.instyle--2 {
    margin-bottom: 0px;
}


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
    position: relative;
    display: block;
    background: var(--gorent-white);
    padding: 112px 0px 112px;
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .cart-table {
        min-width: 1170px;
    }
}

.cart-table {
    margin-bottom: 0px;
}

.cart-table thead th {
    color: var(--gorent-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
    border: none;
    padding-bottom: 22px;
    font-family: var(--gorent-font-two);
}

.cart-table thead th:last-child {
    text-align: right;
}

.cart-table tbody tr {
    vertical-align: middle;
}

.cart-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.cart-table tbody td {
    font-size: 18px;
    color: var(--gorent-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

.cart-table tbody td:last-child {
    text-align: right;
}

.cart-table .product-box {
    display: flex;
    align-items: center;
}

.cart-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 35px;
}

.cart-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-radius: 10px;
}

.cart-table h3 {
    color: var(--gorent-black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.cart-table h3 a {
    color: var(--gorent-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.cart-table h3 a:hover {
    color: var(--gorent-base);
}

.cart-table .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
}

.cart-table .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 50px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--gorent-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    color: var(--gorent-gray);
    font-weight: 700;
}

.cart-table .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-left: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
    position: relative;
    display: block;
}

.cart-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--gorent-black);
    font-size: 16px;
}

.cart-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
}

.cart-page__sidebar {
    position: relative;
    display: block;
    padding: 28px 20px 30px;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
}

.cart-page__shipping {
    position: relative;
    display: block;
}

.cart-page__shipping-title {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 22px;
    margin-bottom: 20px;
}

.cart-page__shipping-form {
    position: relative;
    display: block;
}

.cart-page__shipping-form .row {
    --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    color: var(--gorent-gray);
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
    position: absolute;
    right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
    width: 100%;
    height: 50px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--gorent-gray);
    font-family: var(--gorent-font);
    border-radius: 8px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-page__btn-box {
    position: relative;
    display: block;
}

.cart-page__btn-box .thm-btn {
    width: 100%;
    padding: 8px 25px 8px;
    border: none;
    justify-content: center;
}

.cart-page__coupon-code {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 23px;
    padding-bottom: 30px;
}

.cart-page__coupon-code-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 20px;
}

.cart-page__coupon-code-text {
    margin-bottom: 16px;
}

.cart-page__coupon-code-form {
    position: relative;
    display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
    width: 100%;
    height: 50px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--gorent-gray);
    font-family: var(--gorent-font);
    border-radius: 8px;
    border: none;
    outline: none;
    font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
    width: 100%;
    padding: 8px 30px 8px;
    border: none;
    justify-content: center;
    margin-top: 20px;
}

.cart-total {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.cart-total li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--gorent-gray);
    font-size: 18px;
    font-weight: 500;
}

.cart-total li+li {
    margin-top: 15px;
}

.cart-total li span:first-child {
    display: block;
    color: var(--gorent-black);
    font-size: 18px;
    margin-right: 60px;
    font-weight: 700;
    width: 140px;
    text-align: right;
}

.cart-total-amount {
    color: var(--gorent-base);
}

.cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cart-page__buttons-1 {
    position: relative;
    display: block;
}

.cart-page__buttons-1 .thm-btn {
    padding: 8px 30px 8px;
}

.cart-page__buttons-2 {
    position: relative;
    display: block;
}

.cart-page__buttons-2 .thm-btn {
    padding: 8px 30px 8px;
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.checkout-page .billing_details {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding: 53px 50px 60px;
}

.billing_title {
    position: relative;
    display: block;
    margin-bottom: 45px;
}

.billing_title p {
    font-size: 16px;
    margin: 0;
}

.billing_title a {
    color: var(--gorent-base);
}

.billing_title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    font-weight: 600;
    margin-top: 16px;
    text-transform: uppercase;
}

.billing_details_form {
    position: relative;
    display: block;
}

.billing_details_form .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
    border: none;
}

.billing_details_form .btn-light:hover {
    border: none;
}

.billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
    height: 60px;
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    display: block;
    font-weight: 400;
}

.billing_input_box textarea {
    display: block;
    color: var(--gorent-gray);
    font-size: 16px;
    font-weight: 400;
    height: 140px;
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    border-radius: 10px;
    outline: none;
    resize: none;
}

.billing_input_box textarea:focus {
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: 17px;
}

.billing_details .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--gorent-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--gorent-font);
}

.billing_details .checked-box input[type="checkbox"] {
    display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--gorent-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.billing_details .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--gorent-white);
    border-right: 2px solid var(--gorent-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--gorent-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.billing_details_form .select-box .nice-select {
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: var(--gorent-white);
    border-radius: 10px;
    color: var(--gorent-gray);
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
    position: absolute;
    right: 30px;
}

.billing_details_form-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.billing_details_form-btn-1 {
    position: relative;
    display: block;
}

.billing_details_form-btn-1 .thm-btn {
    border: none;
}

.billing_details_form-btn-2 {
    position: relative;
    display: block;
}

.billing_details_form-btn-2 .thm-btn {
    border: none;
}


.sidebar-order-summary {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding: 37px 30px 45px;
    z-index: 1;
}

.sidebar-order-summary .title-box {
    position: relative;
    display: block;
    padding-bottom: 3px;
    margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gorent-base);
    content: "";
}

.sidebar-order-summary .title-box::after {
    position: absolute;
    left: 37px;
    bottom: 0;
    width: 3px;
    height: 2px;
    background: var(--gorent-white);
    content: "";
}

.sidebar-order-summary .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
}


.sidebar-order-summary__list {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.sidebar-order-summary__list>li>.left-text {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.left-text p {
    font-size: 18px;
    margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text p {
    font-size: 18px;
    margin: 0px;
}


.sidebar-order-summary__list>li>.right-text>ul {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
    position: relative;
    display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
    margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
    position: relative;
    display: block;
    padding-right: 24px;
    font-size: 18px;
    font-weight: 400;
    text-align: right;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
    position: absolute;
    top: 6px;
    right: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--gorent-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--gorent-base);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
    border-color: var(--gorent-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
}


.sidebar-order-summary__Payment {
    position: relative;
    display: block;
    margin-top: 37px;
}

.checkout__payment {
    position: relative;
    margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
    margin-top: 23px;
}

.checkout__payment__title {
    display: flex;
    color: var(--gorent-black);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    align-items: center;
    cursor: pointer;
}

.checkout__payment__title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--gorent-white);
    border: 2px solid rgba(var(--gorent-black-rgb), .10);
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 10px;
    color: var(--gorent-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--gorent-base);
    border-color: var(--gorent-base);
    content: '\f00c';
}

.checkout__payment__content {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--gorent-gray);
    font-weight: 400;
    margin-top: 15px;
}

.sidebar-order-summary__bottom {
    position: relative;
    display: block;
}

.sidebar-order-summary__bottom .text1 {
    margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
    color: var(--gorent-base);
    text-decoration: underline;
}







.sidebar-order-summary__checked {
    position: relative;
    display: block;
    margin-top: 20px;
    ;
}

.sidebar-order-summary__checked label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--gorent-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--gorent-font);
}

.sidebar-order-summary__checked label a {
    color: var(--gorent-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
    display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--gorent-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
}

.sidebar-order-summary__checked label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--gorent-white);
    border-right: 2px solid var(--gorent-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
    border-color: var(--gorent-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}

.sidebar-order-summary__btn {
    position: relative;
    display: block;
    margin-top: 27px;
    line-height: 0px;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
    position: relative;
    display: block;
    background: var(--gorent-white);
    padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
    .wishlist-table {
        min-width: 1170px;
    }
}

.wishlist-table {
    margin-bottom: 0px;
}

.wishlist-table thead th {
    color: var(--gorent-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding-top: 22px;
    padding-bottom: 22px;
    font-family: var(--gorent-font-two);
    text-align: center;
}

.wishlist-table tbody tr {
    vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
}

.wishlist-table tbody td {
    font-size: 18px;
    color: var(--gorent-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.wishlist-table .product-box {
    display: flex;
    align-items: center;
}

.wishlist-table .cross-icon {
    position: relative;
    display: block;
}

.wishlist-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--gorent-black);
    font-size: 16px;
}

.wishlist-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-left: 35px;
    margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    border-radius: 10px;
}

.wishlist-table h3 {
    color: var(--gorent-black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.wishlist-table h3 a {
    color: var(--gorent-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
    color: var(--gorent-base);
}


.product-details__social.two {
    margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    padding: 112px 0px 120px;
    z-index: 1;
}

.sign-up-one .container {
    max-width: 620px;
}

.sign-up-one__form {
    position: relative;
    display: block;
}

.sign-up-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 700;
    text-transform: uppercase;
}

.sign-up-one__form form {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
    border-radius: var(--gorent-bdr-radius);
}

.sign-up-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
    position: relative;
    display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    width: 100%;
    height: 60px;
    color: var(--gorent-black);
    font-size: 16px;
    font-family: var(--gorent-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
    border-color: var(--gorent-base);
    background-color: var(--gorent-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--gorent-gray);
}

.sign-up-one__form form .thm-btn {
    width: 100%;
    justify-content: center;
    border: none;
}

.sign-up-one__form form .google-facebook {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gorent-gray);
    background-color: var(--gorent-white);
    color: var(--gorent-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--gorent-font);
    font-weight: 500;
    padding: 10px 15px 10px;
    border-radius: 5px;
    letter-spacing: -0.01em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
    border: 1px solid var(--gorent-base);
    background-color: var(--gorent-white);
}

.sign-up-one__form form .google-facebook a+a {
    margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
}

.sign-up-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 22px;
}

.sign-up-one__form form .create-account p {
    margin: 0;
}

.sign-up-one__form form .create-account p a {
    font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
    color: var(--gorent-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    padding: 112px 0px 120px;
    z-index: 1;
}

.login-one .container {
    max-width: 620px;
}

.login-one__form {
    position: relative;
    display: block;
}

.login-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 700;
    text-transform: uppercase;
}

.login-one__form form {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
    border-radius: var(--gorent-bdr-radius);
}

.login-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.login-one__form form .input-box {
    position: relative;
    display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: rgba(var(--gorent-bdr-color-rgb), .70);
    width: 100%;
    height: 60px;
    color: var(--gorent-black);
    font-size: 16px;
    font-family: var(--gorent-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
    border-color: var(--gorent-base);
    background-color: var(--gorent-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--gorent-gray);
}

.login-one__form form .thm-btn {
    width: 100%;
    justify-content: center;
    border: none;
}

.login-one__form form .remember-forget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}


.login-one__form form .checked-box1 {
    position: relative;
    display: block;
    min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
    display: none;
}

.login-one__form form .checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--gorent-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--gorent-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #e3e4ea;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--gorent-base);
    border-radius: 2px;
    margin: 3px auto 0px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
    border-color: var(--gorent-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}


.login-one__form form .forget {
    position: relative;
    display: block;
}

.login-one__form form .forget a {
    color: var(--gorent-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--gorent-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
    color: var(--gorent-base);
}

.login-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 25px;
}

.login-one__form form .create-account p {
    color: var(--gorent-black);
}

.login-one__form form .create-account p a {
    color: var(--gorent-base);
    font-weight: 500;
}



/***
=============================================
End
=============================================
***/

/* --- module-css/slider.css --- */
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    background-color: var(--gorent-black);
    z-index: 10;
}

.main-slider .item {
    position: relative;
    padding-top: 250px;
    padding-bottom: 250px;
    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: 1;
    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: 50px;
    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: 110px;
    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
  --------------------------------------------------------------*/

/* --- module-css/sliding-text.css --- */
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/

/* --- module-css/team.css --- */
/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF4FB 46.5%, #FFFFFF 100%);
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
}

.team-one__shape-1 {
    position: absolute;
    width: 481px;
    height: 448px;
    left: -221px;
    top: 160px;
    background: rgba(255, 181, 29, 0.38);
    filter: blur(150px);
    border-radius: 50%;
    z-index: -1;
}

.team-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;
}

.team-one__inner {
    position: relative;
    display: block;
    background-color: rgba(var(--gorent-base-rgb), .10);
    border-radius: var(--gorent-bdr-radius);
    padding: 50px 50px 40px;
}

.team-one__main-tab-box {
    position: relative;
    display: block;
}

.team-one__tab-buttons-box-one {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.team-one__tab-buttons-box-two {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-bottom: 30px;
}

.team-one__main-tab-box .tab-buttons {
    position: relative;
    display: block;
}

.team-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: block;
}

.team-one__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-top: 10px;
}

.team-one__buttons {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    border-radius: var(--gorent-bdr-radius);
    border: 1px solid var(--gorent-bdr-color);
    padding: 22px 25px 21px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons {
    border: 1px solid var(--gorent-base);
}

.team-one__buttons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--gorent-bdr-radius);
    background-color: var(--gorent-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons:before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.team-one__buttons-experience-years {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(270deg, rgba(19, 18, 34, 0.12) 0%, rgba(19, 18, 34, 0) 100%);
    padding: 4px 22px 4px 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 231, 0) 100%);
}

.team-one__buttons-experience-years-count {
    position: relative;
    display: block;
}

.team-one__buttons-experience-years-count h3 {
    font-size: 32px;
    color: var(--gorent-base);
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.04em;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years-count h3 {
    color: var(--gorent-white);
}

.team-one__buttons-experience-years-text {
    font-size: 14px;
    color: var(--gorent-black);
    font-weight: 500;
    font-family: var(--gorent-font-two);
    line-height: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-experience-years-text {
    color: var(--gorent-white);
}

.team-one__buttons-content-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-one__buttons-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border: 1px solid var(--gorent-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-img-box {
    border: 1px solid var(--gorent-white);
}

.team-one__buttons-img {
    position: relative;
    display: block;
    height: 58px;
    width: 58px;
    border-radius: 50%;
    overflow: hidden;
}

.team-one__buttons-img img {
    width: 100%;
    border-radius: 50%;
}

.team-one__buttons-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.team-one__buttons-title-box {
    position: relative;
    display: block;
}

.team-one__buttons-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.team-one__buttons-title a {
    color: var(--gorent-black);
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-title a {
    color: var(--gorent-white);
}

.team-one__buttons-sub-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-sub-title {
    color: var(--gorent-white);
}

.team-one__buttons-arrow {
    position: relative;
    display: block;
}

.team-one__buttons-arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid var(--gorent-base);
    border-radius: 12px;
    color: var(--gorent-base);
    font-size: 17px;
}

.team-one__main-tab-box .tab-buttons .tab-btn.active-btn .team-one__buttons .team-one__buttons-arrow a {
    color: var(--gorent-black);
    border: 1px solid var(--gorent-extra);
    background-color: var(--gorent-extra);
}

.team-one__main-tab-box .tabs-content {
    position: relative;
    display: block;
}

.team-one__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.team-one__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.team-one__tabs-content-outer {
    position: relative;
    display: block;
    margin-left: 21.66px;
}

.team-one__tabs-content-box {
    position: relative;
    display: block;
}

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}

.team-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 37.4%, rgba(19, 18, 34, 0.69) 85.4%);
    border-radius: 12px;
}

.team-one__img img {
    width: 100%;
    border-radius: 12px;
}

.team-one__social {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 2;
}

.team-one__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid #626F82;
    border-radius: 50%;
    font-size: 17px;
    color: var(--gorent-white);
    overflow: hidden;
    z-index: 1;
}

.team-one__social a:hover {
    color: var(--gorent-white);
    border: 1px solid var(--gorent-base);
}

.team-one__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--gorent-base);
    border-radius: 50%;
    transform: scale(0.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-one__social a:hover:before {
    transform: scaleX(1.0);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    overflow: hidden;
    z-index: 1;
}

.team-two__shape-1 {
    position: absolute;
    top: -200px;
    left: -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;
}

.team-two__shape-2 {
    position: absolute;
    bottom: -255px;
    right: 0px;
    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;
}

.team-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-two__img-box {
    position: relative;
    display: block;
    border: 1px dashed var(--gorent-base);
    border-radius: var(--gorent-bdr-radius);
    padding: 10px 10px 10px;
}

.team-two__img {
    position: relative;
    display: block;
    border-radius: var(--gorent-bdr-radius);
    overflow: hidden;
    z-index: 1;
}

.team-two__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(19, 18, 34, .60);
    border-radius: var(--gorent-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%);
}

.team-two__img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.team-two__single:hover .team-two__img img {
    transform: scale(1.05) rotate(0deg);
}

.team-two__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--gorent-base-rgb), .10);
    border-radius: var(--gorent-bdr-radius);
    margin-top: 10px;
    padding: 21px 30px 22px;
    z-index: 3;
}

.team-two__title-box {
    position: relative;
    display: block;
}

.team-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.team-two__title a {
    color: var(--gorent-black);
}

.team-two__title a:hover {
    color: var(--gorent-base);
}

.team-two__sub-title {
    font-weight: 500;
    margin-top: 5px;
}

.team-two__share-and-social {
    position: relative;
    display: block;
    padding-top: 20px;
    margin-top: -20px;
}

.team-two__share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    cursor: pointer;
}

.team-two__share span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--gorent-white);
}

.team-two__social {
    position: absolute;
    top: -190px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transform: scaleY(0.0) translateX(-50%);
    transform-origin: bottom;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
}

.team-two__share-and-social:hover .team-two__social {
    transform: scaleY(1.0) translateX(-50%);
    transform-origin: bottom center;
    transition-delay: 300ms;
}

.team-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    font-size: 16px;
    color: var(--gorent-white);
}

.team-two__social a:hover {
    background-color: var(--gorent-black);
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.team-three:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-color: rgba(var(--gorent-base-rgb), .03);
    z-index: -1;
}

.team-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
    -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(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-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(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-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(--gorent-base);
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-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(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.team-three__single:hover .team-three__img img {
    transform: scaleX(1.05);
    transition-delay: 700ms;
}

.team-three__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-three__single:hover .team-three__social {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 700ms;
}

.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(--gorent-white);
    border-radius: var(--gorent-bdr-radius);
    font-size: 15px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--gorent-white-rgb), .50);
    z-index: 1;
}

.team-three__social a:hover {
    color: var(--gorent-white);
    border: 1px solid var(--gorent-base);
}

.team-three__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--gorent-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-left: 15px;
}

.team-three__content {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    text-align: center;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 33px 20px 33px;
    border-radius: var(--gorent-bdr-radius);
    border-bottom: 5px solid var(--gorent-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-three__single:hover .team-three__content {
    border-bottom: 5px solid var(--gorent-black);
}

.team-three__name {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-three__name a {
    color: var(--gorent-black);
}

.team-three__name a:hover {
    color: var(--gorent-base);
}

.team-three__sub-title {
    font-size: 18px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# 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 rgba(var(--gorent-black-rgb), .10);
    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(--gorent-base);
    font-size: 16px;
    border-radius: var(--gorent-bdr-radius);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--gorent-base);
    z-index: 1;
}

.team-details__social a:hover {
    color: var(--gorent-white);
    border: 1px solid var(--gorent-base);
}

.team-details__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--gorent-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 rgba(var(--gorent-black-rgb), .10);
    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(--gorent-black);
}

.team-details__client-address li p span {
    color: var(--gorent-black);
}

.team-details__client-address li h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 10px;
    font-family: var(--gorent-font);
}

.team-details__client-address li h5 a {
    color: var(--gorent-black);
}

.team-details__client-address li h5 a:hover {
    color: var(--gorent-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(--gorent-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(--gorent-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: 18px;
    font-weight: 700;
    line-height: 28px;
    color: var(--gorent-black);
    margin-bottom: 11px;
}

.team-details__progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--gorent-bdr-color-rgb), .90);
    border-radius: 6px;
}

.team-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--gorent-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(--gorent-black);
    line-height: 26px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    font-family: var(--gorent-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 rgba(var(--gorent-black-rgb), .10);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
    border-radius: var(--gorent-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 rgba(var(--gorent-black-rgb), .10);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    font-weight: 400;
    border-radius: var(--gorent-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(--gorent-gray);
    border-right: 2px solid var(--gorent-gray);
    margin-top: 0px;
    z-index: 10;
}

.team-details-contact__input-box textarea {
    height: 200px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding: 15px 30px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    position: relative;
    display: block;
    border-radius: var(--gorent-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 {
    border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
    border: none;
}















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/testimonial.css --- */
/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__single {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: var(--gorent-bdr-radius);
    padding: 25px 30px 25px;
    z-index: 1;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 80px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img img {
    border-radius: 50%;
}

.testimonial-one__content {
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-one__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px;
}

.testimonial-one__client-name a {
    color: var(--gorent-black);
}

.testimonial-one__client-name a:hover {
    color: var(--gorent-base);
}

.testimonial-one__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.testimonial-one__rating span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--gorent-base);
}

.testimonial-one__quote {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 60px;
    width: 60px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote {
    background-color: var(--gorent-black);
}

.testimonial-one__quote span {
    font-size: 22px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote span {
    color: var(--gorent-white);
}

.testimonial-one__carousel .owl-nav {
    position: absolute;
    top: -160px;
    right: 0;
    margin: 0 !important;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.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: rgba(var(--gorent-black-rgb), 1);
    color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--gorent-extra-rgb), .30);
    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(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 59px 30px 22px;
    border-radius: var(--gorent-bdr-radius);
    border-top: 10px solid var(--gorent-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(--gorent-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(--gorent-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(--gorent-black);
}

.testimonial-two__img img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--gorent-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;
    margin-bottom: 5px;
}

.testimonial-two__client-name a {
    color: var(--gorent-black);
}

.testimonial-two__client-name a:hover {
    color: var(--gorent-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(--gorent-base);
}

.testimonial-two__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    color: var(--gorent-gray);
}

.testimonial-two__quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--gorent-base);
    margin-top: -66px;
    margin-bottom: 20px;
    margin-left: -30px;
    border-bottom-right-radius: var(--gorent-bdr-radius);
    border-top-left-radius: var(--gorent-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__quote {
    background-color: var(--gorent-black);
}

.testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 22px;
    color: var(--gorent-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(--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;
}

.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(--gorent-black) !important;
    color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
    position: relative;
    display: block;
    padding: 165px 0 120px;
    z-index: 1;
}

.testimonial-three__left {
    position: relative;
    display: block;
}

.testimonial-three__right {
    position: relative;
    display: block;
    margin-right: -375px;
}

.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(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 49px 49px 41px;
    border-radius: var(--gorent-bdr-radius);
    border-top: 5px solid var(--gorent-base);
    transition: all 500ms ease;
    z-index: 1;
}

.testimonial-three__img {
    position: absolute;
    top: -45px;
    right: 50px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-three__img:before {
    background-color: var(--gorent-base);
    border-radius: 101px 101px 0 0;
    content: "";
    height: 50%;
    left: -2px;
    right: -2px;
    top: -5px;
    position: absolute;
    z-index: -1;
}

.testimonial-three__img img {
    width: 100%;
    border-radius: 50%;
}

.testimonial-three__client-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 22px;
}

.testimonial-three__client-content {
    position: relative;
    display: block;
}

.testimonial-three__client-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 8px;
}

.testimonial-three__client-name a {
    color: var(--gorent-black);
}

.testimonial-three__client-name a:hover {
    color: var(--gorent-base);
}

.testimonial-three__rating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
}

.testimonial-three__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--gorent-base);
}

.testimonial-three__quote {
    position: absolute;
    bottom: 50px;
    left: 170px;
    z-index: 1;
}

.testimonial-three__quote span {
    position: relative;
    display: inline-block;
    font-size: 120px;
    line-height: 120px;
    color: var(--gorent-gray);
    opacity: .05;
    font-weight: 900;
}

.testimonial-three__carousel.owl-theme .owl-nav {
    position: absolute;
    bottom: 40px;
    left: -550px;
    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(--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;
}

.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(--gorent-black) !important;
    color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.testimonials-page .testimonial-one__single {
    margin-bottom: 30px;
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/* --- module-css/video.css --- */
/*==============================================
    Video One
===============================================*/
.video-one {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 205px 0 230px;
    clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
    z-index: 1;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.video-one__inner {
    position: relative;
    display: block;
    text-align: center;
}

.video-one__title {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--gorent-white);
    margin-bottom: 69px;
}

.video-one__video-link {
    position: relative;
    display: block;
}

.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: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 33px;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    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;
    margin: 0 auto;
    z-index: 1;
}

.video-one__video-icon:hover {
    background-color: var(--gorent-white);
    color: var(--gorent-base);
}

.video-one__video-icon:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 15px solid rgba(var(--gorent-white-rgb), .20);
    border-radius: 50%;
    z-index: -1;
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    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;
}

.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 Two
===============================================*/
.video-two {
    position: relative;
    display: block;
}

.video-two__inner {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--gorent-black);
    padding: 165px 0 139px;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
    z-index: 1;
}

.video-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.video-two__video-link {
    position: relative;
    display: block;
}

.video-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: 33px;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    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;
    margin: 0 auto;
    z-index: 1;
}

.video-two__video-icon:hover {
    background-color: var(--gorent-white);
    color: var(--gorent-base);
}

.video-two__video-icon:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 15px solid rgba(var(--gorent-white-rgb), .20);
    border-radius: 50%;
    z-index: -1;
}

.video-two__video-link .ripple,
.video-two__video-icon .ripple:before,
.video-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    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;
}

.video-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.video-two__title {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--gorent-white);
    margin-top: 59px;
}





/*==============================================
   End
===============================================*/

/* --- module-css/why-choose.css --- */
/*--------------------------------------------------------------
# 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: 10px;
    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,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' 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
--------------------------------------------------------------*/

