/*start  Global*/
*{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-o-box-sizing:border-box;
box-sizing:border-box;
margin:0;
padding:0;
}
body{
  direction:rtl;
  color:#fff;
  font-family: 'Tajawal', sans-serif;
  overflow-x:hidden;
}
h1,p{
  margin:0;
}
ul{
  list-style:none;
}
/*start my framework*/
a{
  text-decoration:none;
  outline:none !important;
}
a:hover,a:focus{
  text-decoration:none;
}
img{
  object-fit:cover;
}
/* Underline From Right */
.underline-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
/*  overflow: hidden;
*/}
.underline-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom:-6px;
  background: #2098D1;
  height: 3px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius:10px;
}
.underline-center:hover:before, .underline-center:focus:before, .underline-center:active:before {
  left: 22%;
  right:22%
}
.links_header .active:before{
  content: "";
  position: absolute;
  z-index: -1;
  left: 22%;
  right: 22%;
  bottom:-6px;
  background: #2098D1;
  height: 3px;
  border-radius:10px;
}
/*////////////////////*/
.main-color{
  color:#34495E;
}
.main-background{
  background-color:#34495E;
}
.text-center{
  text-align:center
}
.facebook:hover svg path{
  fill:#3b5998 !important;
}
.twitter:hover svg path{
  fill:#1da1f2 !important;
}
.instagram:hover svg path{
  fill:#f77142 !important;
}
.youtube:hover{
  color:#f00;
}
.google:hover{
  color:#dd4b39;
}
.linked_in:hover svg path{
  fill:#0e76a8 !important;
}

/* .facebook:hover{
  background-color:#3b5998 !important;
}
.twitter:hover{
  background-color:#1da1f2 !important;
}
.instagram:hover{
  background-color:#4c5fd7 !important;
}
.youtube:hover{
  background-color:#f00;
}
.google:hover{
  background-color:#dd4b39;
}
.linked_in:hover{
  background-color:#0e76a8 !important;
} */
.margin-auto{
  margin:auto;
}
/* loading */


.loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #FFF;
}


/*loading*/

#load {
	position: absolute;
	width: 600px;
	height: 36px;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	overflow: visible;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: default;
}

#load div {
	position: absolute;
	width: 20px;
	height: 36px;
	opacity: 0;
	font-size: 50px;
	animation: move 2s linear infinite;
	-o-animation: move 2s linear infinite;
	-moz-animation: move 2s linear infinite;
	-webkit-animation: move 2s linear infinite;
	transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	color: #3498DB;
}

#load div:nth-child(2) {
	animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}

#load div:nth-child(3) {
	animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

#load div:nth-child(4) {
	animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

#load div:nth-child(5) {
	animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}

#load div:nth-child(6) {
	animation-delay: 1s;
	-o-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-webkit-animation-delay: 1s;
}

#load div:nth-child(7) {
	animation-delay: 1.2s;
	-o-animation-delay: 1.2s;
	-moz-animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}

@keyframes move {
	0% {
		left: 0;
		opacity: 0;
	}
	35% {
		left: 41%;
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	65% {
		left: 59%;
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		left: 100%;
		-moz-transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
		-o-transform: rotate(-180deg);
		transform: rotate(-180deg);
		opacity: 0;
	}
}

@-moz-keyframes move {
	0% {
		left: 0;
		opacity: 0;
	}
	35% {
		left: 41%;
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	65% {
		left: 59%;
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		left: 100%;
		-moz-transform: rotate(-180deg);
		transform: rotate(-180deg);
		opacity: 0;
	}
}

@-webkit-keyframes move {
	0% {
		left: 0;
		opacity: 0;
	}
	35% {
		left: 41%;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	65% {
		left: 59%;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		left: 100%;
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
		opacity: 0;
	}
}

@-o-keyframes move {
	0% {
		left: 0;
		opacity: 0;
	}
	35% {
		left: 41%;
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	65% {
		left: 59%;
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 1;
	}
	100% {
		left: 100%;
		-o-transform: rotate(-180deg);
		transform: rotate(-180deg);
		opacity: 0;
	}
}
/* loading */
/* ================end my framework==================*/
/* start Gird */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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;
}
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 {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          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"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          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-appearance: textfield;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
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;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  /* color: #337ab7; */
  text-decoration: none !important;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}

.logo img {
  width: 160px;
  padding:22px 0;
  position: relative;
  top:3px
}
@media(max-width:991px){
  .logo img {
    width: 140px;
    padding:22px 0;
    position: relative;
    top:10px
  }
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: right;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666667%;
}
.col-xs-10 {
    width: 83.33333333%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666667%;
}
.col-xs-7 {
    width: 58.33333333%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666667%;
}
.col-xs-4 {
    width: 33.33333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.66666667%;
}
.col-xs-1 {
    width: 8.33333333%;
}
.col-xs-pull-12 {
    left: 100%;
}
.col-xs-pull-11 {
    left: 91.66666667%;
}
.col-xs-pull-10 {
    left: 83.33333333%;
}
.col-xs-pull-9 {
    left: 75%;
}
.col-xs-pull-8 {
    left: 66.66666667%;
}
.col-xs-pull-7 {
    left: 58.33333333%;
}
.col-xs-pull-6 {
    left: 50%;
}
.col-xs-pull-5 {
    left: 41.66666667%;
}
.col-xs-pull-4 {
    left: 33.33333333%;
}
.col-xs-pull-3 {
    left: 25%;
}
.col-xs-pull-2 {
    left: 16.66666667%;
}
.col-xs-pull-1 {
    left: 8.33333333%;
}
.col-xs-pull-0 {
    left: auto;
}
.col-xs-push-12 {
    right: 100%;
}
.col-xs-push-11 {
    right: 91.66666667%;
}
.col-xs-push-10 {
    right: 83.33333333%;
}
.col-xs-push-9 {
    right: 75%;
}
.col-xs-push-8 {
    right: 66.66666667%;
}
.col-xs-push-7 {
    right: 58.33333333%;
}
.col-xs-push-6 {
    right: 50%;
}
.col-xs-push-5 {
    right: 41.66666667%;
}
.col-xs-push-4 {
    right: 33.33333333%;
}
.col-xs-push-3 {
    right: 25%;
}
.col-xs-push-2 {
    right: 16.66666667%;
}
.col-xs-push-1 {
    right: 8.33333333%;
}
.col-xs-push-0 {
    right: auto;
}
.col-xs-offset-12 {
    margin-right: 100%;
}
.col-xs-offset-11 {
    margin-right: 91.66666667%;
}
.col-xs-offset-10 {
    margin-right: 83.33333333%;
}
.col-xs-offset-9 {
    margin-right: 75%;
}
.col-xs-offset-8 {
    margin-right: 66.66666667%;
}
.col-xs-offset-7 {
    margin-right: 58.33333333%;
}
.col-xs-offset-6 {
    margin-right: 50%;
}
.col-xs-offset-5 {
    margin-right: 41.66666667%;
}
.col-xs-offset-4 {
    margin-right: 33.33333333%;
}
.col-xs-offset-3 {
    margin-right: 25%;
}
.col-xs-offset-2 {
    margin-right: 16.66666667%;
}
.col-xs-offset-1 {
    margin-right: 8.33333333%;
}
.col-xs-offset-0 {
    margin-right: 0;
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: right;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        left: 100%;
    }
    .col-sm-pull-11 {
        left: 91.66666667%;
    }
    .col-sm-pull-10 {
        left: 83.33333333%;
    }
    .col-sm-pull-9 {
        left: 75%;
    }
    .col-sm-pull-8 {
        left: 66.66666667%;
    }
    .col-sm-pull-7 {
        left: 58.33333333%;
    }
    .col-sm-pull-6 {
        left: 50%;
    }
    .col-sm-pull-5 {
        left: 41.66666667%;
    }
    .col-sm-pull-4 {
        left: 33.33333333%;
    }
    .col-sm-pull-3 {
        left: 25%;
    }
    .col-sm-pull-2 {
        left: 16.66666667%;
    }
    .col-sm-pull-1 {
        left: 8.33333333%;
    }
    .col-sm-pull-0 {
        left: auto;
    }
    .col-sm-push-12 {
        right: 100%;
    }
    .col-sm-push-11 {
        right: 91.66666667%;
    }
    .col-sm-push-10 {
        right: 83.33333333%;
    }
    .col-sm-push-9 {
        right: 75%;
    }
    .col-sm-push-8 {
        right: 66.66666667%;
    }
    .col-sm-push-7 {
        right: 58.33333333%;
    }
    .col-sm-push-6 {
        right: 50%;
    }
    .col-sm-push-5 {
        right: 41.66666667%;
    }
    .col-sm-push-4 {
        right: 33.33333333%;
    }
    .col-sm-push-3 {
        right: 25%;
    }
    .col-sm-push-2 {
        right: 16.66666667%;
    }
    .col-sm-push-1 {
        right: 8.33333333%;
    }
    .col-sm-push-0 {
        right: auto;
    }
    .col-sm-offset-12 {
        margin-right: 100%;
    }
    .col-sm-offset-11 {
        margin-right: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-right: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-right: 75%;
    }
    .col-sm-offset-8 {
        margin-right: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-right: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-right: 50%;
    }
    .col-sm-offset-5 {
        margin-right: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-right: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-right: 25%;
    }
    .col-sm-offset-2 {
        margin-right: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-right: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-right: 0;
    }

}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: right;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        left: 100%;
    }
    .col-md-pull-11 {
        left: 91.66666667%;
    }
    .col-md-pull-10 {
        left: 83.33333333%;
    }
    .col-md-pull-9 {
        left: 75%;
    }
    .col-md-pull-8 {
        left: 66.66666667%;
    }
    .col-md-pull-7 {
        left: 58.33333333%;
    }
    .col-md-pull-6 {
        left: 50%;
    }
    .col-md-pull-5 {
        left: 41.66666667%;
    }
    .col-md-pull-4 {
        left: 33.33333333%;
    }
    .col-md-pull-3 {
        left: 25%;
    }
    .col-md-pull-2 {
        left: 16.66666667%;
    }
    .col-md-pull-1 {
        left: 8.33333333%;
    }
    .col-md-pull-0 {
        left: auto;
    }
    .col-md-push-12 {
        right: 100%;
    }
    .col-md-push-11 {
        right: 91.66666667%;
    }
    .col-md-push-10 {
        right: 83.33333333%;
    }
    .col-md-push-9 {
        right: 75%;
    }
    .col-md-push-8 {
        right: 66.66666667%;
    }
    .col-md-push-7 {
        right: 58.33333333%;
    }
    .col-md-push-6 {
        right: 50%;
    }
    .col-md-push-5 {
        right: 41.66666667%;
    }
    .col-md-push-4 {
        right: 33.33333333%;
    }
    .col-md-push-3 {
        right: 25%;
    }
    .col-md-push-2 {
        right: 16.66666667%;
    }
    .col-md-push-1 {
        right: 8.33333333%;
    }
    .col-md-push-0 {
        right: auto;
    }
    .col-md-offset-12 {
        margin-right: 100%;
    }
    .col-md-offset-11 {
        margin-right: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-right: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-right: 75%;
    }
    .col-md-offset-8 {
        margin-right: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-right: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-right: 50%;
    }
    .col-md-offset-5 {
        margin-right: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-right: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-right: 25%;
    }
    .col-md-offset-2 {
        margin-right: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-right: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-right: 0;
    }
}
@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: right;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        left: 100%;
    }
    .col-lg-pull-11 {
        left: 91.66666667%;
    }
    .col-lg-pull-10 {
        left: 83.33333333%;
    }
    .col-lg-pull-9 {
        left: 75%;
    }
    .col-lg-pull-8 {
        left: 66.66666667%;
    }
    .col-lg-pull-7 {
        left: 58.33333333%;
    }
    .col-lg-pull-6 {
        left: 50%;
    }
    .col-lg-pull-5 {
        left: 41.66666667%;
    }
    .col-lg-pull-4 {
        left: 33.33333333%;
    }
    .col-lg-pull-3 {
        left: 25%;
    }
    .col-lg-pull-2 {
        left: 16.66666667%;
    }
    .col-lg-pull-1 {
        left: 8.33333333%;
    }
    .col-lg-pull-0 {
        left: auto;
    }
    .col-lg-push-12 {
        right: 100%;
    }
    .col-lg-push-11 {
        right: 91.66666667%;
    }
    .col-lg-push-10 {
        right: 83.33333333%;
    }
    .col-lg-push-9 {
        right: 75%;
    }
    .col-lg-push-8 {
        right: 66.66666667%;
    }
    .col-lg-push-7 {
        right: 58.33333333%;
    }
    .col-lg-push-6 {
        right: 50%;
    }
    .col-lg-push-5 {
        right: 41.66666667%;
    }
    .col-lg-push-4 {
        right: 33.33333333%;
    }
    .col-lg-push-3 {
        right: 25%;
    }
    .col-lg-push-2 {
        right: 16.66666667%;
    }
    .col-lg-push-1 {
        right: 8.33333333%;
    }
    .col-lg-push-0 {
        right: auto;
    }
    .col-lg-offset-12 {
        margin-right: 100%;
    }
    .col-lg-offset-11 {
        margin-right: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-right: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-right: 75%;
    }
    .col-lg-offset-8 {
        margin-right: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-right: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-right: 50%;
    }
    .col-lg-offset-5 {
        margin-right: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-right: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-right: 25%;
    }
    .col-lg-offset-2 {
        margin-right: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-right: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-right: 0;
    }
}
@media (min-width:768px) and (max-width:1199px) {
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9{
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (max-width:767px) {
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9{
    padding-right: 16px;
    padding-left: 16px;
  }
}

table {
    background-color: transparent;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
    float: left !important;
}
.pull-left {
    float: right !important;
}
.hide {
    display: none !important;
}
.show {
    display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
.overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* end   Gird */
/* =================Start Header====================== */
/*header_top*/
header{
  overflow:hidden;
}
.blog_post_header{
    overflow:initial;
}
.header_top{
  background:rgba(52, 73, 94, 1);
  height:80px;
}
.logo p {
  font-size:24px;
  font-weight:bold;
  text-align:right;
  color:#fff;
  padding:22px 0;
}
.logo p a{
  color:#fff;
}
.links_header ul li{
 display:inline-block;
 margin-right:45px;
 font-size:16px;
 font-weight:400;
 line-height:22px;
 padding:29px 0;
}
.links_header ul li a{
  color:#fff;
}
/*header-content*/
.header-content{
  height:690px;
  position:relative;
  /* background-image: url("../images/1_headerEarth.svg"); */
  background-image: url("../images/background_header.png");
  background-position: bottom center;
  background-repeat:no-repeat;
  background-size:cover;
  /* top:80px; */
}
.header-content .overlay {
  background:linear-gradient(180deg, rgba(52, 73, 94, 1) , rgba(52, 73, 94, 0.8) );
}
.animation_dots{
  animation: rotate 20s linear infinite;
}

#dots{
  width: 100%;
  height: 100%;
  position:absolute;
  bottom:-640px;
  left:0;
  background-image: url("../images/dots.png");
  z-index: 0;
  opacity:0.4;
  animation: up_dots 9s linear;
  animation-iteration-count:1;
}
@keyframes up_dots {
  0% { background-position: 0px;bottom:-640px }
  100% {
      background-position-y: -0;
      bottom:-100px;
      animation-play-state: paused !important;
     }
}
.stop_dots{
  opacity:0.3 !important;
  animation-play-state: paused !important;
}
.header_info{
  position:relative;
  top:25%;
  text-align:center;
  color:#fff;
  z-index: 99;
}
.header_info h2{
  font-size:32px;
  line-height:50px;
  font-weight:500;
  margin-bottom:30px;
}
.header_info p{
  font-size:16px;
  line-height:25px;
  font-weight:400;
  margin:0 auto;
  width:50%;
  margin-bottom:97px;
}
.go_down{
  height:57px;
  width:31px;
  border:3px solid #3498DB;
  margin:0 auto;
  border-radius:77px;
  text-align:center;
  cursor:pointer;
}
.dot_in{
  height:5px;
  width:5px;
  background:#3498DB;
  margin:0 auto;
  position:relative;
  top:13px;
  border-radius:50%;
  animation: atom 2s infinite linear;
}
@keyframes atom {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(25px);
  }
  60% {
    transform: translateY(12px);
  }
}
/* End  Header */
/* why_us */
.why_us{
  position:relative;
  overflow:hidden;
}
.why_us_info{
  padding:86px 0;
  /* padding-bottom:79px;
  padding-right:37px; */
  position: relative;
  left: 14px;
}
@media (min-width:1200px){
  .why_us_info p{
    width:98% !important;
  }
}

.why_us .img img{
width:100%;
height:645px;
}

.outer_img{
  position:absolute;
  top:0;
  left:0;
  width:50%;
}
@media (min-width:992px) {
  .col-speical-12{
    width:50%;
  }
}
@media (min-width:992px) and (max-width:1199px) {
  .outer_img{
     width:50%;
     height:645px;
  }
}
@media (max-width:991px) {
  .why_us .outer_img{
    position:relative;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .outer_img{
    width:90%;
    margin:auto;
  }
}
/* Safari and Chrome */
 /* @-webkit-keyframes changeBg
{
   0%   {background-image: url("../images/1_why_us.png");}
   100% {background-image: url("../images/1_special.png");}
} */
.remove_pd_right{padding-right:0}
.common_two h2{
  font-size:24px;
  font-weight:bold;
  line-height:36px;
  color:#222222;
  margin-bottom:30px;
}
.common_two p{
  font-size:16px;
  font-weight:400;
  color:#222222;
  line-height:22px;
  margin-bottom:50px;
  width:100%;
}
/* .common_two ul li::after{
  content:"";
  display:inline-block;
  height:10px;
  width:10px;
  border-radius:50%;
  background:#3498DB;
  margin-left:7px;
  position:relative;
  top:1.5px;
} */
.common_two ul li{
  direction:ltr;
  font-size:16px;
  line-height:22px;
  font-weight:400;
  margin-bottom:15px;
  color:#222222;
  text-align:right;
}
.common_two ul li:last-of-type{
  margin:0
}
.common_two a{
  color:#3498DB;
  margin-top:35px;
  font-weight:500;
  display:inline-block;
  transition:all 0.5s ease-in-out;
}
/* .common_two a:hover{
  color:#222;
} */
.common_two a img{
  margin-right:0px;
  right:0;
  position:relative;
  transition:all 0.5s ease-in-out;
}
/* .common_two a i{
  margin-right:10px;
  right:0;
  position:relative;
  transition:all 0.5s ease-in-out;
} */
.common_two a:hover img{
   box-shadow: 0px 0px 9px 3px #CED4DA;
   border-radius:8px;
}
.arrow_move:hover img{
  box-shadow:none !important;
  right:15px
}
/* .common_two a:hover i{
  right:15px;
} */
/* why_us */
/* special */
.special{
  position:relative;
  overflow:hidden;
}
.special .append_img_pc{
  position:absolute;
  top:0;
  right:0;
  width:50%;
}
.special_info{
  padding:100px 0;
  padding-right: 62px;
  padding-left: 17px;
  padding-bottom: 78px;
}
.special .img img{
width:100%;
height:645px;
}
.remove_pd_left{padding-left:0}
.special_info p{
  width:100%;
}

.show_in_mob{display: none !important;}
.hide_in_mob{display: block !important;}
@media (max-width:991px) {
  .show_in_mob{
    display:block !important;
  }
  .hide_in_mob{
    display:none !important;
  }
  .col-sm-6{
    margin-bottom:50px;
  }
  .remove_margin_bottom{
    margin-bottom:0;
  }
  .copyright{
    text-align:center;
  }
}
.qr_code{
display:inline-block;
}
.qr_code img{
  width:158px;
  height:158px;
  border-radius:10px;
  margin-top:30px;
}
.end_user_program .qr_code img{
    width:158px !important;
    height:158px;
    border-radius:10px;
    margin-top:0px;
}

@media(min-width:768px) and (max-width:991px) {
  .special .append_img_pc{
    position:relative;
    top:0;
    right:0;
    width:100%;
    padding:30px 0;
  }
  /* .special .append_img_pc img{
    width:auto !important;
    margin:auto;
    position:relative;
    left:18px;
  } */
  .special .img img{
  width:auto !important;
  height:auto;
  padding-bottom:50px;
  }
}

/* special */
/* download app */
.app{
  overflow:hidden;
  height:513px;
}
.app .overlay{
  background:#3498DB;
  position:relative;
  background-image: url("../images/1_world_lines.svg");
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  padding:50px 0;
  background-attachment: fixed;
}

#loading {
		-webkit-animation: rotation 40s infinite linear;
}

@-webkit-keyframes rotation {
		0 % {
				-webkit-transform: rotate(0deg);
		}
		20% {
				-webkit-transform: rotate(90deg);
		}
		60 % {
				-webkit-transform: rotate(0deg);
		}
	  80% {
				-webkit-transform: rotate(-90deg);
		}
		100% {
				-webkit-transform: rotate(0deg);
		}

}
.img_mob{
  position:relative;
  z-index:2;
  right:26%;
}
.img_circle{
  position:absolute;
  left:23%;
  top:5%;
}
.app_info{
  position:relative;
  top:100px;
}
@media (min-width:1200px) {
  .app_info{
    position:relative;
    top:11px;
  }
  .center_el{
    position:relative;
    top:140px;
  }
  .center_el_pro{
    position:relative;
    top:80px;
  }
}
.app_info h3{
  color:#fff;
  font-weight:bold;
  font-size:24px;
  line-height:36px;
  margin-bottom:20px;
}
.app_info p{
  font-size:16px;
  font-weight:400;
  color:#fff;
  line-height:22px;
  margin-bottom:40px;
  width:80%;
}
.app_info img{
  width:auto;
  margin-left:30px
}

/* download app */
/* start contact */
.contact_us{
  height:405px;
  position:relative;
  background-image: url("../images/1_footer.png");
  background-position: bottom center;
  background-repeat:no-repeat;
  background-size:cover;

}
.contact_us .overlay {
  background:linear-gradient(180deg, rgba(52, 73, 94, 0.8), rgba(52, 73, 94, 1));
    padding:50px 0;
}
.contact_us input, .contact_us textarea{
  background: rgb(112, 126, 139);
  border: 0;
  border-radius: 5px;
  width: 292px;
  display: block;
  height: 40px;
  padding: 10px 15px;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 25px;
  color:#fff;
}
input:focus, textarea:focus{
  border:0;
  outline:0;
  background:rgb(154, 163, 173);
}
.contact_us textarea{
  height:80px;
  resize:none;
}
.contact_us input[type="submit"]{
  width:88px;
  height:30px;
  line-height:0;
  background:#3498DB;
  margin-bottom: 0;
  transition:all 0.3s ease-in-out;
  font-weight:500;
}
.contact_us input[type="submit"]:hover{
  background:#fff;
  color:#3498DB;
}
.contact_info{
  position:relative;
  top:90px;
}
.contact_info h2{
  color:#fff;
  font-weight:bold;
  font-size:24px;
  line-height:36px;
  margin-bottom:20px;
  width:60%;
}
.contact_info p{
  font-size:16px;
  font-weight:400;
  color:#fff;
  line-height:22px;
  margin-bottom:40px;
  width:60%;
}
.contact_us form{
  padding:25px;
  /* background: rgba(52, 73, 94, 0.4) 0% 0% no-repeat padding-box; */
  background:rgba(95,107,119, 0.4) 0% 0% no-repeat padding-box;
  border-radius: 15px;
  /* backdrop-filter: blur(38px);
  -webkit-backdrop-filter: blur(38px); */
}
::-webkit-input-placeholder {
	color: #fff !important;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #fff !important;
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: #fff !important;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #fff !important;
}
/*start footer */
footer{
  padding:30px 0;
  overflow:hidden;
  background:rgba(52, 73, 94, 1);
}
.footer_info h3{
  font-size:14px;
  line-height:19px;
  font-weight:500;
  color:#fff;
  margin-bottom:15px;
}
.footer_info p a{
  /* color:#ECF0F1; */
  font-size:14px;
  font-weight:400;
  color:rgba(236, 240, 241,0.8);
  margin-bottom: 10px;
  line-height:19px;
  display:inline-block;
}
.footer_info .social{
  position:relative;
  left:5px;
}
.footer_info .social svg path{
  fill:#fff;
  font-size:16px;
  transition:all 0.4s ease-in-out;
  margin-left:15.9px;
}
.footer_info .social a{
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
  margin-left:5px;
  text-align:center;
}
.footer_info .social .instagram svg,
.footer_info .social .twitter svg {
    position: relative;
    left: 1px;
}
.footer_info h1{
  font-size: 85px;
  font-weight: bold;
  text-align: left;
  color: #596A7B;
  margin: 0;
  position: relative;
  top: 24px;
}
.footer-logo{
  width: 100%;
  margin: 0;
  position: relative;
  top: 24px;
  opacity: 0.4;
}
.copyright{
  font-size:14px;
  line-height:19px;
  color:#fff;
  font-weight:400;
  margin-top:50px;
  text-align:right;
}

/*end   footer */
/* adds */
.header_top {
  background: rgba(52, 73, 94, 1);
  height: 80px;
  width: 100%;
  margin: auto;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.bars {
	display: none;
	font-size: 40px;
	float: left;
	position: relative;
	z-index: 99;
	top: 15px;
	left: 0px;
  color:#fff;
  cursor:pointer;
}
.bars img{
  width:35px;
  height:40px;
}
.sticky {
	background: rgba(52, 73, 94, 1);
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 9px 3px rgba(41,41,41,.25);
  -moz-box-shadow: 0 0 9px 3px rgba(41,41,41,.25);
  box-shadow: 0 0 9px 3px rgba(41,41,41,.25);
	/* padding-bottom: 0px;
	padding-top: 10px; */
}
/* end home page */
/* ========================================================================================= */
/* page end user */
.enduser_header .header-content .overlay {
    background: linear-gradient(180deg, rgb(52, 73, 94) , rgba(52, 73, 94, 0.6) );
}
.enduser_head{
  background-image: url("../images/1_enduser.png");
}
.end_user_program .app_info {
    position: relative;
    top: 0;
}
.dot_word{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
  background:#3498DB;
  margin-left:7px;
  float:right;
  position:relative;
  top:7px;
}
.end_user_program .app_info img {
    margin-left: 35px;
}
@media (min-width:1200px) {
  .go_left{
    position:relative;
    right:99px !important;
  }
}
@media (min-width:992px) and (max-width:1199px) {
  .end_user_program .app_info img {
      margin-left: 14px;
  }
}
.end_user_program .img{
  text-align:left;
}
.end_user_program .img img {
    width: auto !important;
    height: auto;
    position: relative;
    right: 29px;
}
.end_user_program .why_us_info {
    padding:0;
    /* padding-right: 40px; */
}
.end_user_program{
  padding:100px 0;
  overflow:hidden
}
.app_end_user{
  overflow:hidden;
  height:300px;
}

.app_end_user .overlay{
  background:#3498DB;
  position:relative;
  background-image: url("../images/1_world_lines.svg");
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment: fixed;
  padding:45px 0;
}
.testi_title{
  position:relative;
  top:15px;
}
.testi_title p{
  /* color:#FFFFFF; */
  color:#B4D9F2;
  font-weight:bold;
}
.testi_title p:first-of-type{
  font-size:32px;
  line-height:47px;
  position: relative;
  right: 40px;
}
.testi_title p:nth-of-type(2) {
  font-size:42px;
  line-height:62px;
  text-align:center;
}
.testi_title p:last-of-type{
  font-size:48px;
  line-height:71px;
  text-align:left;
  position: relative;
  left: 10px;
}
/* ======== */
.test_img{
  position:relative;
  width:150px;
  margin-right:20px;
}
@media (max-width:1199px) {
  .app_end_user{
    height:auto;
  }
  .test_img {
    margin:auto;
  }
  .testi_title {
    top:-10px;
   }
   .end_user_program .img img {
    width: auto !important;
    height: auto !important;
    right:0;
    top:30px;
   }
   .end_user_program {
    padding: 40px 0;
   }
   .qr_code{
   display:none !important;
   }
}
@media (max-width:505px) {
  .end_user_program .img img {
   display:none;
   width: 100% !important;
   margin:auto;
  }
}
.test_img .sq_back{
  background: #34495E 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 5px;
  opacity: 0.32;
  /* width:90%; */
  width:130px;
  height:208px;
  position:relative;
  z-index:1;
  margin:auto;
}
.cont_img{
  background: #ECF0F1 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px #00000029;
  border-radius: 5px;
  padding:4px;
  position:absolute;
  top:9%;
  right:-6%;
  height:166px;
  text-align:center;
  z-index:2;
}
.cont_img img{
  width:auto !important;
  height:auto;
}
.cont_img p:first-of-type{
  font-size:14px;
  color:#222222;
  line-height:21px;
  font-weight:bold;
}
.cont_img p:last-of-type{
  margin-bottom:5px;
  color:#222222;
  font-size:12px;
  line-height:17px;
  opacity:0.8;
}
/* =========== */
.testimonial{
  position:relative;
  top:20%;
  width:79%;
  margin:auto;
  padding: 45px 0;
}
.quote_top{
  position:absolute;
  top:0;
  right:-10%;
}
.quote_down{
  position:absolute;
  bottom:5%;
  left:-10%;
}
.stars,.testimonial .date{
  display:inline-block;
  width:49%;
}
.stars i{
  color:#F1C825;
  margin-left:5.4px;
}
.testimonial p,.testimonial .date{
  font-size:16px;
  font-weight:400;
  line-height:25px;
  color:#FFFFFF;
  margin-bottom:14px;
}
.testimonial .date{
  text-align:left;
}
.testimonial .owl-carousel .owl-item img {
    width: auto !important;
}
/* for responsive */
.cont_img img {
    width: 159px !important;
    height: 115px !important;
}
.quote_top,
.quote_down{
  width:auto !important;
}
/* for responsive */
.owl-theme .owl-dots, .owl-theme .owl-nav {
    position: absolute;
    right: 33.5%;
    bottom:3px;
}
.owl-theme .owl-dots .owl-dot span {
  margin:0 !important;;
  margin-left:2.5px !important;;
  background: rgba(52, 73, 94, 0.6) !important;
  height:10px;
  transition:all 0.4s ease-in-out !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #34495E !important;
}
.owl-theme .owl-dots .owl-dot.active span{
  width:41px;
}
/* page end user */
/* ======================================================================================== */
/* page provider */
.provider_header .header-content {
  background-image: url("../images/1_provider.png");
}
.provider_box{
  margin:30px 0 20px;
  background: rgba(255, 255, 255, 1) 0% 0% no-repeat padding-box;
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding:17px 10px;
  text-align:center;
}
.add_margin_pro{
  margin-top:58px;
}
.provider_icon{
  margin-bottom:10px;
}
.provider_box h4{
  color:#34495E;
  font-size:16px;
  font-weight:bold;
  line-height:24px;
  margin-bottom:10px;
}
.provider_box p{
  color:#34495E;
  font-size:14px;
  font-weight:400;
  line-height:19px;
}
.provider_adv{
  /* background:#A0B3C2; */
  padding:27px 32px;
  border-radius:10px;
  text-align:center;
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.16);
  background: url('../images/back_pro.png');
  background-size: cover;
  background-position: center;
}
.provider_adv h4{
  color:#FFFFFF;
  font-size:16px;
  line-height:24px;
  font-weight:bold;
  margin-bottom:10px;
}
.provider_adv p{
  color:#FFFFFF;
  font-size:14px;
  line-height:21px;
  font-weight:bold;
}
/* page provider */
/* ======================================================================================== */
/* page about */
.about_program{
  overflow:hidden;
  padding:70px 0 100px;
  position:relative;
}
.about_header .header-content {
  background-image: url("../images/1_about.png");
}
.about_program .img img{
  width:auto;
  height:auto;
}
@media (min-width:1199px) {
  .about_program .img img{
    position:relative;
    right:25%;
  }
}
.head{
  color:#3498DB;
  font-size:32px;
  line-height:25px;
  font-weight:bold;
  text-align:center;
  margin:70px 0 30px;
}
.head_p{
  line-height:28px;
  font-size:18px;
  font-weight:400;
  margin:auto;
  width:82%;
  color:#000000;
  margin-bottom:100px;
  text-align:center;
}
.about_program .why_us_info{
  padding:0 0 100px;
}
.about_us_info h1{
  font-size:32px;
  font-weight:bold;
  line-height:25px;
  color:#3498DB;
  margin:47px 0 30px;
}
.about_us_info p{
  font-size:18px;
  line-height: 28px;
  color:rgba(0,0,0,0.6);
  margin-bottom:30px;
}
/* page about */
/* ======================================================================================== */
/* page blog_post */
.blog_post_header{
  margin-bottom:65px;
}
.blog_post_header .links_header ul li a,
.blog_post_header .logo p a,
.blog_post_header .bars {
    color:#34495E;
}
@media (max-width:991px) {
  .blog_post_header .links_header ul li a {
      color: #fff;
  }
}
.blog_post_header .header_top {
    /* background: #fff; */
    background: transparent;
}
/* post section */
.post{
  padding:80px 0 70px;
  overflow:hidden;
}
.post_info .choosen_article_img{
  margin-bottom:50px;
  width:100%;
}
.post_share .social a{
    display: inline-block;
    transition: all 0.4s ease-in-out;
    position:relative;
    top:0;
}
.post_share .social a:first-of-type{
  top:5px
}
.post_share .social a:nth-of-type(2){
top:10px;
}
.post_share .social a:nth-of-type(3){
top:15px;
}
.post_share .social a:last-of-type{
  top:20px
}
.post_share .social a{
    display: inline-block;
    transition: all 0.4s ease-in-out;
    position:relative;
    top:0;
}
.social_order{
  top:3px !important;
}
.post_share .social a:hover{
  transform:rotate(-60deg);
}
.post_share .social a:last-of-type{
  margin:0;
}
.post_info .title_date p{
  display:inline-block;
  margin-bottom:50px;
}
.post_info .title_date .title{
  font-size:24px;
  font-weight:bold;
  color:#34495E;
  line-height:36px;
}
.post_info .title_date .date{
  font-size:18px;
  font-weight:400;
  color:rgba(34, 34, 34, 0.6);
  line-height:25px;
  float:left;
  position:relative;
  top:9px;
}
@media (max-width:480px) {
  .post_info .title_date .title{
      font-size:17px;
  }
  .post_info .title_date .date{
    font-size:14px;
    top:8px;
  }
}
.post_content p{
  font-size:18px;
  font-weight: 400;
  line-height:25px;
  /* color:rgba(34, 34, 34, 0.6); */
  color:#000;
  opacity:0.6;
  margin-bottom:30px;
  width:80%;
}
.post_content p:last-of-type{
  margin-bottom:50px;
}
@media (max-width:991px) {
  .post_content p{
    margin:auto;
    width:95%;
    margin-bottom:30px;
  }
}
.post_share{
  position:relative;
  display:inline-block;
}
.post_share .button_share{
  width:112px;
  height:41px;
  padding:9.5px 30px;
  color:#FFFFFF;
  font-size:16px;
  font-weight:500;
  line-height:22px;
  background: #3498DB 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 15px #00000029;
  border-radius: 108px;
  display:block;
  /* margin:50px 0 100px; */
  position:relative;
  z-index:2;
  border:0;
  font-family:inherit !important;
}
.post_share .social{
  /* width:200px; */
  width:190px;
  height:41px;
  padding:9.5px 20px;
  /* padding-right:50px; */
  padding-right:38px;
  font-size:16px;
  font-weight:500;
  line-height:22px;
  background: #3498DB 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 15px #00000029;
  border-radius: 108px 0 0 108px;
  display:block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition:all 0.3s ease-in-out;
  /* border-radius: 108px; */
}
.open_share{
  right:80px !important;
  opacity:1 !important;
  box-shadow:none !important;
}
.remove_box_shadow{
  box-shadow:none !important;
}
.post_share .social a{
    color:#FFFFFF;
    margin-left: 18px;
    position:relative;
    top:3px;
}
/* =========== */
.related_head{
  font-size:24px;
  font-weight:bold;
  line-height:36px;
  color:#3498DB;
  margin:100px 0 50px;
}
.related_post img{
  width:100%;
  height:315px;
}

@media (max-width:990px) {
  .related_head{
    margin:40px 0 30px;
  }
}
@media (max-width:500px) {
  .related_posts_details .col-xs-6{
    width:100%;
    text-align:center;
  }
  .related_post img {
    width: 80%;
  }
}
.related_post{
  position: relative;
  overflow:hidden;
  margin-bottom:30px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height:315px;
}
.related_post.img_one{
  background-image:url('../images/related6.png');
}
.related_post.img_two{
  background-image:url('../images/related11.png');
}
.related_post.img_three{
  background-image:url('../images/related3.png');
}
.related_post.img_four{
  background-image:url('../images/related4.png');
}
.related_over{
right:-265px;
transition:all 0.4s ease-in-out;
border-radius: 20px;
}
.related_post:hover .related_over{
  background:rgba(52,73,94,0.6);
  right:0;
}
.link_post{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}
.related_post p{
  position:absolute;
  right:-290px;
  transition:all 0.6s ease-in-out;
  font-size:16px;
  color:#fff;
}
.related_post p a{
  color:#fff;
}
.related_post .subject{
  bottom:36px;
  font-weight:bold;
  font-size:20px;
}
.related_post .date{
  bottom:-80px;
  font-weight:400;
  font-size:16px;
  right:15px;
}
.related_post:hover .subject{
  right:15px !important;
}
@media (max-width:500px) {
  .related_post:hover .subject,
  .related_post:hover .date{
    right:60px !important;
  }
  .related_post .date{
    right:60px;
  }
}
.related_post:hover .date{
   bottom:10px !important;
}
/* page blog_post */
/* ========================================================================================= */
/* page blog */
.blog_slider{
  overflow:hidden;
  padding-bottom:100px;
}
.background_white_top{
  position:absolute;
  top:-80px;
  left:0;
  background:rgba(236, 240, 241, 0.2);
  width:50%;
  height:563px;
  z-index:-1;
}
.blog_slider_head{
  color:#3498DB;
  font-size:24px;
  line-height:36px;
  font-weight:bold;
  margin:0 0 51px;
}
.blog_slider_info h2{
  color:#34495E;
  font-size:24px;
  font-weight:bold;
  line-height:36px;
  margin:83px 0 5px;
}
.blog_slider_info p{
  font-size:16px;
  line-height:22px;
  font-weight:500;
}
.blog_slider_info .date{
  color:rgba(0, 0, 0, 0.4);
  margin-bottom:15px;
}
.blog_slider_info .info{
  color:rgba(0, 0, 0, 0.6);
  margin-bottom:40px;
}
.blog_slider_info p a{
  color:#212121;
  transition:all 0.35s ease-in-out;
}
.blog_slider_info p a img{
  margin-right:8px;
  position:relative;
  top:0px;
  right:0;
  transition:all 0.4s ease-in-out;
  width:auto !important;
  display: inline-block !important;
}
/* .blog_slider_info p a i{
  color:#3498DB;
  margin-right:8px;
  position:relative;
  top:2px;
  right:0;
  transition:all 0.4s ease-in-out;
} */
.blog_slider_info p a:hover{
  color:#3498DB;
}
.blog_slider_info p a:hover img {
  right: 15px;
}
/* .blog_slider_info p a:hover i {
  right: 15px;
} */
.blog_slider_img {
  text-align: left;
}
.blog_slider_img img{
  /* box-shadow: 0px 3px 50px #00000029; */
  border-radius: 20px;
  display:inline-block !important;
  border-radius:20px;
  width:auto !important;
}
.blog_slider .owl-theme .owl-dots .owl-dot span {
    margin: 0 !important;
    margin-left: 10px !important;
    background: rgba(52, 152, 219, 0.2) !important;
    height:5px;
    width:33px;
    transition:all 0.2s ease-in-out;
}
.blog_slider .owl-theme .owl-dots .owl-dot.active span{
  width:61px;
}
.blog_slider .owl-theme .owl-dots .owl-dot.active span,
.blog_slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #3498DB !important;
}
.blog_slider .owl-theme .owl-dots,
.blog_slider .owl-theme .owl-nav {
    position: absolute;
    right: 0;
    bottom: -60px;
}
/* ===================================== */
/* subscirbe section */
.subscirbe{
  overflow:hidden;
  padding:50px 0;
}
.overlay_img{
  border-radius: 20px;
  background-color: #3498DB;
  background-image: url("../images/1_subscribe.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:46px 50px;
}
.subscirbe_info{
  color:#fff;
}
.subscirbe_info h2{
  font-size:18px;
  line-height:26px;
  font-weight:bold;
  margin-bottom: 15px;
}
.subscirbe_info p{
  font-size:16px;
  line-height:22px;
  font-weight:400;
}
.subscirbe_mail{
  position:relative;
  position: relative;
  height: 46px;
  top: 9px;
}
.subscirbe_mail input{
  background: #fff;
  border: 0;
  border-radius:10px 0px;
  width:100%; /*361px*/
  display: block;
  height: 46px;
  padding: 12px 20px;
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight:500;
  color:rgba(52, 73, 94, 0.6);
  transition:all 0.4s ease-in-out;
}
.subscirbe_mail input:focus{
box-shadow: 0px 3px 20px 3px #00000029;
}
.subscirbe_mail button{
  position:absolute;
  width:47px;
  height:100%;
  line-height:46px;
  top:0;
  left:0;
  background:#34495E;
  border-radius:10px 0;
  border:0;
  text-align:center;
}
.subscirbe_mail input::-webkit-input-placeholder {
  color:rgba(52, 73, 94, 0.6) !important;
}

.subscirbe_mail input::-moz-placeholder {
	/* Firefox 19+ */
  color:rgba(52, 73, 94, 0.6) !important;
}

.subscirbe_mail input:-ms-input-placeholder {
	/* IE 10+ */
  color:rgba(52, 73, 94, 0.6) !important;
}

.subscirbe_mail input:-moz-placeholder {
	/* Firefox 18- */
  color:rgba(52, 73, 94, 0.6) !important;
}
/* subscirbe section */
/* ===================================== */
/* article section */
.article{
  padding:50px 0 100px;
  overflow:hidden;
}
@media (max-width: 767px){
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1  {
    width:50%;
    float:right;
  }
}
@media (min-width: 768px){
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1  {
    width:33.3333%;
    float:right;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/**
 *  The following is not really needed in this case
 *  Only to demonstrate the usage of @media for large screens
 */
@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
  }
}
.article_box_button{
  margin-top:55px;
}
.article_box_button button{
  width:100%;
  height:41px;;
  line-height:41px;
  box-shadow: 0px 3px 15px #00000029;
  border-radius: 108px;
  border:0;
  text-align:center;
  font-size:16px;
  font-weight:500;
  font-family: 'Tajawal', sans-serif;
  background:#FFFFFF;
  color:#34495E;
  margin-bottom:50px;
  transition:all 0.4s ease-in-out;
}
.article_box_button button:active,
.article_box_button button:focus,
.more_posts{
outline:0 !important;
}
/* .article_box_button button:hover{
  background:#3498DB ;
  color:#fff;
} */
.active_button button{
  background:#3498DB ;
  color:#fff;
}
.title_section_article .blog_slider_head{
  position:relative;
  top:8px;
  margin:0;
}
.article_search button{
  right:0;
  left:auto;
  background:#fff;
  border-radius: 18px;
  padding-right:16px;
}

.article_search input{
  padding-right:60px;
  border-radius: 18px;
}
.article_search{
  /* width: 300px;
  left: 14%; */
  box-shadow: 0px 3px 20px #00000029;
  border-radius: 18px;
  top:0;
}
/* ==========posts========== */
.container_mixit .col-md-4,
.related_posts_details .col-md-3,
.end_user_program .col-md-3{
  padding-right: 15px;
  padding-left: 15px;
}
.article_post{
  box-shadow: 0px 3px 20px #00000029;
  border-radius: 20px;
  padding:10px;
  margin-bottom:35px;
  transition:all 0.3s ease-in-out;
  overflow:hidden;
}
.article_post img{
  width:100%;
  height:278px;
  transition:all 0.45s ease-in-out;
}
.art_img{
  overflow:hidden;
  border-radius: 20px;
  margin-bottom:16px;
}
.article_post:hover img{
  transform:scale(1.15);
}
.article_post .sort{
  padding:1.5px 8px;
  background:#ECF0F1;
  border-radius:4px;
  display:inline-block;
  margin-bottom:11.5px;
}
.article_post .post_title{
  color:#34495E;
  font-size:18px;
  font-weight:bold;
  line-height:26px;
  margin-bottom:10px;
}
.article_post .post_data{
  color:#34495E;
  font-size:16px;
  font-weight:400;
  line-height:22px;
  margin-bottom:10px;
}
.date_link p{
  color:#34495E;
  font-size:16px;
  font-weight:400;
  line-height:22px;
  margin-bottom:5px;
  display:inline-block;
}
.date_link p:last-of-type{
  float:left;
  margin-left:5px;
  font-weight:500;
}
.date_link a{
  color:#34495E;
  float:left
}
/* .date_link p a:hover i {
    right:4px;
}
.date_link p a i {
    right:-6px;
} */
.date_link p a:hover img {
    right:4px;
}
.date_link p a img {
    right:-6px;
    width:auto !important;
    height:auto;
    transform:scale(1) !important;
}
.more_posts{
    width: 213px;;
    height: 46px;
    line-height: 46px;
    box-shadow: 0px 3px 15px #00000029;
    border-radius: 84px;
    border: 0;
    text-align: center;
    box-shadow: 0px 3px 20px #00000029;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(90deg, #3498DB , #37638F );
    color: #FFFFFF;
    margin-top:15px;
    transition:all 0.3s ease-in-out;
    margin:auto;
}
.more_posts:hover{
  /* background: linear-gradient(90deg, #37638F , #3498DB ); */
    box-shadow: 0px 3px 20px 7px #00000029;
}
/* article section */
/* page blog */
.copy_r{
  padding:0;
}

/* ========================================================================================= */
/* Start Responsive */
@media(max-width:991px) {
  .links_header ul {
    background: rgba(52, 73, 94, 1);
    border-radius: 0 0 10px 10px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index:101;
  }
  .links_header ul li{
     padding:10px 0;
     margin-right: 0;
  }
  /* .links_header ul li:last-of-type{
    padding-bottom:25px;
  } */
  .bars {
    display: inline-block;
  }

  .logo {
    display: inline-block;
  }

  .sticky .logo img {
    width: 44%;
  }

  .sticky .links_header ul {
    padding-top: 26px;
    position: relative;
    top: 0;
  }

  .links_header ul li {
    display: block !important;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  #dots {
    display: none;
   }
   /* blog page */
   .article_box_button button {
     margin-bottom: 25px;
   }
   /* blog page */
}


@media(min-width:320px) and (max-width:480px){
  .img_circle {
      /* position: absolute;
      left: 2%;
      top: 5%;
      width: 96%; */
      position: absolute;
      left: 14%;
      top: 5%;
      width: 71%;
  }
  .img_mob {
    /* position: relative;
    z-index: 2;
    right: 18%;
    width: 64%; */
    position: relative;
    z-index: 2;
    right: 28%;
    width: 44%;
   }
   .end_user_program .app_info a:last-of-type{
     margin-top:0;
   }
}
@media(min-width:480px) and (max-width:768px){
  .img_circle {
    position: absolute;
    left: 27%;
    top: 5%;
    width: 44%;
  }
  .img_mob {
    position: relative;
    z-index: 2;
    right: 38%;
    width: 26%;
   }
}
@media(max-width:767px){
  .header_info {
      top: 13%;
  }
  .header_info p {
    font-size: 16px;
    width: 90%;
    margin-bottom: 50px;
  }
  .header_info h2 {
    font-size: 29px;
    width:97%;
    margin:auto;
    margin-bottom:30px;
  }
  .why_us_info {
    padding: 50px 16px;
  }
  .outer_img {
    width: auto;
   }
  .special .img img {
    width: auto !important;
    height: auto;
    padding-bottom: 30px;
   }
  .common_two ul li {
    font-size: 13px;
  }
  .special_info {
    padding: 50px 0;
    padding-right: 0;
   }
   .app {
    height:680px;
    }
    .app_info p {
    margin: 0 auto;
    margin-bottom: 20px;
   }
   .app_info {
    position: relative;
    top:0px;
    /* top: 30px; */
    text-align: center;
   }
   .app_info img {
    width: auto;
    margin-left: 0;
    margin-bottom:20px;
    }
    .pull-right {
    float: none !important;
    }
    .end_user_program .why_us_info {
    padding: 0 16px;
    }
    .contact_us form {
    margin: auto;
    width: 100%;
    }
    .contact_us {
      height: 550px;
    }
    .contact_us input, .contact_us textarea {
    width: 100%;
    }
    .contact_info h2,.contact_info p {
      margin:auto;
      margin-bottom:20px;
    }
    .footer_info{
      text-align:center;
      margin-bottom:30px;
    }
    .footer_info .social {
        position: relative;
        left: -10px;
     }
    .contact_us .overlay {
      padding: 40px 0 5px;
      }
      .footer_info h1 {
      font-size: 85px;
      font-weight: bold;
      text-align: left;
      top: 0;
      }
      .remove_margin_mob{
        margin:0
      }
      .copyright {
        margin-top: 10px;
      }
      .footer_info h1,.copyright{
       text-align:center;
      }
      .contact_info h2, .contact_info p {
        text-align:center;
       }
       .copyright{
         text-align:center;
       }


}
@media(max-width:360px){
  .common_two ul li {
    font-size: 13px;
  }
}
@media(min-width:480px) and (max-width:708px){
  .app {
   height:600px;
   }

}
@media(max-width:991px){
  .remove_pd_right {
      padding-right: 15px;
      margin-bottom:30px;
  }
  .remove_pd_left {
      padding-left: 15px;
  }
  /* .commen_container .img img {
    width: 100%;
    height: auto;
   } */
  .about_program .img img {
    width: 100%;
    height: auto;
    margin-top:30px !important;
   }
   .head_p {
    width: 100%;
    margin-bottom: 0;
    text-align:right;
  }
  .head {
    margin: 0;
    margin-bottom:25px;
   }
   .about_program {
    overflow: hidden;
    padding: 70px 0 80px;
    }
    /* blog page */
    .blog_slider_info h2 {
      margin:0;
    }
    .blog_slider_head {
      margin: 0 0 20px;
     }
     .blog_slider {
        padding: 40px 0 50px;
    }
    .blog_slider_img {
        text-align: center;
    }
    .blog_slider_info p {
        margin-bottom: 21px;
        text-align: center;
    }
    .blog_slider_info .date {
      text-align:right;
      }
      .title_section_article .blog_slider_head {
          padding: 20px 0;
          text-align:center;
      }
   .contact_info{
     top:0;
     text-align:right;
   }
   .contact_info h2,
   .contact_info p{
     width:100%;
     margin:auto;
     margin-bottom:20px;
   }


    /* blog page */
}
@media(min-width:551px) and (max-width:991px){
  /* blog page */
  .container_mixit .col-md-4{
    width:50%;
    float:right;
  }
  .article_post img {
    width: 100%;
    height: 250px;
  }
  /* blog page */
}
@media(max-width:550px){
  .article_post img {
    width: 100%;
    height: 250px;
  }
  .article_post a{
    display:block;
    text-align:center;
  }
  .end_user_program .app_info img {
       margin-left: 0px;
   }
  /* .article_post {
    margin-bottom: 35px;
    margin: auto;
    width: 80%;
  } */
  .blog_slider .owl-carousel .owl-item img {
    width: 100% !important;
  }
  .blog_slider .owl-carousel .owl-item p a img {
    width:auto !important;
   }
}
@media(min-width:768px) and (max-width:991px){
  /* .commen_container .img img {
      width: 70%;
      height: 70%;
      margin: auto;
      display: block;
  } */
  .copyright {
    padding-right: 35px;
    }
    .head_p {
    padding: 0 32px;
    }
  .special_info {
    padding: 50px 0;
  }
  .why_us_info {
    padding: 50px 0;
  }
  .img_mob {
    position: relative;
    z-index: 2;
    right: 21%;
    width:auto;
  }
  .img_circle {
    position: absolute;
    left: -6%;
    top: 5%;
    width:auto
   }
   .app_info a{
     text-align:center;
     display:inline-block;
   }
   .app_info h3{
     text-align:right;
   }
   .app_info p{
     margin:auto;
     width: 100%;
     text-align: right;
   }
   .app_info img {
    width: auto;
    margin-left: 0px;
    margin-top: 30px;
    }
    .pull-right {
    float: none !important;
    }
    .contact_us form {
    /* margin: auto; */
    width: 80%;
    position:relative;
    top:25px;
    }
    .contact_us input, .contact_us textarea {
    width: 100%;
    }
    .contact_us {
    height: 530px;
    /* height: 600px; */
    }
    .header_info p {
     width: 69%;
   }
   .blog_slider_head {
     margin:0px 36px 51px;
   }
   .blog_post_header {
    margin-bottom: 0;
   }
   .tablet_pad{
     padding:0 50px;
   }
}
@media(min-width:991px) and (max-width:1199px){
  .links_header ul li {
      display: inline-block;
      margin-right: 15px;
  }
  .common_two {
      padding: 89px 0px;
    }
  .common_two p{
    text-align: justify;
  }
  .common_two.about_us_info {
      padding:0;
    }
    .about_program .img img {
     margin-top:70px;
    }

  .img_mob {
    position: relative;
    z-index: 2;
    right: 9%;
  }
  .contact_info h2 {
    width: 100%;
   }
   .header_info p {
    width: 70%;
  }
  .contact_info p {
    width: 89%;
  }
  footer .hide_in_mob{
    display:none !important;
  }
  footer .remove_margin_bottom{
    padding-left: 0;
  }
  .blog_slider_head {
    margin:0px 36px 51px;
  }
  .pd_left{
    padding-left:16px;
  }
  .copy_r{
    padding-right:30px;
  }

}
.pop_up{
  display:none;

}
.box {
  width:100%;
  height:100%;
  position:fixed;
  overflow:auto;
  z-index: 9999999;
  margin: 0 auto;
  background:#FFFFFF;
  color:#fff;
  padding: 35px;
  border: 2px solid #fff;
  background-clip: padding-box;
  text-align: right;
}
.box p{
  font-size:18px;
  line-height:26px;
  margin:30px 0;
  color:#222222;
}
.box h1{
  font-size:36px;
  color:rgba(52, 73, 94, 1);
}
.box h3{
  color:rgba(52, 73, 94, 1);
  font-size:28px
}
.box h4{
  font-size:24px;
  color:rgba(52, 73, 94, 1);
}
.box button{
  position:fixed;
  margin:20px;
  border-radius:12px;
  top:0;
  left:0;
  border:0;
  width:80px;
  height:50px;
  line-height:50px;
  text-align:center;
  font-family: 'Tajawal', sans-serif;
  background:rgba(52, 73, 94, 1);
  color:#fff;
  font-size:21px;
  font-weight:500;
  outline:0 !important;
  transition:all 0.3s ease-in-out;
}
.box button:hover{
  background:#3498DB;
  color:#fff;
}
/*end responsive*/
/* ============================================================ */
/* adds */
.post_soon{
  padding:46px 0 86px;
}
.blog_soon_img{
  max-width:315.35px;
  max-height:307.83px;
  margin:auto
}
.blog_soon_info{
  font-size:20px;
  font-weight:500;
  margin-top:40px;
  margin-bottom:24px;
}
.button_back_to_homepage {
    width:211px;
    height: 41px;
    line-height: 41px;
    box-shadow: 0px 3px 15px #00000029;
    border-radius: 108px;
    border: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Tajawal", sans-serif;
    background: #3498db;
    color: #fff;
    margin-bottom: 50px;
    transition: all 0.4s ease-in-out;
}
@media(min-width:768px) and (max-width:1199px) {
  .blog_soon_info{
    font-size:18px;
  }
}
@media(max-width:767px){
  .blog_soon_info{
    font-size:16px;
  }
  .blog_soon_img{
    max-width:100%;
  }
  .post_soon{
    padding:0 0 30px;
  }
}
/* adds */
