/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Aptos;
src: url(../fonts/Aptos.ttf) format("truetype");
}
@font-face {
font-family: Aptos-Light;
src: url(../fonts/Aptos-Light.ttf) format("truetype");
}
@font-face {
font-family: Aptos-SemiBold;
src: url(../fonts/Aptos-SemiBold.ttf) format("truetype");
}
@font-face {
font-family: Aptos-Bold;
src: url(../fonts/Aptos-Bold.ttf) format("truetype");
}

/* Basic typography */
body {
font-family: "Aptos";
line-height: 1.6;
color: #1b1b1b;
letter-spacing: 0.5px;;
}

ul {
margin: 0;
padding: 0;
list-style: none;
}

/* Container */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Aptos-SemiBold;
margin: 0;

}

a {
text-decoration: none;
color: #0a044b;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}

p {
color: #242c35;
}
.lp_header {
padding: 10px 0;
width: 100%;
transition: 0.4s all ease;
z-index: 1;
-webkit-transition: 0.4s all ease;
-moz-transition: 0.4s all ease;
-ms-transition: 0.4s all ease;
-o-transition: 0.4s all ease;
}
.logo_header {
width: 180px;
/*Defaultlogosize*/transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}

/* .lp_header.fixed {
top: 0;
width: 100%;
background: #000;
z-index: 9999;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 10px 0;
} */

.button_a {
background: #F15922;
color: #fff;
height: 48px;
display: flex;
width: 153px;
align-items: center;
justify-content: center;
padding: 10px;
border-radius: 8px;
font-size: 17px;
}
.button_a img {
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 0 0 5px;
}
.button_a:hover img {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
.banner_content {
position: absolute;
width: 100%;
top: 0;
display: flex;
align-items: center;
height: 100%;
}
.banner_content_box{
padding-left: 25px;
}
.banner_content_box h1 {
font-size: 40px;
color: #fff;
font-family: Aptos-Bold;
line-height: 1.2;
position: relative;
}
.banner_content_box h1::before {
content: "";
width: 5px;
position: absolute;
height: 100%;
left: -25px;
background: #F15922;
}
.banner_content_box h1 span{
color: #F15922;
}
.banner_content_box p {
font-family: Aptos-SemiBold;
color: #fff;
font-size: 23px;
margin: 37px 0 0 0;
}
.list-banner-list li {
	color: #fff;
	font-size: 17px;
	margin: 8px 0;
}
.banner_content_box ul.list-banner-item li {
	padding: 0;
	color: #fff;
	border-radius: 35px;
	font-size: 16px;
	position: relative;
}
/*.banner_content_box ul {
display: flex;
flex-wrap: wrap;
gap: 10px;
}*/
.banner_content_box ul.list-banner-item li::after {
	content: "";
	width: 2px;
	height: 17px;
	position: absolute;
	background: white;
	right: -9px;
	top: 5px;
}
.banner_content_box ul.list-banner-item li:last-child::after {
	width: 0;
}
.banner_content_box ul.list-banner-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 70%;
	margin: 30px 0 0 0;
	padding: 30px 0 0 0;
	position: relative;
}
.note_important {
	color: #f15922;
	display: block;
	margin: 5px 0 0 0;
	font-size: 11px;
}
.banner_content_box ul.list-banner-item::before {
content: "";
position: absolute;
width: 65%;
height: 1px;
background: #6d6d6d;
top: 0;
left: 0;
}
.banner_form {
padding: 25px;
background: #fff;
}
.banner_form h2 {
font-family: Aptos-Bold;
font-size: 23px;
margin: 0 0 15px 0;
}
/*.banner_form .form-group .form-control {
border-bottom: 1px solid rgba(51, 51, 51, 0.34) !important;
border-radius: 0;
border: none;
padding: 9px 10px;
outline: none;
box-shadow: none;
font-family: Aptos;
font-size: 16px;
color: #6E6D6D;
}*/
.banner_form .form-group .form-control {
	border-bottom: 1px solid rgba(51, 51, 51, 0.34) !important;
	border-radius: 0;
	border: none;
	padding: 8px 0;
	outline: none;
	box-shadow: none;
	font-family: Aptos;
	font-size: 15px;
	color: #6E6D6D;
}
.banner_form .form-group select.form-control {
	background: url(../images/faq_close.svg) no-repeat right center;
	background-size: 12px;
}
.banner_form .form-group select.form-control option {
 letter-spacing: 1px;
}
.banner_form button {
width: 100%;
padding: 10px 0;
font-size: 17px;
margin: 15px 0 0 0;
color: #fff;
border: none;
background: #f15922;
}
.banner_form button img {
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 0 0 5px;
}
.banner_form button:hover img {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
.banner_form button:hover {
background: #000;
}
.custom-checkbox {
appearance: none;
width: 20px;
height: 20px;
border: 1px solid #F15922;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.custom-checkbox:checked::before {
content: "✔️";
height: 20px;
width: 20px;
background-color: #EEE;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
font-size: 9px;
color: #fff !important;
border-radius: 4px;
left: 0;
}
.banner_form .form-group label {
display: flex;
align-items: center;
gap: 10px;
width: 100%;
font-size: 13px;
color: #6E6D6D;
}
.title_h2 {
font-family: Aptos-Bold;
font-size: 35px;
color: #f15922;
line-height: 1.2;
}
.title_h6 {
color: #504F4E;
font-size: 22px;
font-family: Aptos-SemiBold;
}
.title_sub {
color: #504F4E;
font-size: 15px;
font-family: Aptos;
}
.button_b {
	/* width: 350px; */
	/* height: 57px; */
	/* border: 1px solid #504F4E; */
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	/* padding: 10px; */
	/* border-radius: 8px; */
	/* margin: 35px auto 0; */
	font-size: 20px;
	font-family: Aptos;
	cursor: none;
	text-align: center;
	font-family: Aptos-SemiBold;
}

/* .button_b img {
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 0 0 5px;
}
.button_b:hover img {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
.button_b:hover {
background: #f1592238;
} */
.sec_b_boxes {
padding: 50px 30px;
text-align: center;
border: 1px solid #EAE8E7;
min-height: 355px;
margin: 10px 0;
background-size: 109px !important;
background-position: right bottom !important;
transition:all 0.4s ease-in-out ;
-webkit-transition:all 0.4s ease-in-out ;
-moz-transition:all 0.4s ease-in-out ;
-ms-transition:all 0.4s ease-in-out ;
-o-transition:all 0.4s ease-in-out ;
}
.sec_b_boxes figure {
width: 100px;
height: 100px;
margin: 0 auto 25px;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes h3 {
font-family: Aptos-SemiBold;
font-size: 23px;
min-height: 55px;
color: #FF6035;
}
.sec_b_boxes p {
font-size: 15px;
color: #504F4E;
margin: 10px 0 0 0;
line-height: 1.3;
}
.sec_b_boxes_a {
background: url(../images/iccon-a-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_b {
background: url(../images/iccon-b-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_c {
background: url(../images/iccon-c-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_d {
background: url(../images/iccon-d-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_e {
background: url(../images/iccon-e-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_f {
background: url(../images/iccon-f-orange.svg) 0 0 no-repeat;
}


.sec_b_boxes_g {
background: url(../images/iccon-g-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_h {
background: url(../images/iccon-h-orange.svg) 0 0 no-repeat;
}
.sec_b_boxes_i {
background: url(../images/iccon-i-orange.svg) 0 0 no-repeat;
}


.video_sec_content p {
	color: #fff;
	font-size: 16px;
	line-height: 1.3;
}

.sec_b_boxes:hover{
background-color: #f15922;
border-color: transparent;
}
.sec_b_boxes:hover {
background-color: #f15922 !important;
border-color: transparent !important;
}
.sec_b_boxes:hover h3,
.sec_b_boxes:hover p {
color: #fff;
}

/* hover */
.sec_b_boxes:hover .sec_b_boxes_a {
background: url(../images/icon-a-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes:hover .sec_b_boxes_b {
background: url(../images/iccon-b-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes:hover .sec_b_boxes_c {
background: url(../images/iccon-c-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes:hover .sec_b_boxes_d {
background: url(../images/iccon-d-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes:hover .sec_b_boxes_e {
background: url(../images/iccon-e-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}
.sec_b_boxes:hover .sec_b_boxes_f {
background: url(../images/iccon-f-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}


.sec_b_boxes:hover .sec_b_boxes_g {
background: url(../images/iccon-g-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}


.sec_b_boxes:hover .sec_b_boxes_h {
background: url(../images/iccon-h-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}


.sec_b_boxes:hover .sec_b_boxes_i {
background: url(../images/iccon-i-white.svg) 0 0 no-repeat;
background-size: contain;
background-position: center center !important;
}




/* hover */
.sec_c {
display: flex;
}
.video_sec_c, .video_sec_content {
flex: 1;
width: 50%;
min-width: 50%;
max-width: 50%;
}
.video_sec_c {
display: flex;
align-items: center;
justify-content: center;
padding: 25px;
}
.video_sec_content {
background: #f15922 ;
padding: 74px;
}
.video_sec_content ul li {
font-size: 15px;
color: #fff;
margin: 12px 0;
padding-left: 25px;
position: relative;
font-family: Aptos-SemiBold;
}
.video_sec_content ul h6 {
font-family: Aptos-Bold;
font-size: 18px;
}
.video_sec_content ul li::before {
content: "";
width: 15px;
height: 15px;
background: url(../images/check.svg) no-repeat center center;
display: block;
background-size: cover;
position: absolute;
left: 0;
top: 3px;
}
.video_sec_content h3 {
font-family: Aptos-Bold;
font-size: 16px;
color: #fff;
margin: 25px 0 35px 0;
border-top: 1px solid #ffffff4f;
padding: 18px 0 0 0;
display: inline-flex;
}
.button_b_c {
display: flex;
width: 316px;
align-items: center;
justify-content: center;
height: 56px;
background: #444444;
color: #fff;
font-size: 14px;
border-radius: 8px;
}
.button_b_c img {
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
margin: 0 0 0 5px;
}
.button_b_c:hover img {
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}

.swiper_one_box_left img, .swiper_one_box_right img {
width: 100%;
}

.swiper_one_box_content h3 {
font-family: Aptos-SemiBold;
color: #FF6035;
font-size: 28px;
margin: 0 0 10px 0;
}
.swiper_one_box_content p {
color: #fff;
margin: 0;
font-size: 16px;
line-height: 1.3;
font-family: Aptos;
}
.swiper_one_box_left {
margin: 0;
}
.swiper_one_box_content {
position: absolute;
bottom: 0;
background: rgba(0, 0, 0, 0.73);
padding: 40px 50px;
width: 100%;
height: 100%;
transform: translateY(100%);
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
display: flex;
align-items: center;
}

.hide_small {
position: absolute;
bottom: 0;
text-align: center;
width: 100%;
background: rgba(0, 0, 0, 0.73);
color: #FF6035;
font-size: 25px;
padding: 10px;
transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
}

.swiper_one_box:hover .swiper_one_box_content {
transform: translateY(0);
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}

.swiper_one_box:hover .hide_small {
transform: translateY(100%);
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
}

/* .swiper_button .swiper-button-next{
right: 0;
}
.swiper_button .swiper-button-prev{
left: 0;
} */
.swiper_button .swiper-button-next::after {
font-size: 0;
}
.swiper_button .swiper-button-prev::after {
font-size: 0;
}

.swiper_button .swiper-button-next, .swiper_button .swiper-button-prev {
width: 45px;
height: 45px;
}
.swiper_button .swiper-button-next img,
.swiper_button .swiper-button-prev img {
width: 100%;
}
.faq_sec_left {
background: #F15922 url(../images/faq_bg.svg) 0 0 no-repeat;
background-position: bottom right;
background-size: 300px;
display: flex;
align-items: center;
justify-content: center;
padding: 25px;
}
.faq_sec {
display: flex;
}
.faq_sec_left, .faq_sec_right {
flex: 1;
width: 50%;
min-width: 50%;
max-width: 50%;
}
.faq_sec_right {
padding: 45px 50px;
background: #444444;
}
#accordionFaq .accordion-item button {
background: transparent;
border-bottom: transparent;
outline: none;
box-shadow: none;
color: #f15922;
font-size: 18px;
padding: 0;
margin: 0;
}
#accordionFaq .accordion-button.collapsed {
background: transparent;
border-bottom: transparent;
outline: none;
box-shadow: none;
color: #fff;
font-size: 18px;
padding: 0;
margin: 0;
}
#accordionFaq .accordion-item {
background: transparent;
border: none;
border-bottom: 1px solid #ffffff14;
padding: 18px 0;
}
#accordionFaq .accordion-body {
padding: 10px 0 0 0;
}
#accordionFaq .accordion-body p {
font-size: 15px;
color: #fff;
margin: 0 0;
}
#accordionFaq .accordion-button::after {
background: url(../images/faq_close.svg) no-repeat center center;
width: 13px;
height: 8px;
background-size: 13px;
background-position: center center;
transform:rotate(0) ;
-webkit-transform:rotate(0) ;
-moz-transform:rotate(0) ;
-ms-transform:rotate(0) ;
-o-transform:rotate(0) ;
}
#accordionFaq .accordion-button:not(.collapsed)::after {
background: url(../images/faq_open.svg) no-repeat center center;
width: 13px;
height: 8px;
background-size: 13px;
background-position: center center;
transform:rotate(0) ;
-webkit-transform:rotate(0) ;
-moz-transform:rotate(0) ;
-ms-transform:rotate(0) ;
-o-transform:rotate(0) ;
}
.tst_fixed {
display: flex;
justify-content: center;
margin: 0 0 30px 0;
}
.swiper_two {
max-width: 480px;
margin: 0 auto;
text-align: center;
}
.swiper_two_content p {
color: #727272;
font-size: 16px;
line-height: 1.3;
}
.swiper_two_content h6 {
font-size: 16px;
color: #FF6035;
}

.sec_g .banner_form .form-group {
margin: 0 0 20px 0;
}
.sec_g .banner_form button {
margin: 0;
width: 150px;
}

footer {
background: #393939;
padding: 10px 0;
}
footer ul{
display: flex;
align-self: center;
}
footer ul li a {
color: #fff;
margin: 0 7px 0 0;
font-size: 15px;
}
footer p{
margin: 0;
color: #fff;
}

#scrollTopBtn {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 99;
font-size: 20px;
border: none;
outline: none;
background-color: #fff;
cursor: pointer;
border-radius: 50%;
opacity: 0;
transform: translateY(20px); /* initially move down */
pointer-events: none;
transition: opacity 0.3s ease, transform 0.3s ease;
box-shadow: 0 4px 13.9px 0 rgba(41, 41, 41, 0.09);
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}

#scrollTopBtn.show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

#scrollTopBtn:hover {
background-color: #010101;
}
.privacy_sec_a.pt-5.pb-5 {
background: #f5f5f5;
}
.privacy_sec_b h2 {
font-size: 30px;
margin:20px 0;
color: #f15922;
}
.privacy_sec_b h3 {
font-size: 28px;
margin: 12px 0;
color: #222;
}
.privacy_sec_b p {
font-size: 16px;
color: #757575;
}
.privacy_sec_b ul li {
font-size: 16px;
color: #757575;
margin: 10px 0;
}
.privacy_sec_b ul li strong {
color: #f15922;
}
.privacy_sec_b h4 {
font-size: 20px;
margin: 12px 0px;
color: #010101;
}
.privacy_sec_b p a {
color: #f15922;
}

.thank_box {
	padding: 40px;
	border: 1px solid #d7d7d7;
	max-width: 580px;
	margin: 10% auto;
}
.thank_box h1 {
	font-size: 35px;
	color: #f15922;
	margin: 0 0 10px 0;
}
.thank_box p{
	font-size: 16px;
	color: #000;
}

.onclick_faq {
	margin: 15px 0 0 0;
	color: #f15922;
	font-size: 18px;
	letter-spacing: 0;
	font-family: Aptos-SemiBold;
	cursor: pointer;
}
.swiper-pagination {
	position: unset !important;
}
.swiper-pagination .swiper-pagination-bullet {
	position: unset !important;
	margin: 0 5px !important;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #F15922 ;
}
.button_call img {
  height: 19px;
  margin: 0 9px 0 0;
}
.button_call {
  font-size: 17px;
  display: none;
}
.sec_c_video {
	background: #f15922;
}
.video_boxes {
	max-width: 757px;
	border-radius: 15px;
	overflow: hidden;
}
.video_box_inr {
	position: relative;
}
.video_box_inr a img {
	width: auto;
}
.video_box_inr a {
	display: flex;
	position: absolute;
	top: 0;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.form-group.mt-3.dorm_disclamer {
	margin: 0 !important;
	font-size: 12px;
}
.whats_app_form {
	margin: 10px 0 0 0;
}
.whats_app_form span {
	display: block;
}

.whats_app_icon_sticky img {
	width: 100%;
}
.whats_app_icon_sticky {
	position: fixed;
	bottom: 95px;
	right: 30px;
	border: none;
	outline: none;
	cursor: pointer;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	opacity: 0;
	transform: translateY(20px); /* initially move down */
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 13.9px 0 rgba(41, 41, 41, 0.09);
}
#whats_app_icons.show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}


.whats_btn_top {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 15px 0;
	justify-content: space-between;
}
.whats_btn_top #ban_btn {
	margin: 0;
	flex: 1;
	min-width: 40%;
	width: 40%;
	max-width: 40%;
}
.whats_app_form_btn {
	display: flex;
	flex: 1;
	text-align: center;
	justify-content: center;
	padding: 10px;
	background: #28a619;
	color: #fff;
	align-items: center;
	gap: 2px;
	border-radius: 5px;
	min-width: 40%;
	width: 40%;
	max-width: 40%;
}
.or_middle {
	min-width: 12%;
	width: 12%;
	max-width: 12%;
	text-align: center;
	font-size: 20px;
}
.whats_app_form_btn img {
	width: 25px;
}
/* responsive */
/* responsive */
/* responsive */

@media screen and (max-width:1366px) {
.banner_content_box h1 {
font-size: 32px;
}
.banner_content_box p {
font-size: 15px;
margin: 25px 0 0 0;
}
.banner_content_box ul.list-banner-item li {
font-size: 15px;
}
.banner_form h2 {
font-size: 20px;
}
.banner_form .form-group .form-control {
font-size: 14px;
}
.title_sub br {
display: none;
}

.swiper_one_box_content {
padding: 40px 75px;
}
}

@media screen and (max-width:1280px) {
.banner_content_box ul.list-banner-item {
margin: 20px 0 0 0;
padding: 20px 0 0 0;
}
}

@media screen and (max-width:1199px) {
.banner_content_box h1 {
font-size: 26px;
}
.banner_content_box p {
font-size: 16px;
margin: 15px 0 0 0;
}
.banner_content_box ul.list-banner-item {
margin: 20px 0 0 0;
padding: 20px 0 0 0;
width: 92%;
}
#desktop_banner .row {
align-items: center;
}
.sec_b_boxes {
min-height: 418px;
}
}
@media screen and (max-width:992px) {
.video_sec_content {
padding: 30px;
}
.hide_small {
font-size: 20px;
padding: 15px;
}
.swiper_one_box_content h3 {
font-size: 22px;
}
.sec_b_boxes {
min-height: 485px;
}
.sec_b_boxes figure {
width: 75px;
height: 75px;
}
.sec_b_boxes h3 {
font-size: 18px;
}
.swiper_one_box_content {
padding: 30px;
}
.swiper_button .swiper-button-next, .swiper_button .swiper-button-prev {
position: unset;
margin: 0 4px;
width: 35px;
height: 35px;
}
.swiper_button .swiper-button-next{
order: 2;
}
.swiper_button .swiper-button-prev {
order: 1;
}
.swiper_button {
display: flex;
justify-content: center;
margin: 25px 0 0 0;
}
}
@media screen and (max-width:767px) {
#desktop_banner {
position: unset;
}
.banner_content_box h1 {
font-size: 23px;
color: #f15922;
}
.banner_content_box p {
font-size: 15px;
color: #000;
margin: 10px 0 0 0;
}
.banner_content_box h1 br {
display: none;
}
.banner_content_box p br {
display: none;
}
.banner_content_box ul.list-banner-item {
width: 100%;
margin: 12px 0 0 0;
padding: 15px 0 0 0;
}
.banner_content_box ul.list-banner-item::before {
width: 100%;
}
.banner_content_box ul.list-banner-item li {
	padding: 0;
	font-size: 14px;
	color: #000;
}
.banner_content_box ul.list-banner-item li::after {
	content: "";
	width: 2px;
	height: 14px;
	position: absolute;
	background: #000;
	right: -11px;
	top: 5px;
}
.sec_a .banner_form {
padding: 20px;
background: #0000000f;
margin: 25px 0 0 0;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
}
.banner_form .form-group .form-control {
background: transparent;
}
.banner_content_box {
padding-left: 0;
padding: 15px 0 0 0;

}
.title_h2 {
font-size: 25px;
}
.title_h2 br{
display: none;
}
.title_h6 {
font-size: 16px;
}
p br{
display: none;
}
.sec_b_boxes h3 {
font-size: 21px;
}
.sec_b_boxes {
min-height: auto;
}
.sec_b_boxes figure {
width: 75px;
height: 75px;
}
.sec_c {
display: block;
}
.video_sec_c, .video_sec_content {
flex: unset;
width: 100%;
min-width: 100%;
max-width: 100%;
}
.faq_sec {
display: block;
}
.faq_sec_left, .faq_sec_right {
width: 100%;
min-width: 100%;
max-width: 100%;
}
.faq_sec_right {
padding: 10px 30px 30px 30px;
}
.mt-5{
margin-top: 30px !important;
}
.mb-5{
margin-bottom: 30px !important;
}
.pb-5{
padding-bottom:30px !important ;
}
.pt-5{
padding-top:30px !important ;
}
footer ul {
justify-content: center;
}
footer p {
margin: 10px 0 0 0;
text-align: center;
}
.logo_header {
width: 145px;
}
.button_a {
height: 43px;
width: 140px;
font-size: 15px;
}
.video_sec_c {
height: 350px;
}
.video_sec_c a img {
width: 80px;
}
.video_sec_content h3 {
margin: 12px 0 20px 0;
}
#accordionFaq .accordion-item button, #accordionFaq .accordion-button.collapsed {
font-size: 17px;
}
.form-group.mb-0.mt-4 {
margin-top: 0 !important;
}
.thank_box {
	padding: 25px;
}
.thank_box h1 {
	font-size: 28px;
}
#thanklpHeader img {
	height: 45px;
}
.privacy_sec_b h2 {
	font-size: 24px;
	margin: 10px 0;
}
.privacy_sec_b h3 {
	font-size: 24px;
	margin: 10px 0;
}
.privacy_sec_b ul li {
	font-size: 15px;
}
.privacy_sec_b h4 {
	font-size: 18px;
	margin: 10px 0px;
}
.privacy_sec_b p {
	font-size: 15px;
}
.privacy_sec_a p {
	margin: 0;
}
.swiper_one_box_content {
	/*padding: 30px;
	*/position: unset;
	background: black;
	transform: translateY(0);
	padding: 15px;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}
.hide_small {
	display: none;
}
.button_call {
  display: block;
}
/*.note_important {
	color: #3f3f3f;
}*/
.video_boxes {
	margin: 0 15px;
}
.list-banner-list li {
	color: #000;
	font-size: 15px;
}
}

@media screen and (max-width:575px) {

/* .button_b {
width: 100%;
height: 50px;
margin: 25px auto 0;
font-size: 14px;
} */
.video_sec_c {
height: 280px;
}
.video_sec_c a img {
width: 50px;
}
.button_b_c {
width: 100%;
font-size: 14px;
height: 50px;
}
.sec_g .banner_form button {
margin: 0;
width: 100%;
}
.sec_g .banner_form {
padding: 0 15px;
}
#scrollTopBtn {
right: 10px;
width: 40px;
height: 40px;
}
.whats_app_icon_sticky {
	width: 40px;
	height: 40px;
	right: 10px;
	bottom: 80px;
}

.sec_g.pb-5 .banner_form .whats_app_form {
	margin: 0;
}
/* .sec_a picture img {aspect-ratio: 414 / 225;} */

.whats_btn_top {
	flex-wrap: wrap;
}
.whats_btn_top #ban_btn {
	flex: unset;
	min-width: 100%;
	width: 100%;
	max-width: 100%;
}
.whats_app_form_btn {
	min-width: 100%;
	width: 100%;
	max-width: 100%;
}
.whats_btn_top {
	gap: 5px;
}
.sec_b_boxes {
	min-height: auto !important;
}
.sec_b_boxes {
	padding: 30px 30px;
}
.or_middle {
	min-width: 100%;
	width: 100%;
	max-width: 100%;
}
}