
button:hover, button:focus, button:visited, button:active {
    cursor: pointer;
    text-decoration: none;
    outline: 0;
}

.slider-sidebar .home-access {
  list-style: none; 
  margin: 0;
  padding: 0;
}
.slider-sidebar .home-access li{
  margin: 5px 0;
  padding: 0;
}
.slider-sidebar .home-access li:first-child{
  margin-top: 0;
}
.slider-sidebar .home-access li a {
  display: block;
  margin: 0;
  padding: 10px;
  background-color: #006127;
  color: #fff;
  font-weight: bold;
}
#search {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -20;
    
    -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;

  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
    
    opacity: 0;
}

#search.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 500;
    opacity: 1;
}


#search .options {
    position: absolute;
    top: 63%;
    width: 74%;
    left: 13%;
    right: 13%;
}

#search .options ul{
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

#search .options ul li{
    display: inline-block;
    color: #fff;
    padding: 0 12px;
}
#search .options ul li:first-child{
    padding-left: 0;
}
#search .options ul li:last-child{
    padding-right: 0;
}
#search .options ul li label{
    color: #fff;
}
#search .options ul li input{
    margin-left: 3px;
    margin-bottom: -5px;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 74%;
    right: 13%;
    left: 13%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: right;
    border: solid 3px #ccc;
    border-radius: 3px;
    margin: 0px auto;
    padding: 5px 25px;
    margin-top: -51px;
    outline: none;
}
#search .btn-theme {
    position: absolute;
    top: 61%;
    right: 50%;
    padding: 10px 30px;
    margin-top: 100px;
    margin-right: -45px;
    border: solid 1px #517fa3;
    background-color: #517fa3;
    color: #fff;
    font-size: 17px;
}
#search .close {
  position: fixed;
  top: 15px;
  left: 15px;
  color: #ccc;
	background: transparent;
	border: none;
	opacity: 1;
  border: none;
	padding: 5px 18px;
  border-radius: 2px;
  font-weight: 100;
  line-height: 1;
	font-size: 75px;
  line-height: 75px;
  transition: all 0.3s ease;
}

#search .close:hover {
  color: #fff;
}
.spinner2 {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner2 > div {
  width: 18px;
  height: 18px;
  background-color: #517fa3;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner2 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner2 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}


.clear-loading {
    text-align: center;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.loading-effect-2 {
  width: 100px;
  height: 100px;
}
.loading-effect-2 > span,
.loading-effect-2 > span:before,
.loading-effect-2 > span:after {
  content: "";
  display: block;
  border-radius: 50%;
  border: 2px solid #517fa3;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loading-effect-2 > span {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-right-color: transparent;
  -webkit-animation: effect-2 2s infinite linear;
  -moz-animation: effect-2 2s infinite linear;
  -ms-animation: effect-2 2s infinite linear;
  -o-animation: effect-2 2s infinite linear;
  animation: effect-2 2s infinite linear;
}
.loading-effect-2 > span:before {
  width: 75%;
  height: 75%;
  border-left-color: transparent;
}
.loading-effect-2 > span:after {
  width: 50%;
  height: 50%;
  border-bottom-color: transparent;
}
@-webkit-keyframes effect-2 {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes effect-2 {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.writetous {
  padding: 30px 25px 25px 25px;
  background-color: #4b9f6c;
  background-image: url(/assets/images/mc20.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
.writetous:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #4b9f6c;
}
.writetous h2{
  color: #fff;
  font-size: 22px;
}
.writetous img{
  padding: 5px;
  border: solid 2px #fff;
}


.writetous h2 a{
  border: solid 2px #fff;
  display: inline-block;
  float: left;
  padding: 8px 15px;
  font-size: 19px;
}
.writetous h3{
  color: #fff;
  font-size: 22px;
}
.writetous p.lead{
  padding-left: 150px;
}
.writetous .w-socials {
    position: relative;
    float: left;
    font-size: 0;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.writetous .w-socials li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: none;
    margin-right: 0.4375rem;
}

.writetous .w-socials li a {
    display: block;
    width: 2.9125rem;
    height: 2.9125rem;
    cursor: pointer;
    text-align: center;
    color: #555;
    border: solid 2px #fff;
    border-radius: 2px;
    /*background-color: #ccc*/
}
.writetous .w-socials li a:hover {
    border: solid 2px #3A3B3D;
}
.writetous .w-socials li a .fi{
  display: inline-block;
  color: #F1F1F1;
  font-size: 22px;
  line-height: 40px;
  transition: all 0.3s ease;
}

.writetous .w-socials li.twitter a{
  background: #077fb7;
  color: #fff;
}
.writetous .w-socials li.twitter a .fi{
}


.writetous .w-socials li.facebook a{
  background: #3B5998;
  color: #fff;
}
.writetous .w-socials li.facebook a .fi{
}


.writetous .w-socials li.gplus a{
  background: #F63E28;
  color: #fff;
}
.writetous .w-socials li.gplus a .fi{
}


.writetous .w-socials li.linkedin a{
  background: #007BB6;
  color: #fff;
}
.writetous .w-socials li.linkedin a .fi{
}


.writetous .w-socials li.youtube a{
  background: #CB2027;
  color: #fff;
}
.writetous .w-socials li.youtube a .fi{
}



.writetous .w-socials li a:hover{
  border: solid 2px #F5F5F5;
}
.writetous .w-socials li a:hover .fi{
  color: #F5F5F5;
}

.writetous .w-socials li a .fi.ti{
  line-height: 45px;
}

#feedbackme {
position:fixed;
display: inline-block;
z-index: 999;
width: 100px;
height: 30px;
margin: 0;
margin-right: -38px;
line-height: 30px;
color: #444;
font-family: "Droid Arabic Kufi";
font-size: 13px;
text-align: center;
text-transform: uppercase;
background-color: #ccc;
right:0;
top:50%;
-webkit-transform: rotateZ(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0.75;
transition: opacity 0.3s ease-in-out;
}
#feedbackme:hover {
  opacity: 1;
}
/*#mcServices {
position:fixed;
display: inline-block;
z-index: 999;
width: 100px;
height: 30px;
font-family: "Droid Arabic Kufi";
margin: 0;
margin-top: 110px;
margin-right: -38px;
line-height: 30px;
color: #444;
font-size: 13px;
text-align: center;
background-color: #ccc;
right:0;
top:35%;
-webkit-transform: rotateZ(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0.75;
transition: opacity 0.3s ease-in-out;
}
#mcServices:hover {
  opacity: 1;
}*/
#feedbackDiv ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#feedbackDiv ul li{
  display: inline-block;
}

#feedbackDiv .actions li button {
  display: inline-block;
  width: 120px;
}

#feedbackDiv li button:hover,  #feedbackDiv li button:visited{
  border: solid 1px #517fa3;
  outline: 0;
}
.form-subscribe .form-control {
    font-size: 15px;
    height: 50px;
    border-width: 1px;
    border-left: none;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.form-subscribe .btn {
    border-top-left-radius: 2px;
    height: 50px;
    color: #fff;
    border-bottom-left-radius: 2px;
}
@media (max-width: 768px) {
#feedbackme, #mcServices {
opacity: 0;
}
}
.entry-content p {
  margin-bottom: 10px;
  font-family: 'Noto Naskh Arabic';
}
