/*!
Theme Name: Madina
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: madina
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Madina is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
		-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

.site{
	position: relative;
}

.site-header{
	position: absolute;
	top:0;
	right:0;
	width: 100%;
	z-index: 99;
	padding: 70px 10%;
	
}

.site-header .site-branding, .site-header .main-navigation {
    margin: auto;
    display: inline-block !important;
    vertical-align: middle;
    width: 10%;
}

.site-header .main-navigation {
    clear: none;
    float: none;
    width: auto;
    margin: auto;
        margin-left: auto;
    width: 90%;
    margin-left: -5px;
    text-align: right;
}

.main-navigation li {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-right: 35px;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    line-height: 16px;
    padding: 15px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.main-navigation a:hover, .main-navigation .current_page_item a {
    color:#123402;
}

.what-we-offer{
	padding: 140px 19%;
	padding-right: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.what-we-offer>div{
	width: 30%;
	margin-bottom: 0;
}

.what-we-offer>div:nth-child(1){
	border:1px solid #3f4836;
	padding: 80px 50px;
	color:#3d4d65;
	font-size: 20px;
}

.what-we-offer>div:nth-child(1) img{
	margin-bottom: 40px;
}

.what-we-offer>div:nth-child(1) h2{
	font-size: 50px;
	line-height: 50px;
	color:#7fbc56;
	margin-bottom: 45px;
	margin-top: 0;
	
}

.what-we-offer>div:nth-child(1) p{
	margin:0;
}

.what-we-offer>div:nth-child(2){
	position: relative;
	font-size: 20px;
	color:#fff;
	width: 33%;
	margin-top: -45px;
}

.what-we-offer>div:nth-child(2) p,
.what-we-offer>div:nth-child(3) p{
	margin:0;
}

.what-we-offer>div:nth-child(2) p:last-child{
	position: absolute;
	left: 45px;
	bottom: 100px;
}

.what-we-offer>div:nth-child(2) .widget-title{
	position: absolute;
	left: 45px;
	bottom: 130px;
	font-size: 50px;
	margin:0;
}

.what-we-offer>div:nth-child(3){
	border:1px solid #3f4836;
	color:#3d4d65;
	font-size: 20px;
	width: 26%;
}

.what-we-offer>div:nth-child(3) h2{
	font-size: 30px;
	line-height: 30px;
	color:#7fbc56;
	margin: 0;
	padding: 20px 45px;
}

.what-we-offer>div:nth-child(3) p:last-child{
	padding: 0 45px 15px;
}

.about-us{
	background-image: url('images/about_us_background.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.about-us>div:nth-child(1){
	background-color: rgba(255,255,255,0.9);
	width: 58%;
	padding: 120px 150px 100px;
	font-size: 20px;
}

.about-us>div:nth-child(1) h2{
	margin-top:0;
	margin-bottom: 0px;
	font-size: 50px;
	line-height: 50px;
}

.about-us>div:nth-child(2) {
	width: 40%;
	color: #fff;
	text-align:center;
}

.about-us>div:nth-child(2) .widget-title{
	margin: 0;
	font-size: 60px;
	line-height: 60px;
}


.local-ameneties{
	background-color:#e2dfde;
	padding: 130px 140px 110px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 20px;
	color:#717171;
}

.local-ameneties>div{
	width: 48%;
}

.local-ameneties .title{
	font-size:64px;
	color:#7fbc56;
	margin-top: 13px;
}

.local-ameneties .explonation{
	margin-bottom: 30px;
}

.local-ameneties .left .widget-title{
	font-size: 40px;
	background-position: right center;
	background-repeat: no-repeat;
	margin:0; 
	cursor: pointer;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.local-ameneties .left #black-studio-tinymce-4 .widget-title{
	color:#c57c41;
	background-image: url('images/arrow_red.png');
}

.local-ameneties .left #black-studio-tinymce-5 .widget-title{
	color:#89a364;
	background-image: url('images/arrow_green.png');
}

.local-ameneties .left #black-studio-tinymce-6 .widget-title{
	color:#849a9f;
	background-image: url('images/arrow_blue.png');
}

.local-ameneties .left #black-studio-tinymce-7 .widget-title{
	color:#c3b4b6;
	background-image: url('images/arrow_pink.png');
}

.local-ameneties .left .textwidget{
	height: 0;
	overflow: hidden;
		-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.local-ameneties .left .widget.show .textwidget{
	height: 250px;
	overflow: hidden;

}

.local-ameneties .left .widget.show .widget-title{
	/*height: 200px;
	overflow: hidden;*/
}

.local-ameneties .left .view-more{
	margin-top: 30px;
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	font-size: 22px;
	text-decoration: none;
	line-height: 22px;
	padding: 20px 40px;
	background-color: #6cbe45;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.local-ameneties .left .view-more:hover{
	background-color: #2b7806;
}

.site-footer{
	padding: 60px 22%;
	background-color: #64b42e;
	margin-top:-10px;
}

.footer-menu{
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 2px solid #fff;
}

.footer-menu ul{
	list-style: none;
	margin:0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-menu ul li a{
	color:#fff;
	font-weight: bold;
	font-size:18px; 
}

.footer-menu ul li a:hover{
	color:#dad7d6;
}

.footer-widgets{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color:#fff;
}

.footer-widgets #simpleimage-5{
	width: 15%
}

.footer-widgets #black-studio-tinymce-8{
	width: 50%
}

.footer-widgets #black-studio-tinymce-9{
	width: 20%;
	text-align:right;
}

.footer-widgets #black-studio-tinymce-9 a{
	margin-right: 10px;
	font-size: 20px;
	line-height: 27px;
	width: 31px;
	background-color: #fff;
	color:#64b42e;
	text-align:center;
	display: inline-block;
	border-radius: 5px;
}

.footer-widgets #black-studio-tinymce-9 a:hover{
	background-color: #dad7d6;
}

.page-template-about .site-header,
.page-template-contact .site-header,
.page-template-local_ameneties .site-header,
.page-template-location .site-header,
.page-template-madina_plains .site-header{
	background-color: #64b42e;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 10%;

}

.page-template-about .main-navigation a,
.page-template-contact .main-navigation a,
.page-template-local_ameneties .main-navigation a,
.page-template-location .main-navigation a,
.page-template-madina_plains .main-navigation a{
	border:1px solid transparent;
}


.page-template-about .main-navigation a:hover, .page-template-about .main-navigation .current_page_item a,
.page-template-contact .main-navigation a:hover, .page-template-contact .main-navigation .current_page_item a,
.page-template-local_ameneties .main-navigation a:hover, .page-template-local_ameneties .main-navigation .current_page_item a,
.page-template-location .main-navigation a:hover, .page-template-location .main-navigation .current_page_item a,
.page-template-madina_plains .main-navigation a:hover, .page-template-madina_plains .main-navigation .current_page_item a{
    color:#fff;
    border:1px solid #fff;
}

.about-us-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 30px;
}

.about-us-content>div{
	width: 50%;
}

.about-us-content #simpleimage-6{
	text-align: center;
}

.about-us-content #black-studio-tinymce-10{
	padding-right: 10%;
}

.about-us-content #black-studio-tinymce-10 h2{
	margin-top:0;
	margin-bottom: 0px;
	font-size: 50px;
	line-height: 50px;
}

.about-us-call{
	background-color: #e1dfde;
	padding: 90px 30%;
	margin-top: -31px;
	font-size: 30px;
}

.about-us-call a{
	font-size: 19px;
	padding: 15px 30px;
	border-radius: 5px;
	color:#fff;
	background-color: #64b42e; 
}

.about-us-call a:hover{
	background-color: #225c06;
}

.contact-us-content{
	padding: 0 20% 100px;
	margin-top: -380px;
}

.contact-us-content #black-studio-tinymce-13,
.contact-us-content #black-studio-tinymce-14{
	display: inline-block;
	vertical-align: top;
	width: 60%;
	padding-top: 40px;	

}

.contact-us-content #black-studio-tinymce-13{
	width: 40%;
}

.contact-us-content #black-studio-tinymce-13 p{
	margin-bottom: 0;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea{
	 padding: 10px 20px;
	 width: 100%;
	 border-radius: 0;
	 background-color: #e5e5e5;
	 color:#8d98aa;
}

.wpcf7-form .left,
.wpcf7-form .right{
	width: 48%;
	display: inline-block;
}

.wpcf7-form .left{
	margin-right: 4%;
}

.wpcf7-form .wpcf7-submit{
	font-size: 19px;
	padding: 15px 30px;
	border-radius: 0px;
	color: #fff;
	background-color: #64b42e;
	text-transform: uppercase;
		-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    border:0;
}

.wpcf7-form .wpcf7-submit:hover{
	background-color: #225c06;
}


/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.local-ameneties-page .local-ameneties{
	margin-top: -10px;
}

.local-ameneties-page .local-ameneties .left .view-more{
	display: none;
}

.local-ameneties-container{
	padding-left:8%;
	overflow: hidden;
	padding-top: 70px;
	padding-bottom: 140px;
}


.local-ameneties-slider .each-post{
	position: relative;
}

.local-ameneties-slider .each-post .content{
	position: absolute;
	width: 75%;
	left: 12%;
	top: 10%;
	height: 80%;
	padding: 60px;
	background-color: rgba(255,255,255,0.7);
	color:#3b4633;
}

.local-ameneties-slider .each-post .content h2{
	margin: 0;
}

.local-ameneties-slider .each-post .content p:first-of-type{
	font-size: 11px;
}

.owl-carousel .owl-nav{
	text-align: right;
	padding-top: 40px;
	padding-right: 30px;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	width: 45px;
	height: 36px;
	background-image: url('images/slider-arrow.png');
	background-repeat: no-repeat;
	background-position: center;
	text-indent: 99999px;
}

.owl-carousel .owl-nav .owl-next{
	margin-right: 0;
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);

}

.clear{
	clear:both;
}

.location-content-slider{
	padding: 150px 12%;
	padding-right: 0;
}

.location-widget{
	width: 46%;
	float: left;
}

.location-widget h2{
	margin-top:0;
	font-size: 32px;
	color:#7fbc56;
}

.location-slider-container{
	width: 49%;
	float:right;
	overflow: hidden;
	padding-left: 0;
}

.madina-plains-widget-container{
	background-image: url('images/madina_plains_widget.jpg');
	background-repeat: no-repeat;
	background-position: right;
	padding: 70px 0;
	margin-top: -7px;
}

.madina-plains-widget{
	padding: 70px;
	padding-bottom: 30px;
	background-color:rgba(255,255,255,0.8);
	width: 57%;
	margin-left: 5%;
}

.madina-plains-widget h2{
	margin:0;
	color:#7fbc56;
	font-size: 36px;
}

.madina-plains-widget h5{
	margin-top: -8px;
	color: #7fbc56;
	font-size: 20px;
}

.madina-plains-slider-container{
	padding: 150px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.madina-plains-slider-container .madina-plains-slider{
	width: 64.8%;
	overflow: hidden;
}

.madina-plains-slider-container .left{
	text-align: center;
	width: 35.2%;
}

.madina-plains-slider-container .left h2{
	margin:0;
	color:#7fbc56;
	font-size: 36px;
	margin-bottom: 55px;
}

.madina-plains-slider-container .left a{
    font-size: 19px;
    padding: 15px 30px;
    border-radius: 5px;
    color: #fff;
    background-color: #64b42e;
}

.madina-plains-slider-container .left a:hover{
	background-color: #225c06;
}
