/*=============================
 body Style
=============================*/

:root {
	--law-theme: #7b5dd6;
	--law-title-color: #2d394b;
	--law-text-color: #768297;
	--law-white-color: #ffffff;
}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	color: var(--law-t);
	font-weight: 400;
	line-height: 1.4;
	font-family: 'Lato';

}

html {
	scroll-behavior: smooth;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin: 0;
	padding: 0;
	word-break: break-word;
	font-family: 'Lato';
}

img {
	max-width: 100%;
	object-fit: contain;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
	outline: none !important;
	box-shadow: none;
}

ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

p {
	margin: 0px;
	word-break: break-word;
	font-family: 'Lato';
}
a {
	font-family: 'Lato';
}

/*=============================
 Font-Family Style
=============================*/

/*=============================
  Scrollbar Style
=============================*/

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #edeaf7;
}

::-webkit-scrollbar-thumb {
	background: var(--law-title-color);
	width: 4px;
}

/*=============================
 Heading Style
=============================*/

.law-section-heading {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 42px auto;
}

.law-section-heading h6 {
	position: relative;
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--law-theme);
	font-weight: 600;
	font-family: "Roboto", sans-serif;

}

.law-section-heading h2 {
	font-size: 38px;
	line-height: 1.2;
	color: var(--law-title-color);
	font-weight: 900;
	margin-top: 10px;
}

/*=============================
 Heading Style 2 
=============================*/

.law-heading-wrapper-style-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.law-heading-wrapper-style-2 .law-section-heading {
	margin: 0 !important;
	max-width: 100% !important;
	text-align: center !important;
}

.law-heading-wrapper-style-2 h2 {
	margin-bottom: 0 !important;
}

/*=============================
 Bottom To Top Style
=============================*/

.law-top-icon a {
	display: flex;
	background-color: var(--law-title-color);
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	position: fixed;
	bottom: 30px;
	right: 20px;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	transition: all 0.3s ease-in-out;
	animation: 4s installation infinite alternate;
}

@keyframes installation {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

.law-top-icon a svg {
	fill: var(--law-white-color);
	transform: rotate(270deg);
}

.law-top-icon a:hover {
	cursor: pointer;
	/* box-shadow: 0 0 0 25px var(--law-theme) inset; */
}

.law-top-icon a:active {
	background-color: #555;
}

.law-top-icon a.show {
	opacity: 1;
	visibility: visible;
}

/*=============================
 Loader Style
=============================*/

.loader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--law-white-color);
}

.loader img {
	width: 100px;
}

/*=============================
 Button Style
=============================*/

.law-btn {
	min-width: 150px;
	min-height: 50px;
	line-height: 50px;
	padding: 0px 10px;
	border-radius: 6px;
	background-color: var(--law-theme);
	font-size: 16px;
	color: var(--law-white-color);
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;
}

.law-btn:hover {
	color: var(--law-white-color);
	background-color: var(--law-title-color);
}

/*=============================
 Header Section Style
=============================*/

.law-header-wrapper {
	position: relative;
	transition: .5s ease-in-out;
	z-index: 11;
	background-color: var(--law-white-color);
	width: 100%;
}

.law-header-wrapper.law-header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	animation: goDown 0.5s ease-in-out forwards;
}

@keyframes goDown {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}


.law-navbar-wrapper {
	display: flex;
	align-items: center;
}

.law-brand-logo a img {
	max-width: 285px;
	max-height: 50px;
	object-fit: contain;
}

.law-navbar-menu {
	margin-left: auto;
}

.law-navbar-menu .responsive-logo a img {
	display: none;
}

.law-navbar-menu ul li {
	display: inline-block;
}

.law-navbar-menu ul li.start-earning a {
	padding: 15px 27px;
	letter-spacing: 1px;
	color: var(--law-white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}

.law-navbar-menu ul li.start-earning a:hover {
	color: var(--law-white-color);
	background-color: #3a3345;
}

.law-navbar-menu ul li:last-child {
	margin-right: 0;
}

.law-navbar-menu ul li a {
	text-transform: capitalize;
	position: relative;
	display: inline-block;
	padding: 32px 0;
	margin: 0 25px 0 0;
	font-size: 15px;
	line-height: 1.4;
	color: var(--law-title-color);
	font-weight: 600;
}

.law-navbar-menu ul li a:hover {
	color: var(--law-theme);
}

/*=============================
 Banner Section Style
=============================*/

.law-banner-wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	background-color: #f7f6fe;
}

.law-banner-wrapper img {
	max-width: 560px;
	min-height: 450px;
	object-fit: contain;
	border-radius: 10px;
	width: 100%;
}

.law-banner-wrapper .law-banner-content {
	position: relative;
	padding: 180px 0;
}

.law-banner-wrapper .law-banner-content span {
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.4;
	color: var(--law-theme);
	font-weight: 700;
	padding-bottom: 7px;
	max-width: 359px;
	padding-top: 10px;
	text-transform: capitalize;
	position: relative;
	margin-bottom: 20px;
	display: block;
}

.law-banner-wrapper .law-banner-content h1 {
	text-transform: capitalize;
	font-size: 58px;
	line-height: 1.4;
	color: var(--law-title-color);
	font-weight: 800;
	max-width: 600px;
	margin-bottom: 45px;
}

.law-banner-wrapper .law-banner-content p {
	text-transform: capitalize;
	font-size: 28px;
	line-height: 1.4;
	color: var(--law-theme);
	font-weight: 800;
	max-width: 600px;
	margin-bottom: 45px;
}

.law-banner-wrapper .law-banner-img {
	position: relative;
	height: 100%;
}

.law-banner-wrapper .law-btn {
	margin-bottom: 20px;
}

.law-banner-img img {
	margin-left: -89px;
}

/*=============================
 About Section Style
=============================*/


.law-about-wrapper {
	padding: 100px 0;
	background-color: var(--law-white-color);
	position: relative;
	overflow: hidden;
}

.law-abt-img img {
	max-width: 560px;
	min-height: 450px;
	object-fit: contain;
	width: 100%;
}

.law-ab-left-content .law-tmp-heading {
	position: relative;
	text-align: left;
}

.law-about-wrapper .law-tmp-heading h6 {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 26px;
	color: var(--law-theme);
	font-weight: 600;
	position: relative;
	text-transform: uppercase;
}

.law-about-wrapper .law-ab-left-content h2 {
	font-size: 32px;
	line-height: 1.4;
	color: var(--law-title-color);
	font-weight: 900;
	margin-top: 10px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.law-about-wrapper .law-ab-left-content p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--law-text-color);
	font-weight: 400;
	margin-bottom: 20px;
}

.law-about-wrapper .law-ab-left-content h3 {
	font-size: 20px;
	line-height: 1.6;
	color: var(--law-title-color);
	font-weight: 600;
	margin-bottom: 20px;
}

/*=============================
 Service Section Style
=============================*/

.law-service-wrapper {
	padding: 96px 0 75px 0;
	background-color: var(--law-white-color);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.law-service-wrapper .law-service-box-wrapper {
	text-align: center;
	transition: all .3s ease-in-out;
	margin-bottom: 30px;
}

.law-service-wrapper .law-service-box-wrapper:hover {
	transform: translateY(-10px);
}

.law-service-wrapper .law-service-box-wrapper .law-service-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	margin: 0 auto;
}

.law-service-wrapper .law-service-box-wrapper .law-service-icon img {
	max-width: 48px;
	min-height: 48px;
	object-fit: contain;
}

.law-service-wrapper .law-service-box-wrapper h5 {
	line-height: 1.4;
	color: var(--law-title-color);
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
}

.law-service-wrapper .law-service-box-wrapper p {
	font-size: 16px;
	line-height: 1.5;
	color: var(--law-text-color);
	font-weight: 400;
}

/*=============================
 Testimonials Section Style
=============================*/

.law-client-wrapper {
	padding: 95px 0 70px 0;
	background-color: var(--law-white-color);
	width: 100%;
	position: relative;
	overflow: hidden;
}


.law-client-wrapper .law-client-box {
	width: 100%;
	filter: drop-shadow(2.517px 3.109px 11px rgba(0, 0, 0, 0.06));
	background-color: var(--law-white-color);
	padding: 32px 30px 32px 30px;
	transition: all .3s linear;
	position: relative;
	margin-bottom: 30px;
}

.law-client-wrapper .law-client-heading {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.law-client-wrapper .law-client-img img {
	max-width: 60px;
	min-width: 60px;
	max-height: 60px;
	border-radius: 100%;
	object-fit: cover;
	min-height: 60px;
}

.law-client-wrapper .law-client-name h6 {
	font-size: 22px;
	color: var(--law-title-color);
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 4px;
}

.law-client-wrapper .law-client-name p {
	font-size: 15px;
	color: var(--law-theme);
	font-weight: 500;
	font-family: "Roboto", sans-serif;
	margin-top: 2px;
	text-transform: capitalize;
}

.law-client-wrapper .law-client-text p {
	font-size: 15px;
	line-height: 1.7;
	font-weight: 400;
	color: var(--law-text-color);
	margin-bottom: 0;
	padding: 0 15px;
}

.law-client-wrapper .law-raiting-img {
	position: relative;
	padding: 15px 15px 0 15px;
}

.law-client-wrapper .law-raiting-img span img {
	width: 110px;
	height: 22px;
}

/*Slider Pagination*/

.law-client-wrapper .swiper-container {
	overflow: hidden;
}

.law-client-wrapper .swiper-pagination-bullet {
	width: 16px;
	height: 8px;
	background-color: #a9a9a9;
	border-radius: 4px;
}

.law-client-wrapper .swiper-pagination-bullet-active {
	width: 26px;
	height: 8px;
	border-radius: 4px;
	background-color: var(--law-title-color);
}

.law-client-wrapper .swiper-slide {
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.law-client-wrapper .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 40px;
}

/*=============================
 News & Block Section Style
=============================*/

.law-news-wrapper {
	padding: 100px 0 100px 0;
	background-color: var(--law-white-color);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.law-news-box-wrapper {
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.10980392156862745);
	background-color: var(--law-white-color);
	margin-bottom: 10px;
}

.law-news-box-wrapper .law-image-box {
	position: relative;
	overflow: hidden;
	max-height: 208px;
}

.law-news-box-wrapper .law-image-box a img {
	display: block;
	width: 100%;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
	min-height: 208px;
	object-fit: cover;
}


.law-news-box-wrapper:hover .law-image-box a img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.law-news-box-wrapper .law-news-content-box {
	position: relative;
	padding: 25px 20px 15px;
	-webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.05);
	background-color: var(--law-white-color);
}

.law-news-box-wrapper .law-news-content-box .date-box {
	position: absolute;
	top: -39px;
	left: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.law-news-box-wrapper .law-news-content-box .date-box .date {
	background: var(--law-theme);
	color: var(--law-white-color);
	font-size: 18px;
	padding: 5px 10px;
	height: 39px;
	line-height: 33px;
	font-weight: 600;
}

.law-news-box-wrapper .law-news-content-box .date-box small {
	color: var(--law-white-color);
	background-color: #0d0f10;
	font-size: 12px;
	height: 39px;
	padding: 0 20px;
	line-height: 40px;
}

.law-news-box-wrapper .law-news-content-box .post-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.law-news-box-wrapper .law-news-content-box .post-info li {
	font-size: 14px;
	line-height: 1.4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 400;
	color: var(--law-text-color);
	margin-right: 15px;
	margin-bottom: 8px;
	gap: 5px;
}

.law-news-box-wrapper .law-news-content-box .title {
	margin-bottom: 22px;
	font-size: 22px;
	color: var(--law-title-color);
	font-weight: 700;
}

.law-news-box-wrapper .law-news-content-box .title a {
	font-size: 22px;
	color: var(--law-title-color);
	font-weight: 700;
	text-transform: capitalize;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.law-news-box-wrapper .law-news-content-box .title a:hover {
	color: var(--law-theme);
}

.law-news-box-wrapper .law-news-content-box .title {
	margin-bottom: 22px;
}

.law-news-box-wrapper .law-news-content-box .read-more {
	margin-top: 15px;
}

.law-news-box-wrapper .law-news-content-box .read-more span {
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.law-news-box-wrapper .law-news-content-box .read-more:hover span {
	opacity: 0;
}

.law-news-box-wrapper .law-news-content-box .read-more:hover {
	color: var(--law-theme);
}


/*=============================
  Partner Section Style
=============================*/

.law-partner-wrapper {
	background-color: var(--law-white-color);
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.law-partner-wrapper .law-partner-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	flex-wrap: wrap;
}

.law-partner-wrapper .law-partner-logo-box img {
	display: block;
	max-width: 100px;
	max-height: 50px;
	object-fit: contain;
	width: 100%;
}

/*=============================
  Contact Section Style
=============================*/

.law-contact-wrapper {
	padding: 0px 0px 0px 0px;
	background-color: var(--law-title-color);
	position: relative;
}

.law-contact-left-content h3 {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 26px;
	color: var(--law-theme);
	font-weight: 600;
	position: relative;
}

.law-contact-left-content h2 {
	font-size: 38px;
	line-height: 50px;
	color: var(--law-white-color);
	font-weight: 900;
	padding: 5px 0px 0px;
	margin-bottom: 30px;
}

/*Input style*/

.law-contact-wrapper .theme_input {
	width: 100%;
	height: 50px;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid rgba(118, 130, 151, 0.4);
	padding: 0px 30px;
	opacity: 0.302;
	font-size: 15px;
	line-height: 50px;
	color: #9faabe;
	font-weight: 400;
}

.law-contact-wrapper .theme_input::placeholder {
	font-size: 15px;
	color: #9faabe;
	font-weight: 400;
	letter-spacing: 0px;
}

.law-contact-wrapper .mt_form_input {
	margin-bottom: 20px;
}

.law-contact-wrapper textarea.theme_input {
	height: 150px;
	line-height: 1.4;
	padding: 15px 30px;
}

/*Grid Style*/
.law-input-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.law-contact-wrapper .law-input-grid .mt_form_input {
	width: 50%;
}

/*=============================
 Call To Action Section Style
=============================*/

.law-call-to-action-wrapper {
	position: relative;
	padding: 100px 0;
	background-color: var(--law-title-color);
	overflow: hidden;
	text-align: center;
}

.law-call-to-action-wrapper h3 {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--law-theme);
	font-weight: 600;
	font-family: "Roboto", sans-serif;
	margin-bottom: 15px;
}

.law-call-to-action-wrapper h2 {
	font-size: 45px;
	line-height: 1.2;
	color: var(--law-white-color);
	font-weight: 900;
	font-family: "Roboto", sans-serif;

	max-width: 800px;
	margin: 0 auto;
}

.law-call-to-action-wrapper .law-btn {
	margin: 30px auto 0 auto;
	border: none;
}

.law-call-to-action-wrapper .law-btn:hover {
	background-color: var(--law-theme);
	transform: translateY(-10px);
}

form.law-contact-form {
	margin: 42px auto 0;
	max-width: 680px;
}

.law-input-flex {
	display: flex;
	gap: 20px;
}

.mt_form_input {
	width: 100%;
}

.mt_form_input input {
	width: 100%;
	border: none;
	background: #414d60;
	padding: 0 20px;
	border-radius: 5px;
	min-height: 45px;
	color: var(--law-white-color);
}

.mt_form_input textarea {
	width: 100%;
	resize: none;
	border: none;
	background: #414d60;
	border-radius: 5px;
	padding: 15px 20px;
	min-height: 120px;
	margin-top: 20px;
	color: var(--law-white-color);
}

/*=============================
 Footer Section Style
=============================*/
.footer-logo {
	margin-bottom: 25px;
	display: block;
}

.law-footer-wrapper {
	padding: 100px 0 85px 0;
	background-color: var(--law-white-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.law-footer-details {
	margin-top: 30px;
}

.law-footer-logo {
	margin-bottom: 30px;
}

.law-footer-logo p {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--law-white-color);
}

.law-footer-logo img {
	max-width: 285px;
	max-height: 50px;
	object-fit: contain;
}

.law-footer-details ul li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.law-footer-details ul li a {
	font-size: 15px;
	color: var(--law-title-color);
	font-weight: 400;
}

.law-footer-details ul li img {
	max-width: 15px;
	max-height: 15px;
	object-fit: contain;
}

.law-footer-icon {
	margin-top: 35px;
}

.law-footer-icon p {
	font-size: 15px;
	color: var(--law-title-color);
	font-weight: 400;
}

.law-footer-icon ul li {
	display: inline-block;
	margin-right: 10px;
}

.law-footer-icon ul {
	margin-top: 20px;
}

.law-footer-icon ul li a {
	width: 46px;
	height: 46px;
	background-color: #334052;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.law-footer-icon ul li a span img {
	max-width: 18px;
	max-height: 18px;
	object-fit: contain;
}

.law-footer-icon ul li a span svg {
	fill: var(--law-white-color);
}

.law-footer-icon ul li a:hover {
	/* background-color: var(--law-theme); */
	transform: translateY(-3px);
}

.law-footer-btm-heading h3 {
	font-size: 22px;
	color: var(--law-title-color);
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}

.law-footer-btm-links ul li {
	margin-bottom: 15px;
	transition: all 0.3s;
}

.law-footer-btm-links ul li a {
	font-size: 15px;
	color: var(--law-title-color);
	font-weight: 400;
	transition: all 0.3s;
}

.law-footer-btm-links ul li:hover {
	/* transform: translateX(7px); */
}

.law-footer-btm-links ul li a:hover {
	/* color: var(--law-theme); */
}

.law-subscribe input {
	margin-bottom: 20px;
	margin-top: 20px;
}

/* copyright section css start */
.law-copyright-wrapper {
	background-color: #334052;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 15px;
}

.law-copyright-wrapper p {
	font-size: 15px;
	letter-spacing: 0px;
	color: var(--law-white-color);
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	text-align: center;
}

.law-copyright-wrapper a {
	color: var(--law-theme);
	font-weight: 700;
}


.law-video-wrapper .video_wr {
	max-width: max-content;
	margin: 0 auto;
}

/* Iframe */
.iframe_div {
	text-align: center;
}

.iframe_div iframe {
	max-width: 100%;
	/*width: 100%;*/
	/*height: 350px;*/
	box-shadow: 4.225px 7.947px 29px 0px rgba(0, 0, 0, 0.2);
}

/*.presalevideo iframe {*/
/*	height: 470px;*/
/*}*/

/* Iframe */


.law-video-wrapper {
	padding: 100px 0;
}

/* Responsive Css Start */

@media (max-width: 1440px) {

	/*Banner Style*/
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 50px;
		margin-bottom: 30px;
	}

	/*About Style*/
	.law-about-wrapper .law-ab-left-content h2 {
		font-size: 36px;
	}

}

@media (max-width: 1220px) {

	/*Banner Style*/
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 45px;
	}

	.law-banner-wrapper .law-banner-content span {
		margin-bottom: 10px;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {

	/*Heading Style*/
	.law-section-heading h2 {
		font-size: 36px;
	}

	/*Banner Style*/
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 40px;
	}

	/*Spacing Style*/
	.law-about-wrapper {
		padding: 70px 0;
	}

	.law-service-wrapper {
		padding: 70px 0 50px 0;
	}

	.law-call-to-action-wrapper {
		padding: 70px 0;
	}

	.law-client-wrapper {
		padding: 70px 0 50px 0;
	}

	.law-news-wrapper {
		padding: 70px 0 70px 0;
	}

	.law-footer-wrapper {
		padding: 70px 0 55px 0;
	}

	/*About Style*/
	.law-about-wrapper .law-ab-left-content h2 {
		font-size: 32px;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 40px;
	}

}

/* sticky header end */
@media (max-width: 991px) {

	/*Footer Style*/
	.law-footer-first,
	.law-footer-second {
		position: relative;
		margin-bottom: 40px;
	}

	/*Heading Style*/
	.law-section-heading h2 {
		font-size: 32px;
	}

	/*Banner Style*/
	.law-banner-wrapper .law-banner-img {
		text-align: center;
		margin-bottom: 20px;
	}

	.law-banner-wrapper .law-banner-content {
		text-align: center;
	}

	.law-banner-wrapper .law-banner-content span {
		margin: 0 auto 5px auto;
	}

	.law-banner-wrapper .law-banner-content h1 {
		font-size: 38px;
		margin: 0 auto 20px auto;
	}

	.law-banner-wrapper .law-btn {
		margin: 0 auto;
	}

	.law-banner-wrapper {
		padding-bottom: 70px;
	}

	/*nevbar Style*/
	.law-header-wrapper {
		padding: 15px;
	}

	.menu-open .law-toggle-btn {
		top: 55px;
	}

	.menu-open .law-toggle-btn>span:nth-child(1) {
		transform: rotate(45deg);
		transform-origin: 24px -1px;
	}

	.menu-open .law-toggle-btn>span:nth-child(2) {
		transform: translateX(20px);
		visibility: hidden;
		opacity: 0;
	}

	.menu-open .law-toggle-btn>span:nth-child(3) {
		transform: rotate(-45deg);
	}

	.menu-open .law-toggle-btn span {
		margin-top: -13px;
	}

	.law-toggle-btn {
		display: block;
		position: absolute;
		right: 135px;
		top: 60px;
		cursor: pointer;
	}

	.law-toggle-btn span {
		width: 30px;
		height: 4px;
		background-color: var(--law-theme);
		margin-bottom: 5px;
		display: block;
		margin-left: auto;
		margin-top: -17px;
		transition: all 0.3s ease-in-out;
	}

	.law-navbar-menu ul {
		position: fixed;
		top: 0px;
		left: -260px;
		width: 260px;
		height: 100vh;
		background-color: var(--law-white-color);
		box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
		transition: all 0.3s ease-in-out;
		padding: 0px 20px 20px;
		z-index: 9;
	}

	.menu-open .law-navbar-menu ul {
		left: 0;
	}

	.law-navbar-menu ul li {
		display: block;
		border-bottom: 1px solid #ebebeb;
		margin-right: 0;
	}

	.law-navbar-menu ul li a {
		display: block;
		padding: 15px 0;
		color: var(--law-title-color);
		justify-content: left;
	}

	.law-navbar-menu ul li:last-child {
		border: 0;
	}

	/*About Style*/
	.law-ab-left-content {
		margin-bottom: 40px;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 36px;
	}
}

@media (max-width: 768px) {

	/*Navigation Style*/
	.law-toggle-btn {
		right: 40px;
	}

	/*Heading Style*/
	.law-section-heading h2 {
		font-size: 30px;
	}

	.law-section-heading h6 {
		font-size: 18px;
	}

	/*Banner Style*/
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 34px;
	}

	.law-banner-img img {
		display: none;
	}

	.law-banner-wrapper {
		background-position: right;
		padding: 50px 0;
	}

	/*About Style*/
	.law-about-wrapper .law-ab-left-content h2 {
		font-size: 30px;
	}

	.law-about-wrapper .law-tmp-heading h6 {
		font-size: 18px;
	}

	/*Spacing Style*/
	.law-about-wrapper {
		padding: 50px 0;
	}

	.law-service-wrapper {
		padding: 50px 0 40px 0;
	}

	.law-client-wrapper {
		padding: 50px 0 40px 0;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 30px;
	}

	.law-call-to-action-wrapper h3 {
		font-size: 18px;
	}

	/*Partner Style*/
	.law-partner-wrapper .law-partner-logo-box {
		margin-bottom: 50px;
	}

	.law-partner-wrapper {
		padding: 50px 0 10px 0;
	}

	/*Footer Style*/
	.law-footer-wrapper {
		padding: 50px 15px 10px 15px;
	}

	.law-video-wrapper {
		padding: 50px 0;
	}
}

@media (max-width: 575px) {
	.iframe_div iframe {
		height: auto;
	}

	.law-toggle-btn {
		right: 30px;
	}

	.law-section-heading h2 {
		font-size: 26px;
	}

	/*Banner Style*/
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 28px;
		max-width: 400px;
	}

	.law-banner-wrapper .law-banner-content span {
		font-size: 18px;
	}

	.law-banner-wrapper {
		padding: 32px 0;
	}

	/*About Style*/
	.law-about-wrapper .law-ab-left-content h2 {
		font-size: 26px;
	}

	/*Service Style*/
	.law-service-wrapper .law-service-box-wrapper h5 {
		font-size: 20px;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 28px;
	}

	.law-input-flex {
		flex-wrap: wrap;
	}

	/*Testimonials Style*/
	.law-client-wrapper .law-client-name h6 {
		font-size: 20px;
	}

	.law-client-wrapper .swiper-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 25px;
	}

	.law-news-box-wrapper .law-news-content-box .title a {
		font-size: 20px;
	}

	/*Blog Style*/
	.law-heading-wrapper-style-2 {
		flex-wrap: wrap;
		gap: 10px;
		padding: 0 15px;
	}

	/*Footer Style*/
	.law-footer-btm-heading h3 {
		font-size: 22px;
	}

}

@media (max-width: 480px) {
	.law-banner-wrapper .law-banner-content h1 {
		font-size: 26px;
		max-width: 100%;
	}

	/*Call To Action Style*/
	.law-call-to-action-wrapper h2 {
		font-size: 26px;
	}
}

/* Responsive Css End */