/*
 * Global CSS start
 * */
.acf-content-block{
	position: relative;
	margin: -200px 0;
	z-index: 0;
}

.acf-content-block .section-shape{
	background: var(--bg-color);
}

.acf-content-block .section-shape.left{
	background: linear-gradient(82deg, var(--bg-color1) calc(0% + 540px), var(--bg-color2) 0%);
}

.acf-content-block .section-shape.right{
	background: linear-gradient(82deg, var(--bg-color2) calc(100% - 540px), var(--bg-color1) 0%);
}

.acf-content-block .container{
	position: relative;
	z-index: 1;
}

@media only screen and (max-width: 991px){
	
	.acf-content-block{
		margin: -80px 0;
	}
	
	.acf-content-block .section-shape.left,
	.acf-content-block .section-shape.right{
		background: var(--bg-color1);
	}

}

@media only screen and (max-width: 767px){
	
	.acf-content-block{
		margin: -40px 0;
	}
	
}


/*
 * Page Header block CSS start
 * */
.page-header-block .container-fluid{
	padding: 0;
}

.pageheader-content{
	display: flex;
	justify-content: center;
	flex-direction: column;	
	height: 100%;
	padding: 260px 40px 200px calc(((100vw - 1400px) / 2) - 10px);
	margin-left: 20px;
}

.pageheader-content .section-title{
	margin: 0;
}

.pageheader-content .section-title h3{
	font-family: var(--default-font);
	font-size: 50px;
	font-weight: 400;
	line-height: 1.1em;
	margin-bottom: 10px;
}

.pageheader-content .section-title p{
	margin-top: 25px;
	max-width: 75%;
}

.pageheader-image{
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 100px 100%);
}

.pageheader-video{
  	position: relative;
  	height: 100%;
  	clip-path: polygon(0 0, 100% 0%, 100% 100%, 100px 100%);
}

.pageheader-video .video-background-controls{
    top: 50% !important;
    right: 50% !important;
    transform: translate(calc(-50% + 100px), calc(-50% - 50px));
	/*opacity: 0;
	visibility: hidden;*/
	transition: all 0.3s ease-in-out;
}

/*.pageheader-video:hover .video-background-controls{
	opacity: 1;
	visibility: visible;
}*/

.pageheader-video .video-background-controls .play-toggle{
	height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
	padding: 0;
    background: #FFF;
    border-radius: 50%;
}

.pageheader-video .video-background-controls .play-toggle .fa{
	font-size: 65px;
    color: var(--primary-color);
    border-radius: 50%;
}


@media only screen and (max-width: 991px){
		
	.pageheader-content{
		height: auto;
		padding: 140px 20px 20px 20px;
		margin-left: 0;
	}

	.pageheader-content .section-title h3{
		font-size: 26px;
	}

	.pageheader-content .section-title p{
		margin-top: 20px;
		max-width: 100%;
	}

	.pageheader-video,
	.pageheader-image{
		height: auto;
		min-height: 500px;
		clip-path: polygon(0 80px, 100% 0%, 100% 100%, 0% 100%);
	}
	
	.pageheader-video .video-background-controls{
		transform: translate(calc(-50% + 50px), -50%);
	}
	
}

@media only screen and (max-width: 767px){
	
	.pageheader-content{
		padding: 90px 20px 30px 20px;
	}

	.pageheader-content .section-title h3{		
		font-size: 24px;
	}
	
	.pageheader-video,
	.pageheader-image{
		min-height: 400px;
		clip-path: polygon(0 40px, 100% 0%, 100% 100%, 0% 100%);
	}
	
	.pageheader-video .video-background-controls .play-toggle{
		height: 50px;
		width: 50px;
	}

	.pageheader-video .video-background-controls .play-toggle .fa{
		font-size: 50px;
	}
	
}


/*
 * Anchor Tabs block CSS start
 * */
.anchor-tabs-block .anchor-tabs-block-inner{
	padding: 240px 0 280px;
}

.anchor-tabs-block .section-bg-img{
	position: absolute;
	width: 31.25vw;
	top: calc(50% + 100px);
	left: -9.375vw;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.block-data-list-row{
	margin-bottom: 65px;
}

.block-data-list-items{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.block-data-list-items .block-data-list-item{
	display: inline-block;
}

.block-data-list-items .block-data-list-item a{
	display: inline-block;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 80px;
    padding: 15px 32px;
    transition: all 0.3s ease-in-out;
}

.block-data-list-items .block-data-list-item a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.anchor-tabs-image-left figure{
	text-align: left;
	padding-right: 40px;
}

.anchor-tabs-image-left img{
	width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    border-radius: 30px;
}

.anchor-tabs-content-right .section-title{
	margin: 0;
	padding-left: 20px;
}

.anchor-tabs-content-right .section-title p{
	max-width: 75%;
}

@media only screen and (max-width: 1600px){
	
	.anchor-tabs-block .section-bg-img{
		left: -200px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.anchor-tabs-block .anchor-tabs-block-inner{
		padding: 140px 0 120px;
	}

	.anchor-tabs-block .section-bg-img{
		width: 400px;
        top: 0;
        left: auto;
        right: -150px;
		transform: translateY(0);
	}
	
	.anchor-tabs-block .section-bg-img img{
		opacity: 0.5;
	}
	
	.block-data-list-row{
		margin-bottom: 50px;
	}

	.block-data-list-items .block-data-list-item a{
		font-size: 18px;
		padding: 15px 30px;
	}

	.anchor-tabs-image-left figure{
		text-align: center;
		padding-right: 0;
	}

	.anchor-tabs-content-right .section-title{
		padding-left: 0;
		margin-top: 25px;
	}

	.anchor-tabs-content-right .section-title p{
		max-width: 100%;
	}

}

@media only screen and (max-width: 767px){
	
	.anchor-tabs-block .anchor-tabs-block-inner{
		padding: 100px 0;
	}

	.anchor-tabs-block .section-bg-img{
		width: 260px;
        right: -100px;
	}
	
	.block-data-list-items{
		gap: 15px;
	}

	.block-data-list-items .block-data-list-item a{
		font-size: 16px;
		padding: 12px 20px;
	}
	
}


/*
 * Contact block CSS start
 * */
.contact-block .contact-block-inner{
	padding: 260px 0;
}

.contact-form-box{
	max-width: 990px;
	padding: 60px;
	border-radius: 50px;
	margin: 0 auto;
	text-align: center;
}

.contact-form .section-title{
	margin-bottom: 40px;
}

.contact-form .contact-form-fields{
	display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form .contact-form-fields .form-field{
	width: calc(50% - 20px);
}

.contact-form .contact-form-fields .form-field.field-msg,
.contact-form .contact-form-fields .form-field.field-submit{
	width: 100%;
}

.contact-form .contact-form-fields .form-field > p{
	margin-bottom: 0;
}

.contact-form .contact-form-fields .form-field span{
	display: block;
	box-sizing: border-box;
}

.contact-form .contact-form-fields .form-field label{
	display: block;
	width: 100%;
    color: var(--text-color);
    font-family: 'Museo Sans 500';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
	text-align: left;
	padding-left: 25px;
	margin-bottom: 10px;
}

.contact-form .contact-form-fields .form-field .wpcf7-form-control:not(.btn-submit){
	display: block;
    width: 100%;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    border: none;
    outline: none;
    padding: 20px 30px;
    border-radius: 40px;
}

.contact-form .contact-form-fields .form-field.field-submit .wpcf7-spinner{
	display: none !important;
}

.contact-form .contact-form-fields .form-field.field-submit{
	text-align: left;
}

.contact-form .contact-form-fields .form-field.field-submit input[type="submit"]{
	display: inline-block;
	color: var(--white-color);
	background-color: var(--primary-color);
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    padding: 15px 30px !important;
	border: none;
	border-radius: 80px;
	outline: none;
	position: relative;
	transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-form .contact-form-fields .form-field.field-submit input[type="submit"]:hover{
	color: var(--white-color);
	background-color: var(--black-color);
}

.contact-form .contact-form-fields .form-field .wpcf7-not-valid-tip{
	color: var(--primary-color);
    font-weight: 500;
    line-height: 1.4em;
	margin-top: 5px;
	padding-left: 25px;
	text-align: left;
}

.contact-form form.invalid .wpcf7-response-output,
.contact-form form.sent .wpcf7-response-output{
    font-weight: 500;
    line-height: 1.4em;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    padding: 6px 15px;
    margin: 40px 0 0;
	text-align: left;
}

.contact-form form.sent .wpcf7-response-output{
    background-color: var(--dark-green-color);
}

@media only screen and (max-width: 991px){
	
	.contact-block .contact-block-inner{
		padding: 140px 0;
	}

	.contact-form-box{
		padding: 40px;
		border-radius: 30px;
	}

	.contact-form .section-title{
		margin-bottom: 30px;
	}

	.contact-form .contact-form-fields{
		gap: 30px;
	}

	.contact-form .contact-form-fields .form-field{
		width: calc(50% - 15px);
	}

	.contact-form .contact-form-fields .form-field label{
		font-size: 16px;
		padding-left: 20px;
	}

	.contact-form .contact-form-fields .form-field .wpcf7-form-control:not(.btn-submit){
		font-size: 16px;
		padding: 15px 25px;
		border-radius: 25px;
	}

	.contact-form .contact-form-fields .form-field.field-submit input[type="submit"]{
		font-size: 18px;
		line-height: 1.2em;
		padding: 13px 20px !important;
	}

	.contact-form .contact-form-fields .form-field .wpcf7-not-valid-tip{
		padding-left: 20px;
	}
}

@media only screen and (max-width: 767px){
	
	.contact-block .contact-block-inner{
		padding: 100px 0;
	}
	
	.contact-form .contact-form-fields{
		flex-direction: column;
	}
	
	.contact-form-box{
		padding: 30px 20px;
		border-radius: 20px;
	}
	
	.contact-form .section-title{
		margin-bottom: 20px;
	}

	.contact-form .contact-form-fields{
		gap: 15px;
	}

	.contact-form .contact-form-fields .form-field{
		width: 100%;
	}

	.contact-form .contact-form-fields .form-field .wpcf7-form-control:not(.btn-submit){
		padding: 13px 25px;
		border-radius: 20px;
	}

	.contact-form .contact-form-fields .form-field.field-submit input[type="submit"]{
		font-size: 16px;
		margin-top: 10px;
	}
	
	.contact-form .contact-form-fields .form-field .wpcf7-not-valid-tip{
		font-size: 14px;
	}

	.contact-form form.invalid .wpcf7-response-output,
	.contact-form form.sent .wpcf7-response-output{
		font-size: 14px;
		margin: 30px 0 0;
	}
	
}


/*
 * Quote block CSS start
 * */
.quote-block .quote-block-inner{
	padding: 280px 0 200px;
}

.quote-block .section-overlap-img{
	position: absolute;
    width: 460px;
    top: 60px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    z-index: 1;
}

.quote-block .section-bg-img{
	position: absolute;
    top: 160px;
    right: -140px;
    mix-blend-mode: multiply;
    z-index: -1;
}

.quote-block .section-bg-img img{
	opacity: 0.5;
}

.quote-section-title{
	margin-bottom: 40px;
}

.quotes-items{
	max-width: 1340px;
	margin: 0 auto;
}

.quotes-items .quote-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.quotes-items .quote-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.quotes-items .quote-item .quote-img{
	width: calc(32% - 15px);
}

.quotes-items .quote-item .quote-content{
	width: calc(45% - 15px);
}

.quotes-items .quote-item .quote-img figure{
	text-align: left;
}

.quotes-items .quote-item .quote-content .section-title p{
	font-size: 36px;
	line-height: 1.2em;
	margin-top: 0;
	color: var(--primary-color);
}

.quotes-items .quote-item .quote-content .section-body span{
	display: inline-block;
	font-size: 20px;
	line-height: 1.4em;
	position: relative;
}

.quotes-items .quote-item .quote-content .section-body span.designation{
	padding-left: 10px;
    margin-left: 4px;
}

.quotes-items .quote-item .quote-content .section-body span.designation:before{
	content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: calc(100% - 10px);
    transform: translateY(-50%);
    background-color: var(--text-color);
}


@media only screen and (max-width: 1600px){
	
	.quote-block .section-bg-img{
		width: 500px;
		top: 140px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.quote-block .quote-block-inner{
		padding: 140px 0 100px;
	}

	.quote-block .section-overlap-img{
		width: 240px;
        top: -10px;
        left: auto;
        right: 0;
        transform: translateX(0);
	}

	.quote-block .section-bg-img{
		width: 280px;
	}

	.quotes-items .quote-item .quote-img{
		width: calc(45% - 15px);
	}

	.quotes-items .quote-item .quote-content{
		width: calc(55% - 15px);
	}

	.quotes-items .quote-item .quote-content .section-title p{
		font-size: 26px;
	}

	.quotes-items .quote-item .quote-content .section-body span{
		font-size: 18px;
	}

}

@media only screen and (max-width: 767px){
	
	.quote-block .quote-block-inner{
		padding: 120px 0 100px;
	}
	
	.quote-block .section-overlap-img{
		width: 140px;
        top: -5px;
	}

	.quote-block .section-bg-img{
		top: 80px;
		right: -100px;
		width: 200px;
	}

	.quotes-items .quote-item{
		flex-direction: column;
		gap: 20px;
	}

	.quotes-items .quote-item:not(:last-child){
		margin-bottom: 40px;
	}

	.quotes-items .quote-item .quote-img,
	.quotes-items .quote-item .quote-content{
		width: 100%;
	}

	.quotes-items .quote-item .quote-img figure{
		text-align: center;
	}

	.quotes-items .quote-item .quote-content .section-title p{
		font-size: 24px;
	}
	
}


/*
 * Text with image CTABox block CSS start
 * */
.text-with-img-ctabox-block .text-with-img-ctabox-block-inner{
	padding: 200px 0 220px;
}

.text-with-img-ctabox-block .container{
	max-width: 1440px;
}

.text-with-img-ctabox-block .container .row > .col-lg-6:first-child{
	width: 53%;
}

.text-with-img-ctabox-block .container .row > .col-lg-6:last-child{
	width: 47%;
}

.text-with-img-ctabox-block .section-overlap-img{
	position: absolute;
    top: -20px;
    left: auto;
    right: calc(((100vw - 1400px) / 2) - 40px);
    bottom: auto;
    z-index: 1;
}

.text-with-img-ctabox-block .section-bg-img{
	position: absolute;
	top: 50%;
	left: -270px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.text-with-img-ctabox-block .section-bg-img img{
	opacity: 1;
}

.text-with-img-ctabox-block .ctabox-left-content{
	background: var(--light-pink-color);
	border-radius: 30px;
	margin-right: 20px;
	overflow: hidden;
}

.text-with-img-ctabox-block .ctabox-left-content .section-title{
	padding: 50px 60px 30px;
	margin-bottom: 0;
}

.text-with-img-ctabox-block .ctabox-left-content .section-title p,
.text-with-img-ctabox-block .ctabox-right-content .section-title p{
	max-width: 95%;
}

.text-with-img-ctabox-block .ctabox-left-content .section-title .section-btn,
.text-with-img-ctabox-block .ctabox-right-content .section-title .section-btn{
	text-align: center;
	margin-top: 45px;
}

.text-with-img-ctabox-block .ctabox-left-content .section-img figure,
.text-with-img-ctabox-block .ctabox-right-content .section-img figure{
	text-align: center;
}

.text-with-img-ctabox-block .ctabox-left-content .section-img img{
	width: 100%;
	aspect-ratio: 1/0.69;
	object-fit: cover;
	border-radius: 30px;
}

.text-with-img-ctabox-block .ctabox-right-content{
	margin-left: 20px;
}

.text-with-img-ctabox-block .ctabox-right-content .section-img img{
	width: 100%;
	aspect-ratio: 1/0.72;
	object-fit: cover;
	border-radius: 30px;
}

.text-with-img-ctabox-block .ctabox-right-content .section-title{
	padding: 60px 0 0;
	margin: 0;
}

@media only screen and (max-width: 1600px){
	
	.text-with-img-ctabox-block .section-overlap-img{
		right: calc(((100vw - 1400px) / 2) - 0px);
	}
	
	.text-with-img-ctabox-block .section-bg-img{
		width: 500px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.text-with-img-ctabox-block .text-with-img-ctabox-block-inner{
		padding: 140px 0 120px;
	}
	
	.text-with-img-ctabox-block .container .row > .col-lg-6:first-child,
	.text-with-img-ctabox-block .container .row > .col-lg-6:last-child{
		width: 100%;
	}

	.text-with-img-ctabox-block .section-overlap-img{
		width: 160px;
		top: 20px;
		right: 20px;
	}

	.text-with-img-ctabox-block .section-bg-img{
		width: 400px;
		left: -200px;
	}

	.text-with-img-ctabox-block .ctabox-left-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-title{
		padding: 30px 30px;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-title p,
	.text-with-img-ctabox-block .ctabox-right-content .section-title p{
		max-width: 100%;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-title .section-btn,
	.text-with-img-ctabox-block .ctabox-right-content .section-title .section-btn{
		margin-top: 30px;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-img img,
	.text-with-img-ctabox-block .ctabox-right-content .section-img img{
		aspect-ratio: 1/0.69;
	}

	.text-with-img-ctabox-block .ctabox-right-content{
		margin-left: 0;
	}

	.text-with-img-ctabox-block .ctabox-right-content .section-title{
		padding: 30px 0 0;
	}
	
}

@media only screen and (max-width: 767px){
	
	.text-with-img-ctabox-block .text-with-img-ctabox-block-inner{
		padding: 120px 0 100px;
	}

	.text-with-img-ctabox-block .section-overlap-img{
		width: 140px;
		top: 10px;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-title{
		padding: 30px 20px 30px;
	}

	.text-with-img-ctabox-block .ctabox-left-content .section-title .section-btn,
	.text-with-img-ctabox-block .ctabox-right-content .section-title .section-btn{
		margin-top: 20px;
	}
	
}


/*
 * Text with image CTABox inverted block CSS start
 * */
.text-with-img-ctabox-inverted-block .text-with-img-ctabox-inverted-block-inner{
	padding: 300px 0 240px;
}

.text-with-img-ctabox-inverted-block .container{
	max-width: 1440px;
}

.text-with-img-ctabox-inverted-block .container .row > .col-lg-6:first-child{
	width: 47%;
}

.text-with-img-ctabox-inverted-block .container .row > .col-lg-6:last-child{
	width: 53%;
}

.text-with-img-ctabox-inverted-block .section-overlap-img{
	position: absolute;
    top: 60px;
    left: calc(((100vw - 1400px) / 2) - 150px);
    right: auto;
    bottom: auto;
    z-index: 1;
}

.text-with-img-ctabox-inverted-block .section-bg-img{
	position: absolute;
	top: 50%;
	right: -200px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.text-with-img-ctabox-inverted-block .section-bg-img img{
	opacity: 0.5;
}

.text-with-img-ctabox-inverted-block .ctabox-right-content{
	background: var(--light-pink-color);
	border-radius: 30px;
	margin-left: 20px;
	overflow: hidden;
}

.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title{
	padding: 50px 60px 30px;
	margin-bottom: 0;
}

.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title p,
.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title p{
	max-width: 95%;
}

.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title .section-btn,
.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title .section-btn{
	text-align: center;
	margin-top: 45px;
}

.text-with-img-ctabox-inverted-block .ctabox-left-content .section-img figure,
.text-with-img-ctabox-inverted-block .ctabox-right-content .section-img figure{
	text-align: center;
}

.text-with-img-ctabox-inverted-block .ctabox-right-content .section-img img{
	width: 100%;
	aspect-ratio: 1/0.69;
	object-fit: cover;
	border-radius: 30px;
}

.text-with-img-ctabox-inverted-block .ctabox-left-content{
	margin-right: 20px;
}

.text-with-img-ctabox-inverted-block .ctabox-left-content .section-img img{
	width: 100%;
	aspect-ratio: 1/0.72;
	object-fit: cover;
	border-radius: 30px;
}

.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title{
	padding: 60px 0 0;
	margin: 0;
}

@media only screen and (max-width: 1600px){
	
	.text-with-img-ctabox-inverted-block .section-overlap-img{
		left: calc(((100vw - 1400px) / 2) - 0px);
	}
	
	.text-with-img-ctabox-inverted-block .section-bg-img{
		width: 500px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.text-with-img-ctabox-inverted-block .text-with-img-ctabox-inverted-block-inner{
		padding: 140px 0 120px;
	}
	
	.text-with-img-ctabox-inverted-block .container .row > .col-lg-6:first-child,
	.text-with-img-ctabox-inverted-block .container .row > .col-lg-6:last-child{
		width: 100%;
	}

	.text-with-img-ctabox-inverted-block .section-overlap-img{
		width: 160px;
		top: 20px;
		left: 20px;
	}

	.text-with-img-ctabox-inverted-block .section-bg-img{
		width: 400px;
		right: -200px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title{
		padding: 30px 30px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title p,
	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title p{
		max-width: 100%;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title .section-btn,
	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title .section-btn{
		margin-top: 30px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content .section-img img,
	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-img img{
		aspect-ratio: 1/0.69;
	}

	.text-with-img-ctabox-inverted-block .ctabox-right-content{
		margin-left: 0;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title{
		padding: 30px 0 0;
	}
	
}

@media only screen and (max-width: 767px){
	
	.text-with-img-ctabox-inverted-block .text-with-img-ctabox-inverted-block-inner{
		padding: 120px 0 100px;
	}

	.text-with-img-ctabox-inverted-block .section-overlap-img{
		width: 140px;
		top: 10px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title{
		padding: 30px 20px 30px;
	}

	.text-with-img-ctabox-inverted-block .ctabox-left-content .section-title .section-btn,
	.text-with-img-ctabox-inverted-block .ctabox-right-content .section-title .section-btn{
		margin-top: 20px;
	}
	
}


/*
 * Text with image left block CSS start
 * */
.text-with-img-left-block .text-with-img-left-block-inner{
	padding: 300px 0 280px;
}

.text-with-img-left-block .section-overlap-img{
	position: absolute;
    top: 0;
    left: auto;
    right: calc((100vw - 1400px) / 2);
    bottom: auto;
    z-index: 1;
}

.text-with-img-left-block .section-bg-img{
	position: absolute;
	top: auto;
	left: -200px;
	bottom: 220px;
	mix-blend-mode: multiply;
	z-index: -1;
}

.text-with-img-left-block .section-bg-img img{
	opacity: 0.5;
}

.text-with-img-section-title{
	margin-bottom: 40px;
}

.text-with-img-left-block .image-left figure{
	max-width: 560px;
	text-align: left;
}

.text-with-img-left-block .image-left img{
	width: 100%;
    aspect-ratio: 1 / 1.19;
    object-fit: cover;
    border-radius: 30px;
}

.text-with-img-left-block .content-right{
	padding-left: 60px;
}

.text-with-img-left-block .content-right .section-title{
	margin: 0;
}

.text-with-img-left-block .content-right .section-title > h3{
	font-family: var(--default-font);
    font-size: 50px;
    font-weight: 400;
	margin-bottom: 25px;
}

.text-with-img-left-block .content-right .section-body h3{
	font-family: 'Museo Sans 700';
	font-size: 22px;
	font-weight: 400;
	color: var(--text-color);
}

.text-with-img-left-block .content-right .section-body > h3:not(:first-child){
	margin-top: 30px;
}

.text-with-img-left-block .content-right .section-body p{
	margin-top: 5px;
}

.text-with-img-left-block .content-right .section-body a{
	color: inherit;
	text-decoration: underline;
}

.text-with-img-left-block .content-right .section-body ul{
	margin: 15px 0;
	padding: 0;
	list-style: none;
}

.text-with-img-left-block .content-right .section-body ul li{
	background: url(../images/check.svg) no-repeat left top 5px;
    background-size: 18px auto;
    padding-left: 22px;
	margin-bottom: 4px;
}

.text-with-img-left-block .content-right .section-body > *:first-child{
	margin-top: 0;
}

@media only screen and (max-width: 1600px){
	
	.text-with-img-left-block .section-overlap-img{
		right: 20px;
	}
	
	.text-with-img-left-block .section-bg-img{
		width: 500px;
		bottom: 180px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.text-with-img-left-block .text-with-img-left-block-inner{
		padding: 140px 0 120px;
	}

	.text-with-img-left-block .section-overlap-img{
		width: 160px;
		top: -20px;
		right: 20px;
	}

	.text-with-img-left-block .section-bg-img{
		width: 400px;
	}

	.text-with-img-section-title{
		margin-bottom: 30px;
	}
	
	.text-with-img-left-block .image-left{
		margin-bottom: 30px;
	}
	
	.text-with-img-left-block .image-left figure{
		max-width: 100%;
		text-align: center;
	}

	.text-with-img-left-block .image-left img{
		aspect-ratio: 1 / 1;
	}

	.text-with-img-left-block .content-right{
		padding-left: 0;
	}

	.text-with-img-left-block .content-right .section-title > h3{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.text-with-img-left-block .content-right .section-body h3{
		font-size: 20px;
	}

	.text-with-img-left-block .content-right .section-body > h3:not(:first-child){
		margin-top: 20px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.text-with-img-left-block .text-with-img-left-block-inner{
		padding: 120px 0 100px;
	}

	.text-with-img-left-block .section-overlap-img{
		width: 140px;
	}

	.text-with-img-left-block .content-right .section-title > h3{
		font-size: 26px;
	}
	
	.text-with-img-left-block .content-right .section-body ul li{
		background-size: 16px auto;
		padding-left: 20px;
	}
	
}

/*
 * Text with image right block CSS start
 * */
.text-with-img-right-block .text-with-img-right-block-inner{
	padding: 300px 0 280px;
}

.text-with-img-right-block .section-overlap-img{
	position: absolute;
    top: 30px;
    left: calc((100vw - 1400px) / 2);
    right: auto;
    bottom: auto;
    z-index: 1;
}

.text-with-img-right-block .section-bg-img{
	position: absolute;
	top: 220px;
	right: -200px;
	mix-blend-mode: multiply;
	z-index: -1;
}

.text-with-img-right-block .section-bg-img img{
	opacity: 0.5;
}

.text-with-img-right-block .image-right figure{
	max-width: 560px;
	margin: 0 0 0 auto;
	text-align: right;
}

.text-with-img-right-block .image-right img{
	width: 100%;
    object-fit: contain;
    border-radius: 30px;
}

.text-with-img-right-block .content-left{
	padding-right: 60px;
}

.text-with-img-right-block .content-left .section-title{
	margin: 0;
}

.text-with-img-right-block .content-left .section-title > h3{
	font-family: var(--default-font);
    font-size: 50px;
    font-weight: 400;
	margin-bottom: 25px;
}

.text-with-img-right-block .content-left .section-body h3{
	font-family: 'Museo Sans 700';
	font-size: 22px;
	font-weight: 400;
	color: var(--text-color);
}

.text-with-img-right-block .content-left .section-body > h3:not(:first-child){
	margin-top: 30px;
}

.text-with-img-right-block .content-left .section-body p{
	margin-top: 5px;
}

.text-with-img-right-block .content-left .section-body a{
	color: inherit;
	text-decoration: underline;
}

.text-with-img-right-block .content-left .section-body ul{
	margin: 15px 0;
	padding: 0;
	list-style: none;
}

.text-with-img-right-block .content-left .section-body ul li{
	background: url(../images/check.svg) no-repeat left top 5px;
    background-size: 18px auto;
    padding-left: 22px;
	margin-bottom: 4px;
}

.text-with-img-right-block .content-left .section-body > *:first-child{
	margin-top: 0;
}

@media only screen and (max-width: 1600px){
	
	.text-with-img-right-block .section-overlap-img{
		left: 20px;
	}
	
	.text-with-img-right-block .section-bg-img{
		width: 500px;
		bottom: 180px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.text-with-img-right-block .text-with-img-right-block-inner{
		padding: 140px 0 120px;
	}

	.text-with-img-right-block .section-overlap-img{
		width: 160px;
		top: -20px;
		left: 20px;
	}

	.text-with-img-right-block .section-bg-img{
		width: 400px;
		top: auto;
		bottom: 180px;
	}

	.text-with-img-right-block .image-right{
		margin-bottom: 30px;
	}
	
	.text-with-img-right-block .image-right figure{
		max-width: 100%;
		margin: 0;
		text-align: center;
	}

	.text-with-img-right-block .image-right img{
		aspect-ratio: 1 / 1;
	}

	.text-with-img-right-block .content-left{
		padding-right: 0;
	}

	.text-with-img-right-block .content-left .section-title > h3{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.text-with-img-right-block .section-body h3{
		font-size: 20px;
	}

	.text-with-img-right-block .section-body > h3:not(:first-child){
		margin-top: 20px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.text-with-img-right-block .text-with-img-right-block-inner{
		padding: 120px 0 100px;
	}

	.text-with-img-right-block .section-overlap-img{
		width: 140px;
	}

	.text-with-img-right-block .content-left .section-title > h3{
		font-size: 26px;
	}
	
	.text-with-img-right-block .content-left .section-body ul li{
		background-size: 16px auto;
		padding-left: 20px;
	}
	
}


/*
 * Video with text block CSS start
 * */
.video-with-text-block .video-with-text-block-inner{
	padding: 260px 0;
}

.video-with-text-block .section-bg-img{
	position: absolute;
	top: calc(50% + 100px);
	left: -300px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.video-with-text-block .section-bg-img img{
	opacity: 0.5;
}

.video-with-text-block .video-wrapper{
	border-radius: 30px;
	overflow: hidden;
	padding-right: 30px;
}

.video-with-text-block .video-wrapper.video_right{
	padding-left: 30px;
	padding-right: 0;
}

.video-with-text-block .video-wrapper a{
	position: relative;
	display: block;
}

.video-with-text-block .video-wrapper a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 26px;
	background: var(--primary-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 80px;
    width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.video-with-text-block .video-wrapper img{
	width: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 30px;
}

.video-with-text-content{
	padding-left: 30px;
}

.video-with-text-content.video_right{
	padding-left: 0;
	padding-right: 30px;
}

.video-with-text-content .section-title p{
	max-width: 95%;
}

.video-with-text-content .section-body .section-btn{
	text-align: center;
	margin-top: 45px;
}

@media only screen and (max-width: 1600px){
		
	.video-with-text-block .section-bg-img{
		width: 500px;
		left: -250px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.video-with-text-block .video-with-text-block-inner{
		padding: 140px 0 120px;
	}

	.video-with-text-block .section-bg-img{
		width: 400px;
		top: 0;
		left: -200px;
		transform: translateY(0);
	}

	.video-with-text-block .video-wrapper{
		margin-bottom: 30px;
	}
	
	.video-with-text-block .video-wrapper,
	.video-with-text-block .video-wrapper.video_right{
		padding-left: 0;
		padding-right: 0;
	}

	.video-with-text-block .video-wrapper a::after{
		font-size: 22px;
		height: 60px;
		width: 60px;
	}

	.video-with-text-block .video-wrapper img{
		aspect-ratio: 1 / 0.72;
	}

	.video-with-text-content,
	.video-with-text-content.video_right{
		padding-left: 0;
		padding-right: 0;
	}

	.video-with-text-content .section-title p{
		max-width: 100%;
	}

	.video-with-text-content .section-body .section-btn{
		margin-top: 30px;
	}
		
}

@media only screen and (max-width: 767px){
	
	.video-with-text-block .video-with-text-block-inner{
		padding: 120px 0 100px;
	}

	.video-with-text-content .section-body .section-btn{
		margin-top: 20px;
	}
	
}



/*
 * Two column text block CSS start
 * */
.two-column-text-block .two-column-text-block-inner{
	padding: 280px 0;
}

.two-column-text-block .section-overlap-img{
	position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.two-column-text-block .section-bg-img{
	position: absolute;
	top: calc(50% + 100px);
	left: -200px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.two-column-text-block .section-bg-img img{
	opacity: 0.5;
}

.two-column-text-block .container{
	max-width: 1460px;
}

.two-column-text-block .column{
	background: var(--light-skyblue-color);
    height: 100%;
	border-radius: 30px;
	padding: 60px;
}

.two-column-text-block .left-column.column{
	margin-right: 45px;
}

.two-column-text-block .right-column.column{
	margin-left: 45px;
}

.two-column-text-block .column .section-title{
	margin-bottom: 0px;
}

.two-column-text-block .column .section-title > h2{
	text-align: center;
	margin-bottom: 30px;
}

.two-column-text-block .column .section-body h3{
	font-family: 'Museo Sans 700';
	font-size: 22px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 5px;
}

.two-column-text-block .column .section-body p{
	margin-top: 0;
	margin-bottom: 25px;
}

.two-column-text-block .column .section-body a{
	color: inherit;
	text-decoration: underline;
}

.two-column-text-block .column .section-body ul{
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

.two-column-text-block .column .section-body ul li{
	background: url(../images/check.svg) no-repeat left top 5px;
    background-size: 18px auto;
    padding-left: 22px;
	margin-bottom: 4px;
}

.two-column-text-block .column .section-body > *:first-child{
	margin-top: 0;
}

.two-column-text-block .column .section-body > *:last-child{
	margin-bottom: 0;
}

.two-column-text-block .column .section-btn{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
    gap: 20px;
	margin-top: 45px;
}

@media only screen and (max-width: 1600px){
	
	.two-column-text-block .section-overlap-img{
		width: 220px;
    	top: 120px;
	}
	
	.two-column-text-block .section-bg-img{
		width: 500px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.two-column-text-block .two-column-text-block-inner{
		padding: 140px 0 120px;
	}

	.two-column-text-block .section-overlap-img{
		width: 120px;
		top: 0;
		left: auto;
		right: 20px;
		transform: translateX(0);
	}

	.two-column-text-block .section-bg-img{
		top: 50%;
		width: 400px;
	}

	.two-column-text-block .column{
		height: auto;
		padding: 40px;
	}

	.two-column-text-block .left-column.column{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.two-column-text-block .right-column.column{
		margin-left: 0;
	}

	.two-column-text-block .column .section-title{
		margin-bottom: 0px;
	}

	.two-column-text-block .column .section-title > h2{
		margin-bottom: 25px;
	}

	.two-column-text-block .column .section-body h3{
		font-size: 20px;
	}

	.two-column-text-block .column .section-body p{
		margin-bottom: 20px;
	}

	.two-column-text-block .column .section-btn{
		margin-top: 30px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.two-column-text-block .two-column-text-block-inner{
		padding: 120px 0 100px;
	}

	.two-column-text-block .section-overlap-img{
		width: 100px;
	}

	.two-column-text-block .column{
		padding: 30px 20px;
	}

	.two-column-text-block .column .section-body ul li{
		background-size: 16px auto;
		padding-left: 20px;
	}
	
	.two-column-text-block .column .section-btn{
		margin-top: 20px;
	}
	
}


/*
 * Text with wider image block CSS start
 * */
.text-with-wider-img-block .text-with-wider-img-block-inner{
	padding: 280px 0;
}

.text-with-wider-img-block .section-overlap-img{
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.text-with-wider-img-block .section-bg-img{
	position: absolute;
	top: calc(50% - 50px);
	right: -200px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.text-with-wider-img-block .section-bg-img img{
	opacity: 0.5;
}

.text-with-wider-img-section-title{
	margin-bottom: 60px;
}

.text-with-wider-img-content .section-title{
	margin-bottom: 0;
}

.text-with-wider-img-content .section-title p:first-child{
	margin-top: 0;
}

.text-with-wider-img-content .section-title a{
	color: inherit;
	text-decoration: underline;
}

.text-with-wider-img-content .section-title ul{
	margin: 15px 0;
	padding: 0;
	list-style: none;
}

.text-with-wider-img-content .section-title ul li{
	background: url(../images/check.svg) no-repeat left top 5px;
    background-size: 18px auto;
    padding-left: 22px;
	margin-bottom: 4px;
}

.text-with-wider-img-content .section-title > *:first-child{
	margin-top: 0;
}

.text-with-wider-img-content .section-body .section-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 22px;
	margin-top: 60px;
}

.text-with-wider-img figure{
	text-align: right;
	padding-left: 40px;
}

.text-with-wider-img.img_left figure{
	text-align: left;
	padding-left: 0;
	padding-right: 40px;
}

.text-with-wider-img img{
	width: 100%;
    aspect-ratio: 1 / 0.76;
    object-fit: cover;
    border-radius: 30px;
}


@media only screen and (max-width: 1600px){
		
	.text-with-wider-img-block .section-bg-img{
		width: 500px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.text-with-wider-img-block .text-with-wider-img-block-inner{
		padding: 160px 0 120px;
	}

	.text-with-wider-img-block .section-overlap-img{
		width: 160px;
	}

	.text-with-wider-img-block .section-bg-img{
		width: 400px;
		top: 50%;
	}

	.text-with-wider-img-section-title{
		margin-bottom: 30px;
	}

	.text-with-wider-img-content{
		margin-bottom: 30px;
	}
	
	.text-with-wider-img-content .section-body .section-btn{
		gap: 30px 20px;
		margin-top: 40px;
	}

	.text-with-wider-img figure{
		text-align: center;
		padding-left: 0;
	}

	.text-with-wider-img.img_left figure{
		text-align: center;
		padding-right: 0;
	}

	.text-with-wider-img img{
		aspect-ratio: 1 / 0.72;
	}
	
}

@media only screen and (max-width: 767px){
	
	.text-with-wider-img-block .text-with-wider-img-block-inner{
		padding: 140px 0 100px;
	}

	.text-with-wider-img-block .section-overlap-img{
		width: 140px;
	}

	.text-with-wider-img-content .section-body .section-btn{
		gap: 15px;
		margin-top: 30px;
	}

	.text-with-wider-img-content .section-title ul li{
		background-size: 16px auto;
        padding-left: 20px;
	}
	
}


/*
 * Framed text with image block CSS start
 * */
.framed-text-with-img-block .framed-text-with-img-block-inner{
	padding: 280px 0;	
}

.framed-text-with-img-block .section-bg-img{
	position: absolute;
	top: calc(50% + 40px);
	left: -200px;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
	z-index: -1;
}

.framed-text-with-img-block .section-bg-img img{
	opacity: 0.5;
}

.framed-content-box{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-radius: 30px;
	overflow: hidden;
}

.framed-content-box.column-reverse{
	flex-direction: row-reverse;
}

.framed-content-box .framed-image{
	width: 47%;
}

.framed-content-box .framed-content{
	width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: var(--light-pink-color);
}

.framed-content-box .framed-image figure{
	text-align: center;
	padding: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.framed-content-box .framed-image img{
	position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.framed-content-box .framed-content .section-title{
	margin: 0;
}

.framed-content-box .framed-content .section-title h2{
	font-family: var(--default-font);
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 25px;
}

.framed-content-box .framed-content .section-body p:first-child{
	margin-top: 0;
}

.framed-content-box .framed-content .section-body a{
	color: inherit;
	text-decoration: underline;
}

.framed-content-box .framed-content .section-body ul{
	margin: 15px 0;
	padding: 0;
	list-style: none;
}

.framed-content-box .framed-content .section-body ul li{
	background: url(../images/check.svg) no-repeat left top 5px;
    background-size: 18px auto;
    padding-left: 22px;
	margin-bottom: 4px;
}

.framed-content-box .framed-content .section-body > *:first-child{
	margin-top: 0;
}

.framed-content-box .framed-content .section-btn{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 45px;
}


@media only screen and (max-width: 1600px){
		
	.framed-text-with-img-block .section-bg-img{
		width: 500px;
	}
	
}

@media only screen and (max-width: 991px){
	
	.framed-text-with-img-block .framed-text-with-img-block-inner{
		padding: 120px 0;	
	}
	
	.framed-text-with-img-block .section-bg-img{
		width: 400px;
		top: 0;
		left: auto;
		right: -200px;
		transform: translateY(0);
	}
	
	.framed-content-box{
		flex-direction: column;
	}

	.framed-content-box.column-reverse{
		flex-direction: column-reverse;
	}

	.framed-content-box .framed-image{
		width: 100%;
	}

	.framed-content-box .framed-content{
		width: 100%;
		padding: 40px;
	}

	.framed-content-box .framed-image figure{
		height: auto;
	}

	.framed-content-box .framed-image img{
		position: relative;
		top: initial;
		left: initial;
		min-width: initial;
		min-height: initial;
		width: 100%;
		aspect-ratio: 1 / 0.72;
		object-fit: cover;
	}

	.framed-content-box .framed-content .section-title h2{
		font-size: 28px;
		margin-bottom: 20px;
	}

	.framed-content-box .framed-content .section-btn{
		margin-top: 30px;
	}
	
}

@media only screen and (max-width: 767px){
	
	.framed-text-with-img-block .framed-text-with-img-block-inner{
		padding: 100px 0;	
	}
	
	.framed-content-box .framed-content{
		padding: 30px 20px;
	}

	.framed-content-box .framed-content .section-title h2{
		font-size: 26px;
	}

	.framed-content-box .framed-content .section-btn{
		margin-top: 20px;
	}
	
}


/*
 * Articles block CSS start
 * */
.article-block .article-block-inner{
	padding: 260px 0;	
}

.articles-title{
	margin-bottom: 40px;
}

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

	.article-block .article-block-inner{
		padding: 120px 0;	
	}

	.articles-title{
		margin-bottom: 30px;
	}
	
}

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

	.article-block .article-block-inner{
		padding: 100px 0 70px;	
	}
	
}


/*
 * Teams block CSS start
 * */
.teams-block .teams-block-inner{
	padding: 260px 0;	
}

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

	.teams-block .teams-block-inner{
		padding: 120px 0;	
	}
	
}

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

	.teams-block .teams-block-inner{
		padding: 100px 0 70px;	
	}
	
}


/*
 * FAQ block CSS start
 * */
.faq-block .faq-block-inner{
	padding: 260px 0;	
}

.faq-section-title{
	max-width: 770px;
	margin: 0 auto 40px;
}

.faq-section-title h2{
	text-align: center;
}

.faq-section-title p{
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.faq-accordion{
	max-width: 990px;
	margin: 0 auto;
}

.faq-accordion .accordion-item{
	border-radius: 50px;
    margin-bottom: 20px;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	position: relative;
	color: var(--text-color);
	font-family: 'Museo Sans 700';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
	align-items: start;
	background-color: var(--dark-yellow-color);
	border-radius: 0 !important;
    padding: 25px 80px 25px 45px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
	background-color: var(--light-yellow-color);
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
	top: 7px;
    left: auto;
    right: 15px;
    font-size: 30px;
	background-color: var(--white-color);
    color: var(--primary-color);
	box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
	content: '\f077';
}

.faq-accordion .accordion-item .accordion-collapse{
	background-color: var(--light-yellow-color);
}

.faq-accordion .accordion-item .accordion-body{
	max-width: 770px;
	padding-left: 45px;
	padding-bottom: 40px;
}

.faq-accordion .accordion-item .accordion-body > *:first-child{
	margin-top: 0 !important;
}

.faq-accordion .accordion-item .accordion-body p{
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body .wp-block-buttons{
	display: flex;
    flex-wrap: wrap;
    gap: 20px 25px;
	margin-top: 40px;
}

.faq-accordion .accordion-item .accordion-body .wp-block-buttons .wp-block-button a{
	position: relative;
    display: inline-block;
    font-family: var(--default-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-color);
    background: var(--white-color);
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.16);
    border-radius: 80px;
    padding: 15px 30px;
    min-width: 230px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-body .wp-block-buttons .wp-block-button a:hover{
    color: var(--white-color);
    background: var(--primary-color);
	box-shadow: none;
}

@media only screen and (max-width: 991px){
	
	.faq-block .faq-block-inner{
		padding: 120px 0;	
	}

	.faq-section-title{
		margin: 0 auto 30px;
	}

	.faq-accordion .accordion-item{
		border-radius: 30px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 20px 70px 20px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 7.5px;
		font-size: 22px;
		width: 45px;
		height: 45px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 30px;
	}
	
	.faq-accordion .accordion-item .accordion-body p{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body .wp-block-buttons{
		gap: 20px;
		margin-top: 30px;
	}

	.faq-accordion .accordion-item .accordion-body .wp-block-buttons .wp-block-button a{
		font-size: 18px;
        padding: 13px 20px;
        min-width: 200px;
	}

}

@media only screen and (max-width: 767px){
	
	.faq-block .faq-block-inner{
		padding: 100px 0;	
	}
	
	.faq-accordion .accordion-item{
		border-radius: 25px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 15px 70px 15px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after, 
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		top: 6px;
        right: 10px;
        font-size: 18px;
        width: 38px;
        height: 38px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding-bottom: 25px;
	}
	
	.faq-accordion .accordion-item .accordion-body .wp-block-buttons{
		gap: 15px;
		margin-top: 25px;
	}

	.faq-accordion .accordion-item .accordion-body .wp-block-buttons .wp-block-button a{
		font-size: 16px;
        min-width: 150px;
	}

}

