:root {
  --gorent-font: "Roboto", sans-serif;
  --gorent-font-two: "Inter Tight", sans-serif;
  --gorent-gray: #868689;
  --gorent-blue: #336699;
  --gorent-gray-rgb: 134, 134, 137;
  --gorent-base: #FFB51D;
  --gorent-base-rgb: 255, 181, 29;
  --gorent-black: #131222;
  --gorent-black-rgb: 19, 18, 34;
  --gorent-extra: #E3E3E3;
  --gorent-extra-rgb: 227, 227, 227;
  --gorent-white: #ffffff;
  --gorent-white-rgb: 255, 255, 255;
  --gorent-bdr-color: #D9D9D9;
  --gorent-bdr-color-rgb: 238, 239, 242;
  --gorent-bdr-radius: 20px;
}

*, ::after, ::before {
    box-sizing: border-box;
}
body {
    position: relative;
    display: block;
    font-family: var(--gorent-font);
    color: var(--gorent-gray);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    z-index: 1;
}
body.locked {
  overflow: hidden;
}

a {
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}
::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin: 0;
}

p {
  margin: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}
.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--gorent-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}
.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--gorent-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}
.btn-bg:hover, .btn-bg {
    background-color: var(--gorent-base);
    color: #fff;
    padding: 15px;
    border-radius: 4px;
}


/* ======== HEADER ======== */

.main-header{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
}
.header-top {
    position: relative;
    display: block;
}
.header-top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7px 80px 8px;
    z-index: 1;
}
.header-top-inner:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--gorent-white-rgb), .10);
    z-index: -1;
}
.header-contact {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 0;
}
.header-contact li {
    position: relative;
    display: flex;
    align-items: center;
}
.header-contact li+li {
    margin-left: 46px;
}
.header-contact li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--gorent-white-rgb), .20);
}
.header-contact li .icon {
    position: relative;
    display: flex;
    align-items: center;
} 

.header-contact li .icon i {
    font-size: 16px;
    color: var(--gorent-base);
    position: relative;
    display: inline-block;
}

.header-contact li .text {
    margin-left: 10px;
}

.header-contact li .text p {
    color: var(--gorent-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.header-contact li .text a {
    color: var(--gorent-white);
    transition: all 500ms ease;
}

.header-contact li .text a:hover {
   color: var(--gorent-base);
}
.header-social{
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border: 1px solid rgba(var(--gorent-white-rgb), .20);
    border-radius: 5px;
    font-size: 14px;
    color: var(--gorent-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}
.header-social a+a {
    margin-left: 5px;
}

.header-social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--gorent-base);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
}

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


.main-menu.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    animation: slideDown 0.5s ease;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 5%);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


.main-menu .main-menu-wrapper {
    position: relative;
    display: block;
    z-index: 1;
}
.main-menu-wrapper:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--gorent-white-rgb), .10);
    z-index: -1;
}

.main-menu-wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px 0;
    background-color: #fff;
}

.main-menu-left {
    display: block;
}
.main-menu-logo {
    display: block;
    padding: 20px 0;
}

.main-menu-middle-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.main-menu-main-menu-box {
    display: block;
}
.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--gorent-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}
.main-menu-search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.main-menu-cart-box {
    position: relative;
    display: block;
}
.btn-border:hover, .btn-border {
    border: 1px solid var(--gorent-base);
    color: #000;
    padding: 15px;
    border-radius: 4px;
}
.bg-blue {
    background-color: var(--gorent-blue);
    color: #fff;
}
.main-menu-call {
    position: relative;
    display: flex;
    align-items: center;
}
.main-menu-call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gorent-black);
    font-size: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 40px;
    width: 40px;
    background-color: var(--gorent-base);
    border-radius: 50%;
}

.main-menu-call-content {
    margin-left: 10px;
}
.main-menu-call-sub-title {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 3px;
}
.main-menu-call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    font-family: var(--gorent-font);
}
.main-menu-call-number a {
    color: var(--gorent-blue);
}

/* ======== MAIN SLIDER ======== */

.main-slider {
    position: relative;
    background-color: var(--gorent-black);
    z-index: 10;
}

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

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

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

.main-slider-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-img img {
    width: auto !important;
}

.active .main-slider-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-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) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

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

.main-slider-sub-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--gorent-base);
    text-transform: capitalize;
    font-weight: 400;
}

.main-slider-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-title span {
    color: var(--gorent-base);
}

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

.main-slider .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 .owl-dots .owl-dot+.owl-dot {
    margin-left: 60px;
}

.main-slider .owl-dots .owl-dot {
    position: relative;
}

.main-slider .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 .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 .owl-dots .owl-dot:last-child span:before {
    display: none;
}

.main-slider .owl-dots .owl-dot:hover span,
.main-slider .owl-dots .owl-dot.active span {
    background-color: rgba(var(--gorent-base-rgb), 1);
}


.main-slider .owl-nav {
   display:none !important;
}

/* ======== BOOKING ======== */

.booking{
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.booking-left {
    position: relative;
    display: block;
    margin-top: 54px;
    z-index: 2;
}

.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);

}
#popup-reservation .booking-one__content {
    border:none;
}

.booking-left .booking-one__content {
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--gorent-bdr-radius);
}
.booking-one__title-box {
    position: relative;
    display: block;
    background-color: var(--gorent-base);
    text-align: center;
    padding: 17.5px 0;
    z-index: 1;
}
.booking-left .booking-one__title-box {
    border-top-left-radius: var(--gorent-bdr-radius);
    border-top-right-radius: var(--gorent-bdr-radius);
}
.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 .select-box {
    width: 100%;
}
.booking-one__input-box .nice-select, .nice-select.list{
    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;
}
.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 .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
   border-radius: 30%;
    height: 20px;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}
.ui-widget-content{
    border: none !important;
}

.ui-menu .ui-menu-item:first-child {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
}

.ui-menu .ui-menu-item:last-child {
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}
.booking-one__input-box .nice-select .list, .ui-menu .ui-menu-item {
    background-color: var(--gorent-base);
    border-radius: var(--gorent-bdr-radius);
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 0;
}
.booking-one__input-box .nice-select .option.selected , .ui-menu .ui-menu-item.selected{
    font-weight: 500;
}
.ui-menu .ui-menu-item:hover, .ui-menu .ui-menu-item.focus, .ui-menu .ui-menu-item.selected.focus {
    color: #ffffff;
    background-color: var(--gorent-black);
}

.booking-one__input-box .nice-select .option, .ui-menu .ui-menu-item {
    color: var(--gorent-white);
}
.booking-one__input-box .nice-select:after , .ui-menu: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 input[type="text"], .booking-one__input-box input[type="email"], .booking-one__input-box input[type="time"],
.booking-one__input-box input[type="date"]  {
    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 .calendar-icon , .booking-one__input-box .time-icon{
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 16px;
}
.booking-one__btn-box {
    position: relative;
    display: block;
}
#ptTimeSelectCntr {
    z-index: 99999999999999 !important;
}
.booking-one__btn-box .thm-btn {
    border: none;
}
.booking-right {
    position: relative;
    display: block;
    margin-left: -120px;
}

.booking-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--gorent-bdr-radius);
}

.booking-img img {
    width: 100%;
    border-radius: var(--gorent-bdr-radius);
}

/* ======== ABOUT ======== */

.about {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
}

.about-left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.about-left .section-title {
    margin-bottom: 23px;
}

.about-text-1 {
    margin-bottom: 29px;
}

.about-points {
    position: relative;
    display: block;
}

.about-points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-points li+li {
    margin-top: 7px;
}

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

.about-points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--gorent-base);
}

.about-points li p {
    color: var(--gorent-black);
    font-weight: 500;
}

.about-progress-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 33px;
}

.about-progress-single {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.about-progress-single .graph-outer {
    position: relative;
    display: inline-block;
    text-align: center;
    top: 4px;
    z-index: 1;
}

.about-progress-single .graph-outer .count-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.about-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-progress-single .graph-outer .count-Parsent {
    position: relative;
    display: inline-block;
    color: var(--gorent-base);
    font-size: 20px;
    font-weight: 500;
}

.about-progress-text-box {
    position: relative;
    display: block;
}

.about-progress-text-box h4 {
    color: var(--gorent-base);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}

.about-btn-box-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 46px;
}

.about-call-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-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-call-box-icon:hover {
    background-color: var(--gorent-black);
}

.about-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-call-box-icon:hover span {
    color: var(--gorent-white);
}

.about-call-box-content {
    position: relative;
    display: block;
}

.about-call-box-content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 2px;
}

.about-call-box-content h4 a {
    color: var(--gorent-black);
}

.about-call-box-content h4 a:hover {
    color: var(--gorent-base);
}

.about-right {
    position: relative;
    display: block;
    margin-left: 180px;
}

.about-img-box {
    position: relative;
    display: block;
}

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

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

.about-img:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-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-img-two img {
    width: auto;
    border-radius: var(--gorent-bdr-radius);
    transition: all 500ms ease;
}

.about-img-two:hover img {
    opacity: 0.6;
    transform: scaleX(1.05);
}

.about-video-link {
    position: absolute;
    top: 86px;
    left: -150px;
    z-index: 3;
}

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

.about-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-video-icon:hover {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.about-video-link .ripple,
.about-video-icon .ripple:before,
.about-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-video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

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

.about-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-experience::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    border-top: 35px solid var(--gorent-base);
    border-left: 75px solid transparent;
}

.about-experience-count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-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-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-experience-text {
    color: var(--gorent-white);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 5px;
}


/* ======== SERVICES ======== */

.services-container{
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 90px;
    z-index: 1
}

.services-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-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;
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 49px;
    z-index: 1;
}

.section-title__tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.section-title__tagline-shape {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.section-title__tagline-shape img {
    width: auto;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    color: var(--gorent-base);
    font-weight: 400;
    text-transform: uppercase;
}

.section-title__title {
    color: var(--gorent-black);
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    margin: 7px 0 0;
    text-transform: uppercase;
}
.services-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-single:hover::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}
.services-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-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-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-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-count {
    position: absolute;
    top: 14%;
    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-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-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-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-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-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-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 0px;
    margin-bottom: 6px;
    color: var(--gorent-base);
}

.services-single:hover .services-title {
    color: var(--gorent-black);
}
.services-one__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: rgba(var(--gorent-white-rgb), .70);
}

.services-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-single:hover .services-icon span {
    transform: scale(0.9);
    color: var(--gorent-black);
}
.services-single:hover::after {
    background-color: var(--gorent-black);
}

/* ======== PROCESS ======== */

.process-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    counter-reset: count;
    z-index: 1;
    padding: 120px 0 90px;
}

.section-title__tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title__tagline-shape {
    position: relative;
    display: block;
    margin-bottom: 3px;
}

.process-one__single {
    position: relative;
    display: block;
    background-color: var(--gorent-blue);
    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 {
    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-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__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__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__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-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__single:hover .process-one__icon-shape, .process-one__single:hover .process-one__icon-shape:before {
    background-color: var(--gorent-base);
    opacity: 1;
}

.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;
}

/* ======== lets-talk ======== */

.lets-talk {
    position: relative;
    display: block;
    background-color: var(--gorent-blue);
    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;
    color: #fff;
}

.lets-talk__title p {
    font-size: 20px;
    color: #fff;
    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;
    color: #fff;
}

.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-base);
    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);
}


/* ======== COUNTER ======== */

.counter {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
}

.counter-inner {
    position: relative;
    display: block;
}

.counter-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.counter-list li {
    position: relative;
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
    padding: 0 10px;
}

.counter-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-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-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-single-inner {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-black);
    border-radius: var(--gorent-bdr-radius);
    padding: 42px 0 48px;
}

.counter-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon span{
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--gorent-black);
    transition: all 500ms ease;
}
.counter-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 15px;
}

.counter-count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}
.counter-count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}
.counter-count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}

.counter-count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}
.counter-count-box span {
    font-size: 45px;
    font-weight: 600;
    color: var(--gorent-white);
    font-family: var(--gorent-font-two);
    line-height: 1em;
}
.counter-count-box .odometer-formatting-mark {
    display: none;
}
.counter-count-text {
    color: var(--gorent-black);
}
.counter-list li:nth-child(2) .counter-single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}

.counter-list li:nth-child(4) .counter-single {
    background-color: var(--gorent-black);
    border: 1px solid var(--gorent-base);
}
.counter-list li:nth-child(2) .counter-single-inner {
    border: 1px solid var(--gorent-base);
}
.counter-list li:nth-child(4) .counter-single-inner {
    border: 1px solid var(--gorent-base);
}
.counter-list li:nth-child(2) .counter-icon span {
    color: var(--gorent-base);
}

.counter-list li:nth-child(4) .counter-icon span {
    color: var(--gorent-base);
}
.counter-single:hover .counter-shape-1 {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.counter-single:hover .counter-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;
}

/* ======== LISTING ======== */

.listing {
    position: relative;
    display: block;
    padding: 110px 0 120px;
    z-index: 1;
}

.listing-carousel {
    position: relative;
    display: block;
}

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

.listing-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-img-box {
    position: relative;
    display: block;
}

.listing-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-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-single:hover .listing-img:before {
    opacity: 1;
    transform: translateY(0px);
}

.listing-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;
    max-height: 250px;
    object-fit: contain;
}

.listing-single:hover .listing-img img {
    transform: scale(1.05) rotate(0deg);
}

.listing-content {
    position: relative;
    display: block;
    padding: 14px 20px 20px;
}

.listing-sub-title {
    font-weight: 500;
    color: var(--gorent-base);
    text-transform: capitalize;
}

.listing-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-top: 5px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.listing-title a {
    color: var(--gorent-black);
}

.listing-title a:hover {
    color: var(--gorent-base);
}

.listing-price-and-btn {
    position: relative;
    justify-content: space-between;
    border-top: 1px solid rgba(190, 190, 190, .30);
    padding-top: 12px;
}

.listing-price-box {
    position: relative;
    display: block;
}

.listing-price-box span {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.listing-price-box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--gorent-black);
}

.listing-btn-box {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}
.listing-btn-box .btn-border{
    color: #000;
    background: transparent;
    border-radius: 5px;
    padding: 7px 20px;
}
.listing-btn-box .thm-btn {
    padding: 3px 20px 3px;
    border-radius: 5px;
    border: none;
    
}
/* ======== FAQ ======== */

.faq{
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-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-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 .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 .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq .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 .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 .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
}
.faq .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

.faq .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 .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}
.faq .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--gorent-black-rgb), .15);
    background: var(--gorent-white);
}


/* ======== SECTIONS FEATURES ======== */

.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;
    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-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--gorent-black);
    text-transform: uppercase;
}

.feature-one__inner-text {
    color: var(--gorent-white);
    margin-top: 12px;
    margin-bottom: 28px;
}

.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);
}

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: var(--gorent-black);
    background-color: var(--gorent-base);
    padding: 13px 30px 13px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 2;
    text-align: center;
}


.feature-one__inner-btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}
.thm-btn:hover:after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
.thm-btn::after {
    content: "";
    background-color: var(--gorent-black);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.feature-one__inner-btn-box .thm-btn:hover {
    color: var(--gorent-black); 
}
.thm-btn:hover {
    color: var(--gorent-white);
}
.feature-one__inner-btn-box .thm-btn {
    background-color: var(--gorent-black);
    color: var(--gorent-white);
}

.slideInRight.feature-one__inner-single .feature-one__inner-title {
    color: var(--gorent-base);
}

.slideInRight.feature-one__inner-single .feature-one__inner-text {
    opacity: .70;
}

.slideInRight .feature-one__inner-btn-box .thm-btn {
    background-color: var(--gorent-base);
    color: var(--gorent-black);
}

.slideInRight .feature-one__inner-btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.slideInRight .feature-one__inner-btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

/* ======== CONTACT FORM 7 HOME PAGE ======== */
.wpcf7 form {
    display: block;
}

.wpcf7 form .row {
    --bs-gutter-x: 30px;
}

.wpcf7 form .col-md-6 {
    flex: 0 0 calc(50% - 10px);
}

.wpcf7 form .col-12 {
    flex: 0 0 100%;
}

.wpcf7 form label {
    width: 100%;
    font-weight: 500;
    color: #fff;
}
.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.contact-one__input-box .select-box {
    width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
   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 .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;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
}
.thm-btn span {
    position: relative;
    top: -1;
}
.contact-btn-box {
    margin-top: 15px;
}
.contact-one__btn-box {
    position: relative;
    display: block;
}
.contact-one__btn-box .wpcf7-submit{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 34px;
    color: var(--gorent-black);
    background-color: var(--gorent-base);
    padding: 13px 30px 13px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    z-index: 2;
    text-align: center;
    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-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 {
    position: relative;
    display: block;
    background-color: var(--gorent-blue);
    padding: 120px 0 120px;
    overflow: hidden;
    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;
}

.section-title__tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-one__left .section-title__title {
    color: var(--gorent-white);
}

.section-title__title {
    color: var(--gorent-black);
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    margin: 7px 0 0;
    text-transform: uppercase;
}

#jarallax-container-0 {
    clip: rect(0 1583px 878px 0);
    clip: rect(0, 1583px, 878px, 0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.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__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;
}
/* ======== 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: -24px;
}

.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);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}
.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}
.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--gorent-base);
    position: relative;
    overflow: hidden;
}
.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gorent-black);
}
.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-left: 10px;
}


/*Agence register */ 
.agence-registration-wrapper {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}
.agence-registration-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}
.agence-registration-form .form-group {
    margin-bottom: 20px;
}
.agence-registration-form label {
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #444;
}
.agence-registration-form input[type="text"],
.agence-registration-form input[type="email"],
.agence-registration-form input[type="password"],
.agence-registration-form input[type="file"],
.agence-registration-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all .3s ease;
}
.agence-registration-form input:focus,
.agence-registration-form textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
    outline: none;
}
.agence-registration-form button {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    transition: background .3s;
}
.agence-registration-form button:hover {
    background: #004a99;
}
.agence-registration-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}
.agence-registration-success {
    background: #e6ffed;
    color: #006400;
    border: 1px solid #a8e6a2;
}
.agence-registration-error {
    background: #ffe6e6;
    color: #b30000;
    border: 1px solid #e6a2a2;
}

/*mobile side bar*/

.mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}
.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.mobile-nav__content {
    width: 300px;
    background-color: var(--gorent-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--gorent-white);
    cursor: pointer;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--gorent-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--gorent-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__contact li a i{
    color: #ffb51d;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--gorent-white);
    -webkit-transition: 500ms;
    transition: 500ms;
}


.registre-agence-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.success-msg { color: green; margin-bottom: 15px; }
.error-msg { color: red; margin-bottom: 15px; }
.agence-logo-preview img { margin-top: 10px; max-width: 120px; }


.page-register-agence .title, .page-login .title{
    font-size: 45px;
    line-height: 1.0em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--gorent-font-two);
    color: var(--gorent-black);
    margin-bottom: 50px;
}

.page-register-agence form input[type=text], .page-register-agence form input[type=email], .page-register-agence form input[type=url], 
.page-register-agence form input[type=password], .page-register-agence form input[type=search], .page-register-agence form input[type=tel], 
.page-register-agence form input[type=number], .page-register-agence form input[type=range], .page-register-agence form input[type=date], 
.page-register-agence form input[type=month], .page-register-agence form input[type=week], .page-register-agence form input[type=time], 
.page-register-agence form input[type=datetime],.page-register-agence form input[type=datetime-local],.page-register-agence form input[type=color], 
.page-register-agence form textarea, .page-register-agence form select, .page-register-agence form .nice-select {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    color: #9b9b9b;
    padding: 6px 22px;
    line-height: normal;
    font-size: 15px;
    font-weight: 400;
    height: 51px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 100%;
    outline: none;
}

.page-register-agence form input[type=text]:focus,
 .page-register-agence form input[type=email]:focus, .page-register-agence form input[type=url]:focus, .page-register-agence form input[type=password]:focus,
  .page-register-agence form input[type=search]:focus, .page-register-agence form input[type=tel]:focus, .page-register-agence form input[type=number]:focus, 
  .page-register-agence form input[type=range]:focus, .page-register-agence form input[type=date]:focus, .page-register-agence form input[type=month]:focus, 
  .page-register-agence form input[type=week]:focus, .page-register-agence form input[type=time]:focus, .page-register-agence form input[type=datetime]:focus, 
  .page-register-agence form input[type=datetime-local]:focus, .page-register-agence form input[type=color]:focus, .page-register-agence form textarea:focus,
  .page-register-agence form select:focus, .page-register-agence form .nice-select:focus {
    outline: 0;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    border-color: var(--gorent-base);
    background-color: var(--gorent-white);
}
.page-register-agence form input, .page-register-agence form .nice-select {
    border-radius: 0;
    padding-left: 75px !important;
}

.page-register-agence form .nice-select{
    margin-bottom: 30px;
}
.page-register-agence form .nice-select span{
    display: block;
    padding-top: 10px;
}
.page-register-agence form .nice-select.open .list{
    max-height: 250px;
    overflow: auto;
}

/* Chrome, Edge, Safari */
.page-register-agence form .nice-select.open .list::-webkit-scrollbar {
    width: 8px;
}

.page-register-agence form .nice-select.open .list::-webkit-scrollbar-track {
    background: #f0f0f0; /* couleur de fond du track */
    border-radius: 4px;
}

.page-register-agence form .nice-select.open .list::-webkit-scrollbar-thumb {
    background-color: #ffb51d; /* couleur de la thumb */
    border-radius: 4px;
    border: 2px solid #f0f0f0; /* pour ajouter un peu de padding visuel */
}

/* Firefox */
.page-register-agence form .nice-select.open .list {
    scrollbar-width: thin;
    scrollbar-color: #ffb51d #f0f0f0;
}
.page-register-agence form .select-groupe i{
    top: 50%;
}
.page-register-agence form i {
    width: 55px;
    height: 32px;
    font-size: 24px;
    color: #ffb51d;
    text-align: center;
    line-height: 32px;
    position: absolute;
    top: 37%;
    left: 0;
    border-right: 1px solid #efefef;
    -webkit-transform: translate(0,-50%);
    -khtml-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.page-register-agence form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.register-form-wrapper{
   position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 0px 80px rgb(0 0 0 / 6%);
    padding: 60px 50px 52px;
    border-radius: var(--gorent-bdr-radius);

}
.register-form-wrapper h1{
    text-align: center;
    margin-bottom: 32px;
    font-size: 22px;
    text-transform: capitalize;
}

.register-form-wrapper .thm-btn{
    width: 100%;
    text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 10px rgb(12 12 12 / 10%);
    position: relative;
    display: inline-bloc;
    border-radius: 5px;
    border:none;
    justify-content: center;
    border: none;
    color: var(--gorent-black);
    background-color: var(--gorent-base);
}
.register-form-wrapper .thm-btn:hover {
    color: var(--gorent-white);
}
/* Conteneur du logo */
.form-group label {
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    color: #555;
}

/* Bouton d'upload */
.upload-agence-logo {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #ffb51d;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.upload-agence-logo:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Prévisualisation du logo */
.agence-logo-preview {
    margin-top: 15px;
    min-height: 120px;
    width: 120px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.agence-logo-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.agence-logo-preview:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
}

/* Message si aucun logo sélectionné */
.agence-logo-preview::before {
    content: "Aucun logo choisi";
    color: #999;
    font-size: 14px;
    text-align: center;
}
/* ==== Conenxion ==== */
.page-login, .page-register-agence{
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    padding: 112px 0px 120px;
    z-index: 1;
}
.page-login form input[type=text], .page-login form input[type=email], .page-login form input[type=password],  {
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    background-color: #fff;
    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;
}

.page-login form input[type=text]:focus, .page-login form input[type=email]:focus, .page-login form input[type=password]:focus {
    outline: 0;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    border-color: var(--gorent-base);
    background-color: var(--gorent-white);
}
.page-login form .create-account {
    position: relative;
    display: block;
    padding-top: 25px;
}

.page-login .create-account p {
    color: var(--gorent-black);
}

.page-login .create-account p a {
    color: var(--gorent-base);
    font-weight: 500;
}
.page-template-page-connexion .main-header, .page-template-page-agence-regiser .main-header, .single-voiture .main-header{
    background: #161515;
    position: relative;
}


/* single Voiture */
.voiture-single { padding-top:150px }


.voiture-featured img { width:100%; border-radius:6px; margin-bottom:10px; }
.voiture-gallery { display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.voiture-gallery img { width:80px; height:60px; object-fit:cover; border-radius:4px; cursor:pointer; border:2px solid #ddd; transition:0.3s; }
.voiture-gallery img:hover { border-color:#0073aa; }
.voiture-details p { margin:5px 0; font-size:16px; }
.voiture-content { margin-top:20px; }

@media(max-width:768px){ .voiture-single { padding-top:50px } }

/* Styles tunnel de réservation */
.reservation-tunnel { 
    position: relative;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(var(--gorent-black-rgb), .10);
    padding: 53px 50px 60px;
}
.tunnel-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.tunnel-steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}
.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step.completed .step-number {
    background: #28a745;
}
.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.step.active .step-label {
    color: #0073aa;
}

.tunnel-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}



.btn-prev.thm-btn {
    background: #6c757d;
    color: white;
}

.checkout-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.btn-prev.thm-btn:hover { background: #5a6268; }

.btn-prev:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.tunnel-step {
    display: none;
}

.tunnel-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Styles spécifiques aux étapes */
.reservation-summary {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
}

.reservation-summary h3 {
    margin-top: 0;
    color: #0073aa;
}

.form-group {
    margin-bottom: 20px;
}


.form-group input,
.form-group select,
.form-group textarea {
  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;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

.confirmation-message {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.required {
    color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 0px;
    font-weight: 700;
    display: none;
}



/* ======================= STYLES POPUP ======================= --*/
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  margin:auto;
  top: 75px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bouton secondaire (Précédent) */
.thm-btn.secondary {
  background: #f3f3f3;
  color: #333 !important;
  border: 1px solid #ddd;
  margin-right: 10px;
  box-shadow: none;
}

.thm-btn.secondary:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
}

/* Espacement entre les deux boutons */
.form-step .form-group {
  text-align: center;
}

.form-step .thm-btn {
  margin: 5px;
}

/* autre css */
.single-voiture .booking {
    padding: 0
}
.single-voiture .booking-one__title {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 20px;
}
.single-voiture .booking-one__form{
    padding: 0;
}
.single-voiture .booking-one__content{
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border: 1px solid var(--gorent-bdr-color);
    border-radius: var(--gorent-bdr-radius);
    padding: 20px;
}

.swal2-confirm {
    background-color: #f35959 !important;
    border-color: #f35959 !important;
    color: #fff !important;
}

.swal2-confirm:hover,
.swal2-confirm:focus,
.swal2-confirm:active {
    background-color: #f35959 !important;
    border-color: #f35959 !important;
    color: #fff !important;
}
