/*
[Table of contents]

1. Fonts
2. root variable
3. Common styles
4. header area styles
5. Responcive

*/
/*==============================
Fonts
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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 variable
==============================*/



:root {
	--white: #ffffff;
	--black: #000000;
	--white_color: #ffffff;
	--commen_black: #000014;
	--primary: #f5eee9;
	--theam_color: #057f7f;
	--montserrat_font: "Montserrat", sans-serif;
	--poppins_font: "Poppins", sans-serif;


}


/*==============================
Common styles
==============================*/

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

div {
	transition: all ease 0.5s;
}

body {
	font-family: var(--montserrat_font);
	font-optical-sizing: auto;
	background-color: var(--white);
	width: 100%;
	height: 100%;
	color: var(--black) !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	color: var(--white-color);
}

html,
body {
	overflow-x: hidden !important;
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar {
	width: 8px;
	background: var(--primary_gradient);
}

body::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px #DDC081;
	background: var(--primary_gradient);

}

p {
	margin-bottom: 0px;
}

a {
	text-decoration: none;
	color: var(--white);
}

ul {
	list-style: none;
}

ul li {
	margin-bottom: 0;
}




.hover_show_side ul::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.hover_show_side ul::-webkit-scrollbar {
	width: 8px;
	background: var(--primary_gradient);
}

.hover_show_side ul::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px #DDC081;
	background: var(--theam_color);

}

header {

	background-color: transparent;
	padding: 15px 0;
	position: absolute;
	width: 100%;
	z-index: 22;
}

header nav ul li a {
	font-size: 16px !important;
	letter-spacing: 1px !important;
	line-height: normal !important;
	color: #0e0e0f !important;
	font-weight: 600 !important;
	font-family: var(--poppins_font) !important;
	text-align: center !important;
	position: relative;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

header nav ul li a::before {
	position: absolute;
	content: "";
	width: 0%;
	height: 3px;
	background-color: #057f7f3c;
	border-radius: 20px;
	transition: all ease 0.5s !important;
	z-index: 1;
	top: 0;

}

header nav ul li a::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 90%;
	bottom: 0;
	background-color: #057f7f;
	border-radius: 0;
	transition: all ease 0.5s !important;
	z-index: 1;
}

header nav ul>li>a:hover::before {
	width: 100%;
}

header nav ul>li>a:hover::after {
	width: 100%;
}

header nav ul>li>a:hover>span {
	position: relative;
	z-index: 2;
	color: white;
}

header nav ul>li>a:hover>span img{

        filter: invert(1);
}



header nav ul>li.active>a:hover::before {
	width: 100%;
}

header nav ul>li.active>a:hover::after {
	width: 100%;
}

header nav ul>li.active>a:hover>span {
	position: relative;
	z-index: 2;
	color: white;
}

header nav ul {
	display: flex;
	gap: 20px;
}

.commen_btn {
	border-radius: 30px;
	background-color: var(--theam_color);
	display: flex;
	align-items: center;
	line-height: normal !important;
	color: white !important;
	padding: 8px 18px 9px !important;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 67px;
	color: #ffffff;
	font-weight: 400 !important;
	font-family: var(--poppins_font) !important;
	text-align: center;
	overflow: hidden;
	transition: all ease 0.5s;
}

.commen_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: rgb(255 255 255 / 6%);
	transform: skewX(-20deg);
	border-radius: 0;
	transition: all ease 0.5s;
	z-index: 1;
}

/* header nav ul li a::after{
display: none !important;
} */
.commen_btn:hover::before {
	left: 125%;
	transition: left 0.5s
}

.commen_btn:hover {
	transform: scale(1.02);

}


.commen_btn2 {
	position: relative;
	overflow: hidden;
}

.commen_btn2::before {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: rgb(255 255 255 / 6%);
	transform: skewX(-20deg);
	border-radius: 0;
	transition: all ease 0.5s;
	z-index: 1;
}

/* header nav ul li a::after{
display: none !important;
} */
.commen_btn2:hover::before {
	left: 125%;
	transition: left 0.5s
}

.commen_btn2:hover {
	transform: scale(1.02);

}

.hover_show_side {
	position: fixed;
	left: 0;
	width: 100%;
	max-width: 370px;
	background-color: rgb(255, 255, 255);
	height: 120vh;
	z-index: 33;
	top: 0;
	padding: 20px 25px !important;
	transform: translateX(-200%);
	transition: all ease 1s;
}
header.nav-up .hover_show_side
{height: 120vh;
     transform: translateX(-200%) translateY(210px);
}
header.nav-up  nav ul>li.active>.hover_show_side
{  transform: translateX(0%) translateY(210px);
}
header nav ul>li.active>.hover_show_side {
	transform: translateX(0%);
	transition: all ease 1s;

}

.hover_show_side ul {
	display: block !important;
	padding: 0 !important;
	margin-top: 15px;
	height: 87vh;
	overflow: scroll;
}

.hover_show_side ul li a {
	gap: 5px;
	justify-content: left;
	flex-direction: column !important;
	align-items: flex-start;
	text-align: left !important;
	
    width: fit-content;
}
.hover_show_side ul li a
{
 position:relative;   
}
.hover_show_side ul li a::after 
{
           -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f25a";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    text-align: end;
    float: inline-end;
    width: 20px;
right: -20px;
    left: auto;
    background: transparent !important;
    transform: rotate(331deg);
    font-size: 20px;
    display:none ;
    top:0;
    color:#057f7f;
}
.hover_show_side ul li:hover>a::after 
{
         display:block ;
          width: 20px;
            animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform:rotate(331deg) scale(1, 1);
  }
  50% {
    transform:rotate(331deg) scale(1.2, 1.2);
  }
  100% {
    transform: rotate(331deg) scale(1, 1);
  }
}
.hover_show_side ul li a::before {
	display: none !important;
}

.hover_show_side ul li {
	padding: 15px;
	background-color: #057f7f2a;
	margin-bottom: 12px !important;
	border-radius: 20px;
}

.hover_show_side ul li img {
	background-color: white;
	padding: 10px;
	width: 53px;
	border-radius: 20px;
}

.hover_show_side ul li span {
	color: black !important;
}

.hover_show_side strong {
	color: black;
	font-size: 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;

}

.hover_show_side .log {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	flex-direction: column;
	justify-content: left;
}

.close_btn {
	position: absolute;
	right: 20px;
	width: 30px;
	height: 30px;
	background-color: #057f7f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	top: 20px;
	cursor: pointer;
	color: white;
}

footer {
	background-color: white !important;
	padding: 50px 0 0;
	border-top: 1px solid #d9d9d9;
	margin-top: 0 !important;
	overflow-x: hidden;
}


/* ========= Footer CSS ========= */
.mlmyug-footer {
	position: relative;
	background-color: #fff;
	font-size: 15px;
	color: #333;
	line-height: 1.7;
	overflow: hidden;
	padding-bottom: 0px !important;
}

/* background wave pattern */
.mlmyug-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: -10%;
	width: 100%;
	max-width: 830px;
	height: 672px;
	background: url("../images/footer_shap.png") no-repeat center top;
	background-size: cover;


}

.leading_app_area_inner1 .mobile_ani_bg {
	animation: rotate-animation 30s infinite linear;
}

#heading {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	/* important fix */
}

#heading {
	font-size: 36px;
	font-weight: 600;
	color: #111;
	display: inline-block;
	white-space: nowrap;
	/* IMPORTANT FIX */
}

.fixed_videobg {
	position: fixed;
	z-index: 222;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(180deg);
	}

	100% {
		transform: rotate(0);
	}
}

.mlmyug-footer .container {
	position: relative;
	z-index: 1;
}

.mlmyug-footer .footer-title {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
	color: #000;
}

.mlmyug-footer .footer-title a {
	color: #000;
}

.z-11 {
	position: relative;
	z-index: 11;
}

.mlmyug-footer ul li {
	margin-bottom: 6px;
}

.mlmyug-footer ul li a {
	color: #555;
	text-decoration: none;
	transition: 0.3s;
}

.mlmyug-footer ul li a:hover {
	color: #007bff;
}

.footer-social a {
	display: inline-block;
	margin-right: 8px;
	color: #555;
	font-size: 18px;
	transition: 0.3s;
}

.footer-social a:hover {
	color: #007bff;
}

.footer-bottom {
	border-top: 1px solid #ddd;
}

.footer-quick-links a {
	color: #555;
	margin-right: 10px;
	text-decoration: none;
	transition: 0.3s;
}

.footer-quick-links a:hover {
	color: #007bff;
}

.footer-desc {

	margin-top: 15px;
	font-size: 14px !important;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
	border-top: 1px solid #ddd;
	padding: 15px 0;
}

.footer-social a img {
	width: 30px;
}

.footer-social {
	display: flex;
	align-items: center;
}

.footer_first_bx p {
	font-size: 12px;
	font-weight: 500;
}

.footer-title {
	font-size: 20px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
}

.list-unstyled li a {
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
}

.list-unstyled li a:hover {
	color: #057f7f !important;
}

.footer_quick_bks {
	display: flex;
	gap: 5px;
	align-items: center;
}

.footer_quick_bks h5 {
	font-size: 20px;
	line-height: 22px;
	color: #18181e;
	font-weight: 600;
}

.footer_quick_bks li a {
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
	font-size: 16px;
}

.footer_quick_bks li a:hover {
	color: #057f7f !important;
}

.footer_quick_bks ul {
	margin-bottom: 0;
}

.ratting_footer {
	background-color: #d1d3dd;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 0;
}

.ratting_footer span {
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: #f5eee9;
	transition: all ease 0.5s;
}

header.nav-up {
	transform: translateY(-210px);
	-webkit-transform: translateY(-210px);
	background-color: #f5eee9;
}

.service_slide_area {
	background-color: #1c1c20;
}

.service_slide_area_inner .bbx1 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: auto;
	overflow: hidden;
	margin-bottom: 0px;
	gap: 15px;
	padding: 15px 0;
}

.service_slide_area_inner .bbx1 a {
	animation: scroll 50s linear infinite;
	display: flex;
	min-width: 300px !important;
	color: white;
	font-size: 22px;
	letter-spacing: 3px;
	color: #ffffff;
	font-weight: 600;

	text-align: center;
	display: flex;
	justify-content: center;
	position: relative;
	align-items: center;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translatex(-1000%);
	}
}

.service_slide_area_inner .bbx1 a::before {
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background-color: white;
	content: "";
}

.contact_area {
	padding: 100px 0 270px;
	background-color: #f5eee9;
}

.contact_area_inner {
	width: 100%;
	height: 600px;
	background-color: rgba(255, 255, 255, 0);
	position: relative;
	padding: 31px 134px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_area_inner::before {
	position: absolute;
	content: "";
	/* left: 0; */
	top: -56px;
	width: 93%;
	background-color: #fff;
	height: 124%;
	border-radius: 60px;
	transform: rotate(78deg);
}

.contact_area_inner1 {
	position: relative;
	z-index: 1;
	display: block;
	height: 100%;
	width: 100%;
}

.contact_area_inner1 h2 {
	font-size: 45px !important;
	letter-spacing: 2px;
	line-height: 62px !important;
	color: #1c1c20;
	font-weight: 500;
	text-align: center;
}

.contact_frm input {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.266);
	padding: 10px;
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
	transition: all ease 0.5s;
}

.contact_frm input::placeholder {
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
}

.contact_frm input:focus {
	outline: 0;
	border-color: #14715b;
}

.contact_frm textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.266);
	padding: 10px;
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
	transition: all ease 0.5s;
}

.contact_frm textarea::placeholder {
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
}

.contact_frm textarea:focus {
	outline: 0;
	border-color: #14715b;
}

.contact_frm_capture .captcha1 {
	width: 161px;
	height: 48px;
}

.contact_frm_capture input {
	width: 232px;
	height: 48px;
	background-color: #ffffff;
	border: 1px solid #e8e8e8;
	border: 1px solid rgba(0, 0, 0, 0.266);
	padding: 10px;
	font-size: 14px;
	line-height: 22px;
	color: #18181e;
	font-weight: 500;
	transition: all ease 0.5s;
}

.contact_frm_capture input:focus {
	outline: 0;
	border-color: #14715b;
}

.contact_frm_capture .captcha {
	display: flex !important;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
}

.contact_frm.submit_bx input[type="submit"] {
	background-color: #057f7f !important;
	color: white;
	font-size: 16px;
	line-height: 22px;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	width: 100%;
	max-width: 286px;
	margin: auto !important;
	display: flex;
	justify-content: center;
	border: 0;
	padding: 15px;
}

.contact_area {
	position: relative;
}

.contact_area .hand_vact {
	position: absolute;
	right: 30px;
	bottom: 0;
}

.get_demo_a {
	font-size: 16px;
	line-height: 22px;
	color: #057f7f;
	font-weight: 500;
	text-align: center;
	width: 100%;
	max-width: 346px;
	margin: auto !important;
	display: flex;
	justify-content: center;
	border: 0;
	padding: 0 15px;
	margin-top: 15px !important;
	display: flex;
	align-items: center;
	position: relative;
}

.get_demo_a:before {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	background: #057f7f;
	border-radius: 100%;
	top: 4px;
}




.modal-backdrop.show {
	background: #00000061;
	opacity: 1;
	filter: blur(1px);
}




@media (max-width: 767px) {
	.mlmyug-footer .footer-title {
		margin-top: 25px;
	}

	.footer-quick-links {
		text-align: center;
	}

	.footer-bottom p {
		text-align: center;
	}
}

@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1403px !important;
	}
}

@media (min-width: 992px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 1085px;
	}
}


.modal-backdrop.show {
	background: #FFFFFFBF;
	backdrop-filter: blur(16px);

	opacity: 1;



}

.modal-dialog {
	max-width: 1050px;
}

.modal-content {
	padding: 40px 10px;
	border-radius: 50px;
	background: #FFFFFF;
	border: 1px solid #00000026
}

.book_model h2 { 
	 font-style: Bold;
    font-size: 34px;
    leading-trim: NONE;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    width: 60%;
    margin: auto;
}

.book_model h2 span {
	color: #057f7f;
	font-size: 37px;

}

.book_model p {
	color: #000;
	font-size: 16px;
	text-align: center;
	margin-top: 10px;

}

.books_area_inner1 {
	background: #ffffff;
	padding: 40px 0;
	border-radius: 50px;
	height: 100%;
	border: 1px solid #fffFFF6E
}

.books_area_inner1 .content {
	margin-top: 15px;
	position: absolute;
	bottom: 60px;
	background-color: white;
	width: 100%;
	max-width: 220px;
	margin: auto;
	border-radius: 30px;
	padding: 15px 10px;
}

.books_area_inner1 {
	position: relative;
	display: flex;
	justify-content: center;
}

.books_area_inner1 .content h3 {
   font-weight: 600;
    font-style: SemiBold;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 4%;
    text-align: center;
    color: black;
    margin-bottom: 0;
}

.books_area_inner1 .content ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 15px;
	padding-left: 0px;
}

.books_area_inner1 .content ul li {
	display: flex;
	align-items: center;
	justify-content: center
}

.books_area_inner1 .content ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.books_area_inner1 .content ul li a::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	/* background: #ffe70B7A; */
	filter: blur(4px);
	z-index: 1;
	border-radius: 100px
}

.books_area_inner1 .content ul li:nth-child(2) a::before {
	/* background: #2e99CF7A */
}

.books_area_inner1 .content ul li:nth-child(3) a::before {
	/* background: #f9a41D7A */
}

.books_area_inner1 .content ul li a img {
	width: 34px;
	height: 34px;
	z-index: 2;
	position: relative;
	transition: .5s
}

.books_area_inner1 .content ul li a:hover img {
	transform: scale(.9)
}

.books_area_inner1 .content span {
	display: flex;
	justify-content: center;
	 font-size: 13px;
	font-weight: 600;
	margin-top: 15px;
	color: #000;
	border-top: 1px solid #00000014;
	/* border-image: linear-gradient(to right, #ff0000, #0000ff) 1; */
	padding-top: 11px;
}

.big_img {
	border-radius: 20px;
	border: 3px solid #057f7f;
}

.books_area_inner1>.book {
	height: 400px;
	margin: auto;
	object-fit: cover;
	border: 1px solid #0000001C;
	border-radius: 22px;
	display: flex;
	transition: all ease 0.5s;
}

.btn-close {
	position: absolute;
	right: 50px;
	top: 50px;
	background: #14715b;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	padding: 15px 14px 12px;
	color: white;
	z-index: 11;
}

.books_area_inner1:hover .book {
	transform: scale(0.98);
}

.service_slide_area_inner .bbx1 a:hover {
	color: #fff !important;

}
.rightarrow_link
{
    margin-left: 0;
}
 .support_bx{
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 90px;
    height: 90px; 
    z-index: 22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
 
 }
  .support_bx::before{

    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url('../images/support_vactor_shap.svg');
    background-size: contain;
    background-position: center;
    z-index: -1;
    opacity: 1;
      animation: rotate_ani 5s linear infinite;
  }
  
@keyframes rotate_ani {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
  .support_bx img{
width: 45px;
  }
  .support_mn_bx{
     width: 100%;
    height: 400px;
    max-width: 300px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 22;
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid #057f7f;
    padding:30px;
}
.support_mn_bx span{
    font-size: 21px;
    font-weight: 700;
}

.support_mn_bx p{ 
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 20px !important;
}
.support_mn_bx p a{
    color: #057f7f;
    font-weight: 650;
}
.support_mn_bx {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.5s ease;
}

.support_mn_bx.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ----------------------------------- Responcive css start ----------------------------------- */

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1350px) {}

@media screen and (max-width: 1300px) {}

@media screen and (max-width: 1250px) {
	.contact_area_inner::before {
		top: -93px;
		width: 96%;
		height: 124%;
	}
 
    .navbar-expand-lg .navbar-nav{

        gap: 0;
    }
}

@media screen and (max-width: 1200px) {
	.contact_area_inner {
		background-color: white;
		padding: 30px 80px !important;
		height: fit-content;
		border-radius: 40px;
	}

.rightarrow_link
{
    margin-left: 0;
}
	.contact_area_inner::before {
		display: none;
	}
}

@media screen and (max-width: 1150px) {}

@media screen and (max-width: 1100px) {
	header nav ul {
		gap: 10px;
	}
        .navbar-expand-lg .navbar-nav{
padding: 0px;

    }
    header nav ul li a>span{
font-size: 14px;
        
    }
}

@media screen and (max-width: 1098px) {}

@media screen and (max-width: 992px) {
	header {
		z-index: 22;
		position: absolute;
		width: 100%;

	}

	.book_model h2 {
		font-size: 25px;
		max-width: 100%;
	}

	.navbar-toggler {
		width: 50px;
		height: 50px;
		background-color: var(--theam_color);
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 100px !important;
	}

	.navbar-toggler i {
		color: white !important;
	}

	.navbar-toggler.collapsed .fa-bars {
		display: flex;
	}

	.navbar-toggler.collapsed .fa-xmark {
		display: none;
	}

	.navbar-toggler .fa-bars {

		display: none;
	}

	.navbar-toggler .fa-xmark {
		display: flex;
	}

	.navbar-toggler:focus {
		text-decoration: none;
		outline: 0;
		box-shadow: 0 0 0 #057f7f8d !important;
	}
}

@media screen and (max-width: 768px) {
	.fixed_videobg {
		object-fit: initial;
		background-color: #f5eee9;
		height: 110%;

	}

	.contact_area_inner {
		padding: 30px 30px !important;
	}

	.book_model h2 {
		font-size: 25px;
		max-width: 100%;
		width: 100%;
	}

	.book_model h2 span {
		font-size: 25px;

	}

	.footer-desc {
		text-align: left;
		justify-content: left;
	}

	.footer_quick_bks {
		flex-wrap: wrap;
	}

	.mlmyug-footer::before {
		max-width: 100% !important;
		left: 0;
	}

	.btn-close {
		right: 20px;
		top: 20px;
		padding: 11px 11px 12px;
	}

	.book_model h2 {
		line-height: normal;
	}

	.books_area_inner1 {
		margin-top: 0;
	}
}

@media screen and (max-width: 550px) {
	.books_area_inner1 {
		padding: 0;
	}
.support_bx{
        width: 50px;
    height: 50px;
}
.support_bx img{
    width: 22px;
}
.support_mn_bx {
    width: 100%;
    height: 380px;
    max-width: 260px; 
    border-radius: 20px; 
    padding: 20px;
}
	.contact_area_inner1 h2 {
		font-size: 25px !important;
		letter-spacing: 2px;
		line-height: normal !important;
	}

	.books_area_inner1 .content {
		bottom: 15px;
		border-radius: 18px;
	}

	.modal-content {
		border-radius: 20px;
	}

	.contact_area_inner1 h2 {
		line-height: normal;
	}

	.contact_frm_capture input {
		width: 140px;
	}

	.contact_frm_capture input {
		width: 140px;
	}
	.service_slide_area{
	        padding: 11px 0 !important;
	
}
}

@media screen and (max-width: 450px) {
	.contact_frm_capture .captcha {
		flex-wrap: wrap;
	}

 
		.contact_frm_capture .captcha1 {
			width: 130px;
			height: 48px;
		}
	}

	@media screen and (max-width: 375px) {}

	@media screen and (max-width: 325px) {}