/*@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');*/

@font-face {
	font-family: 'thesana';
	src: url('../fonts/The-Sans-Plain.otf');
}

@font-face {
	font-family: 'thesanabold';
	src: url('../fonts/TheSans-Bold.otf');
}

body {
	direction: rtl;
	font-family: 'thesana';
	text-align: right;
	font-size: 14px;
}

a,
button,
img {
	transition: all 300ms cubic-bezier(.4, 0, 0, 1);
	-webkit-transition: all 300ms cubic-bezier(.4, 0, 0, 1);
}

a:hover,
a:active,
a:focus,
a:visited {
	text-decoration: none !important;
}

a {
	color: black;
}

a:hover {
	color: #fe0000;
}

.list-inline,
.nav {
	padding-right: 0;
}

.list-inline-item:not(:last-child) {
	margin-left: .5rem;
	margin-right: 0;
}

.head-div {
	margin: 0 0 30px;
	position: relative;
	padding: 0 0 3px;
}

.head-div h2 {
	color: #252525;
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 700;
	font-family: thesanabold;
}

.head-div:before {
	content: '';
	position: absolute;
	height: 2px;
	width: 40px;
	background-color: #e26202;
	right: 0;
	margin: auto;
	bottom: 0;
}

.head-div p {
	margin: 0;
	font-size: 14px;
}

.head-div h2 span {
	color: #006f45;
}

button:focus,
input:focus,
textarea:focus {
	outline: 0;
}

.btn-site {
	display: inline-block;
	background-color: #e26202;
	color: white;
	padding: 11px 70px;
	border: 0;
}

.btn-site:hover {
	background-color: #fe0000;
	color: white;
}

.btn-site:focus {
	outline: 0;
}

/*Header*/

header .top {
	padding: .4rem 0;
}

header .top i {
	color: #ffffff;
	background: #fe0000;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	border-radius: 5px;
	font-size: 22px;
}

header .top a {
	color: #020202;
}

header .top a:hover {
	color: #0c0c0c;
}

header .bottom {
	border-top: 1px solid #e0e0e0;
}

header .main-menu > li > a:hover,
header .main-menu > li.current-menu-item a {
	border-color: #fe0000;
}

header .bottom .list-inline li a {
	color: #444444;
	display: flex;
	border: 1px solid transparent;
	height: 34px;
	width: 34px;
	align-items: center;
	justify-content: center;
}

header .bottom .list-inline li a:hover {
	border-color: #444
}

header ul {
	margin: 0;
}

header .logo {
	background-color: white;
	display: block;
}

header .main-menu {
	display: flex;
	padding: 0;
	list-style-type: none;
}

header .main-menu > li > a {
	display: block;
	padding: 15px 20px;
	font-size: 15px;
	color: #151515;
	font-weight: 500;
	border-bottom: 2px solid transparent;
}

header ul.main-menu li.menu-item-has-children {
	position: relative;
}


header ul.main-menu li.menu-item-has-children > ul.sub-menu {
	list-style: none;
	position: absolute;
	padding-right: 0;
	margin: 0;
	top: 100%;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	background-color: white;
	min-width: 250px;
	box-shadow: 0 0 7px -3px rgb(0 0 0 / 25%);
	border: 1px solid rgb(0 0 0 / 9%);
	border-radius: 5px;
	z-index: 2;
}

header ul.main-menu li.menu-item-has-children:hover > ul.sub-menu {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.sub-menu li {
	float: none;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
	opacity: 0;
}

header ul.main-menu li.menu-item-has-children:hover > .sub-menu > .menu-item {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.sub-menu li:nth-child(1) {
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

.sub-menu li:nth-child(2) {
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}

.sub-menu li:nth-child(3) {
	-webkit-transition-delay: 200ms;
	transition-delay: 200ms;
}

.sub-menu li:nth-child(4) {
	-webkit-transition-delay: 250ms;
	transition-delay: 250ms;
}

.sub-menu li:nth-child(5) {
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}

.sub-menu li:nth-child(6) {
	-webkit-transition-delay: 350ms;
	transition-delay: 350ms;
}

.sub-menu li:nth-child(7) {
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}

.sub-menu li:nth-child(8) {
	-webkit-transition-delay: 450ms;
	transition-delay: 450ms;
}

.sub-menu li:nth-child(9) {
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
}

.sub-menu li:nth-child(10) {
	-webkit-transition-delay: 600ms;
	transition-delay: 600ms;
}

.sub-menu li:nth-child(11) {
	-webkit-transition-delay: 650ms;
	transition-delay: 650ms;
}

.sub-menu li:nth-child(12) {
	-webkit-transition-delay: 700ms;
	transition-delay: 700ms;
}

.sub-menu li:nth-child(13) {
	-webkit-transition-delay: 750ms;
	transition-delay: 750ms;
}

.sub-menu li:nth-child(14) {
	-webkit-transition-delay: 800ms;
	transition-delay: 800ms;
}

.sub-menu li a {
	display: block;
	padding: 8px 15px;
	font-size: 15px;
	font-weight: 400;
}

header ul.main-menu li.menu-item-has-children:after {
	content: "\f107";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	left: 0;
	top: 9px;
	font-size: 18px;
	font-weight: 300;
	color: white;
}

header ul.main-menu li.menu-item-has-children:hover:after {
	content: "\f106";
}

#home-slider .item {
	position: relative;
	overflow: hidden;
	direction: rtl;
	height: 560px;
	background-size: cover;
	background-repeat: no-repeat;
}

#home-slider .item:before {
	content: '';
	background-color: rgb(255 255 255 / 24%);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#home-slider .owl-nav > button:hover {
	color: #ffffff;
	background: #fe0000;
	border-color: #fe0000;
}

#home-slider .owl-nav > button {
	color: white;
	height: 40px;
	width: 40px;
	transition: .5s;
	font-size: 25px;
	margin: 0 2px 0;
	line-height: 40px;
	border: 1px solid;
	border-radius: 50%;
}

#home-slider .owl-nav {
	display: flex;
	direction: rtl;
	position: absolute;
	top: 50%;
	left: 70px;
	right: 70px;
	justify-content: space-between;
	transform: translateY(-50%);
}

#home-slider .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	text-align: center;
}

#home-slider .owl-dots .owl-dot span {
	display: block;
	width: 20px;
	height: 4px;
	background-color: white;
	margin: 0 3px;
	border-radius: 65px;
	transition: 350ms;
}

#home-slider .owl-item.active h2 {
	animation: 1000ms 200ms fadeInUp both;
}

#home-slider .owl-item.active p {
	animation: 1000ms 800ms fadeInUp both;
}

#home-slider .owl-item.active ul {
	animation: 1000ms 1400ms fadeInUp both;
}

#home-slider .owl-dots .owl-dot.active span,
#home-slider .owl-dots .owl-dot:hover span {
	background: #fe0000;
}

.main-slider .item .caption {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	font-size: 17px;
	color: black;
	font-weight: 500;
	max-width: 600px;
	margin: auto;
	line-height: 1.5;
}

.main-slider .item .caption h2 {
	font-size: 40px;
	font-weight: 600;
	margin: 0 0 30px;
	color: #fe0000;
}

#home-slider .owl-item p {
	margin: 0 0 30px;
}

#home-slider .owl-item ul li a {
	background-color: #fe0000;
	color: white;
	display: block;
	padding: 8px 40px;
}

#home-slider .owl-item ul li a:hover {
	background-color: #e26202;
}

.pages {
	background: #fe0000;
	color: white;
	font-size: 15px;
}

.pages .item figure {
	flex: 0 0 60px;
	max-width: 60px;
	height: 60px;
	margin-left: 10px;
	margin-bottom: 0;
}

.pages .item figure img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	filter: brightness(0)invert(1);
}

.pages .item {
	padding: 3rem 1rem;
	align-items: center;
	font-size: 14px;
}

.pages .item h2 {
	font-family: 'thesanabold';
	font-size: 16px;
	margin: 0 0 9px;
}

.pages .item .caption p {
	margin: 0;
	text-align: justify;
	line-height: 1.6;
}

.pages .row > div:nth-child(2) {
	background: #e26202;
}


.clinic .item-box {
	margin: 0 0 30px;
	align-items: center;
	padding: 1.5rem 1rem;
	transition: all 300ms cubic-bezier(.4, 0, 0, 1);
	border-radius: 5px;
}

.clinic .item-box .img-item {
	margin: 0;
	max-width: 80px;
	flex: 0 0 80px;
	margin-left: 15px;
}

.clinic .item-box .img-item img {
	width: 100%;
	height: 100%;
}


.clinic .item-box .caption a {
	display: inline-block;
	margin-bottom: .5rem;
	color: #fe0000;
	font-family: 'thesanabold';
	font-size: 17px;
}

.clinic .item-box .caption p {
	font-size: 14px;
	text-align: justify;
}

.clinic .item-box:hover {
	background: #fe0000;
	color: white;
}

.clinic .item-box:hover a {
	color: white;
}

.clinic .item-box:hover img {
	filter: brightness(0)invert(1);
}

.home .doctor {
	background-color: #fbfbfb;
}

.doctor .item-box {
	margin: 0 0 10px;
	overflow: hidden;
	border: 1px solid #d2d2d2;
}

.doctor .item-box .img-item {
	height: 230px;
	overflow: hidden;
	margin: 0;
}

.doctor .item-box .img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor .slider .item-box {
	margin: 8px;
}

.doctor .item-box .caption {
	padding: 1rem;
	font-size: 14px;
	background-color: white;
}

.doctor .item-box .caption .title > a:first-child {
	font-weight: 600;
	display: block;
	margin: 0 0 3px;
	font-family: 'thesanabold';
	font-size: 16px;
}

.doctor .item-box .caption small {
	color: #fe0000;
	display: block;
	margin: 0 0 10px;
	padding: 0 0 6px;
	font-size: 12px;
	BOX-SHADOW: 0 0 BLACK;
	margin-left: -17px;
	margin-right: -17px;
	padding-right: 17px;
}

.doctor .item-box .caption > a:last-child {
	display: block;
	max-width: 150px;
	margin: auto;
	padding: .4rem;
	text-align: center;
	border: 1px solid #d2d2d2;
}

.doctor .item-box .caption > a:last-child:hover {
	background: #e26202;
	color: #FFF;
	border-color: #e26202;
}

.doctor .item-box .title {
	border-bottom: 1px solid #d2d2d2;
	margin: 0 0 10px;
	padding: 0px 15px 10px;
	margin-left: -17px;
	margin-right: -17px;
}

.doctor .item-box .title ul {
	margin: 0;
}

.doctor .item-box .title ul li a {
	border: 1px solid #ababab;
	color: #fe3434;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.doctor .item-box .title ul li a:hover {
	color: #FFF;
	border-color: #fe3434;
	background-color: #fe3434
}

.doctor .item-box .caption p {
	margin: 0 0 10px;
}

.home .doctor {
	background-color: #fbfbfb;
}

.doctor .slider .owl-nav,
.post .slider .owl-nav,
.insurance .slider .owl-nav {
	position: absolute;
	top: -60px;
	left: 20px;
	direction: rtl;
	width: 40px;
	display: flex;
	justify-content: space-between;
}

.doctor .slider .owl-nav > button,
.post .slider .owl-nav > button,
.insurance .slider .owl-nav > button {
	color: #e26202;
	border: 1px solid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	margin: 0 3px 0;
}


.doctor .slider .owl-nav > button:hover,
.post .slider .owl-nav > button:hover,
.insurance .slider .owl-nav > button:hover {
	border-color: #e26202;
	background: #e26202;
	color: #FFF;
}

.insurance .slider .owl-nav {
	left: 0;
	right: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.insurance .slider .owl-nav > button.owl-prev {
	transform: translateX(40px);
}

.insurance .slider .owl-nav > button.owl-next {
	transform: translateX(-40px);
}

.post .item-box {
	margin: 0 0 30px;
}

.post .item-box figure.img-item {
	height: 250px;
	position: relative;
	overflow: hidden;
}

.post .item-box figure.img-item a.hover {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(254 0 0 / 43%);
	color: #FFF;
	font-size: 30px;
	transform: translateX(100%);
	opacity: 0;
	transform-origin: right;
}

.post .item-box:hover figure.img-item a.hover {
	opacity: 1;
	transform: translateX(0);
	transform-origin: left;
}

.post .item-box figure.img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post .item-box .caption .date {
	max-width: 100%;
	flex: 0 0 100%;
	background-color: #fe0000;
	color: white;
	text-align: center;
	font-size: 13px;
	height: 60px;
	padding: 0 5px;
}

.post .item-box .caption .date span:nth-child(1) {
	margin-top: 8px;
	display: block;
	font-size: 20px;
}

.post .item-box .caption .comment {
	border: 1px solid #949494;
	border-top: 0;
	text-align: center;
	font-family: thesanabold;
	padding: 7px 0;
}

.post .item-box .caption .info > a {
	font-weight: 600;
	display: block;
	margin: 0 0 5px;
	font-family: 'thesanabold';
	font-size: 17px;
}

.post .item-box .caption .info {
	font-size: 14px;
	padding-right: 10px;
}

.home .insurance {
	background-color: #fbfbfb;
}

.insurance .item figure {
	height: 140px;
	border: 1px solid #eee;
	margin: 10px;
	box-shadow: 0 0 6px -1px rgb(0 0 0 / 15%);
	overflow: hidden;
	border-radius: 10px;
	background-color: white;
	padding: .8rem;
}

.insurance .item figure img {
	height: 100%;
	width: 100%;
	object-fit: scale-down;
}

.map {
	height: 400px;
	position: relative;
}

.map iframe {
	width: 100%;
	height: 400px;
	filter: grayscale(1);
}

.container.box-info {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.container.box-info ul.list-unstyled {
	max-width: 350px;
	background: #e26202;
	color: white;
	padding: 1rem;
	font-size: 14px;
}

.container.box-info ul.list-unstyled li.d-flex {
	align-items: center;
	margin: 0 0 1rem;
}

.container.box-info ul.list-unstyled li.d-flex figure {
	max-width: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	border: 1px solid #fff;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	margin-left: 10px;
}

.container.box-info ul.list-unstyled li.d-flex p {
	margin: 0;
}

.container.box-info ul.list-unstyled li.d-flex div > p:not(:last-child) {
	margin: 0 0 7px;
}

.container.box-info ul.list-unstyled li.d-flex a {
	color: white;
}

footer {
	overflow: hidden;
	font-size: 13px;
}

footer .footer-top {
	background-color: #1f1f1f;
	line-height: 1.6;
	position: relative;
	padding: 30px 0 30px;
	color: #ffffff;
}

footer .item-footer {
	position: relative;
}

footer .footer-top h2 {
	color: white;
	font-size: 16px;
	margin: 0 0 20px;
	font-family: thesanabold;
	border-right: 3px solid #fff;
	padding-right: 5px;
}

footer .footer-top ul {
	padding: 0;
	line-height: 2.1;
	list-style-type: none;
}

footer .footer-top a {
	color: #ffffff;
}

footer .footer-top ul li:hover a {
	color: #fe0000;
}

footer .footer-top .bank li.item figure.img-item img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

footer .footer-top .textwidget img {
	filter: brightness(0) invert(1);
}

footer .footer-top .textwidget {
	text-align: center;
}

footer .form-control {
	background: 0;
	border: 0;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	font-size: 14px;
}

footer textarea.form-control {
	height: 50px;
}

footer .wpcf7 {
	text-align: right !important;
}

footer .footer-top ul.menu {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

footer .footer-top ul.menu > li {
	max-width: 50%;
	flex: 0 0 50%;
}

footer ul.list-inline.social {
	margin-top: 110px;
}

footer ul.list-inline.social > li > a {
	width: 39px;
	height: 39px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	color: #e26202;
	border-radius: 50%;
	font-size: 19px;
}

footer ul.list-inline.social > li > a:hover {
	background-color: #e26202;
	color: white;
}

footer .bottom-footer {
	font-size: 13px;
	background: #000000;
	color: #bbbbbb;
	padding: 10px 0;
}

.info-site {
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
	padding: 0 0 8px;
	font-size: 16px;
	color: #FFF;
}

.info-site i {
	color: #e26202;
	margin-left: 10px;
}

.info-site .text-center .d-flex {
	justify-content: center;
}

.info-site a {
	color: #FFF !important;
}

.page-header {
	min-height: 210px;
	background-size: cover;
	background-position: center;
	position: relative;
	margin: 0 0 30px;
}

.page-header .content {
	text-align: center;
	padding-top: 60px;
	color: white;
	position: relative;
}

.page-header .content h1 {
	margin: 0 0 15px;
	font-size: 26px;
	font-weight: 800;
}

.page-header .content ul {
	display: flex;
	justify-content: center;
	font-size: 16px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.page-header .content ul li {
	margin: 0 10px 0;
}

.page-header .content ul li a {
	color: white;
}

.page-header:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.21);
}

.page-content {
	line-height: 2;
	padding: 0 0 40px;
	font-size: 16px;
}

.page-content .content img {
	margin: auto;
	display: block;
	height: auto;
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: 0 0 8px -3px silver;
	max-width: 100%;
}

.page-template-page-contact .map iframe {
	width: 100%;
}

.page-template-page-contact .page-content h2 {
	margin: 20px 0 21px;
	font-size: 18px;
	color: #212121;
	font-weight: 900;
	border-bottom: 1px solid rgb(146 146 146 / 35%);
	position: relative;
	padding-bottom: 10px;
}

.page-template-page-contact .box-info ul.list-unstyled {
	padding: 0;
}

.page-template-page-contact .box-info ul.list-unstyled li.d-flex {
	align-items: center;
	margin: 0 0 1rem;
	font-size: 16px;
}

.page-template-page-contact .box-info ul.list-unstyled li.d-flex figure {
	margin: 0;
	width: 45px;
	height: 45px;
	background-color: #fe0000;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	margin-left: 10px;
	font-size: 20px;
}

.page-template-page-contact .box-info ul.list-unstyled li.d-flex p {
	margin: 0;
}

.page-template-page-contact .page-content {
	font-size: 14px;
}

.home .media {
	position: relative;
	overflow: hidden;
	display: block;
	background-color: #f6f6f6;
}

.archive .team .item figure img {
	height: 100%;
	object-fit: cover;
}

.archive .team .item figure {
	height: 280px;
}

.page-content img {
	max-width: 100%;
	height: auto;
}

.about-content figure {
	height: 280px;
	overflow: hidden;
	padding: .5rem;
	box-shadow: 0 0 9px 2px rgb(0 0 0 / 5%);
	border-radius: 5px;
	border: 1px solid #eee;
}

.about-content figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content .content {
	font-size: 17px;
	line-height: 1.8;
	text-align: justify;
}

.lg-none {
	display: none;
}

.head_description h1 {
	font-weight: 800;
	font-size: 24px;
	color: #fe0000;
}

.clinics .item-box:not(:last-child) {
	border-bottom: 1px solid #eee;
	padding: 0 0 20px;
	margin: 0 0 20px;
}

.clinics .item-box p {
	margin: 0;
}

.clinics .item-box .row {
	align-items: center;
}

.clinics .item-box .row p.m-0 {
	color: #fe0000;
	text-align: center;
}

.clinics {
	background-color: whitesmoke;
	padding: 1rem;
}

.btn-danger {
	background: #fe0000;
	border-color: #fe0000;
}

@media only screen and (max-width : 767px) {
	.lg-none {
		display: block
	}

	.m-none {
		display: none !important;
	}

	footer .bottom-footer {
		text-align: center;
	}

	footer .bottom-footer p {
		margin: 0 0 10px !important;
	}

	footer .footer-top .images .item figure.img-item {
		height: 120px;
	}

	header .logo-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	header .logo-container a#btn-menu > span {
		position: relative;
		display: inline-block;
		height: 2px;
		width: 25px;
		background-color: #040404;
	}

	header .logo-container a#btn-menu > span:before,
	header .logo-container a#btn-menu > span:after {
		content: '';
		position: absolute;
		height: 2px;
		width: 25px;
		background-color: #040404;
	}

	header .logo-container a#btn-menu > span:before {
		top: 7px;
	}

	header .logo-container a#btn-menu > span:after {
		bottom: 7px;
	}

	#home-slider .item {
		height: 350px;
	}

	#home-slider .owl-nav {
		display: none;
	}

	ul.main-menu {
		padding: 0;
		list-style-type: none;
		position: fixed;
		min-width: 230px;
		background-color: white;
		z-index: 9;
		overflow: auto;
		top: 0;
		bottom: 0;
		transform: translateX(230px);
		transition: 300ms ease-out;
		flex-direction: column;
	}

	ul.main-menu li a {
		padding: 15px 10px;
		display: block;
	}

	.active-menu {
		overflow: hidden;
	}

	ul.main-menu li ul.sub-menu {
		padding: 0;
		display: none;
	}

	.sub-menu li {
		opacity: 1;
		transform: initial;
	}

	.close-menu {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgb(0 0 0 / 55%);
		z-index: 3;
		opacity: 0;
		visibility: hidden;
		transition: 300ms ease-out;
	}

	.active-menu .close-menu {
		opacity: 1;
		visibility: visible;
	}

	.active-menu ul.main-menu {
		transform: translateX(0);
	}

	.main-slider .item .caption h2 {
		font-size: 18px;
		margin: 0 0 10px;
	}

	.main-slider .item .caption {
		font-size: 14px;
		max-width: 90%;
	}

	#home-slider .owl-item p {
		margin: 0 0 5px;
	}

	.pages .item {
		padding: 2rem;
	}

	.doctor .item-box .img-item {
		height: 170px;
	}

	.post .item-box figure.img-item {
		height: 160px;
	}

	footer ul.list-inline.social {
		margin: 20px 0 0;
	}

	.container.box-info ul.list-unstyled {
		max-width: 100%;
		margin: 0 0 30px;
	}

	.container.box-info {
		position: static;
		transform: translateY(0);
	}

	.map {
		height: auto;
	}
}

.form-control:focus {
	box-shadow: none;
	border-color: #fe0000;
	background: 0;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: rtl
}

span.screen-reader-text {
	display: none;
}

form.search-form {
	position: relative;
}

form.search-form input.search-field {
	width: 100%;
	border: 1px solid #ccc;
	padding: 7px 10px;
	padding-left: 80px;
}

form.search-form label {
	display: block;
}

form.search-form input.search-submit {
	position: absolute;
	left: 0;
	top: 0;
	border: 0;
	background: #fe0000;
	color: #FFF;
	padding: 8px 27px;
	transition: 300ms;
}

form.search-form input.search-submit:hover {
	background: #ef0000;
}

.modal-header .close {
	margin: -1rem auto -1rem -1rem;
}

h4.modal-title {
	font-size: 16px;
	font-family: thesanabold;
}
