@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
:root {
    --site-container: 1600px;
    --primary-color: #00afef;
    --secondary-color: #051940;
    --gradient-overlay: linear-gradient(116deg, #051940 4.46%, #0d41a6 85.8%);
    --black: #000;
    --white: #fff;
    --bg-light: #f0f3f8;
    --banner-gradient: linear-gradient(180deg, #b4b6bc 33%, #ced2dc 44.5%, #eaf1fb 67.5%, #d8d9e4 80.5%);
    --git-block-gradient: linear-gradient(298deg, #051940 -3.17%, #00afef 254.68%);
}
body {
    font-family: "Poppins", sans-serif;
}
ul {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
img{
	max-width: 100%;
}
.site_container {
    width: 100%;
    max-width: var(--site-container);
    margin-inline: auto;
    padding: 0 100px;
}
.site_row {
    display: flex;
    align-items: center;
}
.site_header {
    padding: 18px 0;
/*     position: sticky;
    top: 0;
    z-index: 9999; */
    background: var(--white);
}
.site_header .site_row {
    justify-content: space-between;
    gap: 90px;
}
.site_header .site_logo {
    width: 100%;
    max-width: 280px;
}
.site_header .site_logo a {
    display: block;
}
.site_header .site_logo a img {
    width: 100%;
}
.site_header .site_nav {
    width: calc(100% - 370px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site_header .site_nav ul.nav_menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 53px;
}
.site_header .site_nav ul.nav_menu li a {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--black);
    transition: 0.3s all;
}
.site_header .site_nav ul.nav_menu li a:hover {
    color: var(--primary-color);
}
.site_header .site_nav ul.nav_menu li.current_page_item a {
    color: var(--primary-color);
}
.site_header .site_nav .host_block {
    display: flex;
    gap: 48px;
    align-items: center;
}
.site_header .site_nav .host_block a.host_cta {
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--white);
    border-radius: 5px;
    padding: 16px 24px;
    transition: 0.3s all;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}
.site_header .site_nav .host_block a.host_cta:hover {
    background: rgba(0, 0, 0, 0);
    color: var(--primary-color);
}
.site_header .site_nav .host_block a.support_no_cta span {
    display: block;
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}
.site_header .site_nav .host_block a.support_no_cta span.support_no {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize;
    color: var(--black);
}
.site_home_banner {
    background: var(--banner-gradient);
    position: relative;
}

.site_home_banner .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.site_home_banner .txt_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.site_home_banner .txt_layer .site_container {
    height: 100%;
}
.site_home_banner .txt_layer .site_container .banner_txt_block {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block {
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0.5) 0%, rgba(178, 181, 190, 0.5) 100%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    position: absolute;
    z-index: 1;
    left: calc((100% - 1400px) / 2);
    top: 225px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .top {
    display: flex;
    align-items: flex-end;
    padding-right: 13px;
    margin-top: 13px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .top span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .price_block {
    display: flex;
    align-items: flex-end;
    margin-top: 13px;
    padding: 0 13px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .price_block span.price {
    color: var(--black);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .price_block span {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block {
    padding: 0 13px 20px;
    margin-top: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
/* .site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .full_view_cta {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .full_view_cta img {
    transition: 0.3s all;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .full_view_cta:hover {
    background: var(--black);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .full_view_cta:hover img {
    filter: invert(1);
} */
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 5px 32px;
    height: 50px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--white);
    transition: 0.3s all;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta span {
    transition: 0.3s all;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize;
    color: var(--black);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta i {
    transition: 0.3s all;
    color: var(--black);
    font-size: 14px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta:hover {
    background: var(--black);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta:hover span {
    color: var(--white);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .rent_block .btn_block .details_cta:hover i {
    color: var(--white);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts span.tagline {
   font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--black);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 1em;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts{
	background: linear-gradient(180deg, rgba(248, 248, 248, .5) 0%, rgba(178, 181, 190, .5) 100%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    padding: 2rem;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts span.tagline::after {
    content: "";
	flex: 1;
    height: 1px;
    background: var(--black);
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts h1 {
    color: var(--black);
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
    margin-top: 24px;
	margin-bottom: 0;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts h2 {
    color: var(--black);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    margin-top: 24px;
	margin-bottom: 0;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts .app_store {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts .app_store a {
    display: block;
}
.site_home_banner .txt_layer .site_container .banner_txt_block .txts .app_store a img {
    width: 100%;
}
.site_home_banner .downloadApp_cta{
	display: inline-block;
	padding: 1em 2em;
	border-radius: 100em;
	line-height: 1.1;
	background: var(--black);
	color: #fff;
	display: none;
}

.site_home_banner 
.section_heading {
    text-align: center;
}
.section_heading h2 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
    margin: 0;
}
.section_heading p {
    margin: 30px auto 0;
    width: 100%;
    max-width: 780px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
}
.how_it_works {
    padding: 60px 0 90px;
}
.how_it_works .section_heading {
    margin-bottom: 40px;
	text-align: center;
}
.how_it_works .site_row {
    gap: 20px;
}
.how_it_works .site_row .site_colm {
    width: calc((100% - 40px) / 3);
}
.how_it_works .site_row img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
	aspect-ratio: 1/1;
}
.how_it_works .site_row h3 {
    margin-top: 50px;
    text-align: center;
    color: var(--black);
    margin-bottom: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
}
.how_it_works .site_row p {
    margin: 23px auto 0;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.why_moovalot {
    position: relative;
}
.why_moovalot .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.why_moovalot .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.why_moovalot .txt_layer {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 63px 100px 110px;
}
.why_moovalot .txt_layer .section_heading {
    text-align: left;
}
.why_moovalot .txt_layer .section_heading h2 {
    color: var(--white);
}
.why_moovalot .txt_layer .section_heading p {
    color: var(--white);
}
.why_moovalot .txt_layer .why_list {
    margin-top: 45px;
}
.why_moovalot .txt_layer .why_list .item {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
}
.why_moovalot .txt_layer .why_list .item:last-child {
    margin-bottom: 0;
}
.why_moovalot .txt_layer .why_list .item .icon_block {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why_moovalot .txt_layer .why_list .item .info {
    width: calc(100% - 122px);
}
.why_moovalot .txt_layer .why_list .item .info span.title {
    display: block;
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
}
.why_moovalot .txt_layer .why_list .item .info p {
    margin: 10px 0 0 0;
    color: #bdbdbd;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
}
.testimonial_block {
    padding: 80px 0 320px;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}
.testimonial_block::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../../assets/img/bg_curve.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.testimonial_block .section_heading {
    text-align: center;
    position: relative;
    z-index: 1;
}
.testimonial_block .section_heading h2 {
    color: var(--white);
}
.testimonial_block .section_heading p {
    color: var(--white);
}
.testimonial_block .review_slider {
    margin-top: 48px;
}
.testimonial_block .review_slider .slider_item .review_txt {
    border-radius: 8px;
    border: 1px solid #00afef;
    background: linear-gradient(116deg, rgba(5, 25, 64, 0) 4.46%, rgba(13, 64, 166, 0) 85.8%) !important;
    padding: 28px 32px 50px;
    transition: 0.3s all;
}
.testimonial_block .review_slider .slider_item .review_txt .quote_icon {
    width: 46px;
    opacity: 0.5 !important;
    transition: 0.3s all;
}
.testimonial_block .review_slider .slider_item .review_txt p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--white);
    opacity: 0.4 !important;
    /* text-transform: capitalize; */
    margin: 28px 0 0 0;
    transition: 0.3s all;
}
.testimonial_block .review_slider .slider_item .author_info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 14px;
    opacity: 0.6 !important;
    transition: 0.3s all;
}
.testimonial_block .review_slider .slider_item .author_info .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial_block .review_slider .slider_item .author_info .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonial_block .review_slider .slider_item .author_info .info_txt {
    width: calc(100% - 80px);
}
.testimonial_block .review_slider .slider_item .author_info .info_txt span {
    display: block;
}
.testimonial_block .review_slider .slider_item .author_info .info_txt span.title {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}
.testimonial_block .review_slider .slider_item .author_info .info_txt span.desg {
    margin-top: 8px;
    color: #a0acc5;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
}
.testimonial_block .review_slider .owl-item.center .slider_item .review_txt {
    background: linear-gradient(116deg, #051940 4.46%, #0d41a6 85.8%) !important;
}
.testimonial_block .review_slider .owl-item.center .slider_item .review_txt .quote_icon {
    opacity: 1 !important;
}
.testimonial_block .review_slider .owl-item.center .slider_item .review_txt p {
    opacity: 1 !important;
}
.testimonial_block .review_slider .owl-item.center .slider_item .author_info {
    opacity: 1 !important;
}
.testimonial_block .review_slider .owl-nav {
    margin-top: 50px;
    display: flex;
    padding-left: 100px;
    gap: 8px;
}
.testimonial_block .review_slider .owl-nav button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    background: rgba(0, 0, 0, 0);
    transition: 0.3s all;
    border-radius: 0;
    margin: 0;
}
.testimonial_block .review_slider .owl-nav button:hover {
    background: var(--white);
}
.testimonial_block .review_slider .owl-nav button:hover i {
    color: var(--secondary-color);
}
.testimonial_block .review_slider .owl-nav button i {
    color: var(--white);
    transition: 0.3s all;
}
.testimonial_block .review_slider .owl-nav button span {
    display: none;
}
.faq_block {
    padding: 100px 0 138px 0;
    position: relative;
    z-index: 2;
    /*margin-top: -100px;*/
}
.faq_block .site_row {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 100px;
}
.faq_block .img_block {
    width: calc(100% - 902px);
}
.faq_block .img_block img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.faq_block .faq_accordion {
    max-width: 882px;
    width: 100%;
}
.faq_block .faq_accordion .faq_item {
    padding-bottom: 18px;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 18px;
}
.faq_block .faq_accordion .faq_item:last-child {
    margin-bottom: 0;
}
.faq_block .faq_accordion .faq_item .faq_head {
    position: relative;
    transition: 0.3s all;
    cursor: pointer;
}
.faq_block .faq_accordion .faq_item .faq_head::before,
.faq_block .faq_accordion .faq_item .faq_head::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    transition: 0.3s all;
}
.faq_block .faq_accordion .faq_item .faq_head::before {
    width: 16px;
    height: 1px;
}
.faq_block .faq_accordion .faq_item .faq_head::after {
    width: 1px;
    height: 16px;
    right: 7px;
}
.faq_block .faq_accordion .faq_item .faq_head span {
    display: block;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* text-transform: capitalize; */
}
.faq_block .faq_accordion .faq_item .faq_body {
    padding-top: 0;
    transition: 0.3s all;
}
.faq_block .faq_accordion .faq_item .faq_body p {
    color: #4d4d4d;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
    margin: 0;
    display: none;
}
.faq_block .section_heading,
.search_trailer .section_heading{
    text-align: center;
}
.faq_block .faq_accordion .faq_item.faq_show .faq_head::after {
    height: 0px;
}
.faq_block .faq_accordion .faq_item.faq_show .faq_body {
    padding-top: 18px;
}
.faq_block .faq_accordion .faq_item.faq_show .faq_body p {
    display: block;
}
.app_download_cta_banner {
    background: var(--bg-light);
    padding: 20px 0 20px;
}
.app_download_cta_banner .site_row {
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.app_download_cta_banner .site_row .colm {
    width: calc((100% - 40px) / 2);
}
.app_download_cta_banner .site_row .img_block img {
    width: 100%;
}
.app_download_cta_banner .site_row h3 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
}
.app_download_cta_banner .site_row p {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
    margin: 35px 0 12px 0;
}
.app_download_cta_banner .site_row h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--black);
}
.app_download_cta_banner .site_row .btn_row {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}
.app_download_cta_banner .site_row .btn_row a {
    display: block;
}
.search_trailer {
    padding: 94px 0;
}
.search_trailer .search_form {
    margin-top: 30px;
    width: 100%;
    max-width: 706px;
    position: relative;
    margin: 30px auto 40px;
}
.search_trailer .search_form input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #cad1dd;
    padding: 18px 19px 17px 21px;
}
.search_trailer .search_form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 19px;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
}
.search_trailer .search_form button i {
    color: var(--primary-color);
}
.search_trailer .map img {
    width: 100%;
}
footer{
    position: relative;
    overflow: hidden;
}
footer ul {
    list-style-type: none;
    padding: 0;
}
footer .top_block {
    background: var(--black);
    padding: 60px 0 80px;
}
footer .top_block .site_row {
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}
footer .top_block .site_row .colm {
    width: calc((100% - 527px) / 3);
}
footer .top_block .site_row .colm:first-child {
    width: 100%;
    max-width: 377px;
}
footer .top_block p {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
    margin: 20px 0 0 0;
}
footer .top_block h3.title {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 20px;
    text-transform: capitalize;
}
footer .top_block ul.q_links li {
    margin-bottom: 20px;
}
footer .top_block ul.q_links li:last-child {
    margin-bottom: 0;
}
footer .top_block ul.q_links li a {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    transition: 0.3s all;
}
footer .top_block ul.q_links li a:hover {
    padding-left: 8px;
}
footer .top_block ul.contact_link li {
    margin-bottom: 20px;
}
footer .top_block ul.contact_link li:last-child {
    margin-bottom: 0;
}
footer .top_block ul.contact_link li a {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}
footer .top_block ul.contact_link li a img {
    margin-top: 2px;
}
footer .top_block ul.contact_link li a span {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    transition: 0.3s all;
}
footer .top_block .qr_block {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
footer .top_block .qr_block img {
    width: 71px;
}
footer .top_block .qr_block p {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    transition: 0.3s all;
    margin: 0;
    width: calc(100% - (71px + 15px));
}
footer .top_block .btn_row {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
footer .top_block .btn_row a {
    border-radius: 8px;
    border: 1px solid var(--white);
    overflow: hidden;
    width: calc((100% - 12px) / 2);
}
footer .top_block .btn_row a img {
    width: 100%;
}
footer .bottom_block {
    background: #262828;
    padding: 24px 0;
}
footer .bottom_block .site_row {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
footer .bottom_block .site_row p {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: capitalize;
    margin: 0;
}
footer .bottom_block .site_row ul.social_links {
    display: flex;
    gap: 20px;
}
footer .bottom_block .site_row ul.social_links a img {
    transition: 0.3s all;
}
footer .bottom_block .site_row ul.social_links a:hover img {
    transform: scale(1.25);
}
.site_inner_page_banner {
    position: relative;
    background: var(--banner-gradient);
}
.site_inner_page_banner .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.site_inner_page_banner .txt_layer {
    padding: 190px 0;
    position: relative;
    z-index: 1;
}
.site_inner_page_banner .txt_layer .txt_block p.tag {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--black);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    margin: 0;
}
.site_inner_page_banner .txt_layer .txt_block p.tag span {
    width: 100%;
    max-width: 150px;
    height: 1px;
    background: var(--black);
}
.site_inner_page_banner .txt_layer .txt_block h1 {
    color: var(--black);
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    margin: 30px 0 0 0;
}
.site_inner_page_banner.contact_page .bg_layer {
    background: url(../../assets/img/contact_banner_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}
.site_inner_page_banner.support_page .bg_layer {
    background: url(../../assets/img/support_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}
.site_inner_page_banner.host_page .bg_layer {
    background: url(../../assets/img/host_banner_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}
.site_inner_page_banner.about_page {
    background: var(--bg-light);
}
.site_inner_page_banner.about_page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/about_page_texture.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 -172px;
}
.site_inner_page_banner.about_page .bg_layer {
    background: url(../../assets/img/about_banner_img.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom right;
    z-index: 1;
}
.contact_block {
    padding: 85px 0;
    background: var(--secondary-color);
    position: relative;
}
.contact_block::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../../assets/img/bg_curve.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.contact_block .section_heading h2,
.contact_block .section_heading p {
    color: var(--white);
}
.contact_block .form_block {
    width: 100%;
    max-width: 1100px;
    margin-top: 50px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 4px 74px 0px rgba(19, 39, 77, 0.2);
    overflow: hidden;
}
.contact_block .form_block .inner_row {
    display: flex;
    flex-wrap: wrap;
}
.contact_block .form_block .inner_row .img_block {
    width: 443px;
    height: auto;
}
.contact_block .form_block .inner_row .img_block .img_box {
    width: 100%;
    height: 100%;
}
.contact_block .form_block .inner_row .img_block .img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.contact_block .form_block .inner_row .form_area {
    width: calc(100% - 443px);
    padding: 20px 65px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_block .form_block .inner_row .form_area form {
    width: 100%;
    padding: 50px 0;
}
.contact_block .form_block .inner_row .form_area form .form_field {
    margin-bottom: 15px;
    width: 100%;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block {
    width: 100%;
    position: relative;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block i {
    color: var(--primary-color);
    position: absolute;
    top: 18px;
    left: 20px;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block input,
.contact_block .form_block .inner_row .form_area form .form_field .field_block textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #bec5d1;
    background: #f8fbff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    color: var(--black);
    text-transform: capitalize;
    transition: 0.3s all;
    outline: 1px solid rgba(0, 0, 0, 0);
    padding: 12px 20px 12px 48px;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block input:focus,
.contact_block .form_block .inner_row .form_area form .form_field .field_block textarea:focus {
    outline: 1px solid var(--primary-color);
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block ::-moz-placeholder {
    color: #8c8f94;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-transform: capitalize;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block ::placeholder {
    color: #8c8f94;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-transform: capitalize;
}
.contact_block .form_block .inner_row .form_area form .form_field .field_block textarea {
    height: 130px;
    resize: none;
}
.contact_block .form_block .inner_row .form_area form .submit_btn {
    margin-top: 25px;
}
.contact_block .form_block .inner_row .form_area form .submit_btn input[type="submit"],
.contact_block .form_block .inner_row .form_area form .submit_btn button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
    border: 1px solid rgba(0, 0, 0, 0);
    background: var(--primary-color);
    transition: 0.3s all;
}
.contact_block .form_block .inner_row .form_area form .submit_btn input[type="submit"]:hover,
.contact_block .form_block .inner_row .form_area form .submit_btn button:hover {
    background: var(--secondary-color);
    color: var(--white);
}
.get_in_touch_block {
    background: var(--white);
    padding: 0 0 80px 0;
}
.get_in_touch_block .site_row {
    margin-top: 50px;
    gap: 20px;
    align-items: flex-start;
}
.get_in_touch_block .site_row .colm {
    width: calc((100% - 40px) / 3);
}
.get_in_touch_block .site_row .colm .colm_inner {
    background: var(--git-block-gradient);
    border-radius: 10px;
    padding: 30px;
    height: 210px;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row {
    display: flex;
    gap: 25px;
    height: 100%;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .icon_box {
    width: 72px;
    border-radius: 8px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-color);
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .icon_box i {
    font-size: 24px;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info {
    width: calc(100% - 97px);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info span {
    display: block;
    color: var(--white);
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info span.title {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info span.sub_title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-top: 10px;
    text-transform: capitalize;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info a.cta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info a.cta span {
    color: var(--primary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: capitalize;
}
.get_in_touch_block .site_row .colm .colm_inner .inner_row .info a.cta i {
    font-size: 14px;
    color: var(--bg-light);
}
.support_block .block_heading {
    padding: 70px 0 140px;
}
.support_block .block_heading .section_heading p {
    max-width: 1088px;
    font-size: 22px;
    line-height: 160%;
}
.support_block .block_heading .section_heading p b,
.support_block .block_heading .section_heading p strong {
    font-weight: 600;
}
.support_block .block_item_list {
    position: relative;
    counter-reset: section;
}
.support_block .block_item_list::before {
    content: "";
    width: 134px;
    height: 134px;
    background: url(../../assets/img/marker.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
}
.support_block .block_item_list .list_item {
    background: var(--white);
    padding: 70px 0;
}
.support_block .block_item_list .list_item:nth-child(odd) {
    background: var(--bg-light);
}
.support_block .block_item_list .list_item:nth-child(odd) .list_row .img_block::before {
    color: #e1e7ed;
    right: -50px;
    top: 0;
}
.support_block .block_item_list .list_item:nth-child(even) .list_row {
    flex-direction: row-reverse;
}
.support_block .block_item_list .list_item:nth-child(even) .list_row .img_block::before {
    color: #edf1f6;
    left: -60px;
    bottom: 0;
}
.support_block .block_item_list .list_item:first-child .list_row .img_block::before {
    color: #e1e7ed;
    right: 0;
    top: 0;
}
.support_block .block_item_list .list_item:last-child .list_row .img_block::before {
    left: -60px;
    top: 0;
}
.support_block .block_item_list .list_item .list_container {
    width: 100%;
    max-width: 1066px;
    padding: 0 15px;
    margin-inline: auto;
}
.support_block .block_item_list .list_item .list_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-between;
}
.support_block .block_item_list .list_item .list_row .img_block {
    width: 100%;
    max-width: 430px;
    position: relative;
    z-index: 1;
}
.support_block .block_item_list .list_item .list_row .img_block::before {
    content: "0" counter(section);
    counter-increment: section;
    font-size: 154px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -6.16px;
    text-transform: capitalize;
    position: absolute;
    z-index: -1;
}
.support_block .block_item_list .list_item .list_row .img_block .img_thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 433/426;
}
.support_block .block_item_list .list_item .list_row .img_block .img_thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.support_block .block_item_list .list_item .list_row .txt_block {
    width: 100%;
    max-width: 470px;
}
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .caption h4 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--black);
    margin: 0;
}
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .txts {
    margin-top: 30px;
}
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .txts p {
    margin-bottom: 30px;
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* text-transform: capitalize; */
}
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .txts p strong,
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .txts p b {
    font-weight: 600;
}
.support_block .block_item_list .list_item .list_row .txt_block .txt_block_inner .txts p:last-child {
    margin-bottom: 0;
}
span.highlight {
    color: var(--primary-color);
}
.support_page_cta_banner {
    position: relative;
}
.support_page_cta_banner .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--git-block-gradient);
}
.support_page_cta_banner .bg_layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/cta_bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    filter: blur(6.5px);
    opacity: 0.11;
}
.support_page_cta_banner .txt_layer {
    position: relative;
    padding-top: 40px;
}
.support_page_cta_banner .txt_layer .inner_container {
    width: 100%;
    max-width: 1280px;
    padding: 0 15px;
    margin-inline: auto;
}
.support_page_cta_banner .txt_layer .inner_container .inner_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}
.support_page_cta_banner .txt_layer .inner_container .img_block {
    width: 680px;
}
.support_page_cta_banner .txt_layer .inner_container .img_block .img_box {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
}
.support_page_cta_banner .txt_layer .inner_container .img_block .img_box img {
    max-width: 100%;
}
.support_page_cta_banner .txt_layer .inner_container .txt_block {
    width: calc(100% - 730px);
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts {
    padding-bottom: 100px;
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts h4 {
    color: var(--white);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts h4 span {
    font-weight: 700;
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts p {
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-transform: capitalize;
    margin: 40px 0 0 0;
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts a.cta_btn {
    display: inline-flex;
    margin-top: 60px;
    width: 235px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #0956b3;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    background: var(--white);
    transition: 0.3s all;
    border: 1px solid rgba(0, 0, 0, 0);
}
.support_page_cta_banner .txt_layer .inner_container .txt_block .txts a.cta_btn:hover {
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--white);
    color: var(--white);
}
.getting_started_block {
    padding: 78px 0 164px;
    position: relative;
    overflow: hidden;
}
.getting_started_block::before {
    content: "";
    position: absolute;
    width: 676px;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 100%;
    top: -59px;
    right: -196px;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
}
.getting_started_block .site_row {
    gap: 100px;
    align-items: center;
}
.getting_started_block .txt_colm,
.getting_started_block .img_colm {
    width: calc((100% - 100px) / 2);
}
.getting_started_block .txt_colm .txt_block h3 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item:last-child {
    margin-bottom: 0;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item .icon_block {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item .icon_block img {
    max-width: 100%;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item .txt_block {
    width: calc(100% - 100px);
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item .txt_block .title {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: block;
    text-transform: capitalize;
}
.getting_started_block .txt_colm .txt_block .list_item_with_icon .list_item .txt_block p {
    margin: 18px 0 0 0;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* text-transform: capitalize; */
}
.host_benefit {
    padding: 90px 0 80px;
    background: var(--bg-light);
    position: relative;
}
.host_benefit::before {
    content: "";
    width: 134px;
    height: 134px;
    background: url(../../assets/img/marker.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
}
.host_benefit .section_heading p {
    margin-top: 10px;
}
.host_benefit .site_row {
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}
.host_benefit .txt_colm,
.host_benefit .img_colm {
    width: calc((100% - 50px) / 2);
}
.host_benefit .img_colm img {
    max-width: 100%;
}
.host_benefit .txt_colm .txt_block h3 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item:last-child {
    margin-bottom: 0;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item .icon_block {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item .icon_block img {
    max-width: 100%;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item .txt_block {
    width: calc(100% - 100px);
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item .txt_block .title {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: block;
    text-transform: capitalize;
}
.host_benefit .txt_colm .txt_block .list_item_with_icon .list_item .txt_block p {
    margin: 18px 0 0 0;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    /* text-transform: capitalize; */
}
.customer_saving_value {
    position: relative;
    padding: 112px 0 140px;
}
.customer_saving_value .site_row {
    gap: 78px;
    align-items: center;
}
.customer_saving_value .txt_colm,
.customer_saving_value .img_colm {
    width: calc((100% - 78px) / 2);
}
.customer_saving_value .img_colm .img_block {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 10px;
    background: var(--bg-light);
}
.customer_saving_value .img_colm .img_block img {
    width: 100%;
    height: auto;
}
.customer_saving_value .txt_colm .txt_block h3 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.customer_saving_value .txt_colm .txt_block ul.simple_item_list {
    list-style-type: none;
    padding: 0;
    margin: 50px 0 0 0;
    width: 100%;
    max-width: 500px;
}
.customer_saving_value .txt_colm .txt_block ul.simple_item_list li.list_item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 40px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%;
    /* text-transform: capitalize; */
}
.customer_saving_value .txt_colm .txt_block ul.simple_item_list li.list_item:last-child {
    margin-bottom: 0;
}
.customer_saving_value .txt_colm .txt_block ul.simple_item_list li.list_item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    left: 0;
    top: 5px;
}
.utility_trailer_block {
    position: relative;
    padding: 198px 0 70px;
    background: var(--bg-light);
    z-index: 1;
}
.utility_trailer_block::after {
    content: "";
    width: 134px;
    height: 134px;
    background: url(../../assets/img/marker.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
}
.utility_trailer_block::before {
    content: "";
    position: absolute;
    max-width: 408px;
    width: calc(100% - 50px);
    height: auto;
    aspect-ratio: 408/582;
    left: 0;
    top: 0;
    background: var(--primary-color);
    z-index: -1;
}
.utility_trailer_block .site_row {
    gap: 100px;
    align-items: normal;
}
.utility_trailer_block .site_row .txt_colm,
.utility_trailer_block .site_row .img_colm {
    width: calc((100% - 100px) / 2);
}
.utility_trailer_block .site_row .img_colm .img_block {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.utility_trailer_block .site_row .img_colm .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list li.list_item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 40px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%;
    /* text-transform: capitalize; */
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list li.list_item ul.sub_list_item {
    list-style-type: none;
    padding: 0;
    margin: 40px 0 0 0;
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list li.list_item ul.sub_list_item li.sub_item {
    padding-left: 28px;
    position: relative;
    margin-bottom: 40px;
}
.utility_trailer_block
    .site_row
    .txt_colm
    .txt_block
    ul.simple_item_list
    li.list_item
    ul.sub_list_item
    li.sub_item:last-child {
    margin-bottom: 0;
}
.utility_trailer_block
    .site_row
    .txt_colm
    .txt_block
    ul.simple_item_list
    li.list_item
    ul.sub_list_item
    li.sub_item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 19px;
    height: 19px;
    background: url(../../assets/img/check-mark.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    transform: translateY(-50%);
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list li.list_item:last-child {
    margin-bottom: 0;
}
.utility_trailer_block .site_row .txt_colm .txt_block ul.simple_item_list li.list_item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    left: 0;
    top: 5px;
}
.partner_discount_code {
    position: relative;
    padding: 112px 0 70px;
    overflow: hidden;
}
.partner_discount_code::before {
    content: "";
    position: absolute;
    width: 676px;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 100%;
    top: -231px;
    right: -196px;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
}
.partner_discount_code .site_row {
    gap: 78px;
    align-items: center;
}
.partner_discount_code .txt_colm,
.partner_discount_code .img_colm {
    width: calc((100% - 78px) / 2);
}
.partner_discount_code .img_colm .img_block {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 15px;
    border-radius: 10px;
    background: var(--bg-light);
}
.partner_discount_code .img_colm .img_block .img_thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 626/474;
    background: #2e394b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 8px;
}
.partner_discount_code .img_colm .img_block img {
    width: 100%;
    height: auto;
}
.partner_discount_code .txt_colm .txt_block h3 {
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.partner_discount_code .txt_colm .txt_block ul.simple_item_list {
    list-style-type: none;
    padding: 0;
    margin: 50px 0 0 0;
    width: 100%;
    max-width: 500px;
}
.partner_discount_code .txt_colm .txt_block ul.simple_item_list li.list_item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 40px;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%;
    /* text-transform: capitalize; */
}
.partner_discount_code .txt_colm .txt_block ul.simple_item_list li.list_item:last-child {
    margin-bottom: 0;
}
.partner_discount_code .txt_colm .txt_block ul.simple_item_list li.list_item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    left: 0;
    top: 5px;
}
.oppertunity_block {
    position: relative;
    padding: 70px 0 110px;
}
.oppertunity_block .site_container {
    max-width: 1400px;
}
.oppertunity_block .site_row {
    gap: 100px;
}
.oppertunity_block .site_row .txt_colm,
.oppertunity_block .site_row .img_colm {
    width: calc((100% - 100px) / 2);
}
.oppertunity_block .txt_colm .txt_block h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.oppertunity_block .txt_colm .txt_block p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-transform: capitalize;
    margin: 40px 0 0 0;
}
.oppertunity_block .txt_colm .txt_block h3 {
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    margin: 40px 0 0 0;
}
.oppertunity_block .img_colm .img_block img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.ready_to_become_host {
    position: relative;
}
.ready_to_become_host::before {
    content: "";
    width: 134px;
    height: 134px;
    background: url(../../assets/img/marker.png);
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: center;
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
    z-index: 1;
}
.ready_to_become_host .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, #02a8e4 -16.56%, #0c40a6 92.5%);
}
.ready_to_become_host .bg_layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/cta_bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    filter: blur(6.5px);
    opacity: 0.11;
}
.ready_to_become_host .txt_layer {
    padding: 120px 0 85px;
    position: relative;
    z-index: 3;
}
.ready_to_become_host .txt_layer .txt_block {
    width: 100%;
    max-width: 784px;
    margin-inline: auto;
    text-align: center;
}
.ready_to_become_host .txt_layer .txt_block h2 {
    color: var(--white);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: capitalize;
    margin: 0;
}
.ready_to_become_host .txt_layer .txt_block h3 {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    margin: 32px 0 0 0;
    /* text-transform: capitalize; */
}
.ready_to_become_host .txt_layer .txt_block a.cta_btn {
    display: flex;
    margin: 40px auto 0;
    width: 212px;
    height: 63px;
    border-radius: 10px;
    background: var(--white);
    transition: 0.3s all;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #0956b3;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    text-transform: capitalize;
}
.ready_to_become_host .txt_layer .txt_block a.cta_btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}
.welcome_to_moovalot_block {
    padding: 80px 0 126px;
    position: relative;
}
.welcome_to_moovalot_block .section_heading p {
    max-width: 1200px;
}
.welcome_to_moovalot_block .site_row {
    margin-top: 80px;
    gap: 64px;
}
.welcome_to_moovalot_block .site_row .img_colm,
.welcome_to_moovalot_block .site_row .txt_colm {
    width: calc((100% - 64px) / 2);
}
.welcome_to_moovalot_block .img_colm .img_colm_inner {
    position: relative;
    padding-right: 107px;
    padding-top: 50px;
    padding-left: 72px;
}
.welcome_to_moovalot_block .img_colm .img_colm_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 225px;
    height: calc(100% - 83px);
    background: var(--primary-color);
    border-radius: 50px 8px 8px 8px;
    z-index: -1;
}
.welcome_to_moovalot_block .img_colm .img_colm_inner::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 196px;
    height: 196px;
    background: url(../../assets/img/marker.png);
    background-repeat: no-repeat;
    background-size: 196px;
    background-position: center;
}
.welcome_to_moovalot_block .img_colm .img_colm_inner .img_block {
    width: 100%;
    height: 100%;
    aspect-ratio: 456/558;
    border-radius: 8px 350px 8px 8px;
    overflow: hidden;
}
.welcome_to_moovalot_block .img_colm .img_colm_inner .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.welcome_to_moovalot_block .txt_colm .txt_block .para_item {
    margin-bottom: 64px;
}
.welcome_to_moovalot_block .txt_colm .txt_block .para_item:last-child {
    margin-bottom: 0;
}
.welcome_to_moovalot_block .txt_colm .txt_block .para_item h3 {
    margin: 0;
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
}
.welcome_to_moovalot_block .txt_colm .txt_block .para_item p {
    margin: 32px 0 0 0;
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    /* text-transform: capitalize; */
}
.fifty_fifty_img_txt_block {
    background: var(--bg-light);
}
.fifty_fifty_img_txt_block .block_item .block_row {
    display: flex;
    flex-wrap: wrap;
}
.fifty_fifty_img_txt_block .block_item .block_row .img_colm,
.fifty_fifty_img_txt_block .block_item .block_row .txt_colm {
    width: 50%;
    height: auto;
}
.fifty_fifty_img_txt_block .block_item .txt_colm {
    display: flex;
    align-items: center;
}
.fifty_fifty_img_txt_block .block_item .txt_colm .txt_block {
    padding: 20px 0 20px 46px;
}
.fifty_fifty_img_txt_block .block_item .txt_colm .txt_block h3 {
    margin: 0;
    color: var(--black);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
}
.fifty_fifty_img_txt_block .block_item .txt_colm .txt_block p {
    margin: 32px 0 0 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    color: var(--black);
    /* text-transform: capitalize; */
}
.fifty_fifty_img_txt_block .block_item .img_colm .img_block {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.fifty_fifty_img_txt_block .block_item .img_colm .img_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.fifty_fifty_img_txt_block .block_item:nth-child(odd) .txt_colm {
    padding-right: calc((100% - 1400px) / 2);
}
.fifty_fifty_img_txt_block .block_item:nth-child(even) .block_row {
    flex-direction: row-reverse;
}
.fifty_fifty_img_txt_block .block_item:nth-child(even) .txt_colm {
    padding-left: calc((100% - 1400px) / 2);
}
.fifty_fifty_img_txt_block .block_item:nth-child(even) .txt_colm .txt_block {
    padding: 20px 46px 20px 0;
}
.moovalot_solution_block {
    position: relative;
    background: var(--secondary-color);
}
.moovalot_solution_block .bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.moovalot_solution_block .bg_layer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, #02a8e4 -16.56%, rgba(12, 64, 166, 0) 92.5%);
}
.moovalot_solution_block .bg_layer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.2;
}
.moovalot_solution_block .txt_layer {
    padding: 80px 0 100px;
    position: relative;
}
.moovalot_solution_block .txt_layer .section_heading h2 {
    color: var(--white);
}
.moovalot_solution_block .txt_layer .site_row {
    margin-top: 60px;
    gap: 50px;
}
.moovalot_solution_block .txt_layer .site_row .txt_colm,
.moovalot_solution_block .txt_layer .site_row .img_colm {
    width: calc((100% - 50px) / 2);
}
.moovalot_solution_block .txt_layer .img_colm img {
    max-width: 100%;
    display: block;
    margin-inline: auto;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item:last-child {
    margin-bottom: 0;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item .icon_block {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background: var(--primary-color);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item .icon_block img {
    max-width: 100%;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item .txt_block {
    width: calc(100% - 100px);
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item .txt_block .title {
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    text-transform: capitalize;
}
.moovalot_solution_block .txt_layer .txt_colm .list_item_with_icon .list_item .txt_block p {
    margin: 18px 0 0 0;
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    /* text-transform: capitalize; */
}
.challenge_block {
    padding: 100px 0;
    background: var(--bg-light);
}
.challenge_block .site_row {
    gap: 100px;
}
.challenge_block .site_row .img_colm,
.challenge_block .site_row .txt_colm {
    width: calc((100% - 100px) / 2);
}
.challenge_block .img_colm img {
    max-width: 100%;
    display: block;
    margin-inline: auto;
}
.challenge_block .txt_colm .txt_block .block_heading {
    width: 100%;
    max-width: 462px;
}
.challenge_block .txt_colm .txt_block .block_heading h3 {
    margin: 0;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--black);
    text-transform: capitalize;
}
.challenge_block .txt_colm .txt_block .txt_items {
    margin-top: 50px;
}
.challenge_block .txt_colm .txt_block .txt_items .item {
    margin-bottom: 70px;
}
.challenge_block .txt_colm .txt_block .txt_items .item:last-child {
    margin-bottom: 0;
}
.challenge_block .txt_colm .txt_block .txt_items .item h4 {
    margin: 0;
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
}
.challenge_block .txt_colm .txt_block .txt_items .item p {
    margin: 20px 0 0 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    color: var(--black);
    /* text-transform: capitalize; */
}
section.error-404.not-found {
    height: 50vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
section.error-404.not-found a {
    color: var(--white);
    background: var(--primary-color);
    padding: 10px 30px;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-block;
}



/* download app hero banner start */
.download-app-hero-banner {
    padding: 40px 0px;
    overflow: hidden;
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
}

.download-app-hero-banner::after {
    position: absolute;
    content: '';
    width: 50%;
    background: #01AEF2;
    bottom: 300px;
    right: -60px;
    z-index: 0;
    border-radius: 50%;
    transform: scale(1.2);
    aspect-ratio: 3 / 3;
}
.hero-banner-image-box img {
    max-width: 100%;
    max-height: 50%;
}
.hero-banner-image-box .mobile-only{
    display: none;
}

.hero-banner-content-box h6 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 26px;
    line-height: 39px;
}
.hero-banner-content-box h1 {
    font-weight: 800;
    font-size: 63px;
    line-height: 75px;
    color: #000;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.hero-banner-content-box h1 span {
    display: block;
}
.hero-banner-content-box {
    max-width: 630px;
    padding-right: 15px;
}
.site-custom-row {
    display: flex;
    align-items: center;
}

.hero-banner-content-box li{
    list-style-type: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin: 5px 0px;

}
.hero-banner-content-box li span {
    background-color: #00AFEF;
    height: 51px;
    width: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}
.hero-banner-content-box h5 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin: 50px 0px 20px 0px;
}
.hero-banner-image-box {
    flex: 1;
    position: relative;
    z-index: 9;
    text-align: right;
}
.start-renting .site_container {
    max-width: 1350px;
}
.start-renting {
    padding: 80px 0px;
}
.start-renting .site-header {
    margin-bottom: 40px;
    text-align: center;
}
.start-renting .site-header h6{
    font-weight: 500;
    font-size: 26px;
    text-transform: capitalize;
    line-height: 33.8px;
    color: #000;
}
.start-renting .site-header h2{
    font-weight: 800;
    font-size: 80px;
    line-height: 120px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #000;
}
.image-box-rent img {
    max-width: 100%;
}
.image-box-rent{
    position: relative;
    text-align: center;
}
.renting-app-buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 30px;
    right: 0;
    margin: auto;
    max-width: 166px;
    text-align: center;
    bottom: 85px;
    gap: 9px;
}
.renting-app-buttons img {
    max-width: 100%;
}
.start-rent-items .cntn-box-rent {
    max-width: 417px;
    margin: auto;
}
.start-rent-items .row {
    align-items: center;
}
.start-rent-items .row:nth-child(even) {
    flex-direction: row-reverse;
}
.start-rent-items .cntn-box-rent span.round-shape {
    background: #00AFEF;
    height: 61px;
    width: 61px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border-radius: 50%;
}
.start-rent-items .cntn-box-rent h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
    color: #000;
}
.start-rent-items .cntn-box-rent p{
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #000;
}

.download-header-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
header.download-app-header {
    padding: 15px 0px;
}

header.download-app-header h6{
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
}

header.download-app-header a{
    font-weight: 600;
    font-size: 24px;
    line-height: 33.6px;
    color: #000;
}
.right-cntn-part span {
    display: block;
}
.left-logo-part img {
    max-width: 100%;
}
.visit-highlight {
    text-align: center;
}
.visit-highlight h4 {
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
}
.visit-highlight h4 a{
    font-weight: 600;
}
.visit-highlight a.btn.visit-btn {
    display: inline-block;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--white);
    border-radius: 5px;
    padding: 8px 24px;
    transition: 0.3s all;
    background: var(--primary-color);
    margin-top: 20px;
}
.visit-highlight a.btn.visit-btn:hover{
    background-color: #000;
}