/*=====Reset CSS======*/
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

body {
  font-family: 'Gilroy-Regular';
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: var(--primary-text-color);
  background-color: var(--bg-color);
  position: relative;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 30px;
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

::-moz-selection {
  background-color: #1f40cb;
  color: #fff;
}

::selection {
  background-color: #1f40cb;
  color: #fff;
}

/*=====Reset CSS======*/

/*===== Global CSS ======*/
:root {
  --bg-color: #FDFDFF;
  --bg-color-2: #f4f7fa;
  --primary-text-color: #161C2D;
  --white: #fff;
  --black: #000;
  --yellow: #ffdc00;
  --sky: #00bef1;
  --orenge: #f79548;
  --pink: #f073ab;
  --gray: #979797;
  --blue: #161c2d;
  --border-color: #e7e9ed;
}

h1 {
  font-family: 'Gilroy-Bold';
  font-size: 60px;
  line-height: 65px;
  letter-spacing: -2px;
  color: var(--white);
}

h2 {
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 58px;
  color: var(--primary-text-color);
  letter-spacing: -1.8px;
}

h3 {
  font-family: 'Gilroy-Bold';
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--primary-text-color);
  margin-bottom: 20px;
}

h4 {
  font-family: 'Gilroy-Bold';
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.glb_btn {
  font-family: 'Gilroy-Bold';
  letter-spacing: -0.5px;
  min-width: 183px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 8px;
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--black);
}

.glb_btn.glb_pink_btn {
  background-color: var(--pink);
  border-color: var(--pink);
}

.glb_btn.glb_pink_btn:hover {
  background-color: #f073ab50;
}

.glb_btn.pink_trans_bg_btn {
  background-color: transparent;
  border-color: var(--white);
  color: #fff;
}

.glb_btn.pink_trans_bg_btn:hover {
  color: var(--white);
  border-color: var(--pink);
  background-color: #f073ab50;
}

.glb_white {
  border-color: #fff !important;
  background-color: #fff !important;
}

.glb_white:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.glb_btn.white_bg_btn {
  background-color: transparent;
  border-color: #000;
  color: #000;
}
.glb_btn.white_bg_btn:hover {
  color: #000;
  border-color: var(--yellow);
}

.glb_btn.trans_bg_btn {
  background-color: transparent;
  border-color: var(--white);
  color: #fff;
}

.glb_btn.trans_bg_btn:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.glb_btn:hover {
  background-color: #ddd3883d;
  color: var(--white);
  backdrop-filter: blur(5px);
}

.glb_btn.login_btn { 
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}

.glb_btn.login_btn:hover {
  background-color: #fff;
  color: #121828;
}
.glb_btn.submit_btn { 
  background-color: #121828;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}

.glb_btn.submit_btn:hover {
  background-color: #fff;
  color: #121828;
  border: 1px solid #121828;
}

.glb_btn.blue_btn { 
  background-color: transparent;
  border: 1px solid #121828;
  color: #121828;
  font-weight: 600;
}

.glb_btn.blue_btn:hover {
  background-color: #121828;
  color: #fff;
  border: 1px solid #121828;
}

.glb_btn.demo_btn {
  background-color: #f073ab;
  border: 1px solid #f073ab;
  color: #fff;
  font-weight: 700;
}

.glb_btn.demo_btn:hover {
  background-color: #d95c95;
  border-color: #d95c95;
  color: #fff;
}


.glb_link {
  font-family: 'Gilroy-Bold';
  padding: 13px 20px 14px 21px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 240px;
  height: 59px;
  letter-spacing: -0.6px;
  color: var(--blue);
  line-height: 32px;
}

.glb_link.pink_link {
  background-color: var(--pink);
}

.glb_link.pink_link:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.glb_link.pink_link:hover svg path {
  stroke: var(--pink);
}

.glb_link.yellow_link {
  background-color: var(--yellow);
}

.glb_link.yellow_link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.glb_link.yellow_link:hover svg path {
  stroke: var(--yellow);
}

.glb_link:hover {
  background-color: transparent;
  color: var(--white);
}

.glb_link:hover svg path {
  stroke: var(--white);
}

.glb_link .arricn {
  margin-left: 43px;
}

.link_btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Gilroy-Bold';
  letter-spacing: -0.6px;
  color: var(--primary-text-color);
}

.link_btn:hover {
  color: var(--white);
}

.link_btn:hover span svg path {
  stroke: var(--white);
  transition: all 300ms ease-in-out;
}

.link_btn span {
  margin-left: 16px;
}

/*===== Global CSS ======*/

/***** header start *************/

.hedr {
  padding: 27px 0px;
  background-color: var(--blue);
}

.absolute_hedr {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}

.hedr.hedr_trans {
  background-color: transparent;
}

.header_wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo_wrp {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-style: italic;
}

.header_right {
  display: flex;
  align-items: center;
}

.header_right>*:not(:last-child) {
  margin-right: 30px;
}

.logo {
  margin-right: 0px;
}

.logo img {
  max-width: 224px;
  width: 100%;
}

.overlay_nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: #161c2d;
  padding: 50px 40px 100px 140px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: all ease 400ms;
  display: flex;
  flex-wrap: wrap;
}

.overlay_nav.show {
  opacity: 1;
  transform: translateX(0%);
}

.overlay_nav::-webkit-scrollbar {
  width: 10px;
}

.overlay_nav::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 30px;
}

.overlay_nav nav {
  display: flex;
  flex-direction: column;
  margin-top: 21px;
  flex: 1 1 100%;
}


.sec_link li+li {
  margin-top: 20px;
}

.sec_link li a {
  font-family: 'Gilroy-Bold';
  font-size: 42px;
  /* color: var(--white); */
  background-image: linear-gradient(to right, var(--blue), var(--blue), 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.sec_link li a:hover {
  background-position: 0;
}

.nav_lft ul li+li {
  margin-top: 15px;
}

.nav_lft ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
}

.nav_lft ul li a:hover {
  color: var(--blue);
}

.nav_right {
  margin-right: 280px;
}

.nav_right h4 {
  font-family: 'Gilroy-Bold';
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 15px;
  letter-spacing: -0.2px;
}

.nav_right h4.booking {
  font-size: 15px;
  line-height: 20px;
}

.nav_right ul li a {
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 10px;
}

.nav_right ul li a:hover {
  color: var(--white);
}

.nav_right ul li+li {
  margin-top: 10px;
}

.nav_right .talk {
  margin-bottom: 15px;
}

.nav_right .raise_support {
  font-size: 15px;
  color: var(--blue);
}

.nav_right .raise_support:hover {
  color: var(--white);
}

.close_nav {
  position: absolute;
  top: 50px;
  right: 48px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 4.45px;
  transition: all 300ms ease-in-out;
}

.close_nav:hover {
  color: var(--white);
}

.close_nav img {
  max-width: 45px;
  margin-left: 14px;
}

/***** header end *************/

/* banner start */
.home_bnr {
  padding: 290px 0px 130px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--white);
  text-align: center;
  position: relative;
}

.home_bnr .bnr_txt h6 {
  font-family: 'Gilroy-Bold';
  font-size: 13px;
  letter-spacing: 1.63px;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 34px;
}

.home_bnr .bnr_txt h1 {
  padding-bottom: 64px;
}

.form_inr {
  max-width: 770px;
  margin: 0 auto;
  padding: 23px 20px 21px 11px;
  background-color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 39px;
}

.select_wrp_cont {
  display: flex;
  align-items: center;
  position: relative;
}

.select_wrp_cont::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  top: -23px;
  bottom: -21px;
  background-color: var(--border-color);
}

.form_inr .location {
  margin-right: 25px;
}

.form_inr .start_now {
  margin-left: auto;
}

.selct_wrp .form-select {
  min-width: 250px;
  height: 50px;
  padding: 12px 35px 12px 46px;
  background-image: url(../images/pin.svg), url(../images/drop_Icon.svg);
  background-repeat: no-repeat;
  background-position: 18px center, right 16px center;
  background-size: 13px 18px, 10px 5px;
  font-family: 'Gilroy-Regular';
  font-size: 15px;
  line-height: 25px;
  color: var(--primary-text-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.selct_wrp .form-select:focus {
  border-color: var(--yellow);
  box-shadow: none;
}

.requirement .form-select {
  background-image: url(../images/truck-solid.svg), url(../images/drop_Icon.svg);
  background-size: 20px 17px, 10px 5px;
}

.start_now .glb_btn {
  min-height: 50px;
  min-width: 199px;
}

.start_now .glb_btn:hover {
  color: var(--black)
}

.bnr_txt .vid_link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 45px;
}

.bnr_txt .vid_link_btn a {
  font-family: 'Gilroy-Regular';
  line-height: 29px;
  letter-spacing: -0.2px;
  color: var(--white);
  margin-left: 11px;
}

.app_tray {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 42px;
}

.app_tray>a:not(:last-child) {
  margin-right: 18px;
}

.ugo_req {
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ugo_req img {
  margin-right: 21px;
}

.go_to_sec {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  animation: flote 5s linear infinite;
}

@keyframes flote {
  0% {
    transform: translateY(0px) translateX(-50%);
  }

  50% {
    transform: translateY(40px) translateX(-50%);
  }

  100% {
    transform: translateY(0px) translateX(-50%);
  }
}

/* banner end */

/* featuers secton start */
.features {
  padding: 92px 0px 57px;
}

.section_heading h2 {
  max-width: 630px;
  text-align: center;
  margin: 0px auto 26px;
}

.section_heading p {
  max-width: 468px;
  text-align: center;
  margin: 0px auto;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  opacity: .7;
}

.process {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.process::after {
  content: '';
  background-image: url(../images/svgline.png);
  height: 2px;
  position: absolute;
  top: 36px;
  z-index: -1;
  display: block;
  margin: 0 auto;
  left: 13%;
  right: 13%;
}

.process li {
  max-width: 253px;
  text-align: center;
  counter-increment: li;
}

.process li:not(:last-child) {
  margin-right: 125px;
}

.process li .strps {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0px auto 46px;
  font-family: 'Gilroy-Bold';
  font-size: 36px;
  color: var(--white);
}

.process li .strps::before {
  content: counter(li);
}

.process li .strps1 {
  background-color: var(--yellow);
}

.process li .strps2 {
  background-color: var(--sky);
}

.process li .strps3 {
  background-color: var(--orenge);
}

.process li h3 {
  margin-bottom: 14px;
}

.process li p {
  letter-spacing: -0.2px;
  line-height: 29px;
  opacity: .7;
}

/* featuers secton end */

/* trested by section start */
.trested_by {
  padding: 57px 0px 90px;
  text-align: center;
}

.trested_by h4 {
  font-family: 'Gilroy-Bold';
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--gray);
  margin-bottom: 22px;
}

.trested_brand {
  display: flex;
  max-width: 776px;
  margin: 0 auto;
  padding: 0px 15px;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
}

.trested_brand li:not(:last-child) {
  margin-right: 15px;
}

/* trested by section end */


/* detail section start */
.vid_box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.vid_ply {
  width: 114px;
  height: 114px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--white);
}

.vid_ply img {
  max-width: 15px;
}

.vid_box img {
  width: 100%;
}

.detail {
  background-image: url(../images/Wave\ 2.svg);
  background-color: var(--yellow);
  padding: 445px 0px 145px;
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -332px;
  overflow-x: hidden;
  overflow-y: clip;
}

.detail .row+.row {
  margin-top: 150px;
}

.dtl_right h2 {
  max-width: 433px;
  margin-bottom: 15px;
}

.dtl_right p {
  font-size: 19px;
  line-height: 32px;
  opacity: .7;
  max-width: 435px;
}

.dtl_right ul {
  margin-top: 50px;
}

.dtl_right ul li+li {
  margin-top: 30px;
}

.dtl_right ul h3 {
  margin-bottom: 11px;
}

.dtl_right ul p {
  max-width: 390px;
}

.detail .row:nth-child(even) {
  flex-direction: row-reverse;
}

.detail .row:nth-child(odd) .dtl_right {
  padding-left: 40px;
}

.detail .row:nth-child(even) .dtl_right {
  padding-right: 40px;
}

.detail .row:nth-child(even) .dtl_lft {
  text-align: right;
}

/* detail section end */

/* how does it work */
.how_it_work {
  padding: 155px 0px 190px;
  background-color: var(--blue);
}

/* customize accordian */
.acc_box .accordion {
  padding: 15px 30px 0px;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.acc_box .accordion::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: var(--dynamic-color);
  left: 0;
  top: 0;
}

.acc_box .accordion-button {
  background-color: transparent;
  padding: 28px 0px;
}

.acc_box .accordion-button:focus {
  box-shadow: none;
}

.acc_box .accordion-item:first-of-type,
.acc_box .accordion-item:last-of-type {
  border-radius: 15px;
}

.acc_box .accordion-item {
  border: 0px;
}


.acc_box .accordion-button:not(.collapsed) {
  color: var(--primary-text-color);
}

.acc_box .accordion-button::after {
  background-image: url(../images/small-right.svg);
  background-size: 9px;
  width: 19px;
  height: 19px;
}


.acc_box .accordion-body {
  padding: 15px 0px;
}

.acc_box .accordion-body p {
  letter-spacing: -0.2px;
  line-height: 29px;
  opacity: .7;
  max-width: 456px;
}

/* customize accordian */
.how_it_work .lft_sec {
  color: var(--white);
}

.how_it_work .lft_sec p {
  opacity: .65;
}

.how_it_work .lft_sec h2 {
  color: var(--white);
  margin-bottom: 60px;
}

.how_it_work .lft_sec p {
  max-width: 384px;
  line-height: 32px;
}

.how_it_work .lft_sec ul {
  margin-top: 65px;
}

.how_it_work .lft_sec ul li {
  padding-left: 50px;
  background-image: url(../images/check_Icon.svg);
  background-repeat: no-repeat;
  background-position: left 3px;
}

.how_it_work .lft_sec ul li+li {
  margin-top: 43px;
}

.how_it_work .lft_sec ul h3 {
  color: var(--white);
  margin-bottom: 10px;
}

/* how does it work */

/* ugo hub secton start */
.ugohub_sec {
  padding: 110px 0px 95px;
  background: var(--pink) url(../images/spiral.png) no-repeat center top;
  background-size: 100%;
}

.ug_tx {
  padding-bottom: 40px;
}

.ug_lf h2 {
  color: var(--white);
}

.ug_lf span {
  font-family: 'Georgia-Italic';
  font-size: 32px;
}

.ug_rt {
  text-align: right;
}

.ug_rt img {
  max-width: 255px;
}

.ugh_fea_inr img {
  max-width: 50px;
  margin-bottom: 16px;
}

.ugh_fea_inr h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.ugh_fea_inr p {
  opacity: .7;
  color: var(--white);
  line-height: 29px;
  letter-spacing: -0.2px;
  max-width: 295px;
}

.ugohub_sec .ugh_btx {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 58px;
  font-family: 'Gilroy-Bold';
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--primary-text-color);
}

.get_st_btn {
  text-align: center;
}

/* ugo hub secton end */

/* latest update start */
.latest_update {
  padding: 140px 0px 198px;
}

.latest_update .latest_update_inr {
  max-width: 527px;
  margin: 0 auto;
  padding: 0px 15px;
}

.latest_update_inr {
  text-align: center;
}

.latest_update_inr p {
  margin: 16px 0px 40px;
  max-width: 527px;
  font-size: 19px;
  line-height: 32px;
}

.update_frm {
  max-width: 369px;
  margin: 0 auto;
}

.update_frm input[type="email"] {
  padding: 15px 22px;
  border-radius: 8px;
  border: solid 1px var(--border-color);
  width: 100%;
  height: 59px;
  display: block;
  margin: 0px auto 17px;
}

.update_frm input[type="email"]:focus {
  border-color: var(--yellow);
}

.update_frm input[type="submit"].glb_btn {
  width: 100%;
  height: 59px;
  color: var(--white);
}

.update_frm input[type="submit"].glb_btn:hover {
  color: var(--yellow);
}

.latest_update_inr .late_spara {
  margin: 40px auto 0px;
  font-size: 15px;
  line-height: 26px;
  max-width: 365px;
}

/* latest update end */


/* driver banner start*/
.bnr {
  padding: 165px 0px 194px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bnr_content h1 {
  max-width: 680px;
  margin-bottom: 20px;
}

.do_bnr .bnr_content h1 {
  max-width: 605px;
}

.bnr_content p {
  font-family: 'Gilroy-ExtraBold';
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  opacity: .7;
  margin-bottom: 50px;
  color: var(--white);
}

.app_download label {
  font-family: 'Gilroy-Bold';
  font-size: 13px;
  letter-spacing: 1.63px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.app_download .app_tray {
  justify-content: flex-start;
  padding-bottom: 0px;
}

/* driver banner end*/

/* why section */
.why_sec {
  padding: 145px 0px 160px;
}

.why_sec h2 {
  text-align: center;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 17px;
}

.why_sec h2 span {
  font-family: 'Georgia-Italic';
  color: var(--dynamic-color);
}
.why_sec h3 {
  margin-bottom: 20px;
}
.why_sec  p {
  max-width: 790px;
  margin: 0 auto;
  font-size: 19px;
  text-align: left;
  line-height: 32px;
}

.sec_hdng {
  padding-bottom: 96px;
}

.why_img {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.why_img::after {
  content: '';
  background-image: url(../images/after_img.png);
  width: 397px;
  right: -41px;
  bottom: -43px;
  height: 547px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
}

.why_img>img {
  filter: drop-shadow(0px 30px 34px rgb(0, 0, 0, 9.43%));
}

.notificatin {
  position: absolute;
  bottom: 97px;
  left: -74px;
  padding: 17px 24px 19px 42px;
  border-radius: 10px;
  box-shadow: 0 62px 64px -10px rgba(1, 23, 48, 0.12);
  background-color: var(--primary-text-color);
  display: flex;
  align-items: center;
}

.oval_star {
  width: 39px;
  height: 39px;
  padding: 4px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
}

.oval_star img {
  max-width: 24px;
}

.notificatin_txt {
  margin-left: 15px;
  text-align: left;
}

.notificatin_txt span {
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.1px;
  opacity: .7;
  line-height: 26px;
}

.notificatin_txt h5 {
  font-family: 'Gilroy-Bold';
  color: var(--white);
  line-height: 29px;
}

.why_list h3 {
  margin-bottom: 10px;
}

.why_list p {
  max-width: 340px;
  letter-spacing: -0.2px;
  line-height: 29px;
  opacity: .7;
}

.why_list li+li {
  margin-top: 50px;
}

.why_list li {
  padding-left: 65px;
  counter-increment: li;
  position: relative;
}


.why_list li::before {
  content: counter(li);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: var(--dynamic-color);
  color: var(--white);
  font-family: 'Gilroy-Bold';
  position: absolute;
  left: 0;
  top: 3px;
}

.why_cont .row {
  align-items: center;
}

/* type of work start */
.typofwrk {
  padding: 130px 0px 150px;
  background: var(--dynamic-color) url(../images/spiral.png) no-repeat center top;
  background-size: 100%;
}

.tyofwok_hdng {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tyof_lft h2 {
  max-width: 430px;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.2px;
  margin-bottom: 61px;
}

.tyorthem .tyof_lft h2 {
  color: var(--white);
}

.tyorthem .tyof_lft p {
  font-family: 'Gilroy-ExtraBold';
}

.tyof_lft p {
  font-size: 19px;
  line-height: 32px;
  max-width: 388px;
  letter-spacing: -0.2px;
  opacity: .65;
}

.wrk_typ_wrp {
  padding-top: 45px;
}

.wrk_type_box {
  padding: 36px 34px;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  transition: all 400ms ease-in-out;
}

.wrk_type_box:hover {
  background-color: var(--white);
}

.tyorthem .wrk_type_box:hover h3 {
  color: var(--blue);
}

.wrk_type_box:hover h3 {
  color: var(--dynamic-color);
}

.wrk_type_box .svg_icon {
  margin-bottom: 22px;
}

.wrk_type_box h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  transition: all 300ms ease-in-out;
  color: var(--white);
}

/* type of work end */

/* easy get started start*/
.how_getstrt {
  padding: 178px 0px 215px;
}

.get_strt_hdng {
  text-align: center;
}

.how_getstrt .process {
  margin-top: 157px;
}

/* easy get started end*/

/* job types start */
.frm_smvan {
  padding: 140px 0px 100px;
  background-color: #f4f7fa;
  overflow-x: hidden;
  overflow-y: clip;
}

.frm_smvan .frm_smvan_lft h2 {
  max-width: 535px;
  margin-bottom: 34px;
}

.frm_smvan .frm_smvan_lft p {
  max-width: 407px;
  line-height: 32px;
  font-size: 19px;
  letter-spacing: -0.2px;
  margin-bottom: 78px;
  opacity: .7;
}

.frm_col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.frm_smvan_rgt.frm_col {
  margin-left: 20px;
}

.frm_col_img img {
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
}

.frm_smvan_rgt .app_download {
  margin-top: auto;
  color: var(--blue);
}

.frm_smvan_rgt .app_download label {
  color: var(--blue);
}

/* job types end */

/* questions sections */
.questions {
  padding: 119px 0px 225px;
  background-color: var(--dynamic-color);
}

.questions .que_lft h3 {
  font-size: 36px;
  line-height: 58px;
  letter-spacing: -1.8px;
  margin-bottom: 50px;
  color: var(--white);
}

/* questions sections */


/*  tempurary driver */
.trmp_driv {
  padding: 139px 0px 10px;
}

.trmp_driv_hdng {
  text-align: center;
}

.trmp_driv_hdng h2 {
  max-width: 620px;
  margin: 0 auto 88px;
}

.trmp_driv_hdng h2 span {
  display: block;
  font-size: 32px;
  line-height: 58px;
  font-family: 'Georgia-Italic';
}

.trmp_driv_hdng p {
  max-width: 500px;
  line-height: 32px;
  letter-spacing: -0.2px;
  font-size: 19px;
  opacity: .7;
  margin: 0px auto 57px;
}

.ugo_driv_hdng {
  text-align: center;
}
.ugo_driv_hdng ul {
  list-style-type: disc;
  padding-left: 40px;
  columns: 2;          
  column-gap: 40px;
  margin: 20px 0px;
}

.ugo_driv_hdng ul li {
  background: none;
  color: inherit;
  padding: 0;
  margin: 0 0 8px 0;
  border: none;
  border-radius: 0;
  text-align: left;
  font-weight: 400;
  font-size: 19px;
}


.ugo_driv_hdng h2 {
  max-width: 700px;
  margin: 0 auto 0px;
}

.ugo_driv_hdng h2 span {
  display: block;
  font-size: 32px;
  line-height: 58px;
  font-family: 'Georgia-Italic';
}

.ugo_driv_hdng p {
  max-width: 550px;
  line-height: 32px;
  letter-spacing: -0.2px;
  font-size: 19px;
  
}

.trmp_frm img {
  max-width: 840px;
  width: 100%;
  display: block;
  margin: 0 auto;
  box-shadow: 0px 42px 44px -10px rgba(1, 23, 48, 11.6%);
}

/* get started */
.get_started {
  padding-bottom: 100px;
}

.get_started .hdng_txt h3 {
  text-align: center;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -1.2px;
  margin-bottom: 46px;
}

.get_started .hdng_txt h2 {
  text-align: center;
  margin-bottom: 40px;
}

.ugohub_getstart {
  padding-top: 100px;
}

.ugohub_getstart .ugh_fea_inr h3 {
  color: var(--primary-text-color);
}

.ugohub_getstart .ugh_fea_inr p {
  color: var(--primary-text-color);
}

/* driver see job */
.driv_see_job {
  padding: 49px 0px 40px;
  background-color: var(--bg-color-2);
}

.driv_see_job .row {
  align-items: center;
}

.drv_lft_txt h4 {
  max-width: 426px;
  margin-bottom: 20px;
}

.drv_lft_txt p {
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 426px;
  margin-bottom: 38px;
  opacity: .7;
}

.drv_rt_img {
  margin: 0px -25px;
}

/* driver see job */

/* counter section start */
.counter {
  padding: 80px 0px 75px;
  border-bottom: 1px solid var(--border-color);
}

.counter_wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px -45px;
}


.counter_inr {
  display: flex;
  align-items: center;
  padding: 0px 45px;
}

.counter_inr .count_numb {
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -1.8px;
  margin-right: 30px;
}

.counter_inr .count_txt p {
  max-width: 174px;
  line-height: 29px;
  letter-spacing: -0.2px;
  opacity: .7;
}

/* counter section end */

/* manage section start */
.manage_job {
  padding: 78px 0px 110px;
}

.manage_head {
  text-align: center;
  padding-bottom: 80px;
}

.manage_head h4 {
  margin-bottom: 17px;
}

.manage_head p {
  max-width: 589px;
  margin: 0 auto;
  font-size: 19px;
  opacity: .7;
  line-height: 32px;
}

.manage_lft {
  position: relative;
}

.manage_col {
  margin-left: 65px;
}

.booking_count {
  padding: 22px 23px 27px 38px;
  border-radius: 11px;
  background-color: var(--yellow);
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 337px;
}

.booking_count_pink {
  padding: 22px 23px 27px 38px;
  border-radius: 11px;
  background-color: #f073ab;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 337px;
}

.booking {
  display: flex;
  align-items: center;
}

.booking span {
  font-family: 'Gilroy-Bold';
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 1.8px;
  margin-right: 22px;
  width: 43px;
}

.booking p {
  font-family: 'Gilroy-ExtraBold';
  font-size: 25px;
  line-height: 29px;
  letter-spacing: -0.2px;
  opacity: .7;
}

.manage_rht .why_list li::before {
  background-color: #fcfae5;
  color: var(--yellow);
}

/* manage section end */

/* cilent review start */
.client_review {
  padding: 110px 0px 93px;
  background-color: var(--bg-color-2);
}

.review_box {
  text-align: center;
  position: relative;
}


.review_wrp>div:nth-child(2n) .review_box::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 170px;
  background-color: var(--border-color);
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.review_box .aveta {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  margin: 0px auto 45px;
  overflow: hidden;
  object-fit: cover;
}

.review_box h4 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.review_box p {
  max-width: 356px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  opacity: .7;
  margin-bottom: 23px;
}

.review_box .clint_info h5 {
  font-family: 'Gilroy-Bold';
  line-height: 29px;
  letter-spacing: -0.2px;
}

.review_box .clint_info span {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: -0.1px;
  opacity: .7;
}

/* cilent review end */

/* agerage pricing start */
.average_pricing {
  padding: 90px 0px 120px;
  background-color: var(--blue);
}

.avg_pric_hdng {
  text-align: center;
  padding-bottom: 100px;
}

.avg_pric_hdng h4 {
  color: var(--white);
  margin-bottom: 17px;
}

.avg_pric_hdng p {
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 589px;
  margin: 0 auto;
  opacity: .65;
  color: var(--white);
}


.avg_pric_tab_wrp ul {
  display: flex;
  /* align-items: center; */
  justify-content: center;
}


.avg_pric_tab_wrp ul button {
  padding: 30px;
  width: 194px;
  min-height: 194px;
  background-color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 400ms ease-in-out;
  margin: 0px 10px;
  border: none;
  height: 100%;
}

.avg_price_pink_theme .avg_pric_tab_wrp ul button.active {
  background-color: var(--pink);
}

.avg_price_pink_theme .avg_pric_tab_wrp ul button svg path {
  fill: var(--white);
}

.avg_pric_tab_wrp ul button.active {
  background-color: var(--white);
}

.avg_pric_tab_wrp ul button .svg_icon {
  margin-bottom: 22px;
}

.avg_pric_tab_wrp ul button svg path {
  fill: var(--blue);
}

.avg_pric_tab_wrp ul button h3 {
  font-family: "Inter",
    sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  transition: all 300ms ease-in-out;
  color: var(--blue);
  max-width: 117px;
}

.avg_pric_tab_wrp ul button p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--black);
}

.age_pric_tabcont p {
  font-family: 'Gilroy-Bold';
  color: var(--white);
  text-align: center;
  padding-top: 60px;
  letter-spacing: -1.8px;
  font-size: 48px;
  line-height: 58px;
}

.age_pric_tabcont p label {
  font-family: 'Gilroy-Light';
}

.age_pric_tabcont p span {
  font-size: 16px;
}

/* agerage pricing start */

/* questions section start */
.questions_sec {
  padding-bottom: 200px;
  background-color: var(--blue);
  counter-reset: count;
  overflow-x: hidden;
  overflow-y: clip;
}

.ques_wrp {
  padding-left: 48px;
  margin-bottom: 60px;
  position: relative;
  counter-increment: count;
}

.que_pink .ques_wrp::before {
  background-color: var(--pink);
}

.ques_wrp::before {
  content: '';
  background-image: url(../images/alert-que.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 13px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: var(--yellow);
  position: absolute;
  left: 0;
  top: 4px;
}

.ques_wrp h5 {
  font-family: 'Gilroy-Bold';
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;

}

/* .ques_wrp h5::after {
  content: counter(count);
} */

.ques_wrp p {
  color: var(--white);
  line-height: 29px;
  letter-spacing: -0.2px;
  opacity: .65;
  margin-bottom: 26px;
}

.que_pink .ques_wrp .link_btn {
  color: var(--pink);
}

.que_pink .ques_wrp .link_btn svg path {
  stroke: var(--pink);
}

.ques_wrp .link_btn {
  color: var(--yellow);
}

.ques_wrp .link_btn:hover {
  color: var(--white);
}

.ques_wrp .link_btn:hover svg path {
  stroke: var(--white);
}

.ques_wrp .link_btn svg path {
  stroke: var(--yellow);
}

.que_sec_inr .supprt a {
  color: var(--white);
  line-height: 29px;
  letter-spacing: -0.2px;
  text-align: center;
  display: block;
  padding-top: 20px;
}

.que_sec_inr .supprt a span {
  color: var(--yellow);
}

/* questions section start */

.contact_us {
  padding-top: 126px;
}

.contact_us_hdng {
  text-align: center;
  padding-bottom: 57px;
}

.contact_us_hdng h1 {
  color: var(--primary-text-color);
  margin-bottom: 44px;
}

.contact_us_hdng p {
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 600px;
  margin: 0 auto;
}

.conct_wrp {
  display: flex;
  justify-content: center;
  position: relative;
}

.conct_wrp .conct_frm {
  padding: 20px 25px 29px;
  border-radius: 10px;
  box-shadow: 0 34px 33px -23px rgba(22, 28, 45, 0.13);
  border: solid 1px var(--border-color);
  background-color: #fff;
  max-width: 350px;
  width: 100%;
}

.conct_wrp .conct_frm .fld_wrp+.fld_wrp {
  margin-top: 20px;
}

.conct_wrp .conct_frm .fld_wrp label {
  font-family: 'Gilroy-Bold';
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 7px;
}

.conct_wrp .conct_frm .fld_wrp input,
.conct_wrp .conct_frm .fld_wrp textarea {
  height: 50px;
  padding: 12px 20px 12px 18px;
  border-radius: 8px;
  border: solid 1px var(--border-color);
}

.conct_wrp .conct_frm .fld_wrp input:focus,
.conct_wrp .conct_frm .fld_wrp textarea:focus {
  border-color: var(--yellow);
  box-shadow: none;
}

.conct_wrp .conct_frm .fld_wrp textarea {
  height: auto;
}

.conct_wrp .conct_frm .fld_wrp input::placeholder,
.conct_wrp .conct_frm .fld_wrp textarea::placeholder {
  font-size: 15px;
  line-height: 26px;
  opacity: .7;
}

.frm_submit_btn {
  margin-top: 100px;
}

.frm_submit_btn .glb_btn {
  width: 100%;
}

.frm_submit_btn .glb_btn:hover {
  color: var(--yellow);
}

.conct_dtl .nav_right {
  margin: 0px 0px 0px 175px;
}

.conct_dtl .nav_right ul li a:hover {
  color: var(--yellow);
}

.conct_dtl .nav_right .raise_support:hover {
  color: var(--yellow);
}

.map_wrp img {
  width: 100%;
  min-height: 200px;
}

.map_wrp {
  margin-top: -225px;
}

/* contact us */

/* what sec start */
.what_sec {
  padding: 127px 0px 86px;
}

.what_sec_hdng {
  text-align: center;
  padding-bottom: 58px;
}

.what_sec_hdng h1 {
  color: var(--primary-text-color);
  margin-bottom: 40px;
}

.what_sec_hdng p {
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.2px;
  font-size: 19px;
  line-height: 32px;

}

.what_sec_hdng p[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: .7;
}

.what_sec_hdng p span {
  font-family: 'Gilroy-Bold';
}

.what_sec_hdng h1 span {
  font-family: 'Georgia-Italic';
  display: block;
  font-size: 40px;
  line-height: 45px;
  color: #707070;
}

.what_img {
  margin-bottom: 30px;
}

.what_img img {
  width: 100%;
  border-radius: 10px;
}

.what_btm_txt .txt_lft {
  max-width: 450px;
  margin-right: auto;
}

.what_btm_txt .txt_right p {
  max-width: 469px;
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  opacity: .7;
}

.what_btm_txt .txt_right p+p {
  margin-top: 27px;
}

/* what sec end */

/* current agency start */
.currency_agency {
  padding: 140px 0px 67px;
  background-color: var(--bg-color-2);
}

.lft_gird {
  display: flex;
}

.lft_gird .gird_col {
  display: flex;
  flex-direction: column;
}

.lft_gird .gird_col:nth-child(2) img:first-child {
  margin-top: 42px;
}

.gird_col img {
  max-width: 224px;
  width: 100%;
  border-radius: 10px;
}

.gird_col img+img {
  margin-top: 26px;
}

.gird_col+.gird_col {
  margin-left: 26px;
}

.right_txt h2 {
  margin-bottom: 38px;
}

.right_txt p {
  font-size: 19px;
  line-height: 32px;
  letter-spacing: -0.2px;
  max-width: 495px;
}

.right_txt p+p {
  margin-top: 30px;
}

/* current agency start */

/* our team section start */
.our_team {
  padding: 260px 0px 100px;
  background-image: url(../images/Wave.svg);
  background-color: var(--yellow);
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -2px;
  overflow-x: hidden;
}

.our_team_heading {
  text-align: center;
  padding-bottom: 68px;
}

.our_team_heading h2 {
  margin-bottom: 25px;
}

.our_team_heading p {
  max-width: 610px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 32px;
  opacity: .7;
}

.team_members_wrp {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
  padding-bottom: 58px;
}

.team_member_box {
  width: 25%;
  padding: 0px 15px 30px;
}

.team_member_box img {
  width: 100%;
  margin-bottom: 28px;
}

.team_member_box h3 {
  margin-bottom: 5px;
}

.team_member_box p {
  line-height: 29px;
  opacity: .7;
}

.join_our_tem {
  display: flex;
}

.join_our_tem .join_txt {
  margin-left: 40px;
}

.join_our_tem .join_txt h4 {
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.5px;
  max-width: 185px;
  margin-bottom: 22px;
}

.join_our_tem .link_btn {
  color: var(--orenge);
}

.join_our_tem .link_btn:hover {
  color: var(--white);
}

.join_our_tem .link_btn svg path {
  stroke: var(--orenge);
}

/* our team section end */


.conct_wrp .err_msg {
  margin-top: 10px;
}

/* footer start */
footer {
  padding: 50px 0px 30px;
  background-color: var(--yellow);
  border-top: 1px solid #fff;
}

footer-pink {
  padding: 50px 0px 50px;
  background-color: var(--pink);
  border-top: 1px solid #fff;
}

.footer_nav {
  padding-bottom: 20px;
}

.footer_menu_wrp h3 {
  font-family: 'Gilroy-Bold';
  font-size: 22px;
  line-height: 26px;
  color: var(--blue);
  margin-bottom: 28px;
}

.footer_menu_wrp ul li {
  position: relative;
  width: fit-content;
}

.footer_menu_wrp ul li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: var(--white);
  left: 0;
  right: 0;
  bottom: -8px;
  transition: all 300ms ease-in-out;
}

.footer_menu_wrp ul li:hover::after {
  width: 100%;
}

.footer_menu_wrp ul li a {
  color: #000;
}

.footer_menu_wrp ul li a:hover {
  color: #fff;
}

.footer_menu_wrp ul li+li {
  margin-top: 25px;
}

.footer_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #161c2d;
  padding-top: 30px;
}

.social_links {
  display: flex;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.social_links li {
  margin: 0 15px;
}

.social_links li a:hover img {
  filter: invert(100%) sepia(8%) saturate(7499%) hue-rotate(190deg) brightness(105%) contrast(105%);
}

.footer_btm .coppyright {
  font-size: 15px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.65);
}
.footer_btm .coppyright a {
   color: #161c2d;
   font-weight: bold;
}

.ftr_details .nav_right {
  margin: 0px;
}

.ftr_details .nav_right h4 {
  line-height: 26px;
  margin-bottom: 28px;
}

.ftr_details .nav_right ul li a {
  font-size: 17px;
}

/* footer end */


.video_container video {
  max-width: 100%;
  display: block;
}

@media only screen and (max-width: 600px) {
  .callus-mob {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  .callus {
    display: none;
  }
}
.nav_toggle_pink {
    max-width:37px ;
}

html{scroll-behavior:smooth}
.primary-nav{display:flex;gap:42px}
.primary-nav .nav-link{color:#fff;text-decoration:underline;text-underline-offset:6px}
.primary-nav .nav-link:hover{opacity:.8}
.logo-text{margin-left:12px}

.gradient-bg {
  background: linear-gradient(90deg, #a5d8ff 0%, #fbc0de 100%);
  padding: 75px 0px 100px;
  margin: 75px 0px 0px;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1300px;
    }
}
.get_started ul li {
  justify-content: center;
  text-align: center;
}
.features-sec{background:var(--pink);padding:70px 0}
.features-sec .manage_head h4{color:#1a2233}
.features-acc .accordion{background:transparent;padding:0}
.features-acc .accordion-item{background:transparent;border:0;margin-bottom:18px}
.features-acc .feat-btn {
  background:#fff;
  border-radius:10px;
  padding:0px 24px;
  font-family:'Gilroy-Bold';
  font-size:20px;
  color:var(--primary-text-color);
  justify-content:space-between;
}

.features-acc .feat-btn::after {
  content:'+';
  font-size:32px;
  font-weight:700;
  line-height:0.5;
  color:#f073ab; 
  background:none;
  transform:none !important;
}

.features-acc .feat-btn:not(.collapsed)::after {
  content:'–';
  font-size:32px;
  font-weight:700;
  color:#f073ab;
}
.features-acc .accordion-button:focus{box-shadow:none}
.features-acc .accordion-button{box-shadow:none}
.features-acc .accordion-collapse .accordion-body{background:#fff;border:1px solid #fff;border-radius:10px;margin-top:12px;padding:24px}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px 40px}
.feature{display:flex;align-items:flex-start;gap:14px}
.feature img{width:34px;height:34px}
.feature h5{font-family:'Gilroy-Bold';font-size:17px;line-height:22px;margin-bottom:4px;margin-top:5px}
.feature p{font-size:15px;line-height:22px;opacity:.8;margin:0}
.comp-row {margin: 25px 0px;}

.cta-sec {
  background-color: #121828; 
  padding: 90px 0;
}

.cta-sec h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 25px;
}
.support-sec {
  background: #f073ab; 
  padding: 90px 0 0px;
  color: #fff;
}

.support-sec h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-sec h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.support-sec p {
  max-width: 790px;
  margin: 20px auto;
  font-size: 19px;
  text-align: left;
  line-height: 32px;
}
.driv_see_job p {
  max-width: 790px;
  margin: 20px auto;
  font-size: 19px;
  text-align: left;
  line-height: 32px;
}

.support-sec .btn-wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.pricing-sec{padding:90px 0;background:#f3f6f8}
.pricing-tabs{display:grid;grid-template-columns:repeat(1,1fr);margin:0;}
.pricing-tabs>div{background:#f073ab;border-radius:8px 8px 0 0}
.pricing-tabs>div h3{text-transform:uppercase;letter-spacing:.8px;font-size:34px;padding:16px;color:#fff; margin: 0;text-align: center;}
.price-card{background:#121828;color:#fff;border-radius:0 0 8px 8px;padding:28px 26px;display:flex;flex-direction:column;height:100%;text-align: center;}
.price-card .price-note{opacity:.9;margin:0 0 8px;font-size:30px;}
.price-card .sub-note{opacity:.7;font-size:12px;line-height:1.4;margin-bottom:14px; min-height: 30px;}
.price-card h4{font-size:22px;margin:16px 0 12px}
.price-card ul{margin:0 }
.price-card ul li{margin:10px 0}
.price-card .glb_btn{margin-top: auto;}
.pricing-sec .row > [class*="col-"] {margin-bottom: 50px;}
@media (max-width: 980px){
  .pricing-sec .row > [class*="col-"] {
    margin-bottom: 60px;
  }
}




.contact-wrapper {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  margin-top: 30px;
}
.contact_form .form-label {
  color: #121828;
  opacity: 1;
}

.form-control.underline {
  border-bottom: 1px solid rgba(0,0,0,.3);
  color: #121828;
  background: transparent;
}

.form-control.underline:focus {
  border-bottom-color: #121828;
  color: #121828;
}
.contact_form .form-control {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.3);
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 6px;
  box-shadow: none;
  font-size: 15px;
  color: #121828;
}

.contact_form .form-control:focus {
  border-bottom: 1px solid #121828;
  box-shadow: none;
  outline: none;
}
.contact-sec .form-control {
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,.3) !important;
  background: transparent !important;
}

.contact-sec{padding:80px 0;background:#121828}
.contact-sec .manage_head h2{color:#fff;margin-bottom:24px}
.contact_card{background:#f073ab;border-radius:10px;padding:28px;color:#1a2233}
.contact_card h3{color:#1a2233;margin-bottom:6px}
.contact_card .contact_list{list-style:none;padding:0;margin:18px 0}
.contact_card .contact_list li{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.contact_card .contact_list a{color:#fff;text-decoration:underline}
.btn-white{background:#fff;color:#f073ab;border:1px solid #fff}
.btn-white:hover{background:#ffe6f0;border-color:#ffe6f0;color:#f073ab}
.support-modal .modal-content{border-radius:16px;padding:10px 10px 20px}
.support-modal .modal-title{font-size:22px;font-weight:700}
.support-modal .modal-sub{text-align:center;margin-top:-6px;margin-bottom:18px;opacity:.8}
.support-modal .form-control.underline{border-bottom:1px solid #ccc;color:#111}
.support-modal .form-control.underline:focus{border-bottom-color:#111}

    .glb_link .arricn {
    margin-left: 20px;
}
.ugh_fea_inr img {
    max-width: 38px;
}
footer {
  padding: 50px 0px 30px;
  background-color: var(--pink);
  border-top: 1px solid #fff;
} 
.video_container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video_container video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.video_container .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #f073ab;
  color: #fff;
  font-size: 32px;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: background .2s;
}

.video_container .video-play:hover {
  background: #e35793;
}
.nav_btm {
    margin: 25px 0px;
  display: flex;
  gap: 15px; 
}
.hedr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #121828;
}
body {
  padding-top: 80px; 
}

