/******************* Global ********************/
/* Imports */
@font-face {
	font-family: 'Rubik';
	src: url('../fonts/rubik.ttf') format('truetype');
}

* {
	box-sizing: border-box;
	font-family: Rubik;
}

html,
body {
	margin: 0;
	width: 100vw;
	overflow-x: hidden;
	background: white;
}

.img img {
	max-width: 100%;
	max-height: 100%;
}

section.section_nav .wrapper {
	width: 100%;
}

nav.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
section.section_how_it_works .right .button{
	display: none;
}

nav.nav .close_button,
nav.nav .hamburger {
	display: none;
	cursor: pointer;
	position: relative;
}
nav.nav .close_button {
	width: 26px;
	height: 26px;
	position: absolute;
	top: 3rem;
	right: 3rem;
}

nav.nav .close_button .bar {
	position: absolute;
	width: 2rem;
	height: 2px;
	background: black;
	transform: rotate(45deg);
	top: 50%;
	left: -4px;
}

nav.nav .close_button .bar:nth-child(2) {
	transform: rotate(-45deg);
}

nav.nav .hamburger {
	flex-direction: column;
}

nav.nav .hamburger .bar {
	width: 2rem;
	height: 2px;
	background: black;
	margin: 5px 0;
}

body.homepage_nav nav.nav {
	height: 54px;
}

nav.nav .logo {
	height: 47px;
}

nav.nav .logo img {
	max-width: 100%;
	max-height: 100%;
}

nav.nav .links {
	display: flex;
	justify-content: space-between;
	list-style: none;
}

nav.nav .links .link {
	margin-right: 46px;
}

nav.nav .link a {
	color: var(--GrayScale1, #333);
	font-weight: 500;
	line-height: 150%;
	text-decoration: none;
}

nav.nav .right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav.nav .right .link a {
	padding: 0 10px;
}

nav.nav .right .link:not(:last-of-type) {
	border-right: 1px solid #333;
}

nav.nav .right .button {
	margin-left: 24px;
}

.button.blue_button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 38px;
	border-radius: 4px;
	background: #336AEA;
	color: white;
	font-weight: 500;
	width: max-content;
	text-decoration: none;
}

.button.blue_button .icon {
	margin-left: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section {
	display: flex;
	padding: 2rem;
}

section .wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	max-width: 1440px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

section.section_nav {
    padding: 15px 20px;
    border-bottom: 1px solid #dfdfdf;
}

.tm_accordion>* {
	cursor: pointer;
}

.tm_accordion .accordion_icons {
	display: inline;
}

.tm_accordion .accordion_icons svg.minus {
	display: none;
}

.tm_accordion .expanded .accordion_icons svg.plus {
	display: none;
}

.tm_accordion .expanded .accordion_icons svg.minus {
	display: inline;
}

.tm_accordion :not(.expanded)>.answer {
	height: 0;
}

/******************* Homepage ********************/
/* NAVBAR */
nav.nav .links .right {
	display: none;
}

/* Section Top Banner */
section.section_top_banner {
	height: 1080px;
	background-position: right;
	background-repeat: no-repeat;
	background-size: max(50vw, 500px);
	padding: 0px;
}

section.section_top_banner .wrapper {
	max-width: 100%;
	padding: 33px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.section_top_banner .wrapper .nav {
	max-width: 1440px;
	z-index: 1;
}

section.section_top_banner .content {
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 211px;
}

section.section_top_banner .content .left {
	width: 55%;
}

section.section_top_banner .content .right {
	width: 45%;
}

section.section_top_banner .content .right img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

section.section_top_banner .content .pre_heading {
	display: flex;
	color: #141F2B;
	font-size: 18px;
	display: flex;
	align-items: center;
	height: 59px;
	margin-bottom: 23px;
}

section.section_top_banner .content .pre_heading .icon {
	margin-right: 1rem;
}

section.section_top_banner .content .pre_heading .text {
	margin-bottom: 0px;
}

section.section_top_banner .content .title {
	font-size: 61px;
	font-weight: 600;
	line-height: 125%;
	margin-bottom: 24px;
}

section.section_top_banner .content .title .black {
	color: #141F2B;
}

section.section_top_banner .content .title .blue {
	color: #336AEA;
}

section.section_top_banner .content .text {
	color: #454545;
	font-size: 16px;
	line-height: 150%;
	margin-right: 50px;
	width: 655px;
	margin-bottom: 24px;
}

/* Section 2 (Boxes) */
section.section_2_boxes {
	position: relative;
}

section.section_2_boxes .boxes {
	margin-top: -145px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.section_2_boxes .boxes .box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px;
	border-radius: 4px;
	border: 1px solid var(--GrayScale4, #CCC);
	background: #FFF;
	box-shadow: 0px 6px 29px 0px rgba(0, 0, 0, 0.13);
	width: calc(50% - 10px);
}
.section_2_boxes .box .button {
	padding: 15px 38px;
	border: none;
	margin-top: 10px;
}
section.section_2_boxes .boxes .box .icon {
	margin-bottom: 20px;
}

section.section_2_boxes .boxes .box .title {
	color: var(--GrayScale1, #333);
	font-size: 31px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 10px;
}

section.section_2_boxes .boxes .box .text {
	color: var(--GrayScale2, #666);
	text-align: center;
	font-size: 16px;
	line-height: 24px;
}

/*  Section 3 (Rent a Car) */
section.section_3_rac {
	margin-top: 138px;
}

section.section_3_rac .pre_heading {
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	text-align: center;
}

section.section_3_rac .wrapper>.title {
	color: var(--GrayScale1, #333);
	text-align: center;
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 48px;
}

section.section_3_rac .main {
	display: flex;
	display: grid;
	grid-template-columns: 26% 48% 26%;
}

section.section_3_rac .main .item .number {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	background: #336AEA;
	color: #FFF;
	font-size: 25px;
	font-weight: 600;
	line-height: 150%;
	border-radius: 100%;
	margin-bottom: 1rem;
}

section.section_3_rac .main .item .title {
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
}

section.section_3_rac .main .item .text {
	color: var(--GrayScale2, #666);
	line-height: 150%;
}

section.section_3_rac .main .left_col,
section.section_3_rac .main .col_1,
section.section_3_rac .main .col_3 {
	padding-right: 20px;
	text-align: right;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}

section.section_3_rac .main .col_1 .number,
section.section_3_rac .main .col_3 .number {
	margin-left: auto;
}

section.section_3_rac .main .mid_col {
	grid-column: 2 / span 1;
	grid-row: 1 / span 2;
}

section.section_3_rac .main .mid_col .img {
	width: 100%;
	
}

section.section_3_rac .main .mid_col .img img {
	width: 100%;
	box-shadow: 0px 6px 29px 0px rgba(0, 0, 0, 0.13);
	padding: 15px 15px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 15px;
}

section.section_3_rac .main .right_col,
section.section_3_rac .main .col_2,
section.section_3_rac .main .col_4 {
	padding-left: 20px;
	text-align: left;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}

section.section_3_rac .main .col_1 {
	order: 1;
}

section.section_3_rac .main .col_5 {
	order: 2;
}

section.section_3_rac .main .col_2 {
	order: 3;
}

section.section_3_rac .main .col_3 {
	order: 4;
}

section.section_3_rac .main .col_4 {
	order: 6;
}

/*  Section 4 (Why Chose Us) */
section.section_why_chose_us {
	margin-top: 138px;
	padding-top: 138px;
	background: #F5F7F6;
	padding-bottom: 138px;
}

section.section_why_chose_us .wrapper {
	flex-direction: row;
}

section.section_why_chose_us .left {
	width: 40%;
	margin-right: auto;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

section.section_why_chose_us .left .pre_heading {
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 4px;
}

section.section_why_chose_us .left .title {
	color: var(--GrayScale1, #333);
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 1rem;
}

section.section_why_chose_us .left .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 36px;
}

section.section_why_chose_us .right {
	width: 40%;
}

section.section_why_chose_us .right .rows {
	display: flex;
	flex-direction: column;
}

section.section_why_chose_us .right .rows .row {
	display: flex;
}

section.section_why_chose_us .right .rows .row:not(:last-child) {
	margin-bottom: 48px;
}

section.section_why_chose_us .right .rows .row .col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

section.section_why_chose_us .right .rows .row .col.icon {
	margin-right: 20px;
}

section.section_why_chose_us .right .rows .row .col .title {
	color: var(--GrayScale1, #333);
	font-size: 25px;
	font-weight: 600;
	line-height: 150%;
}

section.section_why_chose_us .right .rows .row .col .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 26px;
}

/*  Section 5 (Testimonials) */
.page-contact .section_testimonials ,
.page-homepage .section_testimonials {
	margin-top: 0 !important;
}
section.section_testimonials {
	margin-top: 138px;
	background: #F5F7F6;
}

.page-ownerguide .section_testimonials {
	margin-top: 0 !important;
}

section.section_testimonials .pre_heading {
	text-align: center;
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 1rem;
}

section.section_testimonials .title {
	text-align: center;
	color: var(--GrayScale1, #333);
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
}

section.section_testimonials .slider .t_slide {
	padding: 48px 10px;
}

section.section_testimonials .slider .t_slide .slide_wrapper {
	padding: 88px 70px;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
	height: 490px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

section.section_testimonials .slider .t_slide .text {
	color: var(--GrayScale1, #333);
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 36px;
	height: 216px;
	display: flex;
	align-items: center;
}

section.section_testimonials .slider .t_slide .author {
	display: flex;
}

section.section_testimonials .slider .t_slide .author .img {
	width: 64px;
	border-radius: 100%;
	margin-right: 18px;
}

section.section_testimonials .slider .t_slide .author .author_details {
	display: flex;
	flex-direction: column;
}

section.section_testimonials .slider .t_slide .author .author_details .name {
	color: var(--GrayScale1, #333);
	text-align: center;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 4px;
}

section.section_testimonials .slider .t_slide .author .author_details .role {
	color: var(--GrayScale2, #666);
	text-align: center;
	font-size: 13px;
	line-height: 150%;
}

section.section_testimonials .slider .t_slide .author .quotes {
	margin-left: auto;
}

section.section_testimonials .slider .t_slide .author .quotes svg {
	width: 54px;
	height: max-content;
	margin-bottom: -1rem;
}

/*  Section 6 (Welcome to dream rent) */
section.section_rent {
	margin-top: 138px;
}

section.section_rent .wrapper {
	flex-direction: row;
}

section.section_rent .left {
	width: 50%;
	margin-right: 56px;
}

section.section_rent .left img {
	box-shadow: 0px 6px 29px 0px rgba(0, 0, 0, 0.13);
	padding: 15px 15px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 15px;
}

section.section_rent .right {
	width: 50%;
}

section.section_rent .right .pre_heading {
	color: var(--GrayScale1, #333);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
}

section.section_rent .right .title {
	color: var(--GrayScale1, #333);
	font-weight: 600;
	font-size: 49px;
	line-height: 150%;
	margin-bottom: 1rem;
}

section.section_rent .right>.text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 21px;
}

section.section_rent .right .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	gap: 8px;
}

section.section_rent .right .list .item .icon {
	margin-right: 4px;
	height: 30px;
}

section.section_rent .right .list .item .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
}

/*  SEction 7 (FAQs) */
section.section_faqs {
	margin-top: 138px;
	margin-bottom: 138px;
}

section.section_faqs .wrapper {
	max-width: 950px;
	margin: auto;
}

section.section_faqs .pre_heading {
	color: var(--GrayScale1, #333);
	text-align: center;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
}

section.section_faqs .title {
	color: var(--GrayScale1, #333);
	text-align: center;
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 1rem;
}

section.section_faqs .text {
	color: var(--GrayScale2, #666);
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 64px;
}

section.section_faqs .accordion li {
	border-bottom: 2px solid #eee;
	padding: 24px 0;
}

section.section_faqs .accordion li .question {
	display: flex;
	justify-content: space-between;
}

section.section_faqs .accordion li .question,
section.section_faqs .accordion li::marker {
	color: var(--GrayScale2, #666);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
}

section.section_faqs .accordion li .answer {
	color: var(--GrayScale3, #999);
	font-family: 'Poppins', sans-serif;
	line-height: 150%;
	overflow: hidden;
	transition: all 1s ease;
}

/* Section 8 (Contact Us) */
section.section_contact {
	margin-top: 0;
	padding: 78px 2rem;
	background-color: #336AEA;
	filter: drop-shadow(0px 10px 81px rgba(0, 0, 0, 0.09));
}

section.section_contact .wrapper {
	width: 955px;
}

section.section_contact .bg_elements .dots {
	position: absolute;
}

section.section_contact .bg_elements .dots.dots_1 {
	top: 11px;
	left: 0;
}

section.section_contact .bg_elements .dots.dots_2 {
	bottom: 22px;
	right: 0;
}

section.section_contact .pre_heading {
	text-align: center;
	color: var(--Background, #FAFAFA);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
}

section.section_contact .title {
	text-align: center;
	color: var(--Background, #FAFAFA);
	font-size: 49px;
	font-weight: 600;
	line-height: 57px;
	margin-bottom: 12px;
}

section.section_contact .text {
	color: var(--Prmary-Lighter, #E0E9FC);
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 48px;
}

section.section_contact form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section.section_contact form .input-group {
	display: flex;
	position: relative;
	width: calc(50% - 10px);
	margin-bottom: 1rem;
}

section.section_contact form .input-group .prepend {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);

	color: var(--GrayScale2, #666);
	font-size: 14px;
	font-weight: 900;
}

section.section_contact form .input-group .prepend i {
	font-size: 16px;
}

section.section_contact form .input-group input {
	background: #F8F8F8;
	padding: 19px 19px 19px 60px;
	color: #898989;
	line-height: 30px;
	width: 100%;
	border: none;
	border-radius: 5px;
}

section.section_contact form .button.submit {
	color: var(--Primary-Normal, #336AEA);
	background-color: #FFF;
	filter: drop-shadow(0px 6px 29px rgba(0, 0, 0, 0.13));
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	width: 320px;
	min-width: max-content;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 36px auto 0;
	border-radius: 5px;

}

/*  Section 9 (Footer Section) */
#shadow-host-companion {
	display: none;
}

section.section_footer {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #dfdfdf;
	margin-top: 90px;
}

section.section_footer .wrapper {
	flex-direction: row;
	padding: 90px 0;
	padding-bottom: 90px;
}

section.section_footer .col .title {
	color: #336aea;
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 23px;
}

section.section_footer .col .links {
	display: flex;
	flex-direction: column;
	margin: 0 10px;
}

section.section_footer .col .links a {
	color: #5F5F5F;
	font-size: 16px;
	text-decoration: none;
	margin-bottom: 20px;
}

section.section_footer .col_1 {
	width: 33%;
	padding-right: 11%;
}

section.section_footer .col_1 .logo {
	height: 45px;
	margin-bottom: 29px;
}

section.section_footer .col_1 .text {
	color: #5F5F5F;
	line-height: 28px;
}

section.section_footer .col_2 {
	width: 19%;
}

section.section_footer .col_3 {
	width: 20%;
}

section.section_footer .col_4 {
	width: 28%;
}

section.section_footer .col_4 .newsletter_form input {
	color: #5F5F5F;
	line-height: 28px;
	padding: 1rem 20px;
	border-radius: 10px;
	border: 1px solid var(--gray-200, #E4E4E7);
	background: var(--base-white, #FFF);
	margin-bottom: 14px;
	width: 100%;
}

section.section_footer .col_4 .newsletter_form .button.submit {
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: #336AEA;
	color: #FFF;
	font-weight: 700;
}

section.section_footer .copyright {
	display: flex;
	justify-content: center;
	width: 100%;
	color: #8d8d8d;
	text-align: center;
	font-size: 14px;
	line-height: 22px;
	border-top: 2px solid #5F5F5F33;
	padding: 20px;
	gap: 10px;
	flex-wrap: wrap;
}

/******************* About page ********************/
/* Section Top Banner */
section.inner_banner {
	background-size: cover;
	height: 410px;
	position: relative;
}

section.inner_banner::before {
	content: '';
	background: rgba(51, 106, 234, 0.90);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

section.inner_banner .wrapper {
	justify-content: center;
	text-align: center;
}

section.inner_banner .title {
	color: #FFF;
	font-size: 49px;
	font-weight: 500;
	line-height: 125%;
}

section.inner_banner .breadcrumbs {
	display: flex;
	justify-content: center;
}

section.inner_banner .breadcrumbs .crumb {
	position: relative;
	padding: 0 7px;
	color: #FFF;
	line-height: 150%;
	text-decoration: none;
}

section.inner_banner .breadcrumbs .crumb:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80%;
	background: white;
}

/*  Section 2 (Vision/Mission) */
body.page-about section.section_vision {
	padding-top: 160px;
	padding-bottom: 100px;
	border-bottom: 1px solid #ccc;
}

body.page-about section.section_mission {
	padding-top: 100px;
}

body.page-about section.about_second_section .wrapper {
	width: 100%;
}

body.page-about section.about_second_section .img {
	width: 60%;
}

body.page-about section.about_second_section .img img {
	border-radius: 5px;
}

body.page-about section.about_second_section .content {
	position: absolute;
	width: 50%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	padding: 46px 58px;
	border-radius: 4px;
	border: 1px solid var(--GrayScale4, #CCC);
	background: #FFF;
	box-shadow: 0px 4px 29px 0px rgba(0, 0, 0, 0.11);
}

body.page-about section.section_mission .img {
	margin-left: auto;
}

body.page-about section.section_mission .content {
	right: unset;
	left: 0;
}

body.page-about section.about_second_section .content .title {
	color: #141F2B;
	font-size: 31px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 24px;
	text-align: center;
}

body.page-about section.about_second_section .content .text {
	color: #5F5F5F;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	text-align: left;
}

/******************* Contact page ********************/
/* Section Form */
body.page-contact section.section_touch {
	margin-top: 131px;
}

body.page-contact section.section_touch .wrapper {
	width: 100%;
}

body.page-contact section.section_touch .title {
	color: var(--GrayScale1, #333);
	font-size: 49px;
	font-weight: 500;
	line-height: 125%;
	margin-bottom: 18px;
}

body.page-contact section.section_touch form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

body.page-contact section.section_touch form .left,
body.page-contact section.section_touch form .right {
	width: calc(50% - 10px);
}

body.page-contact section.section_touch form .input-group {
	display: flex;
	flex-direction: column;
	padding-bottom: 23px;
}

body.page-contact section.section_touch form .right .input-group {
	height: 100%;
}

body.page-contact section.section_touch form .input-group label {
	color: var(--GrayScale2, #666);
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 20px;
	width: 100%;
}

body.page-contact section.section_touch form .input-group input,
body.page-contact section.section_touch form .input-group textarea {
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	align-items: center;
	background: #FAFAFA;
	border: 1px solid #eee;
	border-radius: 5px;
}

body.page-contact section.section_touch form .input-group input {
	height: 80px;
}

body.page-contact section.section_touch form .button.submit {
	padding: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	min-width: max-content;
	max-width: 100%;
	background: #336AEA;
	border-radius: 5px;
	color: var(--Background, #FAFAFA);
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	margin: auto;
}

/******************* Driver Guide page ********************/
/* Section How it works */
section.section_how_it_works {
	margin-top: 138px;
}

section.section_how_it_works .wrapper {
	flex-direction: row;
}

section.section_how_it_works .left {
	width: 40%;
	margin-right: auto;
}

section.section_how_it_works .left .pre_heading {
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	margin-bottom: 4px;
}

section.section_how_it_works .left .title {
	color: var(--GrayScale1, #333);
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 1rem;
}

section.section_how_it_works .left .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 36px;
}

section.section_how_it_works .right {
	width: 40%;
}

section.section_how_it_works .right .rows {
	display: flex;
	flex-direction: column;
}

section.section_how_it_works .right .rows .row {
	display: flex;
	align-items: center;
}

section.section_how_it_works .right .rows .row:not(:last-child) {
	margin-bottom: 48px;
}

section.section_how_it_works .right .rows .row .col.icon {
	margin-right: 20px;
}

section.section_how_it_works .right .rows .row .col .title {
	color: var(--GrayScale1, #333);
	font-size: 25px;
	font-weight: 600;
	line-height: 150%;
}

section.section_how_it_works .right .rows .row .col .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 26px;
}


section.section_how_it_works .left {
	display: flex;
	flex-direction: column;
}

section.section_how_it_works .left .row {
	display: flex;
	align-items: center;
}
section.section_how_it_works .left .row .text{
	margin-bottom: 0;
}

section.section_how_it_works .left .row:not(:last-child) {
	margin-bottom: 38px;
}

section.section_how_it_works .left .row .col.icon {
	margin-right: 20px;
}

section.section_how_it_works .left .row .col .title {
	color: var(--GrayScale1, #333);
	font-size: 25px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 0;
}

section.section_how_it_works .left .row .col .text {
	color: var(--GrayScale2, #666);
	font-size: 18px;
	line-height: 26px;
}

/* Section Steps */
section.section_steps {
	display: none;
	margin-bottom: 138px;
}

section.section_steps .pre_heading {
	color: var(--GrayScale1, #333);
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
	text-transform: uppercase;
	margin-bottom: 4px;
	text-align: center;
}

section.section_steps .wrapper>.title {
	text-align: center;
	color: var(--GrayScale1, #333);
	font-size: 49px;
	font-weight: 600;
	line-height: 150%;
	margin-bottom: 48px;
}

section.section_steps .steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 11%;
}

section.section_steps .steps .step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

section.section_steps .steps .step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 14%;
	right: -88%;
	width: 54%;
	height: 2rem;
	border-bottom: 2px dashed #33333354;
	transform: translateX(-50%);
}

section.section_steps .steps .step .icon .circle {
	width: 124px;
	height: 124px;
	background: #2955BB;
	border: 1px dashed #5F5F5F;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;
}

section.section_steps .steps .step .title {
	color: var(--GrayScale1, #333);
	font-size: 25px;
	font-weight: 500;
	line-height: 130%;
	margin-bottom: 1rem;
	text-align: center;
}

section.section_steps .steps .step .text {
	color: #5F5F5F;
	text-align: center;
	line-height: 28px;
}

/******************* Owner Guide page ********************/
/* Section Covered */
section.section_covered {
	position: relative;
	padding-top: 105px;
	padding-bottom: 105px;
}

section.section_covered .wrapper .content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.section_covered::before {
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.85);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

section.section_covered .pre_heading {
	color: var(--Background, #FAFAFA);
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 12px;
}

section.section_covered .title {
	color: var(--Background, #FAFAFA);
	text-align: center;
	font-size: 50px;
	font-weight: 700;
	line-height: 55px;
	letter-spacing: -1px;
	text-transform: capitalize;
	margin-bottom: 24px;
}

section.section_covered .text {
	color: var(--Background, #FAFAFA);
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 48px;
	width: 800px;
}

section.section_covered .button {
	margin: auto;
}


/* RESPONSIVENESS STARTING */
@media screen and (max-width: 1920px) {
	section.section_top_banner .content .right img {
		width: 1152px;
	}

	section.section_rent .right .list .item:nth-child(3) {
		margin-bottom: 24px;
	}

	section.section_rent .right .title {
		line-height: 120%;
	}

	.global-pre-heading {
		font-size: 20px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-heading {
		font-size: 48px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 18px !important;
		line-height: 120% !important;
	}
}

@media screen and (max-width: 1800px) {
	section.section_top_banner .content .right img {
		width: 1040px;
	}

	section.homepage-hero-banner {
		height: 980px;
	}

	section.section_top_banner .content .left {
		width: 55%;
	}

	section.section_top_banner .content {
		margin-top: 165px;
	}

	section.section_top_banner .content .right img {
		width: 55%;
	}
}

@media screen and (max-width: 1700px) {
	section.section_top_banner .content {
		margin-top: 120px;
	}
}

@media screen and (max-width: 1600px) {
	section.section_top_banner .content .right img {
		width: 880px;
	}

	section.section_top_banner .wrapper .nav {
		max-width: 1250px;
	}

	section.homepage-hero-banner {
		height: 870px;
	}

	section .wrapper {
		max-width: 1250px;
	}

	section.section_top_banner .content {
		max-width: 1250px;
	}

	section.section_top_banner .content {
		margin-top: 110px;
	}

	section.section_top_banner .content .title {
		font-size: 55px;
		margin-bottom: 10px;
	}

	section.section_top_banner .content .pre_heading {
		height: 40px;
		margin-bottom: 20px;
	}

	section.section_3_rac .main .item .number {
		width: 55px;
		height: 55px;
	}

	section.section_rent .right .title {
		font-size: 46px;
		line-height: 150%;
		margin-bottom: 0rem;
	}

	section.section_rent .wrapper {
		align-items: center;
	}

	section.section_rent .right .list .item .icon svg {
		width: 26px;
	}

	section.section_rent .right>.text {
		margin-bottom: 12px;
	}

	section.section_rent .right .list .item {
		margin-bottom: 12px;
	}
}

@media screen and (max-width: 1440px) {
	section.section_how_it_works .left{
		width: 50%;
	}
	section.section_how_it_works .left .row .col .title{
		font-size: 22px !important;
	}
	section.section_how_it_works .left .row .col .text {
		font-size: 16px;
		line-height: 24px;
	}
	section.section_how_it_works .left .row .col.icon svg {
		width: 75px;
	}
	.global-pre-heading {
		font-size: 20px !important;
		line-height: 120% !important;
		margin-bottom: 0px !important;
	}

	.global-heading {
		font-size: 45px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 18px !important;
		line-height: 120% !important;
	}

	body.page-contact section.section_touch {
		margin-top: 100px;
	}

	section.section_why_chose_us .right .rows .row {
		display: flex;
		align-items: center;
	}

	section.section_top_banner .content .right img {
		width: 780px;
	}

	section .wrapper {
		max-width: 1100px;
	}

	section.section_top_banner .wrapper .nav {
		max-width: 1100px;
	}

	section.section_top_banner .content {
		max-width: 1100px;
	}

	.button.blue_button {
		padding: 15px 30px;
	}

	nav.nav .link a {
		font-size: 15px;
	}

	section.homepage-hero-banner {
		height: 800px;
	}

	section.section_top_banner .content .title {
		font-size: 50px;
		margin-bottom: 5px;
	}

	section.section_top_banner .content .text {
		font-size: 15px;
		margin-right: 50px;
		width: 550px;
	}

	section.section_top_banner .content .pre_heading {
		height: 35px;
		margin-bottom: 10px;
	}

	section.section_2_boxes .boxes .box {
		padding: 35px;
	}

	section.section_2_boxes .boxes .box .title {
		margin-bottom: 12px;
	}

	section.section_2_boxes .boxes .box .icon {
		margin-bottom: 0px;
	}

	section.section_2_boxes .boxes .box .icon svg {
		width: 75px;
	}

	section.section_3_rac {
		margin-top: 100px;
	}

	section.section_3_rac .main .item .text {
		font-size: 15px;
	}
	section.section_why_chose_us{
		
	}
	section.section_why_chose_us .right .rows .row .col.icon svg {
		width: 75px;
	}

	section.section_why_chose_us .right .rows .row .col {
		gap: 0px;
	}

	section.section_why_chose_us .right .rows .row .col .title {
		font-size: 22px;
	}

	section.section_why_chose_us .right .rows .row .col .text {
		font-size: 16px;
		line-height: 22px;
	}

	section.section_why_chose_us .right .rows .row:not(:last-child) {
		margin-bottom: 35px;
	}

	section.section_why_chose_us .left .title {
		font-size: 45px;
	}

	section.section_why_chose_us .left .pre_heading {
		margin-bottom: 0;
	}

	section.section_why_chose_us .left .title {
		margin-bottom: 0rem;
	}

	section.section_why_chose_us .left .text {
		font-size: 16px;
		line-height: 27px;
		margin-bottom: 26px;
	}

	section.section_testimonials .slider .t_slide .slide_wrapper {
		padding: 45px 45px;
	}

	section.section_testimonials .pre_heading {
		margin-bottom: 0;
	}

	section.section_testimonials .title {
		font-size: 45px;
	}

	section.section_testimonials .slider .t_slide .text {
		height: 280px;
	}

	section.section_testimonials .slider .t_slide .author .quotes svg {
		width: 40px;
	}

	section.section_rent {
		margin-top: 100px;
	}

	section.section_rent .right>.text {
		margin-bottom: 6px;
		font-size: 16px;
		line-height: 26px;
	}



	section.section_rent .right .list .item {
		margin-bottom: 10px;
	}

	section.section_rent .right .list .item .icon {
		margin-right: 4px;
		height: 26px;
	}

	section.section_rent .right .list .item .text {
		font-size: 16px;
	}

	section.section_rent .right .list .item .icon svg {
		width: 22px;
	}

	section.section_rent .right .pre_heading {
		margin-bottom: 0px;
		line-height: 150%;
	}

	section.section_rent .right .title {
		font-size: 42px;
	}

	section.section_faqs .text {
		text-align: center;
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 55px;
	}

	section.section_faqs .accordion li .question,
	section.section_faqs .accordion li::marker {
		font-size: 19px;
	}

	section.section_faqs .accordion li .answer {
		font-size: 15px;
	}

	section.section_contact .text {
		font-size: 16px;
	}

	section.section_contact .title {
		font-size: 45px;
		margin-bottom: 0px;
	}

	section.section_contact .pre_heading {
		margin-bottom: 0px;
	}

	section.section_footer .col .links a {
		font-size: 18px;
		text-decoration: none;
		margin-bottom: 15px;
	}

	section.section_footer .col_1 .text {
		line-height: 28px;
		font-size: 15px;
	}

	section.section_footer .copyright {
		padding: 20px;
	}

	section.section_footer .wrapper {
		padding: 85px 2rem 85px;
	}

	section.section_contact form .input-group input {
		padding: 15px 15px 15px 50px;
	}

	section.section_contact .wrapper {
		width: 800px;
	}

	section.section_contact form .button.submit {
		margin: 20px auto 0px;
	}

	section.section_contact .text {
		margin-bottom: 35px;
	}

	section.section_contact {
		margin-top: 100px;
	}

	section.section_contact {
		margin-top: 100px;
	}

	section.section_3_rac .wrapper>.title {
		font-size: 45px;
	}

	section.section_why_chose_us {
		margin-top: 100px;
	}

	section.section_testimonials {
		margin-top: 100px;
	}

	section.section_faqs {
		margin-top: 100px;
	}
}

@media screen and (max-width: 1250px) {
	.global-pre-heading {
		font-size: 20px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-heading {
		font-size: 40px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}

	section.section_why_chose_us .left .title {
		margin-bottom: 1rem;
	}

	section.section_3_rac .main {
		display: flex;
		flex-wrap: wrap;
	}

	section.section_footer .wrapper {
		padding: 70px 2rem 70px;
	}

	section.section_3_rac .main .col_5 {
		order: 1;
		width: 100%;
		margin-bottom: 2rem;
	}

	section.section_top_banner .content .text {
		font-size: 15px;
		margin-right: 50px;
		width: 480px;
	}

	section.section_top_banner .content .right img {
		width: 720px;
	}

	section.homepage-hero-banner {
		height: 740px;
	}

	section.section_top_banner .content .pre_heading {
		height: 25px;
		margin-bottom: 10px;
	}

	section.section_top_banner .content .title {
		font-size: 45px;
		margin-bottom: 5px;
	}

	section.section_top_banner .content .text {
		font-size: 15px;
		margin-right: 50px;
		width: 470px;
	}

	section.section_2_boxes .boxes .box {
		padding: 16px;
	}

	section .wrapper {
		max-width: 1000px;
	}
	section.section_top_banner .wrapper{
		padding-top: 89px;
	}
	section.section_top_banner .wrapper .nav {
		position: fixed;
		top: 0;
		width: 100%;
		left: 0;
		padding: 20px;
		background: white;
		max-width: 100%;
		height: auto;
	}

	section.section_top_banner .content {
		max-width: 1000px;
	}

	section.section_3_rac .wrapper>.title {
		font-size: 38px;
		margin-bottom: 40px;
	}

	section.section_3_rac .main .item .title {
		font-size: 19px;
	}

	section.section_3_rac .main .item .number {
		width: 40px;
		height: 40px;
		font-size: 20px;
		margin-bottom: 5px;
	}

	section.section_3_rac .main .col {
		width: 50%;
	}

	section.section_3_rac {
		margin-top: 80px;
	}

	section.section_why_chose_us {
		margin-top: 80px;
	}

	section.section_why_chose_us .left .title {
		font-size: 38px;
	}

	section.section_why_chose_us .left .pre_heading {
		font-size: 18px;
	}

	section.section_why_chose_us .left .text {
		margin-bottom: 18px;
	}

	section.section_why_chose_us .right .rows .row:not(:last-child) {
		margin-bottom: 30px;
	}

	section.section_testimonials {
		margin-top: 80px;
	}

	section.section_testimonials .title {
		font-size: 38px;
	}

	section.section_rent {
		margin-top: 80px;
	}

	section.section_rent .left {
		width: 50%;
		margin-right: 35px;
	}

	section.section_rent .right .title {
		font-size: 38px;
	}

	section.section_faqs {
		margin-top: 80px;
	}

	section.section_contact form .button.submit {
		font-size: 18px;
		width: 230px;
		padding: 18px;
	}

	section.section_footer .wrapper {
		padding: 100px 2rem 100px;
	}

	section.section_footer .col_1 .logo {
		height: 60px;
		margin-bottom: 11px;
	}

	section.section_footer .col .links a {
		font-size: 16px;
		text-decoration: none;
		margin-bottom: 12px;
	}

	section.section_testimonials .slider .t_slide .text {
		font-size: 18px;
	}

	nav.nav .right .button {
		margin-left: 10px;
	}

	.button.blue_button {
		padding: 15px 20px;
	}

	nav.nav .links .link {
		margin-right: 35px;
	}

	section.section_3_rac .main .mid_col .img {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	section.section_3_rac .main .mid_col .img img {
		width: 50%;
	}

	section.section_3_rac .main .col_2 {
		order: 5;
	}

	section.section_3_rac .main .col_1 .number,
	section.section_3_rac .main .col_3 .number {
		margin-left: 0;
	}

	section.section_3_rac .main .col_1,
	section.section_3_rac .main .col_3 {
		padding-left: 20px;

	}

	section.section_3_rac .main .item .text {
		font-size: 15px;
		width: 70%;
		margin-left: 0;
		text-align: left;
	}

	section.section_3_rac .main .item .title {
		margin-left: 0;
		text-align: left;
	}

	section.section_3_rac .main .col_1,
	section.section_3_rac .main .col_2 {
		padding-right: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	section.section_3_rac .main .col_1 .number,
	section.section_3_rac .main .col_2 .number {
		margin-right: 0;
		margin-left: auto;
	}

	section.section_3_rac .main .col_1 .text,
	section.section_3_rac .main .col_2 .text {
		text-align: right;
	}

	section.section_3_rac .main .col_1 .title,
	section.section_3_rac .main .col_2 .title {
		text-align: right;
	}
}

@media screen and (max-width: 1200px) {
	.global-pre-heading {
		font-size: 18px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-heading {
		font-size: 38px !important;
		line-height: 120% !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}

	nav.nav .links .link {
		font-size: 18px !important;
	}

	nav.nav .links .link {
		width: 100%;
	}

	nav.nav .right .link:not(:last-of-type) {
		border-right: none !important;
	}


	nav.nav .right {
		display: none;
	}

	nav.nav .links .right {
		flex-direction: column;
		display: flex !important;
	}

	section.section_top_banner .content .title {
		font-size: 40px;
		margin-bottom: 0px;
	}

	section.section_top_banner .content .left {
		width: 50%;
	}

	section.section_top_banner .content .text {
		font-size: 15px;
		margin-right: 50px;
		width: 400px;
	}
}

@media screen and (max-width: 1050px) {
	body.page-about section.section_mission {
		padding-top: 2rem !important;
	}

	section {
		display: flex;
		padding: 1rem;
	}

	section.section_top_banner .wrapper {
		padding: 1rem;
		padding-top: 89px;
	}

	section.homepage-hero-banner {
		height: auto;
	}

	section.inner_banner {
		height: 300px;
	}

	section .wrapper {
		max-width: 100%;
	}

	section.section_top_banner .wrapper .nav {
		max-width: 100%;
		/* padding: 0; */
	}

	section.section_rent {
		margin-top: 45px;
	}

	section.section_top_banner .content {
		max-width: 100%;
		padding: 0rem;
	}

	section.section_footer .wrapper {
		padding: 70px 1rem 70px;
	}


	section.section_3_rac {
		margin-top: 40px;
	}

	section.section_faqs .accordion {
		padding: 0 2rem;
	}

	section.section_contact {
		margin-top: 40px;
	}

	section.section_contact {
		margin-top: 40px;
	}

	section.section_why_chose_us {
		margin-top: 40px;
	}

	section.section_testimonials {
		margin-top: 40px;
	}

	section.section_faqs {
		margin-top: 40px;
	}

	section.section_top_banner .content {
		margin-top: 70px;
	}

	section.section_top_banner .content .right img {
		width: 600px;
		right: -35px;
	}

	section.section_top_banner .content {
		margin-top: 40px;
	}

	section.section_2_boxes .boxes {
		margin-top: 0;
		gap: 20px;
		flex-direction: row !important;
	}
}

@media screen and (max-width: 991px) {
	section.section_testimonials .slider .t_slide .slide_wrapper {
		height: 510px;
	}

	section.section_testimonials .slider .t_slide .text {
		height: 315px;
	}
}

@media screen and (max-width: 950px) {


	.global-pre-heading {
		font-size: 18px !important;
		line-height: 120% !important;
		margin-bottom: 0px !important;
		text-align: center !important;
	}
	section.section_why_chose_us .left .pre_heading,
	section.section_why_chose_us .left .title{
		text-align: center ;
	}
	.global-heading {
		font-size: 34px !important;
		line-height: 120% !important;
		text-align: center !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}
	section.section_how_it_works .left .row:not(:last-child){
		order: 4;
		margin-bottom: 30px;
	}
	section.section_how_it_works .left{
		margin-bottom: 0 !important;
	}
	section.section_how_it_works .wrapper .button{
		margin-bottom: 30px;
		display: none;
	}
	section.section_how_it_works .right .button{
		display: block !important;
	}
	section.section_how_it_works .left .row .col .title,
	section.section_how_it_works .left .row .col .text{
		text-align: left !important;
	}
	.button.blue_button {
		margin-left: auto;
		margin-right: auto;
	}
	section.section_why_chose_us .left .text{
		text-align: center;
	}
}

@media screen and (max-width: 900px) {
	section.section_top_banner .content .title {
		font-size: 35px;
	}

	section.section_top_banner .content .text {
		font-size: 15px;
		margin-right: 50px;
		width: 340px;
	}

	section.section_top_banner .content .right img {
		width: 530px;
		right: -35px;
	}

	section.section_top_banner .content {
		margin-top: 15px;
	}
}

@media screen and (max-width: 850px) {
	section.section_covered .text{
		width: 100%;
	}

	section.section_top_banner .content .left .button.blue_button {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.global-pre-heading {
		font-size: 18px !important;
		line-height: 120% !important;
		margin-bottom: 0px !important;
		text-align: center !important;
	}

	.global-heading {
		font-size: 34px !important;
		line-height: 120% !important;
		text-align: center !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}

	body.page-contact section.section_touch .title img {
		height: 40px;
	}

	section.section_top_banner .content {
		margin: 0px !important;
	}

	section.section_top_banner .content .right img {
		width: 520px;
		right: -58px;
	}

	section.section_top_banner .content .pre_heading .text {
		white-space: nowrap;
	}

	section.section_top_banner .content .title {
		font-size: 33px;
	}

	section.section_top_banner .content .left {
		margin-bottom: 0px;
	}

	section.section_why_chose_us,
	section.section_how_it_works {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	.global-pre-heading {
		font-size: 18px !important;
		line-height: 120% !important;
		margin-bottom: 0px !important;
		text-align: center !important;
	}

	.global-heading {
		font-size: 38px !important;
		line-height: 120% !important;
		text-align: center !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}

	body.page-contact section.section_touch {
		margin-top: 40px;
	}

	section.section_top_banner .content {
		padding: 0;
	}

	section.section_top_banner .content .text {
		width: 100%;
	}

	section.section_top_banner .content .right {
		display: none;
	}

	section.section_top_banner .content .left {
		width: 100%;
		margin: 50px 0px;
	}

	section.section_2_boxes .boxes {
		margin-top: 0;
		gap: 20px;
		flex-direction: row !important;
	}

	section.section_2_boxes .boxes .box .icon svg {
		width: 60px;
	}

	section.section_2_boxes .boxes .box .title {
		margin-bottom: 0px;
	}

}

@media screen and (max-width: 650px) {
	section.section_3_rac .main .col_2 {
		order: 4 !important;
	}


	section.section_3_rac .main .col_1 .number,
	section.section_3_rac .main .col_2 .number {
		margin-right: auto !important;
		margin-left: 0 !important;
	}

	section.section_3_rac .main .col_1 .text,
	section.section_3_rac .main .col_2 .text {
		text-align: left !important;
		margin-right: auto;
	}

	section.section_3_rac .main .col_1 .title,
	section.section_3_rac .main .col_2 .title {
		text-align: left !important;
		margin-right: auto;
	}

	section.section_3_rac .main .col {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	section.section_3_rac .main .mid_col .img img {
		width: 100%;
	}

	section.section_3_rac .main .item .number {
		width: 50px;
		height: 50px;
	}

	section.section_3_rac .main .item .title {
		font-size: 25px;
	}

	section.section_3_rac .main .item .text {
		font-size: 18px;
		width: 100%;
	}

	section.section_why_chose_us .left .text {
		font-size: 18px;
	}
}

@media screen and (max-width: 600px) {
	section.section_why_chose_us .right .rows .row .col .title {
		font-size: 20px;
		line-height: 120%;
	}

	section.section_rent .wrapper .right {
		width: 100%;
		margin-top: 3rem;
	}

	section.section_nav {
		padding: 1rem 2rem;
	}

	section.section_rent .right .title {
		margin-bottom: 1rem;
	}

	section.section_2_boxes .boxes {
		margin-top: 0;
		gap: 20px;
		flex-direction: column !important;
	}

	section.section_2_boxes .boxes .box {
		margin-bottom: 0px !important;
	}

	section.section_top_banner .content .title {
		font-size: 40px;
	}

	section.section_top_banner .content .text {
		font-size: 18px;
		margin-right: 0px;
		width: 100%;
	}

	section.section_rent .right>.text {
		margin-bottom: 16px;
		font-size: 18px;
		line-height: 28px;
	}

	section.section_rent .right .list .item {
		margin-bottom: 15px;
	}

	section.section_rent .right .list .item .text {
		font-size: 18px;
	}

	section.section_contact form .button.submit {
		height: 60px;
		width: 180px;
		margin-top: 0;
	}
}

@media screen and (max-width: 550px) {
	section.section_testimonials .slider .t_slide .text {
		height: 335px;
	}

	section.section_testimonials .slider .t_slide .slide_wrapper {
		height: 530px;
	}
}

@media screen and (max-width: 500px) {
	section.section_testimonials .slider .t_slide .slide_wrapper {
		padding: 30px 30px;
	}

	section.section_testimonials .slider .t_slide .text {
		height: 355px;
	}
}

@media screen and (max-width: 470px) {
	.global-pre-heading {
		font-size: 18px !important;
		line-height: 120% !important;
		margin-bottom: 0px !important;
		text-align: center !important;
	}

	.global-heading {
		font-size: 34px !important;
		line-height: 120% !important;
		text-align: center !important;
		margin-bottom: 1rem !important;
	}

	.global-text {
		font-size: 16px !important;
		line-height: 120% !important;
	}

	nav.nav .links {
		padding: 5rem 2rem 3rem !important;
	}

	nav.nav .links .link {
		margin-left: 0px !important;
	}

	body.page-contact section.section_touch {
		margin-top: 50px !important;
		padding-top: 0px !important;
		padding-bottom: 0px;
	}

	section.section_footer .col:nth-child(4) .title {
		text-align: center;
	}

	section.section_contact .bg_elements .dots {
		display: none;
	}

	section.section_rent .right .pre_heading {
		text-align: center;
	}

	section.section_rent .right .title {
		text-align: center;
	}

	body.page-about section.section_vision {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	body.page-about section.section_mission {
		padding-top: 2rem;
	}

	section.section_why_chose_us .left .pre_heading {
		font-size: 18px;
		text-align: center;
	}

	section.section_why_chose_us .left .title {
		font-size: 38px;
		text-align: center;
	}

	body.page-contact section.section_touch form .button.submit {
		font-size: 16px;
		padding: 15px 30px;
		height: 49px;
		margin: none;
		width: 100%;
	}

	body.page-contact section.section_touch form .input-group input,
	body.page-contact section.section_touch form .input-group textarea {
		border-radius: 4px;
	}

	section.section_contact {
		padding: 50px 15px;
	}

	body.page-contact section.section_touch .title {
		font-size: 34px !important;
		line-height: 120%;
	}

	body.page-contact section.section_touch .title img {
		height: 34px;
		
	}

	section {
		padding: 15px;
	}

	section.section_top_banner .wrapper {
		padding: 15px;
		padding-top: 48px;
	}

	nav.nav .logo {
		height: 35px;
	}

	nav.nav .close_button {
		top: 19px !important;
		right: 15px !important;
	}

	nav.nav .links .link {
		margin-bottom: 0.3rem !important;
		margin-top: 0.3rem !important;
	}

	section.section_contact form .button.submit {
		margin-top: 23px;
	}

	section.section_rent {
		margin-top: 4rem;
	}

	section.section_top_banner .content .left {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	section.section_top_banner .wrapper .nav {
		max-width: 100%;
		/* padding: 0rem; */
		/* height: 36px; */
	}

	nav.nav .links {
		padding: 5rem 2rem 3rem;
	}

	nav.nav .hamburger {
		display: flex;
		scale: 0.7;
	}

	section.section_top_banner .content .pre_heading {
		width: 100%;
	}

	section.section_3_rac .main .col_2 {
		order: 4 !important;
	}

	section.section_top_banner .content .left {
		margin-bottom: 0px;
	}

	.button.blue_button {
		width: 100%;
	}

	section.section_top_banner .content .pre_heading {
		margin-bottom: 15px;
	}

	section.section_top_banner .content .title {
		margin-bottom: 15px;
	}

	section.section_3_rac {
		margin-top: 20px;
	}

	section.section_why_chose_us,
	section.section_how_it_works {
		margin-top: 15px !important;
	}

	section.section_rent .wrapper .right {
		margin-top: 50px !important;
	}

	section.section_contact {
		margin-top: 50px !important;
	}

	section.section_3_rac .wrapper>.title {
		font-size: 33px;
		margin-bottom: 15px !important;
	}

	section.section_testimonials .title {
		font-size: 33px;
	}

	section.section_testimonials {
		/* margin-top: 15px !important; */
	}

	section.section_faqs .pre_heading {
		margin: 0px;
	}

	.accordion {
		margin: 0px;
		/* padding: 0; */
	}

	section.section_3_rac .wrapper>.title {
		line-height: 120%;
	}

	section.section_rent .right .title {
		font-size: 33px;
		line-height: 120%;
	}

	section.section_faqs .title {
		font-size: 33px;
		line-height: 120%;
	}

	section.section_faqs {
		margin-top: 50px !important;
		padding-top: 0px;
	}

	section.section_contact .title {
		font-size: 33px;
		line-height: 120%;
	}

	section.section_rent .right .list .item:nth-child(3) {
		margin-bottom: 36px;
	}

	section.section_why_chose_us .left .text {
		margin-bottom: 36px;
	}

	section.section_top_banner .content .title {
		font-size: 34px;
	}

	section.section_top_banner .content {
		padding: 0;
	}

	section.section_rent .right .list .item .text {
		font-size: 16px;
	}

	section.section_rent .right>.text {
		margin-bottom: 13px;
		font-size: 16px;
		line-height: 26px;
	}

	section.section_top_banner .content .pre_heading .text {
		white-space: pre-line;
		font-size: 16px;
	}

	section.section_testimonials .slider .t_slide {
		padding: 15px 10px;
	}


	.button.blue_button {
		padding: 15px px 50px;
	}
	section.section_how_it_works .left .text ul{
		text-align: left !important;
	}
}

@media screen and (max-width: 440px) {
	
	section.section_testimonials .slider .t_slide .text {
		height: 300px;
		font-size: 16px;
	}

	section.section_testimonials .slider .t_slide .slide_wrapper {
		height: 460px;
	}
}

@media screen and (max-width: 390px) {
	section.section_testimonials .slider .t_slide .slide_wrapper {
		height: 500px;
	}

	section.section_testimonials .slider .t_slide .text {
		height: 340px;
	}
}