/**
 * Theme Name: nexamedic
 */

.about p {
    color: #212529;
}

/* =================================== ABOUT US ===================================== */

@media only screen and (min-width: 1200px) and (max-width: 1500px) {

	.main_heading h1{
	  font-size: var(--font48) !important;
	}
}

.main_heading h1{
	font-size: var(--font60);
	margin-bottom: 25px;
	color: black !important;
	line-height: 120%;
	font-weight: 400 !important;
}

.comntitle h3{
	font-size: var(--font32);
	color: var(--green) !important;
	margin-bottom: 40px;
	font-weight: 500 !important;
}

.radius_20 {
	border-radius: var(--radius20) !important;
}

@media only screen and (min-width: 1501px){

	.team_list {
	  gap: 30px;
	}
  }

.value_list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 25px;
	list-style: none;
  	padding: 0;
  	margin: 0;
}

.value_text h4 {
	font-size: var(--font28);
	font-weight: 400 !important;
	color: var(--white) !important;
}

.value_list .list-element {
	width: 23.5%;
	background: var(--green) !important;
	padding: 30px;
	border-radius: var(--radius10);
	color: var(--white) !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.value_list .list-element p{
	color: white;
	font-size: var(--font16);
  	font-weight: 400;
  	line-height: 120%;
	margin-bottom: 0px;
}

.value_icon {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	min-height: 200px !important;
}

.value_list .list-element svg {
	transform: scale(0.8);
	-moz-transition: all 800ms ease-in-out;
	-webkit-transition: all 800ms ease-in-out;
	transition: all 800ms ease-in-out;
}

.value_list .list-element:hover .one svg, .value_list .list-element:hover .two svg {
	transform: rotate(180deg) scale(1);
	stroke: var(--green);
	stroke-dasharray: 3;
	stroke-width: 3px;
}

.value_list .list-element:hover .three svg, .value_list .list-element:hover .four svg {
	transform: rotate(360deg) scale(1);
	stroke: var(--green);
	stroke-dasharray: 3;
	stroke-width: 3px;
}

@media only screen and (max-width: 767px) {

	.value_list {
		gap: 15px !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}

	.value_list div.list-element {
	  	width: 100% !important;
	}
}

@media screen and (max-width: 991px) {

	.value_list div.list-element {
	  padding: 25px;
	  width: 48.5%;
	}

	.value_text h4 {
		font-size: var(--font20);
		margin-bottom: 5px;
	}

	.value_list .list-element {
		padding: 25px;
		width: 48.5%;
	}
}

@media screen and (max-width: 1190px) {

	.value_icon {
	  	min-height: auto !important;
	}

	.value_list div.list-element svg {
		max-height: 100px !important;
	}
  }

/* ======================================= SEARCH PAGE ======================================= */

.card-body .comnbtn i {
	transform: rotate(-45deg);
}