:root{
	/* Color Variables */
	--primary-color: #2974bb;
	--primary-light-color: #069eff;
	--dark-color: #1c2027;
	--text-color: #6a6c72;
	--white-color: #fff;
	--black-color: #000;
	--dark-title-color: #1f2837;
	--dark-blue-color: #141d2e;
	--second-color: #1d1729;
	--bg-light-gray: #f7f7f7;

	/* Font Family Variables */
	--font-family-primary: "Assistant", sans-serif;

	/* Font Weight Variables */
	--font-weight-regular: 400;
	--font-weight-semibold: 500;
	--font-weight-Bold: 700;
	--font-weight-ExtraBold: 900;
}
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-family-primary);
	-webkit-font-smoothing: subpixel-antialiased;
	color: var(--text-color);
	font-size: 16px;
	font-weight: var(--font-weight-regular);
	line-height: 26px;
}
h2,h3{
	font-weight: var(--font-weight-ExtraBold);
}
ul, ol{
	list-style: none;
	padding: 0;
}
a{
	text-decoration: none;
}
/* Global css start */
.bg-dark{
	background-color: var(--dark-color);
}
.primary-color-text{
	color: var(--primary-color) !important;
}
.text-primary-light{
	color: var(--primary-light-color) !important;
}
.dark-color-text{
	color: var(--dark-color) !important;
}
.black-color-text{
	color: var(--black-color) !important;
}
.text-black{
	color: var(--black-color);
}
.title.text-black{
	color: var(--black-color) !important;
}
.primary-bg, .bg-primary-color{
	background-color: var(--primary-color);
}
.bg-light-gray{
	background-color: var(--bg-light-gray);
}
.py-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.mb-30{
	margin-bottom: 30px !important;
}
.mb-35{
	margin-bottom: 35px !important;
}
.mb-40{
	margin-bottom: 40px !important;
}
.mb-45{
	margin-bottom: 45px !important;
}
.mb-50{
	margin-bottom: 50px !important;
}
.mb-70{
	margin-bottom: 70px !important;
}
.mt-40{
	margin-top: 40px;
}
.mt-80{
	margin-top: 80px;
}
.mx-w-560{
	max-width: 560px !important;
}
.mx-w-680{
	max-width: 680px !important;
}
.mx-w-700{
	max-width: 700px !important;
}
.mx-w-800{
	max-width: 800px !important;
}
section{
	position: relative;
}
.w-fit-content{
	width: fit-content !important;
}
.wpcf7-not-valid-tip{
	font-size: 16px;
	text-align: start;
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
	direction: rtl;
}
input,
textarea{
	padding: 18px 12px;
	border-radius: 0px;
	background-color: var(--white-color);
	width: 100%;
	border: 1px solid var(--white-color);
	max-height: 64px;
}
textarea{
	max-height: 180px;
	resize: none;
}
textarea:focus, input:focus{
	outline: none;
	border-color: var(--primary-color);
}
.global-btn{
	background-color: var(--primary-color);
	font-size: 18px;
	vertical-align: middle;
	border-radius: 0;
	font-weight: var(--font-weight-regular);
	padding: 14px 18px;
	border: 1px solid var(--primary-color);
	color: var(--white-color);
	position: relative;
	min-width: 180px;
}
.global-btn:hover{
	background: none;
	color: var(--primary-color);
}
.global-btn.black-btn{
	background-color: var(--black-color);
	color: var(--white-color);
	border-color: var(--black-color);
}
.global-btn.black-btn:hover{
	color: var(--black-color);
	background: none;
}
.global-btn.white-btn{
	background-color: var(--white-color);
	color: var(--dark-color);
	border-color: var(--white-color);
}
.global-btn.white-btn:hover{
	color: var(--white-color);
	background: none;
}
.global-btn.primary-btn{
	background-color: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
}
.global-btn.primary-btn:hover{
	color: var(--primary-color);
	background: none;
}
.global-btn i{
	margin-right: 10px;
	vertical-align: middle;
	margin-top: -5px;
}
.global-btn[type="submit"]{
	border-radius: 6px;
}
.global-btn[type="submit"] i{
	margin-top: 0px;
}
.title-area .title{
	font-size: 43px;
	line-height: 50px;
	color: var(--dark-color);
	margin-bottom: 30px;
}
.wpcf7-response-output{
	color: var(--white-color);
	margin: 0 !important;
	text-align: center;
}
.wpcf7-form.invalid .wpcf7-response-output{
	display: none !important;
}
.contact-form .form-area :where(div p input, p button),
.subscribe-form :where(div p input, p button){
	width: 100%;
	direction: rtl !important;
}
.wpcf7-response-output{
	color: var(--white-color);
}
.desc-list > li {
	margin-bottom: 10px;
}
.desc-list > li:last-child{
	margin-bottom: 0;
}
.desc-p-area > p:last-child{
	margin-bottom: 0;
}
.list-disc {
	list-style: disc !important;
}
.list-disc > li::marker {
	color: var(--primary-color);
}

/* Header css start */
#header_desktop.sticky, #header_mobile.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background-color: var(--white-color);
	box-shadow: 0 5px 6px rgba(0,0,0,0.03);
	transition: all 0.5s ease-in-out;
}
.navbar-brand{
	min-width: 310px;
	padding: 9px 16px;
}
.navbar-toggler:focus{
	box-shadow: none;
}
.navbar-content{
	padding-right: 50px;
}
.navbar-nav{
	gap: 26px;
}
.navbar-nav .menu-item{
	font-size: 16px;
	font-weight: var(--font-weight-semibold) !important;
}
.navbar-nav .menu-item a{
	color: var(--dark-color);
	text-decoration: none;
	position: relative;
}
.navbar-nav .menu-item.current-menu-item a,
.navbar-nav .menu-item:hover a,
.footer-menu .menu-item.current-menu-item a,
.footer-menu .menu-item:hover a{
	color: var(--primary-color);
}
.navbar-nav .menu-item a::after{
	content: '';
	width: 0;
	transition: all 0.3s ease;
}
.navbar-nav .menu-item.current-menu-item a{
	font-weight: var(--font-weight-Bold);
}
.navbar-nav .menu-item.current-menu-item a::after,
.navbar-nav .menu-item:hover a::after{
	content: '';
	width: 70%;
	height: 2px;
	background-color: var(--primary-color);
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	position: absolute;
}
.search-btn{
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid var(--second-color);
}
.search-btn i{
	color: var(--second-color);
	font-size: 22px;
}
.search-btn:hover i{
	color: var(--primary-color);
}
.number-area > img{
	max-height: 49px;
}
.number-area{
	text-decoration: none;
}
.number-area:hover .number{
	color: var(--primary-color);
}
.number .number-label{
	font-size: 16px;
	font-weight: 400;
}
.number{
	font-size: 18px;
	line-height: 24px;
	color: var(--second-color);
	font-family: "Catamaran", sans-serif;
	font-weight: 500;
}

/* Header css end */

/* Hero section css start */
.hero-sec{
	background-size: cover;
	background-position: center center;
  	padding: 40px 0;
	min-height: calc(100vh - 89px);
}
.hero-content{
	max-width: 834px;
}
.hero-title{
	font-size: 66px;
	font-weight: var(--font-weight-Bold);
	line-height: 76px;
	margin-bottom: 66px;
	color: var(--white-color);
	letter-spacing: 2px;
}
.hero-description{
	max-width: 490px;
	font-size: 41px;
	line-height: 48px;
	font-weight: var(--font-weight-Bold);
	padding-bottom: 14px;
	margin-bottom: 27px;
	border-bottom: 1px solid var(--white-color);
	color: var(--white-color);
	opacity: 0.6;
	letter-spacing: 2px;
}
.banner-btn::before{
	content: url('/wp-content/uploads/2024/10/arrow.png');
	position: absolute;
	width: 100px;
	height: 100px;
	top: -100%;
	right: -55%;
	pointer-events: none;
}
/* Hero section css end */

/* About Us section css start */
.about-us{
	padding: 80px 0;
}
.keyword{
	font-size: 16px;
	line-height: 16px;
	color: var(--primary-color);
	padding-right: 35px;
  	position: relative;
	font-weight: var(--font-weight-Bold);
	margin-bottom: 10px;
}
.keyword::after{
	content: '';
	width: 25px;
	height: 1px;
	background-color: var(--primary-color);
	position: absolute;
	right: 0;
	top: 8px;
	-webkit-font-smoothing: subpixel-antialiased;
}
.about-list .list-item .icon{
	max-width: 16px;
	object-fit: contain;
	margin-top: 4px;
}
/* About Us section css end */

/* Our solution section css start */
.our-solution{
	padding: 0 0 80px;
}
.dpo-solution{
	padding: 80px 0;
}
.solution-content-area{
	max-width: 860px;
}
.solution-content-area > p.description{
	max-width: 660px;
}
/* Our solution section css end */

/* Steps Section css start */
.steps-sec{
	padding: 75px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.steps-sec .title-area .title{
	margin-bottom: 70px;
}
.steps-box-area {
	background-color: var(--white-color);
	padding: 36px 20px;
	height: 100%;
	margin: 0 30px;
	position: relative;
}
.arrow-box {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: -20px;
	background-color: var(--white-color);
	transform: translateY(-50%) rotate(138deg);
}
.arrow-box i{
	transform: rotate(-50deg);
  	color: var(--primary-color);
}
.steps-box-area .img-box{
	min-height: 66px;
	margin-bottom: 20px;
}
.steps-box-area .img-box img{
	max-height: 64px;
	object-fit: contain;
}
.steps-box-area .steps-number{
	width: 28px;
	height: 28px;
	background-color: var(--primary-color);
	color: var(--white-color);
	font-weight: var(--font-weight-Bold);
	position: absolute;
	top: 0;
	right: 0;
}
.steps-box-area .title{
	font-size: 17px;
	line-height: 22px;
	color: var(--primary-color);
	font-weight: var(--font-weight-Bold);
	margin-bottom: 10px;
}
.steps-box-area .description{
	font-size: 15px;
	line-height: 23px;
	font-weight: var(--font-weight-regular);
	color: var(--dark-color);
	margin-bottom: 0;
}
.steps-sec .row .steps-col:last-child .steps-box-area .arrow-box{
	display: none !important;
}
/* Steps Section css end */

/* Why Choose Us section css start */
.why-choose-sec{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 80px 0 90px;
}
.why-sec-title-area{
	margin-bottom: 60px;
}
.why-tabs {
	gap: 30px;
	margin-bottom: 30px !important;
}
.why-tabs .nav-item {
	width: 17.9%;
}
.why-tabs .nav-link {
	background-color: var(--white-color);
	border: none;
	border-radius: 0;
	width: 100%;
	box-shadow: 10px 0 50px rgba(0,0,0,0.07);
	min-height: 220px;
	padding: 50px 20px 30px;
	position: relative;
}
.why-tabs .nav-link .img-box{
	height: 64px;
	margin-bottom: 20px;
}
.why-tabs .nav-link > .title{
	font-size: 20px;
	line-height: 27px;
	font-weight: var(--font-weight-Bold);
	color: var(--primary-color);
	margin-bottom: 0px;
}
.why-tab-img{
	max-height: 60px;
	max-width: 64px;
	object-fit: contain;
}
.why-tabs .nav-link.active, .why-tabs .show > .nav-link, .why-tabs .nav-link:hover{
	background-color: var(--dark-blue-color);
}
.why-tabs .nav-link.active .title, .why-tabs .show > .nav-link .title, .why-tabs .nav-link:hover .title{
	color: var(--white-color);
}
.why-tabs .nav-link.active::before, .why-tabs .show > .nav-link::before, .why-tabs .nav-link:hover::before{
	content: url('/wp-content/uploads/2024/10/tab-box-overlay.png');
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	max-width: 100%;
}
.why-tabs .nav-link.active::after, .why-tabs .show > .nav-link::after, .why-tabs .nav-link:hover::after{
	content: url('/wp-content/uploads/2024/10/tab-arrow-icon.png');
	position: absolute;
	bottom: -27px;
	left: 50%;
	transform: translateX(-50%);
}
.why-tabs .nav-link.active .why-tab-img, .why-tabs .show > .nav-link .why-tab-img, .why-tabs .nav-link:hover .why-tab-img {
	filter: invert(47%) sepia(95%) saturate(3120%) hue-rotate(181deg) brightness(103%) contrast(103%);
}
.why-tab-content .title{
	font-size: 44px;
	line-height: 54px;
	font-weight: var(--font-weight-ExtraBold);
	color: var(--dark-title-color);
	margin-bottom: 8px;
}
.why-tab-content .description{
	font-size: 20px;
	line-height: 30px;
	font-weight: var(--font-weight-regular);
	margin-bottom: 0px;
}
.why-tab-content{
	margin-bottom: 30px;
}
/* Why Choose Us section css end */

/* Legal section css start */
.legal-sec{
	background-size: cover;
	background-position: center center;
	padding: 98px 0 80px 0;
}
.legal-sec p.description{
	text-align: justify;
}
.legal-col.first p.description{
	max-width: 480px;
}
/* Legal section css end */

/* About center section css start */
.about-center-sec{
	padding: 100px 0;
}
.about-center-sec.py-80, .collaps-ads-sectiom.py-80{
	padding: 80px 0;
}
.about-center-sec.py-60{
	padding: 60px 0;
}
.about-center-content-area{
	max-width: 505px;
}
.note-area {
	background-color: var(--white-color);
	padding: 18px 20px;
	position: relative;
	box-shadow: 10px 0 50px rgba(0,0,0,0.07);
}
.note-area::before {
	content: '';
	background: var(--primary-color);
	width: 4px;
	height: calc(100% - 20px);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 4px;
}
.note-area .note{
	font-size: 16px;
	line-height: 23px;
	color: #131a26;
	font-weight: var(--font-weight-Bold);
}
.about-center-content-area .icon-btn{
	font-size: 16px;
	line-height: 16px;
	color: var(--text-color);
	font-weight: var(--font-weight-regular);
	text-decoration: none;
}
.about-center-content-area .icon-btn i{
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #f2f5f9;
	border-radius: 50%;
	color: var(--dark-color);
	text-align: center;
	margin-right: 16px;
}
.about-center-content-area .icon-btn:hover{
	color: var(--primary-color);
}
.about-center-content-area .icon-btn:hover i{
	background-color: var(--primary-color);
	color: var(--white-color);
}
/* About center section css end */

/* story section css start */
.story-sec{
	background-size: cover;
	background-position: center center;
	padding: 54px 0 90px;
}
.story-title-area{
	max-width: 590px;
}
.story-sec .story-title-area .description{
	font-size: 18px;
	line-height: 26px;
	color: #1f2838;
	font-weight: var(--font-weight-regular);
}
.story-box-area{
	background-color: var(--white-color);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.03);
	padding: 25px 17px 46px 47px;
	position: relative;
}
.story-box-area::before{
	content: url('/wp-content/uploads/2024/10/linesbg.png');
	position: absolute;
	left: -20px;
	bottom: -25px;
	z-index: -1;
}
.story-slider .slick-track{
	display: flex;
	gap: 60px;
  	padding-bottom: 20px;
}
.story-slider .slick-slide{
	display: flex !important;
  	height: auto;
}
.story-rating-area {
	position: absolute;
	left: 47px;
	bottom: 20px;
}
.story-rating-area .fa-star.active {
    color: gold;
}
.story-slider .slick-arrow::before{
	content: none;
}
.story-slider .slick-arrow{
	transition: all 0.3s ease;
}
.story-slider .slick-arrow i{
	font-size: 16px;
	color: var(--black-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid var(--black-color);
	border-radius: 50%;
}
.story-slider .slick-arrow:hover i{
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.story-slider .slick-arrow.slick-disabled{
	visibility: hidden;
}
.story-box-area .story-title{
	font-size: 26px;
	line-height: 36px;
	color: var(--dark-title-color);
	font-weight: var(--font-weight-ExtraBold);
}
.story-box-area .story-text p strong{
	font-size: 18px;
	color: var(--black-color);
	line-height: 26px;
}
.story-slider .slick-dots li button{
	padding: 0;
	height: 10px;
}
.story-slider .slick-dots li button::before {
	width: 23px;
	height: 8px;
	content: '' !important;
	background-color: var(--second-color);
}
.story-slider .slick-dots li.slick-active button::before{
	background-color: var(--primary-color);
}
.story-slider .slick-dots{
	bottom: -50px;
}
/* Readmore button css start */
.story-text {
	transition: height 0.3s ease;
}
.story-text.expanded {
	height: auto; 
}
.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
	display: none;
}
.add-read-more.show-more-content .read-more {
	display: none;
}
.add-read-more .read-more,
.add-read-more .read-less {
	font-weight: var(--font-weight-bold);
	margin-right: 4px;
	color: var(--primary-color);
	cursor: pointer;
	text-decoration: none;
	border-bottom: 1px solid var(--primary-color);
}
/* story section css end */

/* Footer css start */
.cta-sec{
	padding: 70px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.cta-desc{
	font-size: 20px;
  	line-height: 35px;
}
.footer-sec{
	padding: 110px 0 70px;
	background-color: var(--dark-blue-color);
	position: relative;
}
.footer-sec .footer-overlay-left{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	height: 100%;
}
.footer-sec .footer-overlay-right{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	height: 100%;
}
.footer-row{
	z-index: 1;
	position: relative;
	color: #c6d9ec;
}
.footer-row a{
	color: #c6d9ec;
}
.footer-logo{
	max-width: 180px;
	margin-bottom: 20px;
	margin-top: -24px;
}
.footer-social li a i{
	width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #10121e;
	border-radius: 50%;
	text-align: center;
	transition: all 0.3s ease;
}
.footer-social li:hover a i{
	transform: scale(1.2);
}
.footer-title{
	font-weight: var(--font-weight-Bold);
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 38px;
	position: relative;
}
.footer-title::before{
	content: '';
	width: 16px;
	height: 2px;
	background-color: var(--primary-color);
	position: absolute;
	bottom: -8px;
	right: 0;
}
.footer-menu .menu-item{
	transition: all 0.3s ease-in-out;
}
.footer-menu .menu-item:hover{
	padding-right: 6px;
}
.newsletter-form{
	max-width: 318px;
}
.wpcf7-spinner{
	display: none;
}
.newsletter-form .submit-btn{
	padding: 0px !important;
	max-height: 57px;
  	min-width: 57px;
}
.newsletter-form .submit-btn p{
	margin-bottom: 0px !important;
}
.newsletter-form .wpcf7-submit{
	padding: 20px;
	background: none;
	border: none;
	z-index: 1;
  	position: relative;
}
.newsletter-form input{
	padding: 14px 12px;
	min-height: 57px;
}
.newsletter-form .wpcf7-spinner{
	display: none;
}
.newsletter-form{

}
.newsletter-form .submit-btn i{
	margin-right: 0;
	margin-top: 0;
	font-size: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.footer-contact-info li, .footer-contact-info li a {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: start;
}
.footer-contact-info li i {
	margin-top: 7px;
	color: var(--primary-color);
}
.footer-contact-info li:hover a{
	color: var(--primary-color);
}

.copyright{
	padding: 20px 0;
	background-color: var(--dark-blue-color);
	border-top: 1px solid #2c3443;
	color: #c6d9ec;
}
/* Footer css end */


/*********************
Contact page css start
**********************/
.page-id-209 footer > .cta-sec{
	display: none;
}
.breadcrumb-sec {
	min-height: 350px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.breadcrumb-sec .title-area h1.title{
	font-size: 48px;
	line-height: 48px;
	font-weight: var(--font-weight-ExtraBold);
	margin-bottom: 20px;
}
.breadcrumb-sec .breadcrumbs li{
	opacity: 0.6;
	font-size: 23px;
	line-height: 23px;
	font-weight: var(--font-weight-regular);
	color: var(--white-color);
}
.breadcrumb-sec .breadcrumbs li a{
	color: var(--white-color);
}
.breadcrumb-sec .breadcrumbs li:first-child:hover{
	opacity: 1;
}
.breadcrumb-sec .breadcrumbs li > span{
	margin: 0 4px;
}
.breadcrumb-sec .breadcrumbs li a:hover{
	color: var(--primary-color);
	opacity: 1;
}
.contact-form-sec {
	padding: 90px 0;
}
.contact-form-sec .contact-form-area{
	background-color: #e6eaf2;
	padding: 60px 55px;
	position: relative;
	overflow: hidden;
}
.contact-form-sec .contact-form-area::before{
	content: '';
	width: 500px;
	height: 500px;
	background-color: rgba(215, 222, 240, 0.5);
	position: absolute;
	top: -20%;
	right: -80%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.contact-form-sec .title-area .title{
	font-weight: var(--font-weight-ExtraBold);
	line-height: 43px;
}
.contact-detail-area .contact-item{
	gap: 18px;
	margin-bottom: 20px;
}
.contact-detail-area .contact-item:last-child{
	margin-bottom: 0px;
}
.contact-detail-area .contact-item .contact-icon {
	max-width: 80px;
}
.contact-detail-area .contact-item .label{
	font-size: 16px;
	line-height: 16px;
	font-weight: var(--font-weight-regular);
	margin-bottom: 6px !important;
	color: var(--text-color);
}
.contact-detail-area .contact-item .value{
	color: #181729;
	font-size: 18px;
	line-height: 24px;
	font-weight: var(--font-weight-semibold);
}
.contact-cta{
	padding: 0;
}
.contact-cta .cta-content-area{
	padding: 55px 67px 55px 80px;
  	background-color: var(--dark-color);
	border-right: 10px solid var(--primary-light-color);
}
.contact-submit-btn{
	padding-left: 10px;
	padding-right: 10px;
}
.contact-submit-btn input.wpcf7-submit{
	padding: 0;
	border: none;
	background: none;
	color: var(--white-color);
}
.contact-submit-btn.primary-btn:hover input.wpcf7-submit{
	color: var(--primary-color);
}
.submit-btn > p{
	margin-bottom: 0px;
}
.map-area{
	margin-top: -100px;
}
.map-area iframe{
	margin-bottom: -8px;
}
.contact-submit-btn{
	margin-bottom: 10px;
}
.wpcf7 form.sent .wpcf7-response-output{
	color: #46b450 !important;
}
/*********************
Contact page css end
**********************/

/*********************
New Law page css start
**********************/
.changed-law-sec{
	padding-bottom: 90px;
}
.changed-law-content-area{
	background-color: var(--white-color);
	padding: 42px 20px 24px;
	box-shadow: 0px 0 50px rgba(0,0,0,0.07);
	position: relative;
}
.changed-law-content-area::before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 23px;
	height: 23px;
	background: var(--primary-color);
}
.changed-law-content-area .title{
	font-size: 17px;
	line-height: 23px;
	color: var(--primary-color);
	font-weight: var(--font-weight-Bold);
}
.changed-law-content-area .description{
	font-size: 16px;
	line-height: 23px;
}

.risk-of-law-sec .title-area .title{
	margin-bottom: 20px;
}
.risk-of-law-sec .title-area{
	max-width: 710px;
}
.risk-of-law-box-area{
	margin: 0;
	padding: 25px 18px 20px;
}
.risk-of-law-box-area .description{
	color: var(--second-color);
}
.risk-of-law-subtitle{
	max-width: 660px;
	font-size: 24px;
	line-height: 34px;
	font-weight: var(--font-weight-Bold);
	color: var(--dark-title-color);
}

.affect-sec{
	padding: 50px 0 100px;
}
.affect-sec .desc-area > p.description{
	max-width: 460px;
	margin-right: auto;
	text-align: justify;
}
.affect-box-heading{
	margin-bottom: 50px;
	font-size: 33px;
	line-height: 30px;
	font-weight: var(--font-weight-Bold);
}
.affect-box-row{
	padding-top: 60px;
}
.affect-sec .affect-box-area{
	padding: 80px 12px 26px;
}
.affect-sec .affect-box-area .img-box{
	width: 116px;
	height: 116px;
	line-height: 116px;
	border-radius: 50%;
	background-color: var(--primary-color);
	margin-bottom: 26px;
	position: absolute;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
}
.affect-box-area .description{
	color: var(--second-color);
}

.contentn-sec{
	padding: 70px 0;
}
.contentn-sec .content-area{
	max-width: 650px;
}
.contentn-sec .content-area .content{
	font-size: 30px;
	line-height: 43px;
}

.practicle-steps-box-area{
	padding: 25px 11px 20px;
}

.deal-content-area{
	background: rgb(21,83,144);
	background: -moz-linear-gradient(97deg, rgba(21,83,144,1) 0%, rgba(58,167,237,1) 100%);
	background: -webkit-linear-gradient(97deg, rgba(21,83,144,1) 0%, rgba(58,167,237,1) 100%);
	background: linear-gradient(97deg, rgba(21,83,144,1) 0%, rgba(58,167,237,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#155390",endColorstr="#3aa7ed",GradientType=1); 
	padding: 34px 20px;
	margin-top: -40px;
}
.dual-color-description{
	font-size: 18px;
	line-height: 30px;
	color: #1f2838;
}
.dual-color-description > strong{
	color: var(--primary-color);
	font-size: 22px;
	line-height: 30px;
}
/*********************
New Law page css end
**********************/


/*********************
FAQ page css start
**********************/
.faq-sec{
	padding: 80px 0;
}
.faq-sec .title-area{
	max-width: 800px;
}
.faq-accordion .accordion-button > span{
	width: 100%;
	text-align: right;
}
.faq-accordion .accordion-body {
	padding: 1.5rem 1.25rem;
	font-size: 18px;
}
.faq-accordion .accordion-button[aria-expanded="true"]{
	background-color: var(--primary-color);
	color: var(--white-color);
}
.faq-accordion .accordion-button{
	font-size: 17px;
	font-weight: var(--font-weight-bold);
	color: var(--primary-color);	
}
.faq-accordion .accordion-button[aria-expanded="true"]::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:focus{
	box-shadow: none;
}
.faq-sec .title-area .description{
	font-size: 18px;
	font-weight: var(--font-weight-regular);
}
/*********************
FAQ page css end
**********************/

/* Dual color col section css start */
.dual-color-col-sec{
	padding: 80px 0;
}
.dual-color-col {
	padding: 30px;
	border-radius: 12px;
	position: relative;
}
.dual-color-col .desc-list > li::marker{
	color: var(--white-color);
}
.dual-color-col .desc-list > li{
	color: var(--white-color);
}
.dual-color-col::before {
	content: url('/wp-content/uploads/2024/10/favicon.png');
	width: fit-content;
	height: auto;
	position: absolute;
	background-repeat: no-repeat;
	bottom: 20px;
	left: 20px;
	opacity: 0.2;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(3deg) brightness(103%) contrast(102%);
}
/* Dual color col section css end */
.list-2-col{
	column-count: 2;
	column-gap: 20px;
}
.list-gap-8 > li{
	margin-bottom: 8px;
}
.list-gap-6 > li:last-child{
	margin-bottom: 0px;
}
.list-text {
  line-height: 22px;
}

.steps-zone {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
/* .container {
	width: 40%;
} */

.why-accordion button.accordion-button .number {
	background: #2974bb;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0.82rem 0.5rem 0.82rem 0.5rem;
	color: white;
	font-size: 30px;
}

.why-accordion .accordion-header {
	text-align: center;
}

.why-accordion .accordion-button:focus {
	background: #141d2e;
	color: white;
}

.why-accordion .accordion-button:not(.collapsed) {
	background: #141d2e;
	color: white;
}

.why-accordion .accordion-button span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-size: 30px;
}

.ads-title-aria .keyword {
	width: fit-content;
	margin: 0 auto;
}

.collaps-ads-sectiom {
	padding: 80px 0;
	background: url("../images/collaps-bg.png");
	background-size: cover;
	background-position: center;
}

.why-accordion .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
	border: none;
}
.why-accordion .accordion-button{
	color: #ffffff;
	font-size: 23px;
	background: #ffffff;
}
.why-accordion .accordion-button h2{
	font-size: 23px;
	width: 100%;
}
.why-accordion .accordion-button:not(.collapsed){
	color: #2974bb;
	font-size: 23px;
	background: #141d2e;
}
.why-accordion .accordion-item:first-of-type .accordion-button{
	border-top-left-radius:0;
	border-top-right-radius:0;
}
.title-area .title-42px{
	font-size: 42px;
}

.step-method .step-method-item{
	padding: 10px 60px 10px 10px;
	background-color: var(--white-color);
	font-size: 22px;
	line-height: 28px;
  	width: 100%;
	font-weight: var(--font-weight-Bold);
	color: var(--primary-color);
	position: relative;
	margin-top: 30px;
}
.step-method .step-method-item:first-child{
	margin-top: 0;
}
.step-method .step-method-item > span{
	background-color: var(--primary-color);
	height: 100%;
	position: absolute;
	font-size: 22px;
	line-height: 28px;
	color: var(--white-color);
	padding: 5px 10px;
	font-weight: var(--font-weight-Bold);
	right: 0;
	top: 0;
	display: flex;
  	align-items: center;
	justify-content: center;
	min-width: 37px;
}
.step-method .step-method-item > p{
	width: 100%;
	text-align: center;
}
.step-method .step-method-item::after {
	content: '';
	position: absolute;
	width: 36px;
	height: 56px;
	background-image: url('/wp-content/uploads/2024/10/white-arrow.png');
	bottom: -56px;
	left: 45%;
	background-size: contain;
	background-repeat: no-repeat;
}
.step-method .step-method-item:last-child::after{
	content: none;
}
.faq-accordion .accordion-body p > strong{
	color: #2974bb;
}

#StartQuizBtn {
    position: fixed;
    right: 0;
    top: 50%;
	transform: translateY(-50%) translateX(230px);
    padding: 14px 25px;
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 20px;
	line-height: 26px;
	font-weight: bold;
    cursor: pointer;
    display: none;
	opacity: 0;
	animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
	z-index: 99;
    box-shadow: 0 0px 10px rgba(255,255,255,0.08);
}
#StartQuizBtn i{
	color: var(--primary-light-color);
	font-size: 22px;
	margin-right: 10px;
  	margin-bottom: -5px;
	transition: all 0.3s ease;
}
#StartQuizBtn:hover i {
	margin-right: 14px;
}
#StartQuizBtn.show {
    display: flex;
	/* right: 0px; */
	opacity: 1;
	transition: all .3s ease;
}

@keyframes slide-in {
    100% { transform: translateY(-50%) translateX(0%); }
}

.post-featured-img{
	background-size: cover;
	background-position: center center;
	padding: 40px 20px;
	text-align: center;
	min-height: 400px;
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.general-sec .general-content{
	padding: 80px 0;
}