/*--------------------------------------------------------------------------------------*/
/*General-Css-Here
/*--------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

a {
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

a:hover {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1288px;
    margin: auto;
}

figure {
    margin: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    color: #2A2A4B;
}

[type="radio"]:checked+label::before,
[type="radio"]:not(:checked)+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #AAAAB5;
    border-radius: 100%;
    background: #fff;
    transform: translateY(-50%);
}

[type="radio"]:checked+label::after,
[type="radio"]:not(:checked)+label::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #51C1F2;
    position: absolute;
    top: 50%;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    transform: translateY(-50%) !important;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.modal-dialog-scrollable {
	height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
	max-height: 100%;
	overflow: hidden
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto
}

@media (min-width:576px) {
	.modal-dialog-scrollable {
		height: calc(100% - 3.5rem)
	}

	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem)
	}
}

/*--------------------------------------------------------------------------------------*/
/*Header-Css-Here
/*--------------------------------------------------------------------------------------*/
header {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

header .menus-inner>ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .menus-inner>ul>li+li {
    margin-left: 29px;
    padding: 0 0;
}

header .notification_inner a {
    position: relative;
    display: block;
}

header .notification_inner .status_notification {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #FF0A0A;
    border-radius: 50%;
    right: 6px;
    top: 3px;
}

header .row {
    align-items: center;
    flex-wrap: nowrap;
}

header .switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

header .switch input {
    display: none;
}

header .slider_swich {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00B3E4;
    border-radius: 40px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header .slider_swich::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    background: #fff;
    border-radius: 50%;
    left: 3px;
    bottom: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header input:checked+.slider_swich::before {
    -webkit-transform: translateX(16px);
    -moz-transform: translateX(16px);
    transform: translateX(16px);
}

.profile_drop_down {
    display: none;
    position: absolute;
    top: 100%;
    background: #FFFFFC;
    border-radius: 10px;
    box-shadow: 0px 0px 13px #e6e6e6;
    min-width: 308px;
    z-index: 9999;
    right: 0;
    transition: 0.5s ease-in-out;
    opacity: 0;
}

.profile_user_profiles {
    display: flex;
    align-items: center;
    padding: 30px 15px;
}

.profile_user_name {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #3F3E3E;
    padding-left: 19px;
}

.profile_drop_down ul {
    list-style-type: none;
}

.profile_drop_down li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    opacity: 0.8;
}

.profile_drop_down li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    opacity: 0.8;
}

.profile_drop_down li img {
    padding-right: 14px;
}

.profile_drop_down.open {
    opacity: 1;
    display: block;
}

header .menus-inner>ul>.profile_inner:hover .profile_drop_down {
    opacity: 1;
    display: block;
}


/*--------------------------------------------------------------------------------------*/
/*slider-Css-Here
/*--------------------------------------------------------------------------------------*/
.hero_banner_wrapper {
    padding: 66px 0 32px;
    position: relative;
}

.hero_banner_wrapper h1 {
    font-weight: 700;
    font-size: 55px;
    line-height: 72px;
    color: #2A2A4B;
}

.hero_banner_wrapper h1 span {
    color: #54C1F1;
}

.hero_banner_wrapper h6 {
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    color: #0D1216;
    padding: 15px 0 30px;
}

.hero_banner_wrapper h6 span {
    color: #51C1F2;
}

.hero_banner_wrapper p {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: rgba(42, 42, 75, 0.6);
    max-width: 606px;
    margin: 0;
}

.comman-vector-heading h3 {
    color: #2A2A4B;
    font-weight: 700;
    font-size: 25px;
    line-height: 33px;
    position: relative;
    padding-bottom: 24px;
    display: inline-block;
}

.comman-vector-heading h3::after {
    content: "";
    background: url('../img/riban-vector.png') no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    pointer-events: none;
    height: 21px;
}

.comman-vector-heading {
    padding-top: 127px;
}

.right-banner-hero {
    position: relative;
    background: url('../img/bulding.png');
    webkit-animation: slide 20s linear infinite;
    animation: slide 20s linear infinite;
    background-repeat: round;
}

.right-banner-hero figure img {
    max-width: unset !important;
    position: relative;
    left: -99px;
}

.right-banner-hero::after {
    position: absolute;
    content: "";
    background: url('../img/vector-riban-2.png') no-repeat;
    width: 967px;
    height: 113px;
    bottom: -36px;
    z-index: -1;
    left: -100px;
}

.hero_banner_wrapper::after {
    position: absolute;
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, rgba(81, 193, 242, 0.144) 0%, rgba(217, 217, 217, 0) 100%);
    width: 909px;
    height: 501px;
    left: 0;
    bottom: -44%;
    pointer-events: none;
}

.car-box {
    position: absolute;
    bottom: 13px;
    z-index: 1;
    left: -97px;
}

.wheel-1 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: -62px;
    -webkit-animation: rotateWheel 6s infinite linear;
    animation: rotateWheel 6s infinite linear;
}

.wheel-2 {
    position: absolute;
    bottom: 0;
    z-index: 1;
    -webkit-animation: rotateWheel 6s infinite linear;
    animation: rotateWheel 6s infinite linear;
    left: 173px;
}

.btn_sub:hover {
    background: #000;
}

@-webkit-keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Standard syntax */
@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero_banner_wrapper::before {
    width: 725px;
    pointer-events: none;
    height: 501px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(253, 213, 102, 0.168) 0%, rgba(217, 217, 217, 0) 100%);
    content: "";
    position: absolute;
    top: -173px;
    left: -108px;
}

.peoples-up {
    position: absolute;
    right: 0;
    bottom: 0;
    animation: float-bob 2s ease-in-out infinite;
}

/*--------------------------------------------------------------------------------------*/
/*pickup-form-Css-Here
/*--------------------------------------------------------------------------------------*/

.search-form-wrapper .form_contact {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px;
    padding-left: 29px;
}

.btn_sub {
    border: none;
    background: #51C1F2;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    color: #fff;
    width: 100%;
    padding: 19px 11px;
}

.search-form-wrapper .form-group {
    position: relative;
    margin: 0;
    padding: 15px 0;
}

.search-form-wrapper .form-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.search-form-wrapper .form-control {
    background: transparent !important;
    outline: 0;
    border: none !important;
    color: #999999;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    padding-left: 46px;
}

.search-form-wrapper .form-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.search-form-wrapper .form-group {
    position: relative;
    margin: 0;
    padding: 15px 0;
    border-right: 2px solid rgba(153, 153, 153, 0.1);
}

.form-group.date {
    border-right: none;
}

.search-form-wrapper .form-control::placeholder {
    color: #999999;
    opacity: 1;
}

.form-group.user {
    border-right: none;
}

.col-md-2.lest-border {
    border-left: 2px solid rgba(153, 153, 153, 0.1);
    padding-left: 25px;
}

.search-form-wrapper .form-control:focus {
    box-shadow: unset !important;
}

.search-form-wrapper {
    position: relative;
    margin-bottom: -33px;
    z-index: 1;
}

.search-form-wrapper .form_contact .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 11px 42px;
}

.select2-dropdown {
    font-size: 14px;
}

input#daterange {
    background: transparent !important;
    outline: 0;
    border: none !important;
    color: #999999;
    font-weight: 700;
    font-size: 12px;
    line-height: 23px;
    padding-left: 35px;
    width: 100%;
    cursor: pointer;
}

.d-done {
    display: none !important;
}

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

.col-md-2.none_padding {
    padding: 0;
}

.parsley-errors-list {
    list-style: none;
    position: absolute;
    bottom: 0;
    font-size: 11px;
}

.parsley-errors-list.filled {
    color: red;
}



ul#parsley-id-61 {
    position: absolute !important;
    bottom: -15px;
}


.row.inner_contact_form input::-webkit-outer-spin-button,

.row.inner_contact_form input::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

.row.inner_contact_form .hidenumber {
    -moz-appearance: textfield;

}

/*--------------------------------------------------------------------------------------*/
/*pickup-Rules-Css-Here
/*--------------------------------------------------------------------------------------*/
.pickup_wrapper_box {
    background: #51C1F2;
    padding: 100px 0 63px;
    position: relative;
}

.pickup_wrapper_box article {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(47, 180, 99, 0.2);
    border-radius: 15px;
    padding: 65px 44px;
    text-align: center;
    height: 100%;
}

.picup_content h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 31px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 13px;
}

.picup_content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #6C728C;
    margin: 0;
}

.pickup_wrapper_box article figure {
    height: 185px;
}

.pickup_wrapper_box .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
}

.pickup_wrapper_box .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: multiply;
}

.car_brainds_wrapper {
    padding: 81px 0;
}

.car_brainds_wrapper article h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 31px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.9);
    padding-top: 15px;
}

.car_brainds_wrapper figure {
    height: 71px;
}

.car_brainds_wrapper .car_brainds_child {
    padding-top: 15px;
    padding-bottom: 15px;
}

.car_brainds_wrapper article {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 42px 11px;
    text-align: center;
}

.comman-wrapper-box {
    padding: 73px 0;
}

.comman-heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 59px;
    color: #2A2A4B;
    margin: 0;
    padding-bottom: 7px;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.right-better-research p {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: rgba(42, 42, 75, 0.6);
}

.comman-heading h2::after {
    position: absolute;
    content: "";
    right: -31px;
    bottom: 0;
    background: url('../img/riban-2.png') no-repeat;
    width: 139px;
    height: 18px;
}

.bg-change {
    background: rgba(81, 193, 242, 0.1);
}

.right-better-research p:last-child {
    margin: 0;
}

.comman-wrapper-box.next-shape .comman-heading h2::after {
    bottom: -12px;
    right: 0;
}


/*--------------------------------------------------------------------------------------*/
/*pickup-Rules-Css-Here
/*--------------------------------------------------------------------------------------*/
.testmonial_inner_slide figure {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin: auto;
}

.testmonial_inner_slide {
    max-width: 629px;
    margin: auto;
    text-align: center;
}

.testmonial_inner_slide p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
}

.testmonial_inner_slide h5 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.testmonial_inner_slide h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
}

.comman-text-testmonial {
    padding-top: 25px;
}

.testmonial_wrapper {
    text-align: center;
    background: rgba(81, 193, 242, 0.1);
    padding: 62px 0;
}

.testmonial_wrapper h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 59px;
    color: #2A2A4B;
    margin-bottom: 54px;
}

.testmonial_wrapper .owl-nav button {
    border: 1px solid #51C1F2 !important;
    width: 53px;
    height: 53px;
    border-radius: 50% !important;
    margin: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.testmonial_wrapper .owl-nav button:hover {
    background: #51C1F2 !important;
}

.testmonial_wrapper .owl-nav button:hover img {
    filter: brightness(0) invert(1);
}

.testmonial_wrapper .owl-nav .owl-prev {
    left: 0;
}

.testmonial_wrapper .owl-nav .owl-next {
    right: 0;
}

.otp-btn {
    position: absolute;
    font-size: 13px;
    color: #00b3e4;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    cursor: pointer;
}

.otb_box li {
    padding: 0 15px;
}

.otb_box {
    list-style-type: none;
    display: flex;
    margin: 0 -15px;
}

.sub_title {
    display: block;
    color: #A9AFBE;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    margin-top: -7px;
    padding-bottom: 15px;
}

.opt_sender_timers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 11px;
    color: #979BB0;
    font-size: 15px;
}

.resend_top span {
    color: #000;
    font-weight: 700;
}

li.profile_inner>a>img {
    width: 84px;
}

/*--------------------------------------------------------------------------------------*/
/*Login-Css-Here
/*--------------------------------------------------------------------------------------*/
.login_wrapper_box {
    background: url('../img/peakpx.jpg') no-repeat center center / cover;
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
}

.inner-form-box {
    max-width: 408px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.inner-form-box h2 {
    font-weight: 600;
    font-size: 92px;
    color: #FFFFFF;
    margin-bottom: 33px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.inner-form-box label {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}

.inner-form-box .form-control {
    background: transparent !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    border: 1px solid #E7EBF4;
    border-radius: 4px !important;
    padding: 13px 24px;
}

.inner-form-box .btn.btn-primary {
    width: 100%;
    background: #2A3088 !important;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    padding: 14px 9px;
    border-radius: 5px !important;
    border: 1px solid #2A3088 !important;
}

.inner-form-box .form-group {
    margin-bottom: 27px;
}

.inner-form-box .form-control::placeholder {
    color: #fff;
}

.login-logo {
    position: absolute;
    left: 50px;
    top: 50px;
    z-index: 9;
}

.login-logo img {
    width: 292px;
    height: auto;
    object-fit: cover;
}

.topmenu {
	position: absolute;
	right: 50px;
	top: 50px;
	z-index: 9;
}
.topmenu ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
}
.topmenu ul li {
	position: relative;
	padding: 0 15px;
}
.topmenu ul li a {
	color: #fff;
	font-weight: bold;
	font-size: 22px;
}

.topmenu ul li::before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
	width: 2px;
	height: 20px;
	content: "";
}

.topmenu ul li:first-child:before{
    display: none;
}

.aboutpage {
	padding: 200px 0 100px 0;
}
.aboutpage .aboutpage_main h1 {
	font-size: 30px;
	font-weight: bold;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main h2 {
	font-size: 25px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main h3 {
	font-size: 22px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main h4 {
	font-size: 20px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main h5 {
	font-size: 18px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main h6 {
	font-size: 16px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main ul, .aboutpage .aboutpage_main ol {
	padding-left: 30px;
	margin: 0 0 15px 0;
}
.aboutpage .aboutpage_main p {
	font-size: 15px;
	margin: 0 0 15px 0;
}


.aboutpage .aboutpage_main {
	background: rgba(255,255,255,0.8);
	padding: 30px;
	border-radius: 10px;
}


.login_wrapper_box::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: rgba(81, 193, 242, 0.1);
    width: 100%;
    height: 100%;
}

.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 14px;
    color: #fff;
    font-size: 23px;
    top: 50%;
    transform: translateY(-50%);
}

.inner-form-box .btn.btn-primary:hover {
    border-color: #2a3088 !important;
    bas: ;
    background: transparent !important;
    color: #2a3088 !important;
    box-shadow: unset !important;
}


/*--------------------------------------------------------------------------------------*/
/*Faq-Css-Here
/*--------------------------------------------------------------------------------------*/
.faq_wrapper_box .comman-heading {
    text-align: center;
}

.faq_wrapper_box {
    padding: 63px 0 50px;
}

.faq_wrapper_box .card {
    background: #FFFFFF;
    box-shadow: 0px 0px 7px rgba(81, 193, 242, 0.1);
    border-radius: 15px !important;
    border: none !important;
    margin-bottom: 19px;
    overflow: hidden;
}

.faq_wrapper_box .card-header {
    background: transparent !important;
    padding: 0;
    border: none;
}

.faq_wrapper_box .card-header button {
    position: relative;
    white-space: inherit;
    font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.7);
    display: block;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
}

.faq_wrapper_box button[aria-expanded="true"] {
    background: #51C1F2;
    color: #fff !important;
}

.faq_wrapper_box .card-body {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: #202020;
}

.faq_wrapper_box #accordion {
    padding-top: 45px;
    max-width: 858px;
    margin: auto;
}

.faq_wrapper_box .card-header button::after {
    font-family: "Font Awesome 5 free";
    content: "\f107";
    position: absolute;
    right: 23px;
    top: 50%;
    transition: ;
    transform: translateY(-50%);
    font-size: 21px;
}

.faq_wrapper_box button[aria-expanded="true"]::after {
    transform: rotate(180deg) translateY(50%);
}

/*--------------------------------------------------------------------------------------*/
/*Contact-Css-Here
/*--------------------------------------------------------------------------------------*/
.get-in-tuch-wrapoper {
    background: rgba(81, 193, 242, 0.1);
    padding: 81px 0;
}

.get-in-tuch-wrapoper>.container>.row {
    align-items: center;
    background: red;
    background: linear-gradient(92.36deg, #2FA3E6 -0.99%, #4DBEFF 100%);
    border-radius: 10px;
}

.get-tuch-inner-heading h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 67px;
    color: #FFFFFF;
    padding-top: 46px;
    position: relative;
    padding-left: 79px;
    margin-bottom: 50px;
    padding-bottom: 14px;
}

.get-tuch-inner-heading h2::after {
    background: url('../img/riban-3.png') no-repeat;
    position: absolute;
    content: "";
    right: 0;
    bottom: 0px;
    width: 175px;
    height: 17px;
}

.row.inner_contact_form .form-control {
    background: #FFFFFF;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000;
    border: none;
    padding: 16px 20px;
}

.row.inner_contact_form .btn {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #090909;
    background: #ffcf49;
    border: 1px solid #ffcf49;
    border-radius: 5px;
    padding: 13px 47px;
    margin-top: 10px;
}

.row.inner_contact_form {
    padding: 0 53px;
}

.get_shape_1 {
    position: absolute;
    right: 14%;
    bottom: 15%;
    pointer-events: none;
    animation: float-bob 6s ease-in-out infinite;
}

.get_shape_2 {
    position: absolute;
    top: 41px;
    right: 89px;
    animation: rotation 7s ease-in-out infinite;
}

/*--------------------------------------------------------------------------------------*/
/*footer-Css-Here
/*--------------------------------------------------------------------------------------*/
footer {
    position: relative;
    background: rgba(66, 180, 246, 0.94);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-widget h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 67px;
    color: #FFFFFF;
}

.footer-widget ul {
    margin: ;
    list-style-type: none;
}

.footer-widget ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.footer-widget ul li {
    display: block;
    padding-bottom: 9px;
}

.address-box p {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin: 0 0 8px;
}

.address-box p a {
    color: #fff;
}

.copyright_bottom p {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.copyright_bottom {
    border-top: 1px solid white;
    padding: 18px 0px;
}

.top-footer {
    padding: 68px 0 44px;
}

.logo-footer {
    padding-top: 55px;
}

.footer-widget ul li a:hover {
    color: #ffcf49;
}

.row.inner_contact_form .btn:hover {
    background: transparent;
    color: #ffcf49;
    box-shadow: unset;
}

.sky {
    width: 100%;
    background-image: url('../img/banner-fly.jpg');
    background-size: cover;
    background-position: center;
    position: absolute;
    overflow: hidden;
    top: 0;
    z-index: -1;
    height: 100%;
}

.highway {
    height: 200px;
    width: 1000%;
    display: block;
    background-image: url('../img/high.jpg');
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-repeat: repeat;
    animation: highway 5s linear infinite;
}

@keyframes highway {
    100% {
        transform: translateX(-3000px);
    }
}

.city {
    height: 250px;
    width: 500%;
    background-image: url('../img/city.png');
    position: absolute;
    left: 0;
    right: 0;
    bottom: 200px;
    display: block;
    z-index: 1;
    background-repeat: repeat;
    animation: city 20s linear infinite;
}

@keyframes city {
    100% {
        transform: translateX(-1500px);
    }
}

.car {
    width: 400px;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
}

.car img {
    width: 100%;
    animation: car 1s linear infinite;
}

@keyframes car {
    0% {
        transform: translateY(-4px);
    }

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

    100% {
        transform: translateY(-4px);
    }
}

.wheel {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 185px;
    z-index: 2;
    width: 78px;
}

.wheel img {
    width: 72px;
    height: 72px;
    animation: wheel 1s linear infinite;
}

@keyframes wheel {
    100% {
        transform: rotate(360deg);
    }
}

.frontwheel {
    position: absolute;
    left: 119px;
}

.backwheel {
    position: absolute;
    left: -125px;
}

/*--------------------------------------------------------------------------------------*/
/*modal-Css-Here
/*--------------------------------------------------------------------------------------*/
.comman-poup .modal-dialog {
    max-width: 685px;
}

.comman-poup .modal-content {
    border: none !important;
    border-radius: 10px;
}

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

.top_modal_bar h2 {
    font-size: 23.399px;
    line-height: 40px;
    text-align: center;
    color: #103637;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.top_modal_bar .closed-btn {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #F73107;
}

.car_poup_listed {
    list-style: none;
}

.car_poup_listed li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 31px;
}

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

.right_car_details .prize_capcity {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(16, 54, 55, 0.6);
}

.right_car_details a {
    background: #FFFFFF;
    border: 1px solid #00B3E4;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: #00B3E4;
    padding: 6px 19px;
    display: inline-block;
    margin-top: 16px;
}

.right_car_details {
    text-align: right;
}

.comman-poup .modal-body {
    padding: 0;
    padding-bottom: 66px;
}

.top_modal_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 34px;
}

.car_details_inner {
    padding-left: 43px;
}

.car_details_inner h5 {
    font-weight: 500;
    font-size: 19px;
    line-height: 29px;
    color: #103637;
}

.car_details_inner p {
    margin: 0;
    font-weight: 400;
    font-size: 16.3985px;
    line-height: 19px;
    color: rgba(16, 54, 55, 0.6);
    padding-top: 4px;
}

/* .car_poup_listed li:nth-child(2n+1) {
    background: rgba(0, 179, 228, 0.1);
} */

.right_car_details a.active {
    background: #00B3E4;
    color: #fff;
}

.next_btn_comman {
    text-align: center;
    padding-top: 20px;
}

.next_btn_comman .btn {
    background: #00b3e4;
    color: #fff;
    font-size: 17px;
    border-radius: 4px;
    padding: 10px 71px;
    font-weight: 600;
    outline: 0;
}

.form_book_submit {
    padding: 30px 30px;
}

.form_book_submit label {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #182D54;
    display: block;
    padding-bottom: 15px;
    margin: 0;
}

.form_book_submit .form-control {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #A9AFBE;
    border: 1px solid #A9AFBE;
    border-radius: 6px;
}

.form_book_submit .form-control::placeholder {
    color: #A9AFBE;
}

.form_book_submit textarea {
    width: 100%;
    resize: none;
    height: 65px;
}

.alert_details_form ul {
    list-style: none;
    position: relative;
    padding-left: 33px;
}

.alert_details_form {
    background: #FFFFFF;
    border: 0.65px solid rgba(16, 16, 16, 0.1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 12px 15px;
}

.alert_details_form li {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #103637;
    padding-left: 0px !important;
    position: relative;
    padding: 9px 0;
}

.alert_details_form li:last-child {
    margin: 0;
}

.calander_date {
    position: absolute;
    left: -29px;
    top: 50%;
    transform: translateY(-50%);
}

.alert_details_form ul li:nth-child(1) {
    border: ;
    border-bottom: 1px solid rgba(221, 221, 221, 0.4);
    padding: 15px 0;
    margin-bottom: 6px;
}

.alert_details_form ul::after {
    position: absolute;
    left: 12px;
    content: "";
    width: 1px;
    border-left: 1px dashed #8C9FA0;
    height: 23%;
    top: 33px;
}

.top_modal_bar h2 img {
    padding-right: 11px;
}

.reader-img img {
    animation: float-bob2 6s ease-in-out infinite;
}

.reader-img {
    padding-left: 9px;
}

@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }

    to {
        -webkit-mask-position: -50%;
    }
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@-webkit-keyframes float-bob2 {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translatex(-20px);
    }

    50% {
        -webkit-transform: translateX(-10px);
        transform: translatex(-10px);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes float-bob2 {
    0% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, .95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }

    33.3% {
        transform: translateY(-6px);
    }

    49.95% {
        transform: translateY(4px);
    }

    66.6% {
        transform: translateY(-2px);
    }

    83.25% {
        transform: translateY(1px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -400px 0;
    }
}



/*--------------------------------------------------------------------------------------*/
/*my-profile-Css-Here
/*--------------------------------------------------------------------------------------*/
.avatar-upload {
    position: relative;
    display: inline-block;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-preview {
    width: 113px;
    height: 113px;
    position: relative;
    border-radius: 100%;
    border: 2px solid #51C1F2;
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block !important;
}

.avatar-edit label {
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: #51C1F2;
    margin-top: 12px;
}

.my_profile_wrapper .container {
    max-width: 778px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.my_profile_wrapper h2 {
    padding: 38px 0 21px;
    font-weight: 700;
    font-size: 23px;
    line-height: 24px;
    color: #FFFFFF;
}

.card_comman {
    background: #FFFFFC;
    border: 1px solid rgba(42, 42, 75, 0.15);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.07);
    border-radius: 11px;
    margin-bottom: 24px;
}

.card_comman.profile_main_wrapper {
    display: flex;
    align-items: center;
    padding: 31px 40px;
}

.card_comman.profile_main_wrapper h4 {
    font-weight: 700;
    font-size: 23px;
    line-height: 24px;
    color: #2A2A4B;
    padding-top: ;
    margin-bottom: 3px;
}

.upload_proifle_details p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: rgba(42, 42, 75, 0.6);
    margin: 0;
    padding-top: 6px;
}

.upload_proifle_details {
    padding-left: 27px;
    position: relative;
}

.my_profile_wrapper {
    background: #EDF4FC;
    /* min-height: 80vh; */
    padding-bottom: 65px;
    position: relative;
}

.my_profile_wrapper::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #51C1F2;
    height: 158px;
    width: 100%;
    pointer-events: none;
}

.card_comman.form_wrapper_profile {
    padding: 24px;
}

.card_comman.form_wrapper_profile h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #2A2A4B;
}

.form_wrapper_profile .form-control {
    border: 1px solid rgba(42, 42, 75, 0.4);
    border-radius: 4px;
    background: transparent !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: rgba(42, 42, 75, 0.8);
    padding: 15px 19px;
}

.form_wrapper_profile .form-group {
    margin-bottom: 25px;
    position: relative;
}

.postion_label {
    font-style: normal;
    font-weight: 500;
    z-index: 9;
    font-size: 14px;
    line-height: 24px;
    color: #AAAAB5;
    position: absolute;
    top: -12px;
    left: 18px;
    background: #fffffc;
    padding: 0 11px;
    margin: 0;
    pointer-events: none;
}

.card_comman.form_wrapper_profile h6 {
    margin-bottom: 31px;
}

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

.card_comman.form_wrapper_profile .comman_label {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #AAAAB5;
}

.card_comman.form_wrapper_profile .form-control::placeholder {
    color: rgba(42, 42, 75, 0.8);
    opacity: 1;
}

.card_comman.form_wrapper_profile .form-control:focus {
    box-shadow: unset;
}

.btn_save_closed button {
    background: transparent !important;
    padding: 0;
    border: none;
    min-width: 138px;
    padding: 12px 11px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}

.btn_save_closed .btn {
    background: #51c1f2 !important;
    color: #fff !important;
}

.form_wrapper_profile .password-wrapper i {
    color: rgba(42, 42, 75, 0.15);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.card_comman.form_wrapper_profile label {
    color: #AAAAB5;
    font-size: 16px;
    font-weight: 700;
}

.card_comman.form_wrapper_profile p {
    font-weight: 700;
}


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

.right_bar_request h3 {
    font-weight: 700;
    font-size: 24.0386px;
    line-height: 28px;
    color: #103637;
}

.right_bar_request p {
    color: rgba(95, 95, 102, 0.8);
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    margin: 0;
    padding: 4px 0 6px;
}

.user_count {
    color: rgba(42, 42, 75, 0.8);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    display: flex;
    align-items: center;
}

.right_bar_request {
    padding-left: 15px;
}

.Delete_btn {
    position: absolute;
    right: 10px;
    top: 15px;
    color: #51c1f2;
    font-size: 16px;
    font-weight: 700;
}

.user_count img {
    padding-right: 6px;
}

.card_comman.request_inner {
    padding: 21px;
}

.reauest_details_inx ul {
    list-style-type: none;
}

.reauest_details_inx h6 {
    color: #AAAAB5;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

.reauest_details_inx p {
    font-weight: 400;
    font-size: 17px;
    line-height: 36px;
    color: rgba(42, 42, 75, 0.8);
}

.reauest_details_inx li {
    margin-top: 16px;
    padding-top: 16px;
}

/* .reauest_details_inx li+li {
    border-top: 1px solid #d5d5d5;
} */

.left_request {
    max-width: 102px;
}

.inner_page_heading {
    background: url(../img/heading_bg.png) no-repeat left bottom;
    background-size: cover;
    min-height: 353px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_heading {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: -55px;
}

.inner_heading h2 {
    display: inline-block;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    background: url(../img/heading_ger.png) no-repeat center bottom;
    padding-bottom: 25px;
    font-weight: 900;
}

.inner_heading p {
    font-size: 16px;
    color: #fff;
    max-width: 540px;
    margin: auto;
    padding-top: 10px;
}

.static_section {
    padding: 41px 0px;
}

.static_section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.static_section p {
    font-size: 14px;
}

.bottom_top_bg {
    text-align: center;
    position: relative;
    padding-top: 0px;
}

.bottom_top_bg a {
    position: absolute;
    z-index: 9;
    bottom: -48px;
    display: inline-block;
    width: 223px;
    height: 50px;
    background: url(../img/top_arrow_bg.png) no-repeat;
    text-align: center;
    padding-top: 28px;
    margin-left: -102px;
}

.bottom_top_bg a img {
    animation: float-bob 6s ease-in-out infinite;
}

.avatar-alph {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-alph a {
    font-size: 70px;
    font-weight: 700;
    color: #65c2f4;
}

.select2-dropdown::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.select2-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.select2-dropdown::-webkit-scrollbar-thumb {
    background: #51C1F2;
}

/* Handle on hover */
.select2-dropdown::-webkit-scrollbar-thumb:hover {
    background: #51C1F2;
}

input.select2-search__field {
    border: 3px solid #65c2f4 !important;
    outline: 0 !important;
}

.select2-dropdown {
    border-radius: 0;
    height: 300px;
    overflow: auto;
    border: none !important;
    padding: 11px;
    box-shadow: 0px 6px 21px #83a8d5c9;
}

.parsley-errors-list {
    position: static !important;
}


.form .form-title span.tooltrip {

    font-size: 17px;

    color: #14a9ac;

    margin-left: 8px;

}




.form_book_submit input::-webkit-outer-spin-button,
.form_book_submit input::-webkit-inner-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

.form_book_submit .hidenumber {

    -moz-appearance: textfield;

}

.login_poup .modal-dialog {
    max-width: 450px;
}


/******9-6-23******/

section.car_brainds_wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}


.modal-body .left_car_details img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}


.ap-otp-inputs.otp_box_inner {
    display: flex;
    justify-content: space-between;
}

.ap-otp-inputs.otp_box_inner input {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    color: #000;
    border-color: #41aedb;
    border: 3px solid #41aedb;
}



.form_book_submit .opt_sender_timers {
    margin-top: 15px;
}


.form_book_submit span#timerlogin {
    text-align: right;
    width: 100%;
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

.form_book_submit h4 {
    font-size: 20px;
    line-height: 40px;
    color: #103637;
    font-weight: 700;
    text-align: center;
}

.form_book_submit button#resend_otp_for_login {
    border: none;
    padding: 0;
    background: none;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
}

.form_book_submit .opt_sender_timers {
    text-align: center;
    justify-content: center;
}

.form_book_submit a#send_otp_for_login {
    background: #00b3e4;
    color: #fff;
    font-size: 17px;
    border-radius: 4px;
    padding: 10px 30px;
    font-weight: 600;
    outline: 0;
    border: none;
    margin-top: 15px;
}

.profile_user_profiles.avatar-alph img {
    width: 95px;
    height: auto;
    object-fit: cover;
}


.pickup_wrapper_box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

section.comman-wrapper-box.bg-change img {
    width: 330px;
    height: 300px;
    object-fit: contain;
}

section.comman-wrapper-box.next-shape img {
    width: 360px;
    height: 300px;
    object-fit: contain;
}



.pickup_wrapper_box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}




.form_book_submit a#verify_otp {
    font-size: 16px;
    font-weight: 600;
    display: block;
    cursor: pointer;
    text-decoration: underline;
    color: #163637;
    text-align: center;
}

.form_book_submit button#resend_otp {
    background: #00b3e4;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    padding: 6px 8px;
    font-weight: 600;
    outline: 0;
    border: none;
}

.form_book_submit .opt_sender_timers {
    justify-content: center;
    margin: 0;
}


.form_book_submit.form_book_text .ap-otp-inputs.otp_box_book {
    display: flex;
}

.form_book_submit.form_book_text .ap-otp-inputs.otp_box_book input {
    width: 41px;
    height: 41px;
    border-radius: 10px;
    border: 2px solid #aaafbf;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #465474;
    margin-right: 10px
}

.inner_otp_fx.d-flex span#timer {
    margin-right: 30px;
}

.form_contact li.parsley-required {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 11px;
}

.form_contact li.parsley-range {
	position: absolute;
	bottom: -7px;
	left: 0px;
	font-size: 11px;
	margin: 0 -15px 0 -15px;
}

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

.inner_otp_fx.d-flex {
    justify-content: space-between;
    align-items: center;
}

section.my_profile_wrapper.card_comman_fx {
    padding: 0;
    min-height: 65vh;
    padding-bottom: 20px;
    position: relative;
}

section.my_profile_wrapper.card_comman_fx .card_comman.request_inner {
    margin: 0;
    margin-bottom: 30px;
}

section.my_profile_wrapper.card_comman_fx .Delete_btn {
    border: none;
    background: #51C1F2;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    color: #fff;
    padding: 8px 20px;
}

.car_poup_listed.car_popup_fx {
    display: flex;
    flex-wrap: wrap;
}

.car_poup_listed.car_popup_fx .left_car_details {
    display: block;
}

.car_poup_listed.car_popup_fx li {
    width: 25%;
    background: none;
}

.car_poup_listed.car_popup_fx li .right_car_details {
    display: none;
}

.car_poup_listed.car_popup_fx li .car_details_inner {
    padding-left: 0;
    text-align: center;
}

.request_box_warp {
    display: flex;
    align-items: center;
    width: 100%;
}

.request_box_warp .left_request_inner {
    padding-right: 0;
    width: 15%;
}

.request_box_warp .right_bar_request_inner {
    width: 80%;
}

.request_box_warp .right_bar_request_inner ul li {
    list-style: none;
    width: 50%;
    padding: 0px 15px;
    text-align: center;
}

.request_box_warp .right_bar_request_inner ul li h3 {
    padding-left: 0px;
    padding-top: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    color: #103637;
}

.request_box_warp .right_bar_request_inner ul {
    padding-bottom: 8px;
}

.reauest_wrapper.position-relative.reauest_fx {
    display: block;
}

.request_box_warp .right_bar_request_inner p {
    padding-left: 0;
    font-size: 16px;
    margin: 0;
}

.request_box_warp .right_bar_request_inner span.user_count {
    padding-left: 0px;
}

.requet_text_inner {
    width: 100%;
    display: flex;
    align-items: center;
}

.requet_text_inner h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 24px;
    padding: 15px 0px;
    color: #2A2A4B;
}

.reauest_details_fx li {
    width: 50%;
    padding-right: 10px;
}

.requet_text_inner .user_warp_left {
    width: 45%;
}

.requet_text_inner .user_warp_right {
    width: 55%;
}

.request_box_warp .right_bar_request_inner ul li img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.page_notfound {
    position: absolute;
    top: 63%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.page_notfound .found_img img {
    width: 460px;
    height: 390px;
    object-fit: cover;
}

.select_warp_btn {
    text-align: right;
    padding: 0px 31px;
    margin-bottom: 15px;
}

.select_warp_btn button.btn.select_btn {
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    padding: 5px 16px;
    color: #43b6e7;
    background: none;
    border: 1px solid;
}

.daterangepicker .drp-buttons .btn {
    background: #65c2f4 !important;
    border: none !important;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #65c2f4 !important;
}

.modal-open .modal {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.modal {
    overflow: auto !important;
    
}

/* Chrome, Safari, Edge, Opera */
.otp-grnrater input::-webkit-outer-spin-button,
.otp-grnrater input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

@media (max-width: 991px) {

    .inner-form-box h2 {
        font-size: 70px;
        margin-bottom: 10px;
       
    }

}

@media (max-width: 767px) {
    .login-logo {
        left: 20px;
        top: 20px;
    }

    .login-logo img {
        width: 170px;
        height: auto;
        object-fit: cover;
    }

    .inner-form-box {
        padding-top: 75px;
    }

    .inner-form-box h2 {
        font-size: 50px;
        color: #FFFFFF;
        margin-bottom: 0;
    }

    .inner-form-box .btn.btn-primary {
        margin: 0px 12px;
    }

  }


  