@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
}

.row>* {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

:root {
	--body-font-family: 'Jost', sans-serif;
	--heading-font-family: 'Didot';
	--e-global-color-white: #fff;
	--e-global-color-black: #000;
	--e-global-color-green: #409945;
	--e-global-color-offwhite: #F4F4F4;
	--e-global-color-light-gray: #939393;
	--e-global-color-dark-gray: #5C5C5C;
	--e-global-color-light-gray-2: #D9D9D9
}

img {
	max-width: 100%;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list_status ul li {
	list-style: disc;
	text-align: left;
}

.list_status ol li {
	list-style: decimal;
	text-align: left;
}

a,
a:hover {
	text-decoration: none;
	color: blue;

}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
	max-width: calc(100% - 18rem);
}

body {
	font-size: 1.4rem;
	line-height: normal;
	font-weight: 400;
	color: var(--e-global-color-black);
	font-family: var(--body-font-family);
}

.section {
	position: relative;
	padding: 0;
	clear: both;
	width: 100%;
}

h1,
h2,
h3 {
	font-family: var(--heading-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}



.hrq_full_page {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}


header {
	/* padding: .5rem 3.5rem;
	position: relative;
	z-index: 9;
	background: var(--e-global-color-offwhite);
	border-bottom: solid .1rem var(--e-global-color-light-gray-2); */
	padding: 1rem 3.5rem;
    background: var(--e-global-color-offwhite);
    /* border-bottom: solid 0.1rem var(--e-global-color-light-gray-2); */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
}

.hamburger_icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hamburger_icon button {
	border: none;
	outline: none;
	background: none;
	width: 2.2rem;
	display: flex;
	flex-direction: column;
	padding: 1rem 0;
}

.hamburger_icon button span {
	width: auto;
	height: .25rem;
	border-radius: 1rem;
	background: var(--e-global-color-black);
	display: inline-block;
	margin: .2rem 0;
	transition: all ease-in .1s;
}

.hamburger_icon button span:nth-child(1) {
	width: 70%;
}

.hamburger_icon button span:nth-child(2) {
	width: 100%;
}

.hamburger_icon button span:nth-child(3) {
	width: 50%;
}

/*.hamburger_active button span {
	width: 100% !important;
}

.hamburger_active button span:nth-child(2) {
	display: none;
}

.hamburger_active button span:nth-child(1) {
	transform: rotate(45deg);
	margin-top: .4rem;
	margin-left: 0;
}

.hamburger_active button span:nth-child(3) {
	transform: rotate(-45deg);
	margin-top: -.4rem;
}*/

.logo {
	text-align: center;
}

.logo img {
	width: 15rem;
}

.header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header_right_tag {
	display: flex;
	align-items: center;
	padding: 0 2rem;

}

.header_right_tag a {
	color: var(--e-global-color-black);

}

.schedule_demo {}






footer {
	/* position: relative; */
	z-index: 10;
	width: 100%;
	height: auto;
	padding: .5rem 3.5rem;
	background: var(--e-global-color-offwhite);
	/* border-top: solid .1rem var(--e-global-color-light-gray-2); */
	position: fixed;
    bottom: 0;
    left: 0;
}

.footer_left {}



.slider {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.items {
	position: relative;
	display: flex;
	flex-direction: column;
	/* overflow: hidden; */
	width: 100%;
	padding-bottom: 4rem;
}

.item {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	display: flex;
	flex-wrap: wrap;
	/* min-width: 40%; */
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.item.current {
	opacity: 1;
}

.footer_review {
	width: auto;
	display: flex;
	align-items: center;
	padding: 0 1rem 0 2.5rem;
	position: relative;
}

.footer_review:before {
	width: 2.2rem;
	height: 2rem;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url("/quote.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.footer_review:after {
	width: 2.2rem;
	height: 2rem;
	content: "";
	position: absolute;
	right: -2rem;
	bottom: .7rem;
	transform: rotate(180deg);
	background: url("/quote.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.footer_review_image {
	width: 3.7rem;
	height: 3.7rem;
	border-radius: 50%;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
	border: solid .3rem var(--e-global-color-white);
}

.footer_review_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.footer_review_content {
    /* width: calc(100% - 3.7rem); */
	width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.footer_review_content_top {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer_review_name {
	width: auto;
	margin-right: 1rem
}

.footer_review_name h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 150%;
	color: var(--e-global-color-black);
}

.footer_review_rating {}

.rating_bar {
    display: flex;
    align-items: center;
}

.rating_bar i {
	color: #FFC107;
	font-size: 1.1rem;
}

.rating_bar span {
	font-style: normal;
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 170%;
	margin-left: 1rem;
}


.footer_review_content_bottom {
	width: 100%;
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 100%;
	color: var(--e-global-color-light-gray);
}

.footer_right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-end;
}

.footer_right ul {
	display: flex;
	flex-wrap: wrap;
}

.footer_right ul li {
	font-style: normal;
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1.4rem;
	padding: 0 1.5rem;
	border-right: solid .1rem var(--e-global-color-dark-gray);
}

.footer_right ul li:last-child {
	border: none;
	padding-right: 0;
}

.footer_right ul li a {
	color: var(--e-global-color-dark-gray);
	display: inline-block;
}

.copyright {
	width: 100%;
	padding: 0;
	text-align: right;
	color: var(--e-global-color-dark-gray);
	font-size: 1.3rem;
}



/*--- Header & Footer Css End ---*/


.middle_section {
	width: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	height: calc(100vh - 4.9rem);
	background: var(--e-global-color-offwhite);
	padding-top: 5.9rem;
}

.middle_section:before {
    width: 100%;
    height: 100%;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
}

.middle_section .container-fluid {
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	padding: 0;
}

.middle_section .container-fluid > .row {
	width: 100%;
	margin: 0;
	min-height: 100%;
}

.full_main_section.middle_section .container-fluid .home_page_video_section {
	padding: 0;
}

.middle_main_section {
	width: 100%;
	height: 100%;
	/*overflow-x: hidden;
	overflow-y: auto;*/
	overflow: hidden;
	padding: 4rem 0;
	margin: auto;
	height: calc(100vh - 11rem);
}

.iframe_wrap .middle_main_section {
	height: 100vh !important;
}

.iframe_wrap .middle_section .middle_main_section {
	height: calc(100vh - 6rem);
}

.middle_main_section > .row {
	height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 6rem;
}

.middle_section::-webkit-scrollbar {
	width: .2rem;
}

.middle_section::-webkit-scrollbar-thumb {
	background: var(--e-global-color-light-gray);
}




.sidenav {
	width: 100%;
	height: calc(100vh - 9.8rem);
	position: fixed;
	left: -100%;
	top: 4.9rem;
	background: linear-gradient(90deg, #F4F4F4 12.46%, rgba(244, 244, 244, 0) 100%);
	z-index: 5;
	padding: 0 3.5rem;
	overflow-y: auto;
	transition: left .4s cubic-bezier(.4, .1, .68, .53);
}

.sidenav::-webkit-scrollbar {
	width: .2rem;
}

.sidenav.show {
	left: 0;
}

.sidenav>ul {
	display: inline-block;
}

.sidenav>ul>li {
	padding: 0.5rem 0;
	font-weight: 300;
}

.sidenav>ul>li>a {
	font-size: 2rem;
	font-weight: 300;
	color: var(--e-global-color-dark-gray);
}

.sidenav>ul>li>ul {
	display: none;
	transition: all ease-in .3s;
}

.sidenav>ul>li:hover>a {
	text-decoration: underline;
	color: var(--e-global-color-black);
}

.sidenav>ul>li:hover ul.mega_menu {
	display: block;
}

.sidenav>ul>li>ul>li {
	padding: .6rem 0;
}

.sidenav>ul>li>ul>li>a {
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--e-global-color-dark-gray);
}

.sidenav>ul>li>ul>li>a:hover {
	text-decoration: underline;
	color: var(--e-global-color-black);
}

.mega_menu_section,
.custom_hover_menu_section {
	width: calc(100vw - 25rem);
	height: calc(100vh - 9.8rem);
	/* padding: 1rem; */
	position: fixed;
	top: 4.9rem;
	left: 25rem;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	background: rgba(226, 226, 226, 0.9);
}

.mega_menu_section iframe,
.custom_hover_menu_section iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.iframe_wrap .services_under_content,
.iframe_wrap .services_under_image {
	height: calc(100vh - 8rem);
}


.mega_menu_image_inside {
	width: 100%;
	height: 100%;
	background: #f4f4f4;
}

.mega_menu_section img,
.custom_hover_menu_section img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top;
}

.sidenav>ul>li:hover ul.mega_menu li:hover .mega_menu_section,
.sidenav>ul>li:hover .custom_hover_menu_section {
	opacity: 1;
	visibility: visible;
}




.home_page_video_section {
	text-align: center;
/*	background: var(--e-global-color-black);*/
}

.home_page_video_section video {
	height: 100%;
	margin: auto;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}


.heading {
	width: 100%;
	margin-bottom: 1.5rem;
	text-align: center;
}

.heading span {
	font-style: normal;
	font-weight: 400;
	font-size: 2.6rem;
	line-height: 3.8rem;
	color: var(--e-global-color-green);
}

.heading h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 5rem;
}


.about_page_middle_section {}

.about_body_content {
	font-size: 2rem;
	line-height: 3.6rem;
	text-align: center;
}

.about_body_content p {
	margin-bottom: 2rem;
}



.newsroom_page_middle_section {
	width: 100%;
}

.newsroom_box {}

.newsroom_box_image {
	width: 100%;
	height: 11rem;
}

.newsroom_box_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.newsroom_box_content {
	width: 100%;
	padding: 1rem 0;
	font-style: normal;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 178.9%;
	color: var(--e-global-color-dark-gray);
	text-align: justify;
}

.newsroom_box_content_top {
	padding: 1.5rem 1rem 1.5rem 0;
	margin-top: -8rem;
	background: var(--e-global-color-white);
}

.newsroom_box_content span {
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 158.9%;
	text-transform: uppercase;
	color: var(--e-global-color-dark-gray);
}

.newsroom_box_content h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 158.9%;
	color: var(--e-global-color-black);
}

.newsroom_box_content .read_more_news {
	text-transform: capitalize;
	font-style: normal;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 178.9%;
	margin-left: .6rem;
	color: var(--e-global-color-green);
}

.newsroom_box_content .newsroom_box_content_top h4 {
	font-size: 3rem;
}

.watch_video {
	width: 100%;
}

.watch_video a {
	display: flex;
	align-items: center;
	color: var(--e-global-color-green);
}

.watch_video a span {
	text-transform: none;
	font-style: normal;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 178.9%;
	margin-left: .6rem;
	color: var(--e-global-color-green);
}

.newsroom_left .newsroom_box:first-child .newsroom_box_image {
	height: 24rem;
}

.newsroom_left .newsroom_box:first-child .newsroom_box_content {
	font-size: 1.4rem;
}



.newsroom_right .newsroom_box {
	display: flex;
	margin-bottom: 2rem;
}

.newsroom_right .newsroom_box:last-child {
	margin-bottom: 0;
}

.newsroom_right .newsroom_box .newsroom_box_image a {
	width: 100%;
	height: 100%;
}

.newsroom_right .newsroom_box .newsroom_box_image {
	width: 25rem;
	height: 13rem;
}

.newsroom_right .newsroom_box .newsroom_box_content {
	width: calc(100% - 25rem);
	padding: 0 0 0 1.5rem;
}

.newsroom_right .newsroom_box .newsroom_box_content {
	font-size: 1.4rem;
}

.newsroom_right .newsroom_box .newsroom_box_content h4 {
	font-size: 2rem;
}

.newsroom_right .newsroom_box .newsroom_box_content .read_more_news {
	display: block;
	font-size: 1.4rem;
	padding: 0;
	margin: 0;
	line-height: normal;
}





/*-- FAQ page --*/




/* .faq_page_middle_section {
	padding: 3rem 5rem;
} */

.faq_accordian_box {
	background: var(--e-global-color-white);
	box-shadow: 0 .7rem 3.4rem rgba(8, 50, 75, 0.1);
	border-radius: 2rem;
	/* padding: 3rem 3.5rem; */
	padding: 2rem 2.5rem;
}

.faq_accordian_box .card {
	border: none;
	border-bottom: solid .1rem #E5E1E1;
}

.faq_accordian_box .card:last-child {
	border: none;
}

.faq_accordian_box .card .card-header {
	padding: 0;
	position: relative;
	background: transparent;
	border-bottom: none;
}

.faq_accordian_box .card .card-header button {
	width: 100%;
	padding: 1rem 4.5rem 0;
	text-align: left;
	font-style: normal;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 4.5rem;
	text-decoration: none;
	position: relative;
	color: var(--e-global-color-black);
}

.faq_accordian_box .card .card-header button:before {
	width: 3rem;
	height: 3rem;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	background: url("/question-green.svg") no-repeat;
	background-size: contain;
}

.faq_accordian_box .card .card-header button:after {
	width: 3rem;
	height: 3rem;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	background: url("/top-arrow-light-green.png") no-repeat;
	background-size: contain;
}

.faq_accordian_box .card .card-header button.collapsed:after {
	width: 3rem;
	height: 3rem;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	background: url("/right-arrow-green.svg") no-repeat;
	background-size: contain;
}

.faq_accordian_box .card .card-body {
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 160%;
	color: var(--e-global-color-black);
	padding: 0 1.25rem 1.25rem;
}




/*-- TESTIMONIAL page --*/

.testimonial_inner_content {
	height: calc(100vh - 43vh);
	padding-right: 1rem;
	overflow-y: auto;
	text-align: justify;
}

.testimonial_inner_content::-webkit-scrollbar {
	width: 2px;
}

.testimonial_inner_content::-webkit-scrollbar-thumb {
	background: #ccc;
}

.testimonial_middle_section {
	padding: 4rem 6rem;
}

.testimonial_left {
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 170%;
	color: var(--e-global-color-black);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	max-width: 37%;
    flex: 0 0 37%;
}

.testimonial_left h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 4rem;
	margin-bottom: 2rem;
	color: var(--e-global-color-black);
}

.testimonial_right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	padding-right: 0;
	max-width: 63%;
    flex: 0 0 63%;
}

.testimonial_right_inside {
	position: relative;
	width: 100%;
}

.testimonial_user_image {
	width: 32rem;
	height: 44rem;
	border-radius: 2rem;
	overflow: hidden;
}

.testimonial_user_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial_user_content_box {
	background: var(--e-global-color-white);
	box-shadow: 0 .4rem 2.1rem rgba(0, 0, 0, 0.07);
	border-radius: 1rem;
	position: relative;
	padding: 3.5rem 4rem;
	width: 70%;
	height: 30rem;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
	margin: auto;
	border-left: solid 1rem var(--e-global-color-green);
	display: flex;
	align-items: center;
}

.testimonial_user_content_box:before {}

.testimonial_user_content_box_inside {
	width: 100%;
	height: 100%;
	text-align: justify;
	overflow-y: scroll;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 170%;
	color: var(--e-global-color-black);
	padding: 0 0 0 1.8rem;
	border-left: .1rem solid #C8C8C8
}

.testimonial_user_content_box_inside::-webkit-scrollbar {
	display: none;
}

.testimonial_user_content_box_inside_footer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.testimonial_user_content_box_inside_footer h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 170%;
	color: var(--e-global-color-black);
}

.testimonial_user_content_box_inside_name {}

.testimonial_user_content_box_inside_name i {
	font-size: 2rem;
	color: #FFC107;
}

.testimonial_slider_arrow {
	display: flex;
	align-items: center;
	margin-top: 2rem;
	position: absolute;
	bottom: 1rem;
	left: 35rem;
}

.testimonial_slider_arrow a {
	width: 4rem;
	height: 4rem;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	opacity: 1;
	background: var(--e-global-color-green);
}

.testimonial_slider_arrow a:not(:last-child) {
	margin-right: 2rem;
}




/*-- CONTACT page --*/



.contact_middle_section {
	padding: 4rem 6rem;
	position: relative;
}

.contact_left {
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 170%;
	padding-right: 5rem;
	color: #474747;
	height: calc(100vh - 19rem);
	overflow-y: scroll;
}

.contact_left::-webkit-scrollbar {
	display: none;
}

.contact_address_part {
	height: calc(100% - 24rem);
    overflow: auto;
}

.contact_address_part::-webkit-scrollbar {
	display: none;
}

.contact_left h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 4rem;
	margin-bottom: 2rem;
	color: var(--e-global-color-black);
}

.address_country {
	width: 100%;
	margin-top: 3.5rem;
}

.address_country h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 170%;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--e-global-color-black);
}

.address_country ul li {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1.5rem;
}

.address_country ul li .address_icon {
	width: 2.2rem;
	height: 2.2rem;
	margin-right: 1.3rem;
}

.address_country ul li .address_text {
	width: calc(100% - 3.5rem);
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 170%;
	color: #474747;
}

.contact_right {
	padding: 1rem 0;
	background: var(--e-global-color-white);
	box-shadow: 0 .4rem 2.4rem rgba(0, 0, 0, 0.25);
	border-radius: 1rem;
	margin-bottom: 5rem;
	float: right;
	margin: 0 0 0 auto;
	height: calc(100vh - 19rem);
	overflow: auto;
}

.contact_right .contact_right_box {
	padding: 0 2.5rem;
}

.contact_right::-webkit-scrollbar {
	display: none;
}

.contact_right_box > span {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
}

.contact_right_box h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 2rem;
	line-height: 3.8rem;
	text-align: center;
	color: var(--e-global-color-black);
}

.contact_right_box_form {
	width: 100%;
}

.contact_right_box_form .form-group {
	margin-bottom: 1rem;
}

.contact_right_box_form .form-group:last-child {
	margin-bottom: 0;
}

.contact_right_box_form .form-group label {
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 150%;
	color: var(--e-global-color-black);
}

.contact_right_box_form .form-group .react-datepicker-wrapper {
	width: 100%;
}

.contact_right_box_form .form-group input,
.contact_right_box_form .form-group select,
.contact_right_box_form .form-group textarea {
	width: 100%;
	height: 4rem;
	padding: .5rem 1rem;
	border: .1rem solid #D2D2D2;
	border-radius: .5rem;
	font-size: 1.4rem;
	box-sizing: border-box;
}

.contact_right_box_form .form-group input:focus,
.contact_right_box_form .form-group select:focus,
.contact_right_box_form .form-group textarea:focus,
.contact_right_box_form .form-group .form-control:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: #D2D2D2;
}

.contact_right_box_form .form-group input::placeholder {
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 170%;
	color: var(--e-global-color-light-gray);
}

.contact_right_box_form .form-group textarea {
	height: 6.8rem;
	resize: none;
}

.contact_right_box_form .form-group .send_btn {
	background: var(--e-global-color-green);
	border: .1rem solid var(--e-global-color-green);
	border-radius: .5rem;
	padding: 1rem;
	width: 100%;
	color: var(--e-global-color-white);
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 120%;
}





/*--- Services under page ---*/



.services_under_middle_section {}

.services_under_middle_section>.row {
	justify-content: space-between;
	overflow: hidden;
}


.services_under_content {
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 170%;
	color: var(--e-global-color-black);
	height: calc(100vh - 19rem);
	overflow-y: auto;
}

.services_under_content p {
	text-align: justify;
}

.services_under_content::-webkit-scrollbar {
	display: none;
}

.services_under_content h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 3rem;
	line-height: 120%;
	margin-bottom: 3rem;
	color: var(--e-global-color-black);
}

.services_under_content h2 span {
	color: var(--e-global-color-green);
}

.services_under_image {
	height: calc(100vh - 19rem);
	background: var(--e-global-color-white);
	box-shadow: 0 .4rem 2.4rem rgba(0, 0, 0, 0.1);
	border-radius: 4rem;
	padding: 0;
	overflow: hidden;
}

.services_under_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.request_demo_middle_section {}








.newsroom_details_page_middle_section {}

.newsroom_details_left .newsroom_box .newsroom_box_image {
	height: 35rem !important;
}

.newsroom_details_left .newsroom_box_content_top {
	margin-top: -12rem;
}

.newsroom_details_left .newsroom_details_left_post {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.newsroom_details_left .newsroom_details_left_post h4 {
	font-style: normal;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 170%;
	padding-right: 1.5rem;
	color: var(--e-global-color-black);
}

.newsroom_details_left .newsroom_details_left_post ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.newsroom_details_left .newsroom_details_left_post ul li {
	margin-right: .8rem;
}

.newsroom_details_left .newsroom_details_left_post ul li a {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	color: var(--e-global-color-white);
	background: var(--e-global-color-green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}



.newsroom_details_right {
	padding-left: 3rem;
}

.newsroom_details_right .contact_right_box_form hr {
	width: 100%;
	padding-bottom: 2rem;
	border-top: none;
	padding: 0;
	margin: 2rem 0 1rem;
	border-bottom: solid .1rem var(--e-global-color-black);
}

.newsroom_details_right h3 {
	width: 100%;
	margin-bottom: 1rem;
	font-style: normal;
	font-weight: 600;
	font-size: 3rem;
	line-height: 158.9%;
	color: var(--e-global-color-black);
	font-family: var(--body-font-family);
}

.newsroom_details_right .newsroom_box .newsroom_box_image {
	height: 12rem !important;
}



/*---custom date picker styling----*/
.custom-date-picker {
	display: flex;
	align-items: center;
}

/* .custom-date-picker input[type="number"] {
	width: 50px;
	height: 30px;
	font-size: 14px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
  } */

.time_ampm {
	margin-left: 1rem;
}

.custom-date-picker .separator {
	margin: 0 5px;
}

.custom-date-picker select {
	width: 60px;
	height: 30px;
	font-size: 14px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
}

.custom-date-picker input:focus,
.custom-date-picker select:focus {
	outline: none;
	border-color: #007bff;
}