/**
 * Stylesheet:  style.css
 * Theme:       The Sevuni is a multi-company.
 * Author:      Sevuni
 * 
 */

/*
-------------------------------
Import CSS and Google Fonts
-------------------------------
/*@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700,900|Work+Sans:400,500,600,700');
*/
@font-face {
font-family: 'GHEAMariamReg';
font-weight:normal;
src:url('../fonts/GHEAMariamReg.otf') format('opentype');
}

@font-face {
font-family: 'GHEAMariamBld';
font-weight:bold;
src:url('../fonts/GHEAMariamBld.otf') format('opentype');
}
/*
-------------------------------
Global Styles
-------------------------------
*/
body {
    font-family: 'GHEAMariamReg';
    font-size: 15px;
    line-height: 1.6;
    background-color: #E3ECF0;
    background-image: url(../uploads/aacc_bg_.png);
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

p {
    font-size: 15px;
    line-height: 1.6;
}

a {
    font-family: 'GHEAMariamReg';
    font-size: 15px;
    color: #313131;
}

a:focus {
    outline: none;
    color: #313131;
}

button:focus {
    outline: none;
}

.form-group input:focus {
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'GHEAMariamReg';
    color: #313131;
}

a:hover,
a:active,
a:visited,
a:focus {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

a:hover {
    color: #215A9B;
}

img {
    max-width: 100%;
    height: auto;
}

.bg {
    position: absolute;
    background-color: #313131;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.75;
}


button {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px !important;
    border-radius: 0 !important;
}

input,
textarea,
.form-control,
select {
    border-radius: 0 !important;
    font-family: 'Work Sans', sans-serif;
}

.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);
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.ptb {
    padding: 60px 0 !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.mtb {
    margin: 60px 0 !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.headline {
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.headline h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.headline h2 span {
    font-weight: 400 !important;
}

.headline h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #777;
}

.hl-white {
    color: #fff !important;
}

.hl-white h2 {
    color: #fff !important;
}

.hl-white h3 {
    color: #fff !important;
}

.hl-left {
    text-align: left !important;
}

.headstyle h4 {
    display: inline-block;
    /* position: relative; */
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 9px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.headstyle h4:before {
    /* position: absolute; */
    content: '';
    width: 70%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: 0;
}

.headstyle h4:after {
    /* position: absolute; */
    content: '';
    width: 100%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: -5px;
}

.image-effect {
    position: relative;
    display: block;
    vertical-align: top;
    max-width: 100%;
}

.image-effect:before,
.image-effect:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .3);
    opacity: 0;    

/*    z-index: 6;
    -webkit-transition: transform .5s, opacity .2s ease-in-out 0s;
    -o-transition: transform .5s, opacity .2s ease-in-out 0s;
    transition: transform .5s, opacity .2s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
*/
}

.effect-item:hover .image-effect:before {
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.effect-item:hover .image-effect:after {
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 1;
    filter: alpha(opacity=100);
}

.button a {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    background: #215A9B;
    border-left: 5px solid;
    border-right: 5px solid;
    border-color: #313131;
    border-radius: 0px;
    padding: 13px 27px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.button a i {
    margin-left: 5px;
}

.button a:hover {
    background: #215A9B;
    border-color: #313131;
    color: #313131;
}

.button-bn a {
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.button-bn i {
    margin-left: 3px;
}

.button-bn a:hover {
    color: #313131;
}

/* button-df */
.button-df a {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: #215A9B;
    border-radius: 0px;
    padding: 13px 27px;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    text-align: center;    
}

.button-df a i {
    margin-left: 5px;
}

.button-df a:hover {
    background: #313131;
    color: #fff;
}

.modal-footer .btn {
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.modal-footer .btn:hover {
    background: #313131;
    color: #fff;
}

.btn-subs {
    background: #313131 !important;
    border-color: #313131 !important;
}

/*
-------------------------------
Preloader
-------------------------------
*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

/*
-------------------------------
Header-Area
-------------------------------
*/

.header-area {
    width: 100%;
    height: 15px;
}

.header-area {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;


    z-index: 999;

    transition: all 0.3s;
}

/*
.header-area1 {
	background-color: rebeccapurple;
    position: fixed;
    width: 100%;
    z-index: 100;
    height: 25px;
}

.header-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-social li {
	position: relative;
	display: inline-block;
	margin-right: 30px;
}

.header-social li:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #e9e9e9;
	top: 0;
	left: -15px;
}

.header-social li:first-child:before {
	display: none;
}

.social-bar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-bar li {
	display: inline-block !important;
	margin-right: 15px !important;
}

.social-bar li:last-child {
	margin-right: 0 !important;
}

.social-bar li:before {
	display: none;
}

.social-bar li a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.social-bar li a:hover {
	color: #fff;
}

.language a {
	text-decoration: none;
	color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
}

.language a:hover {
	color: #fff;
}

.language i {
	margin-right: 7px;
}

.dropdown-menu a {
	text-decoration: none;
	color: #313131;
    font-family: 'Work Sans', sans-serif;
}

.dropdown-menu a:hover {
    background-color: transparent;
	color: #215A9B;
}

.header-info {
	text-align: right;
	float: right;
}

.header-info ul.first {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-info ul.first li {
	position: relative;
	display: inline-block;
	color: #fff;
	margin-left: 30px;
	font-size: 13px;
}

.header-info ul.first li:first-child {
	margin-left: 0;
}

.header-info ul.first li:before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	background-color: #e9e9e9;
	top: 0;
	right: -17px;
	display: none;
}


.header-info ul.first li i {
	margin-right: 7px;
	color: #fff;
}*/


/*
-------------------------------
Header Logo
-------------------------------
*/
.header-logo-area {
    top: 15px;
    position: relative;
    padding: 25px;
    width: 100%;
}

.header-logo-area .container {
    width: 100%;
    padding: 0;
}

.general-logo {
    background-image: linear-gradient(white, #EBECEC);
    padding: 30px 15px 15px 15px;
    width: 100%;
}

.general-logo img {
    width: 430px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .general-logo img {
        width: 80%;
    }


}


/*
-------------------------------
Logo and Menu
-------------------------------
*/


.main-menu-item {
    /*float: right;*/
    /*margin-right: 25px;*/

    margin-left: auto;
    margin-right: auto;
    display: table;
}

.mean-bar .main-menu-item {
    margin-right: 0;
}

ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.nav-menu li {
    position: relative;
    float: left;
}

ul.nav-menu li a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #313131;
    text-decoration: none;
    padding: 0 10px;
    min-height: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

ul.nav-menu li .form-control {
    font-size: 13px;
    font-family: 'GHEAMariamBld';
    font-weight: 700;
    text-transform: uppercase;
    color: #313131;
    text-decoration: none;
    /* padding: 0 16px; */
    min-height: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    /* -webkit-flex-direction: column; */
    /* flex-direction: column; */
    background-color: #ebecec00;
}

ul.nav-menu li ul {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    z-index: 999;
}

ul.nav-menu li ul > li {
    float: none;
    display: none;
    opacity: 0;
}

ul.nav-menu li ul li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'GHEAMariamBld';
    padding: 14px 20px;
    background: #215A9B;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    min-height: 49px;
}

ul.nav-menu li ul li ul {
    top: 0;
    left: 100%;
}

ul.nav-menu li:hover ul > li > ul > li > a {
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}

ul.nav-menu li:hover > a {
    color: #215A9B;
}

ul.nav-menu li ul li:hover > a {
    background: #f1f1f1;
    color: #215A9B;
    border-bottom: 1px solid #f1f1f1;
}

ul.nav-menu li:focus > ul > li,
ul.nav-menu li:hover > ul > li {
    display: block;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-animation: fade 0.4s forwards;
    animation: fade 0.4s forwards;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@-webkit-keyframes fade {
    0% {
        -webkit-transform: translateY(0px);;
    }
    100% {
        -webkit-transform: translateY(0px);;
    }
    0% {
        -webkit-transform: translateY(0px);;
    }
}

@keyframes fade {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
    0% {
        transform: translateY(0px);
    }
}

ul.nav-menu li ul li:first-child {
    animation-delay: 0.1s;
}

ul.nav-menu li ul li:nth-child(2) {
    animation-delay: 0.2s;
}

ul.nav-menu li ul li:nth-child(3) {
    animation-delay: 0.3s;
}

ul.nav-menu li ul li:nth-child(4) {
    animation-delay: 0.4s;
}

ul.nav-menu li ul li:nth-child(5) {
    animation-delay: 0.5s;
}

ul.nav-menu li ul li:nth-child(6) {
    animation-delay: 0.6s;
}

ul.nav-menu li ul li:nth-child(7) {
    animation-delay: 0.7s;
}

ul.nav-menu li ul li:nth-child(8) {
    animation-delay: 0.8s;
}

ul.nav-menu li ul li:nth-child(9) {
    animation-delay: 0.9s;
}

ul.nav-menu li ul li:nth-child(10) {
    animation-delay: 1s;
}

.mean-container .mean-nav ul {
    position: static;
    display: block;
}

.mean-container .mean-nav ul li a {
    background: #ebecec;
    border-left: 0;
    padding: 13px 5%;
    /*color:#215A9B;*/
    font-family: 'GHEAMariamBld';
}

.mean-container .mean-nav ul li:hover {
    background: none;
}

.mean-container .mean-nav ul li a:hover {
    background-color: #215a9b !important;
}

.mean-container .mean-nav ul li a.mean-expand {
    height: 24px !important;
}

#strickymenu.sticky {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    background-color: #EBECEC;
    border-bottom: 1px solid #ddd;
    z-index: 999;
    -webkit-transition: height 0.3s;
    transition: all 0.3s;
}

#strickymenu {
    background-color: #EBECEC;
}

.main-menu ul li a {
    color: #215A9B;
    font-family: 'GHEAMariamBld';
}

.main-menu a i {
    color: #215A9B;
}

ul.nav-menu li .form-control {
    color: #215A9B;
    background-color: #ebecec;
}

#strickymenu.sticky .logo {
    min-height: 70px;
}

#strickymenu.sticky .logo img {
    height: 56px;
}

#strickymenu.sticky ul.nav-menu li a {
    min-height: 70px;
}

#strickymenu.sticky ul.nav-menu li .form-control {
    min-height: 70px;
}

#strickymenu.sticky ul.nav-menu li ul li a {
    min-height: 49px;
}

/*

/*Search part*/
/*Start*/
.search-container * {
    box-sizing: border-box;
}

.search-container .openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

.search-container .openBtn:hover {
    background: #bbb;
}

.search-container .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
}

.search-container .overlay-content {
    position: relative;
    top: 350px !important;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.search-container .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.search-container .overlay .closebtn:hover {
    color: #ccc;
}

.search-container .overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    height: 60px;
    background: white;
    font-family: 'GHEAMariamReg';
}

.search-container .overlay input[type=text]:hover {
    background: #f1f1f1;
}

.search-container .overlay button {
    float: left;
    width: 20%;
    height: 60px;
    padding: 15px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    background-color: #215A9B;
    color: #ffffff;
}

.search-container .overlay button:hover {
    background: #124075;
}

/*End*/

/*Language icon*/
/*Start*/
.language-select-bar {

}

.language-select-bar select {
    border: 0;
}


/*End*/


/*-------------------------------
Search
-------------------------------

.searchbar .search-button {
	text-align: right;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	right: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.searchbar .search-button:active,
.searchbar .search-button:focus,
.searchbar .search-button:hover {
	cursor: pointer;
	color: #215A9B;
}

.searchbar .input-search {
	position: absolute;
	width: 50%;
	right: 0px;
	bottom: -66px;
	background: #215A9B;
	padding: 15px;
}

.input-search {
	z-index: 999;
}

.searchbar .input-search input {
	font-size: 15px;
	border: 1px solid #fff;
}

.searchbar .input-search .btn {
	cursor: pointer;
	background: #eef1f5;
}*/

/*
-------------------------------
Slider
-------------------------------
*/
.slider-item {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 380px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.bg-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
}

.text-animated h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    line-height: 1.3;
}

.text-animated h1 span {
    font-weight: 300;
}

.text-animated p {
    font-size: 16px;
    color: #fff;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.text-animated ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text-animated li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 15px;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.text-animated li a {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    background: #215A9B;
    color: #fff;
    border: 1px solid #215A9B;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px 40px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.text-animated li a:hover {
    background: #fff;
    color: #3268c1;
    border: 1px solid #fff;
}

.text-animated li:last-child a {
    background: #313131;
    color: #fff;
    border: 1px solid #313131;
}

.text-animated li:last-child a:hover {
    background: #fff;
    color: #313131;
    border: 1px solid #fff;
}

.slider-one .owl-nav {
    position: absolute;
    bottom: 5%;
    left: calc(50% - 60px);
    width: 120px;
}

.slider-one .owl-nav .owl-prev,
.slider-one .owl-nav .owl-next {
    font-size: 18px;
    text-align: center;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 41px;
    color: #fff;
    background: #215A9B;
    border: 2px solid #215A9B;
    margin: 0 6px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.slider-one .owl-nav .owl-prev:hover,
.slider-one .owl-nav .owl-next:hover {
    color: #3268c1;
    background: #fff;
    border: 2px solid #fff;
}

.slider-two .slider-text {
    text-align: center;
}

.slider-two .text-animated p {
    margin-left: 30px;
    margin-right: 30px;
}

.slider-two .owl-nav .owl-prev,
.slider-two .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 45px;
    height: 50px;
    line-height: 46px;
    top: 50%;
    margin-top: -25px;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.slider-two .owl-nav .owl-prev {
    left: 0;
    margin-left: 0;
}

.slider-two .owl-nav .owl-next {
    right: 0;
    margin-right: 0;
}

.slider-two .owl-nav .owl-prev:hover,
.slider-two .owl-nav .owl-next:hover {
    color: #3268c1;
    border: 2px solid #3268c1;
}


/*
-------------------------------
About
-------------------------------
*/
.headline-left {
    margin-bottom: 50px;
}

.headline-left h2 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.headline-left h2 span {
    font-size: 40px;
    display: block;
    font-weight: 300;
}

.progress-gallery.main-prog {
    margin-top: 50px;
}

.about-tab {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.about-tab:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #215A9B;
    opacity: 0.9;
}

.about-tab ul {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 10px;
    position: relative;
    z-index: 99;
}

.about-tab ul li {
    display: inline-block;
}

.about-tab ul li a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    margin-left: -5px;
}

.about-tab ul li a.active {
    background: #313131;
    color: #fff;
}

/*
-------------------------------
Video
-------------------------------
*/
.video-button {
    position: absolute;
    z-index: 10;
    top: 39%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    animation: video-pop 1500ms ease-out infinite;
}

.video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #215A9B;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes video-pop {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.progress-gallery.main-prog .bar-container .progress {
    height: 8px;
    border-radius: 0;
}

.modal.show .modal-dialog.hb-style {
    -webkit-transform: translate(0px, 25%);
    -o-transform: translate(0px, 25%);
    transform: translate(0px, 25%);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #215A9B;
    margin: 0;
}


/*
-------------------------------
About Detail
-------------------------------
*/
.about-page .headstyle h4 {
    margin-bottom: 20px;
}

.about-page p a {
    font-family: 'GHEAMariamReg';
    text-decoration: underline;
    font-weight: 700;
    font-size: 15px;
}

.about-page * {
    font-family: 'GHEAMariamReg';
}

blog-one-area * {
    font-family: 'GHEAMariamReg';
}

.about-menu {
    margin-top: 30px;
}

.about-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-menu ul li {
    position: relative;
    margin-bottom: 8px;
}

.about-menu ul li:last-child {
    margin-bottom: 0;
}

.about-menu ul li a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 8px;
    padding-left: 12px;
    position: relative;
}

.about-menu ul li a:before {
    position: absolute;
    content: '\f0da';
    font-family: fontawesome;
    top: 0;
    left: 0;
}

.about-menu ul li a.active {
    color: #215A9B;
    border-bottom: 1px solid #215A9B;
}

.company-detail {
    margin-top: 30px;
}

.about-carousel {
    margin-bottom: 30px;
}

.company-detail h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.company-detail p:last-child {
    margin: 0;
}

.history-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.history-list ul li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-bottom: 8px;
}

.history-list ul li span {
    font-size: 16px;
    font-weight: 700;
    color: #215A9B;
}

.about-carousel {
    border: 1px solid #e1e1e1;
}

.about-carousel .owl-nav .owl-prev,
.about-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 48px;
    top: 50%;
    margin-top: -25px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.about-carousel .owl-nav .owl-prev {
    left: 0;
}

.about-carousel .owl-nav .owl-next {
    right: 0;
}

.about-carousel .owl-nav .owl-prev:hover,
.about-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.mission-detail {
    margin-top: 15px;
}

.mission-item {
    text-align: center;
    margin-top: 15px;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    padding: 15px;
    min-height: 228px;
}

.mission-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.mission-item i {
    font-size: 40px;
    color: #215A9B;
    margin: 0 auto;
    margin-bottom: 20px;
}

.mission-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-item p {
    margin: 0;
}

.progress-gallery {
    margin-top: 15px;
}

.progress-gallery .bar-container {
    position: relative;
    font-size: 15px;
    margin-bottom: 15px;
}

.progress-gallery .bar-container p {
    font-weight: 500;
    margin-bottom: 5px;
}

.progress-gallery .bar-container .progress {
    height: 10px;
}

.progress-gallery .bar-container .progress .progress-bar-custom {
    background-color: #215A9B;
}

.progress-gallery .bar-container .percentage-show {
    font-weight: 500;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 9;
}

.progress-gallery .progress-bar {
    transition-duration: 3s;
}


/*
-------------------------------
Benefits
-------------------------------
*/
.benefits-photo img {
    max-width: 100%;
    height: auto;
}

.benefits-right h3 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.benefits-right h3 span {
    font-weight: 400;
}

.benefits-right p {
    margin-bottom: 20px;
}

.benefits-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-right ul li {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    margin-top: 5px;
    color: #215A9B;
}

.benefits-right ul li:before {
    position: absolute;
    content: '\F178';
    font-family: 'fontawesome';
    top: 0;
    left: 0;
    color: #215A9B;
}


/*
-------------------------------
Choose Items
-------------------------------
*/
.choose-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    position: relative;
    height: 300px;
}

.choose-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    opacity: 0.8;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.choose-item:hover:before {
    opacity: 1;
}

.choose-icon {
    position: relative;
    margin-bottom: 20px;
}

.choose-icon img {
    width: 60px;
    height: 60px;
}

.choose-icon i {
    font-size: 60px;
    color: #fff;
}

.choose-text {
    position: relative;
}

.choose-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.choose-text p {
    color: #d6ddff;
    margin: 0;
}


/*
-------------------------------
Featured
-------------------------------
*/
.feature-item {
    width: 100%;
    margin-top: 30px;
}

.feature-items {
    width: 100%;
    margin-top: 30px;
}

.feature-icon {
    vertical-align: top;
    display: table-cell;
    width: 70px;
    text-align: center;
    background-color: #063466;
}

.feature-icon img {
    width: 70px;
    height: 70px;
    background: #063466;
    border-right: 0px;
    border-radius: 50px 0px 0 50px;
    padding: 12px;
    box-shadow: 0 5px 16px rgb(0 0 0 / 20%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.feature-icon i {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: #215A9B;
    color: #fff;
    /*border: 1px solid #215A9B;*/
    /*border-right: 0px;*/
    /*border-radius: 50px 0px 0 50px;*/
    padding: 12px;
    /*box-shadow: 0 5px 16px rgba(0, 0, 0, .2);*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.feature-text {
    vertical-align: middle;
    display: table-cell;
    background: #fcfcfc;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-left: 10px;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-transform: none; /*uppercase;*/
}

.feature-text p {
    margin: 0;
}

.feature-two .feature-icon img {
    border-radius: 0;
    padding: 12px;
    box-shadow: none;
}

.feature-two .feature-icon i {
    border-radius: 0;
    padding: 12px;
    box-shadow: none;
}

.feature-item:hover .feature-icon img,
.feature-item:hover .feature-icon,
.feature-item:hover .feature-text {

}

.feature-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.feature-text h4 {
    color: #215A9B;
}

.feature-text a:hover {
    color: #215A9B;
}


/*
-------------------------------
Service
-------------------------------
*/
.services-item {
    border: 1px solid #f5f5f5;
    margin-top: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.services-item:hover {
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.2);
}

.services-photo {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 196px;
}

.services-text {
    background: #f5f5f5;
    padding: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.services-item:hover .services-text {
    background: #f9f9f9;
}

.services-text h3 a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: uppercase;
}

.services-text .button-bn a {
    font-size: 16px;
    font-weight: 700;
}

.services-text a:hover {
    color: #215A9B;
}

.services-text p {
    margin-bottom: 10px;
}


/*
-------------------------------
Single Service
-------------------------------
*/

.single-ser-carousel {
    margin-bottom: 30px;
}

.single-ser-carousel .owl-nav .owl-prev,
.single-ser-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 48px;
    top: 50%;
    margin-top: -25px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.single-ser-carousel .owl-nav .owl-prev {
    left: 0;
}

.single-ser-carousel .owl-nav .owl-next {
    right: 0;
}

.single-ser-carousel .owl-nav .owl-prev:hover,
.single-ser-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.service-sidebar {
    margin-top: 30px;
}

.service-sidebar-item {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.service-sidebar-item:first-child {
    margin-top: 0;
}

.service-sidebar-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-sidebar-item ul li {
    padding: 6px 0;
}

.service-sidebar-item ul li:first-child {
    padding-top: 0;
}

.service-sidebar-item ul li a {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-left: 10px;
}

.service-sidebar-item ul li a:before {
    position: absolute;
    content: '\F105';
    font-family: fontawesome;
    top: 0;
    left: 0;
    color: #313131;
}

.service-sidebar-item h3 {
    font-size: 26px;
    font-weight: 500;
}

.service-sidebar-item .form-group textarea {
    height: 110px;
}

.service-info {
    margin-top: 30px;
}

.service-info h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info p:last-child {
    margin: 0;
}


/*
-------------------------------
Counter
-------------------------------
*/
.counterup-area {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.bg-counterup {
    position: absolute;
    background-color: #215A9B;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.counter-item {
    position: relative;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    margin-top: 30px;
    padding: 15px;
    min-height: 225px;
}

.counter-item:before,
.counter-item:after {
    position: absolute;
    content: '';
    width: 50%;
    height: 5px;
    background: #fff;
    transition: all 0.4s;
}

.counter-item:before {
    top: 0;
    right: 0;
}

.counter-item:after {
    bottom: 0;
    left: 0;
}

.counter-item:hover:before {
    right: 50% !important;
}

.counter-item:hover:after {
    left: 50% !important;
}

.counter-item img {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.counter-item i {
    font-size: 56px;
    margin-bottom: 15px;
}

.counter-item h2.counter {
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    color: #fff;
}

.counter-item h4 {
    font-size: 20px;
    color: #fff;
    margin: 0;
}


/*
-------------------------------
Portfolio
-------------------------------
*/

.portfolio-menu {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 6px;
}

.portfolio-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-menu li {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    border-bottom: 1px solid #e1e1e1;
    color: #313131;
    padding: 5px 10px;
    padding-top: 0;
    margin: 0 10px;
    margin-top: 10px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-menu li:hover {
    color: #215A9B;
}

.portfolio-menu li.filtr-active {
    border-bottom: 1px solid #215A9B;
    color: #215A9B;
}

.portfolio-menu li.filtr-active:before {
    border-color: #215A9B transparent transparent;
    border-style: solid;
    position: absolute;
    content: "";
    border-width: 6px 6px 0;
    left: 50%;
    margin-left: -6px;
    bottom: -6px;
    text-decoration: none;
}

.portfolio-group {
    border: 1px solid #ededed;
    margin-top: 30px;
}

.portfolio-photo {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 196px;
    position: relative;
}

.portfolio-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.portfolio-group:hover .portfolio-bg {
    opacity: 0.7;
    transform: scale(1);
    visibility: visible;
}

.portfolio-table {
    display: table;
    width: 100%;
    height: 100%;
}

.portfolio-icon {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-icon a {
    position: relative;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    z-index: 99;
}

.portfolio-group:hover .portfolio-icon {
    opacity: 1;
    visibility: visible;
}

.portfolio-text {
    text-align: center;
    background: #f5f5f5;
    padding: 20px;
}

.portfolio-text h3 a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    margin-bottom: 8px;
}

.portfolio-text h3 a:hover {
    color: #215A9B;
}

.portfolio-text p {
    position: relative;
    font-size: 15px;
    border-top: 1px solid #ddd;
    margin: 0;
    padding-top: 8px;
}

.portfolio-text p:before {
    position: absolute;
    content: '';
    left: 0;
    top: -1px;
    width: 0%;
    height: 1px;
    background: #215A9B;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-group:hover .portfolio-text p:before {
    width: 100%;
}

.portfolio-text p span {
    margin-right: 8px;
}

.project-page .portfolio-menu {
    margin-top: 0;
    margin-bottom: 5px;
}

.project-page li {
    margin-top: 0;
    margin-bottom: 10px;
}


/*
-------------------------------
Portfolio Details
-------------------------------
*/

.portfolio-carousel {
    overflow: hidden;
    margin-top: 30px;
}

.portfolio-photo-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 370px;
    position: relative;
}

.portfolio-carousel .owl-nav .owl-prev,
.portfolio-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 48px;
    background: #215A9B;
    color: #fff;
    margin-top: -25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-carousel .owl-nav .owl-prev {
    left: 0;
}

.portfolio-carousel .owl-nav .owl-next {
    right: 0;
}

.portfolio-carousel .owl-nav .owl-prev:hover,
.portfolio-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.portfolio-details-text h3 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    margin-top: 30px;
}

.portfolio-details-text p {
    margin: 0;
    margin-top: 20px;
}

.portfolio-sidebar {
    margin-top: 30px;
}

.portfolio-details,
.portfolio-form {
    border: 1px solid #ddd;
    padding: 30px;
}

.portfolio-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portfolio-details ul li {
    font-size: 15px;
    font-weight: 400;
    color: #313131;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #dddddd;
}

.portfolio-details ul li span {
    font-weight: 600;
    color: #215A9B;
    margin-right: 5px;
}


.portfolio-form .form-group textarea {
    height: 110px;
}

.recent-project .portfolio-text {
    background: #fff;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.project-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.project-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}


/*
-------------------------------
Team
-------------------------------
*/

.team-item {
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 30px;
    position: relative;
}

.team-item img {
    width: 100%;
    height: auto;
}

.team-text {
    text-align: center;
    color: #fff;
    background: #215A9B;
    padding: 15px;
    position: relative;
    z-index: 99;
}

.team-text a {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-text p {
    margin: 0;
}

.team-social {
    text-align: center;
    position: relative;
    width: 100%;
    background: #eef1f5;
    padding: 10px 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social li {
    display: inline-block;
    margin-left: -5px;
}

.team-social li a {
    display: block;
    width: 35px;
    height: 33px;
    line-height: 33px;
    background: #f1f1f1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-social li a:hover {
    color: #fff;
    background: #215A9B;
    border-top: 1px solid #215A9B;
    border-bottom: 1px solid #215A9B;
}

.team-text a:hover{
    text-decoration: underline solid;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.team-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.team-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.team-social-two {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 85px;
    background: #eef1f5;
    padding: 10px 0;
}

.team-social-two ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-two ul li {
    display: inline-block;
    margin-left: -5px;
}

.team-social-two ul li a {
    display: block;
    width: 35px;
    height: 33px;
    line-height: 33px;
    background: #f1f1f1;
    border-left: 1px solid #fff;
    border-right: 1px solid #eaeaea;
    text-decoration: none;
}

.team-social-two ul li:first-child a {
    border-left: 1px solid #eaeaea;
}

.team-social-two li a:hover {
    color: #fff;
    background: #215A9B;
    border-left: 1px solid #215A9B;
    border-right: 1px solid #215A9B;
}


/*
-------------------------------
Team Details
-------------------------------
*/

.team-detail-photo {
    margin-top: 30px;
}

.team-detail-text {
    margin-top: 30px;
}

.team-detail-text h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 7px;
}

.team-detail-text p {
    margin-top: 20px;
}

.team-detail-text ul {
    list-style: none;
    margin: 0;
    margin-top: 15px;
    padding: 0;
}

.team-detail-text ul li {
    text-align: center;
    display: inline-block;
    margin-right: 7px;
    margin-top: 5px;
}

.team-detail-text ul li:last-child {
    margin-right: 0;
}

.team-detail-text ul li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
}

.team-detail-text ul li a:hover {
    background: #313131;
    color: #fff;
}

.team-info {
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-top: 30px;
}

.team-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-info ul li {
    padding-bottom: 5px;
}

.team-info ul li span {
    color: #215A9B;
    margin-right: 10px;
}

.team-skill {
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-top: 30px;
}

.team-skill ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-skill ul li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 5px;
}

.team-skill ul li:before {
    content: '\f14a';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    color: #215A9B;
}


/*
-------------------------------
PRICING TABLE
-------------------------------
*/

.price-item {
    text-align: center;
    background: #fff;
    padding: 15px;
    margin-top: 30px;
    transform: scale(1);
    -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.01);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.price-header {
    padding: 15px 0;
}

.price-header img {
    width: 94px;
    height: 94px;
    background: #f6f6f6;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.price-header i {
    font-size: 52px;
    width: 94px;
    height: 94px;
    line-height: 94px;
    background: #215A9B;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.price-item:hover .price-header img {
    background: #ececec;
}

.price-header h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 7px;
}

.price-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 7px;
}

.price-header p {
    margin: 0;
}

.price-body {
    padding: 15px 0;
}

.price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-body li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.price-body li:last-child {
    border-bottom: 0px;
}

.price-footer {
    padding: 15px 0;
}

.price-item:hover {
    transform: scale(1.05);
}

/* Price-Page */

.price-page .price-item {
    border: 1px solid #e1e1e1;
    background: #f5f5f5;
}


/*
-------------------------------
Testimonial
-------------------------------
*/

.testimonial-area {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.bg-testimonial {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    opacity: 0.8;
}

.testimonial-item {
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    padding: 30px;
}

.testimonial-description {
    margin: 0 auto;
}

.testimonial-description p {
    position: relative;
    padding-top: 15px;
    margin-top: 15px;
    margin-bottom: 0;
}

.testimonial-description p:before {
    position: absolute;
    content: '';
    width: 120px;
    height: 3px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background: #fff;
}

.testimonial-photo {
    width: 95px;
    height: 95px;
    margin: 0 auto;
}

.testimonial-photo img {
    width: 100%;
    height: auto;
}

.testimonial-name {
    margin-top: 15px;
}

.testimonial-name h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.testimonial-name p {
    font-size: 15px;
    margin: 0;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    background: #215A9B;
    border: 7px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 24px;
    height: 24px;
    background: #313131;
    border: 7px solid #fff;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 48px;
    background: #fff;
    color: #215A9B;
    margin-top: -25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #215A9B;
    background: #fff;
}

.testimonial-grid .testimonial-item,
.testimonial-two-carousel .testimonial-item {
    color: #313131;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    padding: 30px;
}

.testimonial-grid .testimonial-description,
.testimonial-two-carousel .testimonial-description {
    width: 100%;
}

.testimonial-grid .testimonial-description p,
.testimonial-two-carousel .testimonial-description p {
    padding-top: 15px;
    padding-bottom: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.testimonial-grid .testimonial-description p:before,
.testimonial-two-carousel .testimonial-description p:before {
    bottom: 100%;
    background: #215A9B;
}

.testimonial-grid .testimonial-name h4,
.testimonial-two-carousel .testimonial-name h4 {
    color: #313131;
}

.testimonial-two-carousel .owl-nav .owl-prev,
.testimonial-two-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 48px;
    background: #215A9B;
    color: #fff;
    margin-top: -25px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.testimonial-two-carousel .owl-nav .owl-prev {
    left: 0;
}

.testimonial-two-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-two-carousel .owl-nav .owl-prev:hover,
.testimonial-two-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

/*
-------------------------------
Booking
-------------------------------
*/

.booking-area {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.booking-area:before {
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    opacity: 0.8;
}


.bg-booking {
    position: absolute;
    background-color: #215A9B;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}


.booking-gallery {
    position: relative;
    padding-right: 30px;
    z-index: 998;
    margin-top: 30px
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #ddd !important;
}

.booking-form input:focus {
    border: 1px solid #fff;
}

.booking-form option {
    color: #333 !important;
}

.booking-form ::placeholder {
    color: #fff !important;
    opacity: 1;
}

.booking-form :-ms-input-placeholder {
    color: #fff !important;
}

.booking-form ::-ms-input-placeholder {
    color: #fff !important;
}

.booking-form textarea {
    height: 112px;
}

.form-group input {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    height: 40px;
    box-shadow: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
}

.form-group textarea {
    font-size: 15px;
}

.form-control:focus {
    font-family: 'GHEAMariamReg';
    border-color: #215A9B;
    box-shadow: none;
}

.form-group select.custom-select {
    font-size: 15px;
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 0px;
    color: #646769;
    padding: 0 8px;
}

.form-button .btn {
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    background: #215A9B;
    color: #fff;
    padding: 9px 18px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.form-button .btn:hover {
    color: #fff;
    background: #313131;
}

.form-button .btn2 {
    background: #313131;
}

.form-button .btn2:hover {
    background: #fff;
    color: #215A9B;
}


/*
-------------------------------
Faq
-------------------------------
*/

.faq-home {
    padding-left: 30px;
}

.faq-item {
    border: 0px;
    margin-bottom: 15px;
}

.faq-header button.faq-button {
    cursor: pointer;
    font-size: 16px !important;
    text-align: left;
    display: block;
    width: 100%;
    padding: 15px;
    font-weight: 500;
    text-decoration: none;
    background: #215A9B;
    color: #fff;
}

.faq-header button.faq-button.collapsed {
    background: #f6faff;
    color: #313131;
}

.faq-header button.faq-button.collapsed:hover {
    background: #215A9B;
    color: #215A9B;
}

.faq-header button.faq-button i {
    margin-right: 5px;
}

.faq-header button.faq-button.collapsed i {
    margin-right: 5px;
}

.faq-body {
    border: 1px solid #fff;
    border-top: 0;
    background: #fff;
    padding: 25px;
    line-height: 1.6;
}

.faq-home .faq-body {
    padding: 15px;
}

.faq-body ul {
    list-style: none;
    margin: 0;
    margin-top: 20px;
    padding: 0;
}

.faq-home .faq-body ul {
    margin-top: 10px;
}

.faq-body ul li {
    position: relative;
    margin-top: 5px;
    padding-left: 20px;
}

.faq-body ul li:before {
    position: absolute;
    content: '\f00c';
    font-family: 'fontawesome';
    top: 0;
    left: 0;
    color: #215A9B;
}


/*
-------------------------------
Blog
-------------------------------
*/
.n_video {
    border: 1px solid #215a9b;
    padding: 10px;
    background-color: #f7fafa;
}

.blog-item {
    margin-top: 30px;
}

.blog-image {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 196px;
}

.blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
    padding-right: 15px;
    padding-bottom: 5px;
    line-height: 0.8
}

@media (max-width: 767px) {
.blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -moz-line-clamp: 5;
    -ms-line-clamp:5;
    -o-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: normal;
    padding-right: 15px;
    padding-bottom: 5px;
    line-height: 0.8
}
}

span.category-text {
    background-color: #215a9b;
    color: white;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 4px 11px;
}

.blog-item h3 a {
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    margin-bottom: 8px;
}

.blog-item h3 a:hover {
    color: #215A9B;
}

.blog-item span {
    display: block;
    font-size: 15px;
}

.blog-item span i {
    margin-right: 5px;
    color: #215A9B;
}

.blog-item p {
    margin-top: 15px;
    margin-bottom: 5px;
}

.blog-author {
    overflow: hidden;
    background: #e6e6e6;
}

.blog-author ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 5px;
}

.blog-author li {
    display: inline-block;
}

.blog-author li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 10px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.blog-author li a i {
    margin-right: 5px;
    color: #215A9B;
}

.blog-author li a:hover {
    color: #215A9B;
}

.blog-author li.blog-button {
    background: #215A9B;
    float: right;
}

.blog-author li.blog-button a {
    background: #215A9B;
    padding: 15px 30px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.blog-author li.blog-button i {
    color: #fff;
    margin: 0;
}

.blog-author li.blog-button a:hover {
    background: #313131;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 16px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    color: #215A9B;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.blog-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.blog-carousel .fa:hover {
    color: rgb(3 40 82);
}

.blog-one-item {
    margin-top: 30px;
}

#news-area-title h4 {
    font-weight: bold;
}

.view_all_news_button_area {
    padding-top: 30px;
}

.btn-show-all-news {
    background-color: rgba(12, 129, 65, 0.55);
    color: white;
    font-weight: bold;
}

.btn-show-all-news:hover {
    background-color: #215A9B;
}

.blog-one-item img {
    width: 100% !important;
}

.blog-one-item li {
    font-family: GHEAMariamReg;
}

․photo_galleries_names li {
    font-family: GHEAMariamReg;
}

.blog-one-text {
    margin-top: 0px;
    background: #f5f5f5;
    padding: 20px;
}


.blog-one-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-one-text ul li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}

.blog-one-text ul li:last-child {
    margin-right: 0;
}

.blog-one-text ul li a {
    font-family: 'GHEAMariamReg';
    text-decoration: none;
}

.blog-one-text ul li i {
    color: #215A9B;
    margin-right: 5px;
}

.blog-one-text h3 {
    margin-bottom: 15px;
}

.blog-one-text h3 a {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.blog-one-text h3 a:hover {
    color: #215A9B;
}

.blog-one-text p {
    margin-bottom: 20px;
}

/*
-------------------------------
Sidebar
-------------------------------
*/
.sidebar {
    margin-top: 30px;
}

.sidebar-item {
    margin-top: 30px;
    border: 1px solid #ddd;
    padding: 30px;
}

.sidebar-item:first-child {
    margin-top: 0;
}

.sidebar-item input {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    height: 40px;
    border: 1px solid #e1e1e1;
}

.sidebar-item button {
    background: #215A9B;
    border: 1px solid #215A9B;
    color: #fff;
}

.sidebar-item button:hover {
    cursor: pointer;
}

.sidebar-item h3 {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.sidebar-item h3:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: 0;
}

.sidebar-item h3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: -5px;
}

.sidebar-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-item ul li {
    padding: 8px 0;
}

.sidebar-item ul li:first-child {
    padding-top: 0;
}

.sidebar-item ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding-left: 10px;
    font-family: 'Work Sans', sans-serif;
}

.sidebar-item ul li a:before {
    position: absolute;
    content: '\F105';
    font-family: fontawesome;
    top: 0;
    left: 0;
    color: #313131;
}

.sidebar-recent-item {
    overflow: hidden;
    display: table;
    margin-bottom: 25px;
}

.recent-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.recent-photo img {
    max-width: 100%;
    height: auto;
}

.recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
}

.recent-text a {
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}

.recent-text a:hover {
    color: #215A9B;
}

.rpwwt-post-date {
    position: relative;
    font-size: 13px;
    color: #b7b7b7;
    padding-left: 21px;
}

.rpwwt-post-date:before {
    position: absolute;
    content: '\f073';
    font-family: fontawesome;
    left: 0;
    top: 0;
}

.tagcloud a {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 8px 8px;
    margin-right: 7px;
    margin-bottom: 8px;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.tagcloud a:hover {
    color: #215A9B;
}


/*
-------------------------------
Pagination
-------------------------------
*/
.pagination a:hover {
    text-decoration: none;
}


/*
-------------------------------
Blog Single
-------------------------------
*/

.single-blog {
    margin-top: 30px;
}

.single-blog img {
    margin-bottom: 30px;
}

.single-blog h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.single-blog ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.single-blog ul li {
    display: inline-block;
    margin-top: 2px;
    margin-right: 15px;
    font-size: 14px;
    font-family: 'GHEAMariamReg';
}

.single-blog ul li i {
    color: #215A9B;
    margin-right: 5px;
}

.single-blog {
    font-family: 'GHEAMariamReg';
}

.single-blog ul li a {
    text-decoration: none;
    font-size: 14px;
    font-family: 'GHEAMariamReg';
}

.single-blog p {
    margin: 0;
    margin-top: 15px;
}

.comment-form span {
    font-size: 16px;
    color: #215A9B;
}

.comment-form textarea {
    height: 220px;
}

.comment-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: 1px solid #215A9B;
    background: #215A9B;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.comment-form .btn:hover {
    color: #fff;
    background: #313131;
    border: 1px solid #313131;
}

.comment-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.comment-list ul li:last-child {
    border: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.comment-list .comment-item {
    overflow: hidden;
    display: table;
    width: 100%;
}

.comment-list .thumb {
    display: table-cell;
    vertical-align: top;
    width: 80px;
}

.comment-list .com-text {
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
}

.comment-list .com-text h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.comment-list .com-text span.date {
    margin-right: 30px;
    font-size: 14px;
}

.comment-list .com-text span.date i {
    color: #215A9B;
    margin-right: 3px;
}

.comment-list .com-text span a {
    display: inline-block;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    padding: 5px 10px;
    background: #215A9B;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.comment-list .com-text span a:hover {
    background: #313131;
    color: #fff;
}

.comment-list .com-text p {
    margin-top: 12px;
    margin-bottom: 0;
}

.comment-list ul ul.children {
    margin-top: 20px;
    margin-left: 40px;
}

.comment-list ul ul.children li {
    border: 0;
    padding-bottom: 0px;
    margin-bottom: 0px;
    margin-top: 40px;
}


/*
-------------------------------
Brand
-------------------------------
*/

.brand-item img {
    max-width: 100%;
    height: auto;
}


/*
-------------------------------
Call To Action
-------------------------------
*/

.call-us {
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 55px;
    padding-bottom: 70px;
}

.call-us:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #215A9B;
    opacity: 0.8;
}

.call-text {
    margin-top: 33px;
}

.call-text h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.call-us .button {
    margin-top: 15px;
}

.call-us .button a {
    font-size: 18px;
    text-transform: uppercase;
    background: #313131;
    border: 0;
    padding: 17px 30px;
}

.call-us .button a:hover {
    color: #313131;
    background: #fff;
}

/*
-------------------------------
Footer
-------------------------------
*/

.footer-area {
    position: relative;
}

.footer-item {
    color: #313131;
    margin-top: 30px;
}

.footer-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-item ul li {
    display: block;
    margin-bottom: 12px;
}

.footer-item ul li:last-child {
    margin-bottom: 0;
}

.footer-item ul li a {
    position: relative;
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    color: #313131;
    padding-left: 12px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

/*
.footer-item ul li a:before {
    position: absolute;
    content: '\f0da';
    font-family: fontawesome;
    top: 0;
    left: 0;
    color: #313131;
}
*/

.footer-item ul li a:hover {
    color: #215A9B;
}

.footer-item p,
.footer-item a {
    text-decoration: none;
    color: #313131;
}

.footer-item h3 {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #313131;
    padding-bottom: 12px;
    margin-bottom: 36px;
}

.footer-item h3:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: 0;
}

.footer-item h3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: -5px;
}

.footer-item .input-group {
    margin-top: 25px;
}

.footer-address-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.footer-address-item .icon {
    position: absolute;
    top: -2px;
    left: 0;
    font-size: 17px;
}

.footer-address-item .text {
    font-size: 15px;
}

.footer-item ul.footer-social {
    margin-top: 25px;
}

.footer-item ul.footer-social li {
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
    padding: 0;
}

.footer-item ul.footer-social li a:before {
    display: none;
}

.footer-item ul.footer-social li a {
    text-align: center;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    background: #215A9B;
    border: 1px solid #215A9B;
    border-radius: 1px;
    padding: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.footer-item ul.footer-social li a:hover {
    background: #313131;
    border: 1px solid #313131;
}

.footer-item .input-group .btn {
    font-size: 16px !important;
}

.footer-recent-item {
    display: table;
    margin-bottom: 15px;
}

.footer-recent-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 90px;
    padding-right: 8px;
}

.footer-recent-photo img {
    max-width: 100%;
    height: auto;
}

.footer-recent-text {
    vertical-align: top;
    display: table-cell;
    padding-left: 5px;
}

.footer-recent-text a {
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
}

.footer-recent-text a:hover {
    color: #215A9B;
}

.footer-post-date {
    position: relative;
    font-size: 13px;
    color: #313131;
    padding-left: 21px;
}

.footer-post-date:before {
    position: absolute;
    content: '\f073';
    font-family: fontawesome;
    top: 0;
    left: 0;
}

.footer-item .form-control {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    height: 48px;
    border: 2px solid #215A9B;
    z-index: 3 !important;
}

.footer-item .btn {
    cursor: pointer;
    font-size: 20px;
    border: 2px solid #215A9B;
    background: #215A9B;
    color: #fff;
    z-index: 3 !important;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.footer-project {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

/*
-------------------------------
Footer Bottom
-------------------------------
*/

.footer-bottom {
    text-align: center;
}

.footer-bottom * {
    font-family: "GHEAMariamReg";
}

.footer-menu {
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 15px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    display: inline-block;
    margin: 0px 10px;
    padding-bottom: 15px;
}

.footer-menu ul li a {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    color: #727272;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-menu ul li a:hover {
    color: #215a9b;
}

.copy-text {
    padding-top: 0px;
}

.copy-text p {
    font-size: 15px;
    color: #d3d3d3;
    margin: 0;
}

.copy-text a {
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
}

/*Middle footer*/
#middle-footer-left-part .circle .fa {
    background-color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    color: #215A9B;
}

.footer-area.pt_60.pb_90 {
    background-color: #063466;
}

#middle-footer-left-part p {
    font-family: "GHEAMariamReg";
    color: #B2B3B3;
}

#middle-footer-center-part * {
    font-family: "GHEAMariamReg";
    color: #B2B3B3;
}

#bottom-footer-center-part * {
    font-family: "GHEAMariamReg";
    color: #B2B3B3;
}

/*
-------------------------------
Banner
-------------------------------
*/

.banner-slider {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 245px;
    position: relative;
}

.bannder-table {
    display: table;
    width: 100%;
    height: 100%;
}

.banner-text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.banner-text h1 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/*NEw footer*/

/*Top footer*/

.top-footer-parent {
    background-image: linear-gradient(#ffffff, #ebecec);
    box-shadow: 0 -9px 12px 0px rgba(0,0,0,0.11);
}

.top-footer-left-logo img {
    padding: 0px 0px 20px 0px;
}

.top-footer-right-part #phone_logo_and_numbers {
    padding: 20px 10px 20px 20px;
}

.phone_logo {
    float: right;
    padding: 0px 0px 0px 20px;
    color: #215A9B;
    /*width: 100%;*/
}

.phone_numbers {
    float: right;
}

.phone_numbers * {
    font-size: unset;
    font-family: "GHEAMariamReg";
    color: #215A9B;
}

.phone_numbers #red_line_text {
    float: right;
}


/*Bottom footer*/

.bottom_footer_logo img {
    width: 70px;
    padding-bottom: 30px;
}


/*
-------------------------------
Scroll To Top
-------------------------------
*/

.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 46px;
    bottom: 20px;
    right: 20px;
    background-color: #215A9B;
    color: #fff;
    opacity: 0.7;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll-top:hover {
    opacity: 1;
    color: #fff;
    background: #215a9b;
}

/*
-------------------------------
Event
-------------------------------
*/

.event-item {
    border: 1px solid #ddd;
    background: #f1f1f1;
    padding: 30px;
    padding-top: 15px;
    margin-top: 30px;
}

.event-photo {
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 80px;
    margin-top: 15px;
}

.event-body {
    margin-top: 15px;
}

.event-header {
    overflow: hidden;
    margin-bottom: 15px;
    display: table;
    width: 100%;
}

.event-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li.event-header-left {
    float: left;
    vertical-align: top;
    display: table-cell;
    width: 100%;
    padding-right: 10px;
}

li.event-header-left h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

li.event-header-left span {
    margin-right: 15px;
}

li.event-header-left span:last-child {
    margin-right: 0;
}

li.event-header-left i {
    color: #215A9B;
    margin-right: 4px;
}

li.event-header-right {
    float: right;
    vertical-align: top;
    display: table-cell;
}

li.event-header-right h5 {
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 2px;
}

li.event-header-right span {
    color: #215A9B;
    font-size: 26px;
    font-weight: 700;
}

li.event-header-right p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.event-content .button a {
    padding: 12px 20px;
}

/*
-------------------------------
Event Detail
-------------------------------
*/

.event-detail-content {
    margin-top: 30px;
}

.event-contact-item {
    text-align: center;
    background: #215A9B;
    color: #fff;
    padding: 30px 5px;
    margin-top: 30px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.event-contact-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    border: 1px solid #fff;
    margin: 0 auto;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.event-contact-icon img {
    width: 25px;
    height: 25px;
}

.event-contact-icon i {
    font-size: 18px;
}

.event-contact-text {
    margin-top: 20px;
}

.event-contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.event-contact-text p {
    margin: 0;
}

.event-contact-item:hover {
    background: #f5f5f5;
    color: #313131;
}

.event-contact-item:hover .event-contact-icon {
    color: #215A9B;
    border: 1px solid #215A9B;
}

.event-contact-item:hover .event-contact-text h4 {
    color: #313131;
}

.event-carousel {
    border: 1px solid #e1e1e1;
}

.event-carousel .owl-nav .owl-prev,
.event-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 48px;
    top: 50%;
    margin-top: -25px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.event-carousel .owl-nav .owl-prev {
    left: 0;
}

.event-carousel .owl-nav .owl-next {
    right: 0;
}

.event-carousel .owl-nav .owl-prev:hover,
.event-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.event-detail-text {
    margin-top: 30px;
}

.event-detail-text h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.event-map {
    margin-top: 30px;
}

.event-map iframe {
    width: 100%;
    height: 350px;
}


/*
-------------------------------
Gallery
-------------------------------
*/

.gallery-menu {
    text-align: center;
    margin-bottom: 5px;
}

.gallery-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery-menu li {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    border-bottom: 1px solid #e1e1e1;
    color: #313131;
    padding: 5px 10px;
    padding-top: 0;
    margin: 0 10px 10px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-menu li:hover {
    color: #215A9B;
}

.gallery-menu li.filtr-active {
    border-bottom: 1px solid #215A9B;
    color: #215A9B;
}

.gallery-menu li.filtr-active:before {
    border-color: #215A9B transparent transparent;
    border-style: solid;
    position: absolute;
    content: "";
    border-width: 6px 6px 0;
    left: 50%;
    margin-left: -6px;
    bottom: -6px;
    text-decoration: none;
}

.gallery-group {
    border: 1px solid #ededed;
    margin-top: 30px;
}

.gallery-photo {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 196px;
    position: relative;
}

.gallery-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

.gallery-group:hover .gallery-bg {
    opacity: 0.7;
    transform: scale(1);
    visibility: visible;
}

.gallery-table {
    display: table;
    width: 100%;
    height: 100%;
}

.gallery-icon {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-icon a {
    position: relative;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    z-index: 99;
}

.gallery-group:hover .gallery-icon {
    opacity: 1;
    visibility: visible;
}

.gallery-text {
    text-align: center;
    background: #f5f5f5;
    padding: 15px;
}

.gallery-text a {
    color: #215A9B;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.gallery-text a:hover {
    color: #215A9B;
}

.gallery-text .photo-name {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gallery-text p {
    position: relative;
    font-size: 15px;
    border-top: 1px solid #e1e1e1;
    margin: 0;
    padding-top: 8px;
}

.gallery-text p:before {
    position: absolute;
    content: '';
    left: 0;
    top: -1px;
    width: 0%;
    height: 1px;
    background: #215A9B;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.gallery-group:hover .gallery-text p:before {
    width: 100%;
}

.gallery-text span {
    margin-right: 3px;
}

/*
-------------------------------
Shop
-------------------------------
*/

.product-item {
    text-align: center;
    border: 1px solid #e1e1e1;
    margin-top: 30px;
}

.product-photo {
    overflow: hidden;
    position: relative;
}

.product-cart {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0px;
    background: #215A9B;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.product-item:hover .product-cart {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.product-cart ul {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-cart ul li {
    float: left;
    width: 50%;
}

.product-cart ul li:first-child {
    border-right: 1px solid #ddd;
}

.product-cart ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
    background: #215A9B;
    color: #fff;
    padding: 12px 5px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.product-cart ul li a:hover {
    color: #fff;
    background: #313131;
}

.product-cart ul li i {
    margin-right: 5px;
}

.product-text {
    border-top: 1px solid #e1e1e1;
    padding: 15px 10px;
}

.product-text h3 a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    text-transform: uppercase;
}

.product-text h3 a:hover {
    color: #215A9B;
}

.product-text h4 {
    font-size: 17px;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 12px;
}

.product-text del {
    color: #313131;
    font-size: 17px;
    font-weight: 400;
    margin-left: 8px;
}

.product-star i {
    color: #215A9B;
}

.shop-sidebar {
    margin-top: 30px;
    border: 1px solid #e1e1e1;
    padding: 30px;
}

.shop-widget {
    margin-top: 30px;
}

.shop-widget:first-child {
    margin-top: 0;
}

.shop-widget input {
    font-size: 15px;
    height: 40px;
    border: 1px solid #e1e1e1;
}

.shop-widget button {
    background: #215A9B;
    color: #fff;
    border: 1px solid #215A9B;
}

.shop-widget button:hover {
    cursor: pointer;
}

.shop-widget h4 {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.shop-widget h4:before {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: 0;
}

.shop-widget h4:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #215A9B;
    left: 0;
    bottom: -5px;
}

.price-range p {
    font-size: 15px;
    margin-bottom: 15px;
}

.price-range span {
    font-weight: 600;
}

.shop-widget .ui-widget.ui-widget-content {
    border: 1px solid #e1e1e1;
}

.shop-widget .ui-widget-header {
    background: #215A9B;
}

.shop-widget .ui-state-default,
.shop-widget .ui-widget-content .ui-state-default {
    border: 1px solid #e1e1e1;
}

.shop-widget .ui-state-active,
.shop-widget .ui-widget-content .ui-state-active {
    background: #215A9B;
    border: 1px solid #215A9B;
}

.shop-widget .button-df {
    margin-top: 25px;
}

.shop-widget .button-df a {
    padding: 10px 30px;
}

.product-rated-item {
    display: table;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.product-rated-item:last-child {
    border-bottom: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-rated-photo {
    vertical-align: top;
    display: table-cell;
    float: left;
    width: 105px;
    padding-right: 8px;
}

.product-rated-photo img {
    max-width: 100%;
    height: auto;
}

.product-rated-text {
    vertical-align: top;
    display: table-cell;
    width: 100%;
    padding-left: 5px;
}

.product-rated-text a {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
    color: #313131;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-rated-text a:hover {
    color: #215A9B;
}

.product-rated-text h5 {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 5px;
}

.product-rated-text del {
    margin-left: 8px;
}

.shop-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-widget ul li {
    padding: 10px 0;
    border-top: 1px solid #e1e1e1;
}

.shop-widget ul li:first-child {
    border-top: 0px;
}

.shop-widget ul li a {
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding-left: 10px;
}

.shop-widget ul li span {
    margin-left: 15px;
}

.shop-widget ul li a:before {
    position: absolute;
    content: '\F105';
    font-family: fontawesome;
    top: 0;
    left: 0;
    color: #313131;
}

/*
-------------------------------
Product Detail
-------------------------------
*/

.product-photo-item {
    padding: 30px;
}

.product-photo-item img {
    max-height: 370px;
    width: auto !important;
    margin: 0 auto;
}

.review-table h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.review-table .table thead th,
.review-table .table tbody td {
    text-align: left;
}

.review-form h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.review-form label {
    font-size: 15px;
    font-weight: 600;
}

.review-form .review-star {
}

.review-form textarea {
    height: 220px;
}

.review-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: 1px solid #215A9B;
    background: #215A9B;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.review-form .btn:hover {
    color: #fff;
    background: #313131;
    border: 1px solid #313131;
}

.product-carousel {
    border: 1px solid #e1e1e1;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 50px;
    line-height: 48px;
    top: 50%;
    margin-top: -25px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.product-carousel .owl-nav .owl-prev {
    left: 0;
}

.product-carousel .owl-nav .owl-next {
    right: 0;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

.shop-detail-text {
    margin-top: 30px;
}

.shop-detail-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.shop-detail-text h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 15px;
}

.shop-detail-text h4 del {
    font-size: 20px;
    font-weight: 400;
    margin-left: 8px;
    color: red;
}

.shop-detail-text p {
    margin: 0;
    margin-top: 15px;
}

.shop-detail-choose {
    margin-top: 15px;
}

.shop-detail-cart {
    margin-top: 0px;
}

.shop-detail-cart ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-detail-cart ul li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 15px;
}

.shop-detail-cart ul li a.cart-btn {
    font-weight: 600;
    display: inline-block;
    background: #215A9B;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.shop-detail-cart ul li a.cart-btn:hover {
    color: #fff;
    background: #313131;
}

.shop-detail-cart ul li i {
    margin-right: 5px;
}

.shop-detail-cart ul li .ui-spinner {
    width: 125px;
    border: 1px solid #215A9B;
    border-radius: 0;
    margin-bottom: 1px;
}

.shop-detail-cart ul li input {
    font-size: 16px;
    height: 50px;
    text-indent: 30px;
    margin: 0;
    padding: 0;
}

.shop-detail-cart ul li .ui-button {
    cursor: pointer;
    padding: 0 25px;
    border-left: 1px solid #215A9B;
    border-radius: 0;
    background: #215A9B;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.shop-detail-cart ul li .ui-button:hover {
    background: #313131;
}

.shop-detail-cart ul li .ui-button .ui-icon {
    background-image: url("../images/ui-icons_ffffff_256x240.png");
}

.shop-detail-cat {
    margin-top: 20px;
}

.shop-detail-cat p {
    margin: 0;
}

.shop-detail-cat span {
    font-weight: 600;
}

.shop-detail-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-detail-tab ul li {
    display: inline-block;
    margin-top: 15px;
    margin-right: 15px;
}

.shop-detail-tab ul li:last-child {
    margin-right: 0;
}

.shop-detail-tab ul li a {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #313131;
    padding: 12px 25px;
    text-decoration: none;
}

.shop-detail-tab ul li a.active {
    color: #fff;
    background: #215A9B;
}

.shop-detail-content {
    margin-top: 30px;
}

.owlproduct-carousel .owl-nav .owl-prev,
.owlproduct-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.owlproduct-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.owlproduct-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.owlproduct-carousel .owl-nav .owl-prev:hover,
.owlproduct-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: #313131;
}

/*
-------------------------------
Shopping Cart
-------------------------------
*/

.cart-table .table {
    width: 100%;
}

.table {
    margin-bottom: 0;
}

.table thead th,
.table tbody td {
    vertical-align: middle;
    text-align: center;
    border: 1px solid #e1e1e1;
}

.cart-table .table thead th {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #215A9B;
    color: #fff;
    padding: 15px 5px;
}

.cart-table th.c-photo {
    min-width: 160px;
    width: 160px;
}

.cart-table th.c-name {
    min-width: 180px;
}

.cart-table th.c-qnt {
    min-width: 120px;
}

.cart-table th.c-price,
.cart-table th.c-total {
    min-width: 90px;
}

.cart-table .table tbody td {
    font-size: 15px;
    color: #313131;
}

.cart-table .table tbody td span {
    font-weight: 600;
}

.cart-table .table tbody td a {
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    color: #313131;
    text-decoration: none;
}

.cart-table .table tbody td a:hover {
    color: #215A9B;
}

.cart-table .table tbody td img {
    max-width: 100%;
    height: auto;
}

.cart-table .table tbody td input {
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.cart-table .table tbody td input:focus {
    border-color: #215A9B;
}

.cart-action {
    margin-top: 25px;
}

.update-cart {
    margin-top: 15px;
}

.update-cart a {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 15px 30px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.update-cart a:hover {
    background: #313131;
    color: #fff;
}

.coupon-cart {
    font-size: 15px;
    height: 51px;
    margin-top: 15px;
}

.coupon-cart input {
    font-size: 15px;
    border-radius: 0;
}

.coupon-cart .btn {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #215A9B;
    border-radius: 0;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.coupon-cart .btn:hover {
    border: 1px solid #313131;
    background: #313131;
    color: #fff;
}

.total-cart {
    margin-top: 40px;
}

.total-cart td {
    text-align: left !important;
    padding: 20px;
}

.total-cart td.t-bold {
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
}

.proceed-cart {
    margin-top: 15px;
}

.proceed-cart a {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 20px 40px;
    background: #215A9B;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.proceed-cart a:hover {
    background: #313131;
    color: #fff;
}

/*
-------------------------------
Checkout
-------------------------------
*/

.checkout-form {
    margin-top: 30px;
}

.checkout-form textarea {
    height: 120px;
}

.checkout-table {
    margin-top: 30px;
}

.checkout-table table th,
.checkout-table table td {
    text-align: left;
}

.checkout-table table th {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    color: #fff;
    background: #215A9B;
}

.checkout-table table td.t-bold {
    font-size: 15px;
    font-weight: 600;
    color: #313131;
}

.payment-select {
    text-align: center;
    margin-top: 30px;
}

.payment-select.headstyle h4:before {
    width: 118px;
    left: 50%;
    margin-left: -59px;
}

.payment-select-group .form-check-input:only-child {
    position: absolute;
}

.payment-order-button {
    margin-top: 30px;
}

.payment-order-button a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #215A9B;
    padding: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.payment-order-button a:hover {
    color: #fff;
    background: #313131;
}


/*
-------------------------------
Contact
-------------------------------
*/

.contact-item {
    text-align: center;
    border: 1px solid #e1e1e1;
    min-height: 180px;
    position: relative;
    background: #fafafa;
    padding: 30px 15px;
    padding-top: 60px;
    margin-top: 71px;
}

.contact-icon {
    position: absolute;
    width: 82px;
    height: 82px;
    line-height: 92px;
    top: 0px;
    left: 50%;
    background: #fafafa;
    color: #215A9B;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    margin-top: -41px;
    transform: translate(-50%, 0%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-icon i {
    font-size: 34px;
}

.contact-item:hover .contact-icon {
    background: #215A9B;
    color: #fafafa;
    border: 1px solid #215A9B;
}

.contact-text {
    margin-top: 0px;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
}

.contact-form textarea {
    height: 190px
}

.contact-form .btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border: 1px solid #215A9B;
    background: #215A9B;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form .btn:hover {
    color: #fff;
    background: #313131;
    border: 1px solid #313131;
}

.map-area iframe {
    width: 100%;
    height: 450px;
    margin-bottom: -5px;
}

/*
-------------------------------
404 Page
-------------------------------
*/

.error-page {
    text-align: center;
}

.error-head {
    display: inline-block;
    background: #f1f1f1;
    border: 1px solid #e1e1e1;
    padding: 30px;
}

.error-head h1 {
    font-size: 70px;
    font-weight: 700;
    color: #215A9B;
    margin-bottom: 2px;
}

.error-head h1 span {
    color: #313131;
}

.error-head h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.error-body {
    margin-top: 30px;
}

.error-body h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.error-body p {
    margin: 0;
}

/*
-------------------------------
Under Construction Page
-------------------------------
*/

.under-construction {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}

.under-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #215A9B;
    opacity: 0.9;
}

.under-text {
    text-align: center;
    position: relative;
    z-index: 99;
    color: #fff;
}

.under-text h1 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.under-text h1 span {
    color: #fff;
}

.under-text p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 25px;
}

.under-text .form-control {
    font-size: 15px;
    height: 48px;
    border: 2px solid #fff;
    z-index: 3 !important;
}

.under-text .btn {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid #215A9B;
    background: #215A9B;
    color: #fff;
    z-index: 3 !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#navigator-toolbox::after {
    content: "";
    display: -moz-box;
    -moz-box-ordinal-group: 101; /* tabs toolbar is 100 */
    height: 1px;
    background-color: ThreeDShadow;
}


.error-class {
    background: #ca6464;
    color: #fff;
    padding-top: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
}

.success-class {
    background: #68a554;
    color: #fff;
    padding-top: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
}


/* Language Button */
.lang-right {
    float: left;
    border-bottom: 0;
    margin: 0;
    padding: 0;
    padding-left: 35px;
}

.lang-right select {
    padding: 0;
    font-size: 14px;
}

.lang-right select.form-control:not([size]):not([multiple]) {
    height: 26px !important;
    background: transparent;
    color: #fff !important;
    border: 0;
}

.lang-right select option {
    color: #000 !important;
    padding: 5px 10px !important;
}

select.form-control {
    padding: 0px;
    min-height: 50px;
    font-size: 15px;
    font-weight: 300;
}


/* ------------------------------------------- */
/* toastr */
/* ------------------------------------------- */
.toast {
    opacity: 1 !important;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    border-radius: 0 !important;
}

#success_toastr {
    background: green;
}

#error_toastr {
    background: red;
}

#warning_toastr {
    background: coral;
}

#info_toastr {
    background: cornflowerblue;
}

#question_toastr {
    background: grey;
}


/*Pages detail*/
/*Start detail*/
#page_heading_text {
    padding-top: 30px;
}

#page_heading_text h5 {
    font-weight: bold;
    font-family: 'GHEAMariamBld';
    color: #215A9B;
}

.news_title {
    padding-bottom: 20px;
}

.news_title h3 {
    font-weight: bold;
    font-family: 'GHEAMariamBld';
    color: #215A9B;
}


.text_empty_sidebar {
    padding-bottom: 20px;
    text-align: center;
}

.text_empty_sidebar h3 {
    font-weight: bold;
    font-family: 'GHEAMariamBld';
    color: #215A9B;
}


/*End detail*/


/*Secondary menu start*/

.se-carousel .owl-nav .owl-prev,
.se-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.se-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.se-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.se-carousel .owl-nav .owl-prev:hover,
.se-carousel .owl-nav .owl-next:hover {
    color: #fff;
}


.se-item {
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.se-item img {
    width: 100%;
    height: auto;
}

.se-text {
    text-align: center;
    color: #fff;
    background: #215A9B;
    padding: 15px;
    position: relative;
    z-index: 99;
}

.se-text a {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.se-text p {
    margin: 0;
}

.se-social {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
    background: #eef1f5;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.se-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.se-social li {
    display: inline-block;
    margin-left: -5px;
}

.se-social li a {
    display: block;
    width: 35px;
    height: 33px;
    line-height: 33px;
    background: #f1f1f1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.se-social li a:hover {
    color: #fff;
    background: #215A9B;
    border-top: 1px solid #215A9B;
    border-bottom: 1px solid #215A9B;
}

.se-item:hover .se-social {
    bottom: 88px;
    visibility: visible;
    opacity: 1;
}

.se-carousel .owl-nav .owl-prev,
.se-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.se-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.se-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}


.se-social-two ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.se-social-two ul li {
    display: inline-block;
    margin-left: -5px;
}

.se-social-two ul li a {
    display: block;
    width: 35px;
    height: 33px;
    line-height: 33px;
    background: #f1f1f1;
    border-left: 1px solid #fff;
    border-right: 1px solid #eaeaea;
    text-decoration: none;
}

.se-photo .item img {
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
}


.se-title, .se-photo {
    padding: 10px;
    text-align: center;
}

.se-title, .se-photo {
    padding-bottom: 30px;
}

.se-title {
    color: #215A9B;
    font-weight: bold;
}

.se-photo {
    padding-top: 30px;
}

.owl-item {
    padding: 0px;
}

.se-item {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #ffffff;
}

.se-carousel .fa {
    color: #215A9B;
}

.se-carousel .fa:hover {
    color: rgba(12, 129, 65, 0.55);
}

.se-carousel a {
    text-decoration: none;
    color: #215A9B;
}

.se-carousel a:hover {
    color: rgba(12, 129, 65, 0.55);
}

/*Secondary menu end*/


/*Big banner menu start*/

.big-banner-menu-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    position: relative;
    /*
    height: 350px;
    */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.big-banner-menu-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
    background: -webkit-linear-gradient(bottom, rgb(0 0 0) 0%, transparent 80%, transparent 99%);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 99%);
    display: inline-flex;
}

.big-banner-menu-item:hover:before {
    opacity: 1;
}

.big-banner-menu-item-text {
    position: relative;
}

.big-banner-menu-item-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.big-banner-menu-item-text a {
    text-decoration: none;
}

.big-banner-menu-item-text p {
    color: #d6ddff;
    margin: 0;
}

/*Big banner menu end*/

/*Photo and video gallary for home page start*/
.photo-video-gallary-item {
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 30px;
    position: relative;
}

.photo-video-gallary-item img {
    width: 100%;
    height: auto;
}


.photo-video-gallary-carousel .owl-nav .owl-prev,
.photo-video-gallary-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.photo-video-gallary-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.photo-video-gallary-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}

.photo-video-gallary-carousel .owl-nav .owl-prev:hover,
.photo-video-gallary-carousel .owl-nav .owl-next:hover {
    color: rgb(3 40 82);
}


.photo-video-gallary-carousel .owl-nav .owl-prev,
.photo-video-gallary-carousel .owl-nav .owl-next {
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 38px;
    top: 0;
    margin-top: -20px;
    color: #215A9B;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.photo-video-gallary-carousel .owl-nav .owl-prev {
    right: 0;
    margin-right: 40px;
}

.photo-video-gallary-carousel .owl-nav .owl-next {
    right: 0;
    margin-right: 0px;
}


/*Photo and video gallary for home page end*/

.home_page_area_title {
    text-decoration: none;
}

.home_page_area_title:hover {
    color: #215A9B;
}

.home_page_area_title h4:hover {
    color: #215A9B;
}

/*Nested pages tables style start*/
/*Table start*/
table {
    border-collapse: collapse;
    width: 100%;
}

table td, table th {
    border: 2px solid #ddd;
    padding: 4px;
    min-width: 100px;
    font-size: 12px;
}

table tr:nth-child(even) {
    background-color: #215a9b1c;
}



table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #215A9B;;
    color: white;
}



/*Nested pages tables style start*/

/*Import-export area start*/

.import-export-area-menu {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 6px;
}

.import-export-area-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.import-export-area-menu li {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    display: inline-block;
    border-bottom: 1px solid #e1e1e1;
    color: #c3c3c3;
    padding: 5px 10px;
    padding-top: 0;
    margin: 0 10px;
    margin-top: 10px;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.import-export-area-menu li:hover {
    color: #215A9B;
}

.import-export-area-menu li.filtr1-active {
    border-bottom: 1px solid #215A9B;
    color: #215A9B;
}

.import-export-area-menu li.filtr1-active:before {
    border-color: #215A9B transparent transparent;
    border-style: solid;
    position: absolute;
    content: "";
    border-width: 6px 6px 0;
    left: 50%;
    margin-left: -6px;
    bottom: -6px;
    text-decoration: none;
}

.project-page .import-export-area-menu {
    margin-top: 0;
    margin-bottom: 5px;
}

/*Table start*/
#import-table {
    border-collapse: collapse;
    width: 100%;
}

#import-table td, #import-table th {
    border: none;
    padding: 8px;
}

#import-table tr:nth-child(even) {
    background-color: #215a9b1c;
}



#import-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #215A9B;;
    color: white;
}

#import-table .right {
    text-align: right;
}

/*Table end*/

#import-row_title_text{
    text-align: center;
}

#im_ex{
    padding-left: 120px;
    padding-right: 120px;
}

@media (max-width: 768px) {
    #im_ex{
        padding-left: 20px;
        padding-right: 20px;
    }
}
/*Import-export area end*/



/*CKEditor front-end part styling start*/
*{
    word-break: break-word;
}

.text-block-area ul {
    padding-left: 30px;
}
/*CKEditor front-end part styling End*/


/*For firefox: many elements were not displaying*/
.container > .row {
    clear: both;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
    clear: both;
}

.owl-carousel {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
/*End*/


/* Pagination list start */
.page-item.active .page-link {
    z-index: 2;
    color: #fff;
    background-color: #215A9B;
    border-color: #215A9B;
}
/* Pagination list end */

/*Forms start*/
.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529;
    font-family: 'GHEAMariamReg';
}

button.btn.btn-sm {
    background: #ebecec;
}

.btn-primary {
    color: #215A9B;
    background-color: #215a9b1a;
    border-color: #215A9B;
    width: 100%;
    font-family: 'GHEAMariamBld';
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #215A9B;
    border-color: #215A9B;
    width: 100%;
    font-family: 'GHEAMariamBld';
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0;
    height: 25px;
    width: 25px;
}

fieldset.scheduler-border {
    border: 1px solid #215A9B4f;
    padding: 1.4em 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #215A9B;
    box-shadow: 0px 0px 0px 0px #215A9B;
}

legend.scheduler-border {
    font-size: 15px !important;
    font-weight: bold !important;
    text-align: left !important;
    width: auto;
    padding: 0 10px;
    border-bottom: none;
    color: #215A9Bbf;
}

.col-sm {
    display: flex;
}

@media (max-width: 576px) {
    .col-sm {
        padding-bottom: 20px;
    }
}

.has-float-label {
    width: 100%;
}

/* The container-checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: #d9ffea;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
    background-color: #215A9B;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.container-radio {
    display: block;
    position: relative;
    padding: 0px 35px 0px 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark-radio {
    background-color: #d9ffea;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark-radio {
    background-color: #215A9B;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark-radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Form error print */
.formerror {
    color: #dc3545;
    padding-left: 15px;
    font-size: 80%;
}

select.form-control {
    min-height: 0px;
}
/*Forms end*/

        .header-area,
        ul.nav-menu li ul li a,
        .searchbar .input-search,
        .text-animated li a,
        .slider-one .owl-nav .owl-prev,
        .slider-one .owl-nav .owl-next,
        .about-tab:before,
        .progress-gallery .bar-container .progress .progress-bar-custom,
        .choose-item:before,
        .bg-counterup,
        .portfolio-bg,
        .faq-header button.faq-button,
        .faq-header button.faq-button.collapsed:hover,
        .booking-area:before,
        .bg-booking,
        .team-carousel .owl-nav .owl-prev,
        .team-carousel .owl-nav .owl-next,
        .team-text,
        .team-social li a:hover,
        .price-header i,
        .button-df a,
        .bg-testimonial,
        .testimonial-carousel .owl-dots .owl-dot,
        .blog-author li.blog-button a,
        .call-us:before,
        .footer-item h3:before,
        .footer-item h3:after,
        .footer-item .btn,
        .footer-item ul.footer-social li a,
        .scroll-top,
        .headstyle h4:before,
        .headstyle h4:after,
        .team-detail-text ul li a,
        .sidebar-item h3:before,
        .sidebar-item h3:after,
        .event-contact-item,
        .gallery-bg,
        .testimonial-grid .testimonial-description p:before,
        .testimonial-two-carousel .testimonial-description p:before,
        .form-button .btn,
        .project-carousel .owl-nav .owl-prev,
        .project-carousel .owl-nav .owl-next,
        .sidebar-item button,
        .contact-item:hover .contact-icon,
        .contact-form .btn {
                background-color: #215A9B;
        }

        ul.nav-menu li:hover > a,
        .searchbar .search-button:hover,
        .text-animated li a:hover,
        .text-animated li:last-child a:hover,
        .slider-one .owl-nav .owl-prev:hover,
        .slider-one .owl-nav .owl-next:hover,
        .services-text a:hover,
        .portfolio-menu li.filtr-active,
        .portfolio-menu li:hover,
        .portfolio-text h3 a:hover,
        .form-button .btn2:hover,
        .blog-item h3 a:hover,
        .blog-item span i,
        .blog-author li a i,
        .blog-author li a:hover,
        .call-us .button a:hover,
        .team-info ul li span,
        li.event-header-left i,
        .recent-text a:hover,
        .event-contact-item:hover .event-contact-icon,
        .service-sidebar-item ul li a:hover,
        .portfolio-details ul li span,
        .sidebar-item ul li a:hover,
        .blog-one-text h3 a:hover,
        .blog-one-text ul li i,
        .single-blog ul li i,
        .contact-icon {
            color: #<?php echo $setting['front_end_color']; ?> !important;
        }

        .text-animated li a,
        .slider-one .owl-nav .owl-prev,
        .slider-one .owl-nav .owl-next,
        .footer-item .form-control,
        .footer-item .btn,
        .footer-item ul.footer-social li a,
        .event-contact-item:hover .event-contact-icon,
        .form-control:focus,
        .sidebar-item button,
        .contact-item:hover .contact-icon,
        .contact-form .btn {
            border-color: #<?php echo $setting['front_end_color']; ?> !important;
        }

        .video-button span {
            border-left-color: #<?php echo $setting['front_end_color']; ?> !important;
        }

        .portfolio-menu li.filtr-active,
        .team-social li a:hover {
            border-bottom-color: #<?php echo $setting['front_end_color']; ?> !important;
        }

        .portfolio-menu li.filtr-active:before,
        .team-social li a:hover {
            border-top-color: #<?php echo $setting['front_end_color']; ?> !important;
        }

        ul.nav-menu li ul li:hover > a {
            background: #f1f1f1 !important;
        }

        .text-animated li a:hover,
        .text-animated li:last-child a:hover,
        .slider-one .owl-nav .owl-prev:hover,
        .slider-one .owl-nav .owl-next:hover {
            background: #fff !important;
            border-color: #fff !important;
        }

        .text-animated li:last-child a {
            background: #313131 !important;
            border-color: #313131 !important;
        }

        .blog-author li.blog-button a,
        .blog-author li.blog-button i,
        .footer-item ul.footer-social li a:hover,
        .contact-item:hover .contact-icon {
            color: #fff !important;
        }

        .faq-header button.faq-button.collapsed {
            background: #fff !important;
        }

        .team-carousel .owl-nav .owl-prev:hover,
        .team-carousel .owl-nav .owl-next:hover,
        .button-df a:hover,
        .testimonial-carousel .owl-dots .owl-dot.active,
        .blog-author li.blog-button a:hover,
        .footer-item ul.footer-social li a:hover,
        .team-detail-text ul li a:hover,
        .form-button .btn:hover,
        .project-carousel .owl-nav .owl-prev:hover,
        .project-carousel .owl-nav .owl-next:hover,
        .contact-form .btn:hover {
            background: #313131 !important;
        }

        .footer-item ul.footer-social li a:hover,
        .contact-form .btn:hover {
            border-color: #313131 !important;
        }

        .event-contact-item:hover,
        .faq-body, .faq-header button.faq-button.collapsed {
            background: #f5f5f5 !important;
        }

        .booking-form input:focus,
        .booking-form textarea:focus {
            border-color: #fff !important;
        }

        .booking-form button[type="submit"] {
            background: #313131 !important;
            color: #fff !important;
        }

        .booking-form button[type="submit"]:hover {
            background: #fff !important;
            color: #313131 !important;
        }

        #middle-footer-center-part a:hover {
            color: #ffffff;
        }


.header-logo { background-image: linear-gradient(#ffffff, #ebecec); position: relative; padding-top: 20px; padding-bottom: 20px; z-index: 9999; }
.menu-right { float: right; }
.header-top { background-color: #215A9B; font-size: 15px; padding-top: 5px; padding-bottom: 5px; line-height: 15px; color: #fff; font-weight: 500; }

@media screen and (max-width: 991px) {
#topmediashow-serach, #topmediashow-eye, #topmediashow-contact, #topmediashow-lang { display:none;}

}

@media screen and (min-width: 991px) {
#mediashow-serach, #mediashow-eye, #mediashow-lang { display:none;}
    .logo { 
        text-align: center;
        font-weight: bold;
    }
}

.top-header {
    background-image: linear-gradient(#ffffff, #ebecec);
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    height: 10px;
    background-color: #063466;
    border-radius: 1px;
}

::selection {
    background: #002147;
    color: #1EAFA5;
}

i.fa.fa-at {
    font-size: 20px;
    height: 40px;
}

        .hotline-phone {
            position: fixed;
            top: 95%;
            left: 5%;
            z-index: 999999;
            transform: translate(-50%,-50%);
        }
        .ring {
            position: relative;
            visibility: visible;
            background-color: transparent;
            width: 110px;
            height: 110px;
            cursor: pointer;
            z-index: 11;
            -webkit-backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            transition: visibility .5s;
            left: 0;
            bottom: 0;
            display: block;
        }
        .ring-circle {
            width: 85px;
            height: 85px;
            top: 10px;
            left: 10px;
            position: absolute;
            background-color: transparent;
            border-radius: 100%;
            border: 3px solid #0091A7;
            -webkit-animation: circle-anim 1.2s infinite ease-in-out;
            animation: circle-anim 1.2s infinite ease-in-out;
            transition: all .5s;
            -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            opacity: 0.5;
        }
        .ring-circle-fill {
            width: 55px;
            height: 55px;
            top: 25px;
            left: 25px;
            position: absolute;
            background-color: #0091A7;
            border-radius: 100%;
            border: 2px solid transparent;
            -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
            animation: circle-fill-anim 2.3s infinite ease-in-out;
            transition: all .5s;
            -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
        }
        .ring-img-circle {
            background-color: #0091A7;
            width: 33px;
            height: 33px;
            top: 37px;
            left: 37px;
            position: absolute;
            background-size: 20px;
            border-radius: 100%;
            border: 2px solid transparent;
            -webkit-animation: circle-img-anim 1s infinite ease-in-out;
            animation: circle-img-anim 1s infinite ease-in-out;
            -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ring-img-circle .pps-btn-img {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }
        .ring-img-circle .btn-img img {
            width: 20px;
            height: 20px;
        }
        img {
            transition: opacity 1s;
            opacity: 1;
            vertical-align: sub;
        }
        .bar {
            position: absolute;
            background-color: #215a9b;
            height: 40px;
            width: 200px;
            line-height: 40px;
            border-radius: 3px;
            padding: 0 10px;
            background-size: 100%;
            cursor: pointer;
            transition: all 0.8s;
            -webkit-transition: all 0.8s;
            z-index: 9;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
            border-radius: 50px !important;
            /* width: 175px !important; */
            left: 33px;
            bottom: 37px;
        }
        .bar > a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: bold;
            text-indent: 60px;
            display: block;
            letter-spacing: 1px;
            line-height: 40px;
            font-family: Arial;
        }

        @-webkit-keyframes circle-anim {
            0% {
                -webkit-transform: rotate(0) scale(0.5) skew(1deg);
                -webkit-opacity: 0.1;
            }
            30% {
                -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                -webkit-opacity: 0.5;
            }
            100% {
                -webkit-transform: rotate(0) scale(1) skew(1deg);
                -webkit-opacity: 0.1;
            }
        }
        @-webkit-keyframes circle-fill-anim {
            0% {
                -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                opacity: 0.6;
            }
            50% {
                -webkit-transform: rotate(0) scale(1) skew(1deg);
                opacity: 0.6;
            }
            100% {
                -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                opacity: 0.6;
            }
        }
        @-webkit-keyframes circle-img-anim {
            0% {
                -webkit-transform: rotate(0) scale(1) skew(1deg);
            }
            10% {
                -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            }
            20% {
                -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            }
            30% {
                -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
            }
            40% {
                -webkit-transform: rotate(25deg) scale(1) skew(1deg);
            }
            50% {
                -webkit-transform: rotate(0) scale(1) skew(1deg);
            }
            100% {
                -webkit-transform: rotate(0) scale(1) skew(1deg);
            }
        }

        @media (max-width: 768px) {
            .hotline-phone {
                position: fixed;
                top: 90%;
                left: 5%;
                z-index: 999999;
                transform: translate(-50%,-50%);
            }
            .ring {
                position: relative;
                visibility: visible;
                background-color: transparent;
                width: 110px;
                height: 110px;
                cursor: pointer;
                z-index: 11;
                -webkit-backface-visibility: hidden;
                -webkit-transform: translateZ(0);
                transition: visibility .5s;
                left: 0;
                bottom: 0;
                display: block;
            }
            .ring-circle {
                width: 85px;
                height: 85px;
                top: 10px;
                left: 10px;
                position: absolute;
                background-color: transparent;
                border-radius: 100%;
                border: 3px solid #308d5a9e;
                -webkit-animation: circle-anim 1.2s infinite ease-in-out;
                animation: circle-anim 1.2s infinite ease-in-out;
                transition: all .5s;
                -webkit-transform-origin: 50% 50%;
                -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
                opacity: 0.5;
            }
            .ring-circle-fill {
                width: 55px;
                height: 55px;
                top: 25px;
                left: 25px;
                position: absolute;
                background-color: #0091a79e;
                border-radius: 100%;
                border: 2px solid transparent;
                -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
                animation: circle-fill-anim 2.3s infinite ease-in-out;
                transition: all .5s;
                -webkit-transform-origin: 50% 50%;
                -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
            }
            .ring-img-circle {
                background-color: #0091a79e;
                width: 33px;
                height: 33px;
                top: 37px;
                left: 37px;
                position: absolute;
                background-size: 20px;
                border-radius: 100%;
                border: 2px solid transparent;
                -webkit-animation: circle-img-anim 1s infinite ease-in-out;
                animation: circle-img-anim 1s infinite ease-in-out;
                -webkit-transform-origin: 50% 50%;
                -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .ring-img-circle .pps-btn-img {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
            }
            .ring-img-circle .btn-img img {
                width: 20px;
                height: 20px;
            }
            img {
                transition: opacity 1s;
                opacity: 1;
                vertical-align: sub;
            }
            .bar {
                position: absolute;
                background: #308d5a9e;
                height: 40px;
                width: 200px;
                line-height: 40px;
                border-radius: 3px;
                padding: 0 10px;
                background-size: 100%;
                cursor: pointer;
                transition: all 0.8s;
                -webkit-transition: all 0.8s;
                z-index: 9;
                box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
                border-radius: 50px !important;
                /* width: 175px !important; */
                left: 33px;
                bottom: 37px;
            }
            .bar > a {
                color: #fff;
                text-decoration: none;
                font-size: 15px;
                font-weight: bold;
                text-indent: 60px;
                display: block;
                letter-spacing: 1px;
                line-height: 40px;
                font-family: Arial;
            }

            @-webkit-keyframes circle-anim {
                0% {
                    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
                    -webkit-opacity: 0.1;
                }
                30% {
                    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                    -webkit-opacity: 0.5;
                }
                100% {
                    -webkit-transform: rotate(0) scale(1) skew(1deg);
                    -webkit-opacity: 0.1;
                }
            }
            @-webkit-keyframes circle-fill-anim {
                0% {
                    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                    opacity: 0.6;
                }
                50% {
                    -webkit-transform: rotate(0) scale(1) skew(1deg);
                    opacity: 0.6;
                }
                100% {
                    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
                    opacity: 0.6;
                }
            }
            @-webkit-keyframes circle-img-anim {
                0% {
                    -webkit-transform: rotate(0) scale(1) skew(1deg);
                }
                10% {
                    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
                }
                20% {
                    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
                }
                30% {
                    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
                }
                40% {
                    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
                }
                50% {
                    -webkit-transform: rotate(0) scale(1) skew(1deg);
                }
                100% {
                    -webkit-transform: rotate(0) scale(1) skew(1deg);
                }
            }
            .hotline-phone {
                top: 95%;
                left: 13%;
            }

            .bar{
                display: none;
            }


        }

@media (max-width: 767px) {
.f-at {
    display: flex;
    justify-content: center;
}
    
}
.f-at {
    display: flex;
}

.at {
    width: 40px !important;
    display: block;
}

.fa-at {
    width: 40px !important;
}

.ffa {
    background-color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    color: #215A9B;
}

.footer-line {
    border-top: 1px solid #B2B3B3;
    padding-bottom: 30px;
    border-bottom: 1px solid #B2B3B3;
}

.acc-footer {
    position: relative;
    background-color: #063466;
    /*background-image: url(https://aacc.sevuni.su/public/uploads/footer-background.png);*/
    background-position: center;
    background-repeat: no-repeat, repeat;
    background-size: 300px, 300px;
}

.tools-background {
    background-color: #06346626;
}

.news-background {
    background-color: #ffffffc2;
}