/*-----------------------------------------------------------------------------------*/
/*  FONTS
/*-----------------------------------------------------------------------------------*/
@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url(fonts/DINNextLTArabic-Light.ttf);
    font-weight: 300;
    font-display: swap
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url(fonts/DINNextLTArabic-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url(fonts/DINNextLTArabic-Medium.ttf);
    font-weight: 500;
    font-display: swap
}

/*-----------------------------------------------------------------------------------*/
/*  RESET CSS 
/*-----------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, input[type=button], button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'DIN Next LT Arabic';
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 400;
}
html {
    direction: ltr;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    position: relative;
    font-weight: 400;
    width: 100%;
    min-height: 100%;
    color: #484848;
    background: #fff;
    font-size: 18px;
    direction: ltr;
}
body section:not(.news) * {
    transition: all 0.3s ease;
}
a {
    text-decoration: none;
    color: inherit;
}
select, button,input {
    outline: none; 
}

p {
	text-align: justify;
}
img {
    max-width: 100%;
}
h1 {
    font-size: 24px; 
}
b{
    font-weight: 500;
}
::selection {
    background-color: rgba(122,69,155,0.2);
}
li {
    list-style-position: inside;
}
.lang{
    right: 0;
}
/*-----------------------------------------------------------------------------------*/
/*  MAIN CSS
/*-----------------------------------------------------------------------------------*/
.clear{
    clear: both;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    width: 85%;
    position: relative;
}
.flex-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
header {
    height: 100px;
    background-color: #420033;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 90px 220px 1fr auto;
    grid-template-rows: 100px;
    align-items: center;
}
header .logo {
    display: block;
    width: 250px;
    height: 80px;
    background-image: url(images/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    grid-column: 1/2;
    grid-row: 1/2;
}
header .web-title {
    text-align: justify;
    line-height: 26px;
    grid-column: 2/3;
    grid-row: 1/2;
}
header .web-title a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.web-title h1{
    font-size: 25px;
}
.menu-wrapper {
    grid-column: 4/5;
    grid-row: 1/2;
}
.lang{
    background-color: #fff;
    padding: 0 10px;
	width: 48px;
	text-align: center;
    color: #fff;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
    position: absolute;
    top: 0;
}
.lang:hover{
    background-color: #ccaac8;
}
header .actions{
    direction: ltr;
    width: 40px;
}
.toggle-menu{
    display: none;
    width: 40px;
    height: 40px;
    background-size: 22px;
    background-repeat: no-repeat;
    background-image: url(images/icons/menu.svg);
    display: none;
    background-color: #8f397c;
    background-position: center;
    border-radius: 50%;
}
.menu li{
    list-style: none;
    display: inline-block;
    position: relative;
}
.menu > li:not(:last-child):after {
    content: '|';
    color: #fff;
    font-weight: 500;
    line-height: 32px;
    float: right;
    margin-left: 5px;
}
.menu > li > a{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    padding: 0 15px 5px 15px;
    border-radius: 3px;
}
.menu > li:hover > a{
    color: #fff;
    background-color: #8f397c;
}
.menu li:hover > ul{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in 0s;
}
.menu li ul {
    position: absolute;
    top: 100%;
    background-color: rgba(41,0,33,0.9);
    z-index: 10;
    min-width: 215px;
    border-radius: 3px 0 3px 3px;
    opacity: 0;
    visibility: hidden;
    left: 0;
}
.menu li ul li ul{
    top: 0;
    left: 100%;
}
.menu li ul li{
    display: block;
    margin: 0;
}
.menu li ul li a{
    display: block;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    line-height: 1.1em;
}
.menu li ul li:first-child a{
    border-top-right-radius: 3px;
}
.menu li ul li:last-child a{
    border-bottom-right-radius: 3px;
}
.menu li ul li:hover > a{
    background-color: rgba(0, 0, 0, 0.15);
}
.search input:not([type='submit']){
    border-radius: 5px;
    color: #595125;
    border: 1px solid #ccaac8;
    font-size: 16px;
    padding: 3px 10px 6px 10px;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.5s ease;
}
input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    position: relative;
    top: 2px;
    background-image: url(images/icons/close.svg);
    background-size: contain;
    background-repeat: no-repeat
}
.search input:not([type='submit']):focus{
    border-color: #595125;
}
.search input[type=submit]{
    background-color: #ccaac8;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    background-image: url('images/icons/search.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search input[type=submit]:hover, .search input[type=submit]:focus{
    background-color: #595125;
    background-size: 21px;
}
::placeholder {
    color: #ccaac8;
    opacity: 1;
}
.sub-header {
    padding: 10px;
    background-color: #F0F0F0;
}
.sub-header .logo {
    height: 160px;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.sub-header .links {
    width: 100%;
    height: 40px;
    display: flex;
    margin: auto;
    justify-content: center;
    line-height: 40px;
    font-size: 20px;
    white-space: nowrap;
}
.sub-header .links li {
    list-style: none;
    position: relative;
}
.sub-header .links li a {
    margin: 0 20px;
    padding: 0 20px 5px 20px;
    border-radius: 3px;
}
.sub-header .links li a:hover {
    background-color: rgba(0,0,0,0.1)
}
.sub-header .links li:not(:last-child):after {
    content: '|';
    position: absolute;
}
.sub .parallax-slider {
    height: 500px;
}
header.sub {
    /*background-color: #898A8A;*/
}
header.sub .menu > li:hover > a{
    background-color: rgba(0,0,0,0.2);
}
header.sub .menu li ul {
    background-color: #666;
}
/*-----------------------------------------------------------------------------------*/
/*  MAIN PARALLAX SLIDER
/*-----------------------------------------------------------------------------------*/
.slider{
    margin: 0 0 40px 0;
    position: relative;
}

.property-hack {
    display: none;
    width: 200px;
    height: 500px;
}
  
.parallax-slider {
    width: 100%;
    height: calc(100vh - 150px);
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: -webkit-grab;
    cursor: grab;
    background: #333;
}
  .property-hack {
    margin-left: 5000px;
}
.slides {
    width: auto;
    white-space: nowrap;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slider .slide {
    display: inline-block;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.slider .bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.slider .bg:nth-child(2) {
    -webkit-transform: translate3d(-50vw, 0, 0);
    transform: translate3d(-50vw, 0, 0);
}
.animation {
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.grabbing {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.parallax-slider{
    direction: ltr;
}
.slider .container{
    height: 100%;
}
.slider .block{
    width: 400px;
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    white-space: normal;
    background-color: #ffffffe6;
    color: #333;
    border-bottom: 24px solid #8f397c;
    will-change: transform;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition-delay: 0.5s;
    backdrop-filter: blur(5px);
    opacity: 0;
    border-radius: 50px 0 50px 0;
    right: 0;
    direction: ltr;
}
.slider .block-active {
   transform: translateY(-50%);
   opacity: 1;
}
.slider .content{
    padding: 20px;
}
.slider .content p{
    font-size: 19px;
    margin-bottom: 5px;
}
.slider .content h3{
    font-size: 26px;
    color: #8f397c;
    display: block;
    margin-bottom: 20px;
}
.slider .more {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 10px;
    bottom: -16px;
    background-image: url('images/link.png');
    background-repeat:no-repeat;
    background-position: center;
    transition: all ease 0.3s;
    text-align: right;
}
.slider .more:hover {
    border-radius: 10px 0;
}
.slider .more i{
    margin-left: 8px;
}
.slide-indicator {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
    text-align: center;
    direction: ltr;
}
.slide-indicator ul{
    background: #fff;
    border-radius: 29px;
    display: inline-block;
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
 .slide-indicator .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 2px 4px;
    display: inline-block;
    background: #b160b4;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .slide-indicator .dot:hover{
    background-color: #4d3187;
  }

.slide-indicator .dot.active { background-color: #4d3187; }
.slider.sub .slide-indicator .dot.active {
    background-color: #ef2e24;
}
/*-----------------------------------------------------------------------------------*/
/*  SECTIONS
/*-----------------------------------------------------------------------------------*/
section{
    padding: 50px 0;
    background-size: cover;
    background-color: #fff;
    overflow: auto;
}
.title{
    font-size: 28px;
    color: #484848;
    margin-bottom: 20px;
}
.title a {
    font-weight: 500;
}
footer .contact h3:after{
    content: '';
    position: absolute;
    background-color: #b160b4;
    height: 0;
    width: 4px;
    top: 0;
    transition: all 1s ease;
}
footer .contact h3.animate:after{
    height: 100%;
}
.news .cards-list .swiper-slide{
    height: auto;
}
.news .cards-list{
    width: 35%;
    box-sizing: border-box;
    position: relative;
    float: left;
    padding-left: 15px;
}
.news .cards-list .swiper-container{
    height: 220px;
}
.news .main-item{
    padding-right: 15px;
    float: left;
}
.news .main-item p{
    font-size: 22px;
    line-height: 1.4;
}
.news .main-item:after,
footer .contact h3:after{
    right: 0;
}
.news .main-item .img{
    width: 40%;
    max-width: 300px;
    height: 215px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    flex-shrink:0;
    margin-right: 20px;
}
.news .main-item h2{
    margin-bottom: 15px;
}
.news .main-item a{
    color: #484848;
    font-weight: 500;
    font-size: 20px;
}
.video-bg{
    height: 600px;
    padding: 0;
}
.swiper-nav{
    position: absolute;
    top: -70px;
    transition: all 0.5s ease;
    right: 0;
}
.swiper-nav span{
    width: 25px;
    height: 25px;
    background-color:#ccaac8;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    cursor: pointer;
    float: right;
}
.swiper-nav span:hover{
    background-color: #8B8877;;
}
.swiper-nav span:after{
    content: '';
    position: absolute;
    top: 0;
    background-image: url(images/icons/arrow.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 100%;
    height: 100%;
    right: 0;
}
.swiper-nav span.button-prev:after{
    transform: rotate(180deg);
}
.swiper-nav span.button-next{
    border-top-left-radius:3px;
    border-bottom-left-radius:3px;
}
.swiper-nav span.button-prev{
    border-top-right-radius:3px;
    border-bottom-right-radius:3px;
}
section.indx.r h2 {
    font-size: 40px;
    color: #412b83;
    margin-bottom: 20px;
}
section.indx.r.sub h2 {
    display: none;
}
section.indx a.img {
    position: relative;
    width: 40%;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    float: right;
    margin-left: 20px;
}
section.indx.sub a.img {
    height: 200px;
}
section.indx.r p {
    font-size: 22px;
    font-weight: 300;
    color: #b160b4;
}
section.indx.r.sub p {
    font-size: 24px;
    font-weight: 400;
    color: #9e0c40;
}
section.indx.m h2 {
    font-size: 40px;
    /*color: #fff;*/
    margin-bottom: 120px;
    text-align: center;
}
section.indx.m h2:after  {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background-color: #fff;
    margin-right: 40px;
    vertical-align: middle;
}
section.news {
    /*background-color: #333;*/
    margin-top: -5px;
    padding-bottom: 70px;
}
section.news h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}
section.indx:not(.r) h2:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #ccc;
    margin-left: 40px;
    vertical-align: middle;
    transition: width 1s ease;
}
section.indx:not(.r) h2:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #ccc;
    margin-right: 40px;
    vertical-align: middle;
    transition: width 1s ease;
}
section.indx:not(.r) h2.animate:before,
section.indx:not(.r) h2.animate:after {
    width: 200px;
}
#example5 .sp-thumbnail-image-container {
	width: 100px;
	height: 80px;
	overflow: hidden;
	float: left;
}
#example5 .sp-thumbnail-image {
	height: 100%;
}
#example5 .sp-thumbnail-text {
    direction: rtl;
    float: right;
    padding: 8px;
    /*color: #fff;*/
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
#example5 .sp-thumbnail-text:hover {
    background-color: rgba(255,255,255,0.05);
}
#example5 .sp-thumbnail-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
}
#example5 .sp-thumbnail-description {
	font-size: 14px;
}
.addon {
    width: 100%;
    height: 360px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*-----------------------------------------------------------------------------------*/
/*  CARDS STYLES
/*-----------------------------------------------------------------------------------*/
.cards:not(.inner-cards){
	background-attachment: fixed;
    box-sizing: border-box;
}
.cards ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}
.cards li {
    width: 280px;
    max-width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    border-radius: 0 0 5px 5px;
    margin: 20px 0;
}
.cards.m li {
    width: 220px;
    height: 220px;
    border-radius: 0 0 50px 0;
    background-color: #b160b4;
    text-align: center;
    background-image: url(images/link.png);
    background-repeat: no-repeat;
    background-position: 10px 93%;
    background-repeat: no-repeat;
}
.cards.m.sub li {
    background-color: #959595;
}
.cards.m li a {
    color: #fff;
    font-size: 30px;
    padding: 100px 0 80px 0;
}
.cards.m li a .img {
    width: 160px;
    height: 160px;
    position: absolute;
    top: -83px;
    right: calc(50% - 83px);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 3px 10px -2px rgb(177 96 180);
}
.cards.m li a:hover .img {
    transform: scale(1.1);
}
.cards.m li:hover {
    background-color: #422b82;
}
.cards.m.sub li:hover {
    background-color: #464646;
}
.cards:not(.inner-cards) li {
    opacity: 0;
    visibility: hidden;
}
.cards:not(.expand) li.animate{
    animation: scaleUp 0.5s forwards;
}
.cards.expand{
    padding-bottom: 0;
}
.cards.expand ul{
    min-height: 420px;
}
.cards.expand li{
    transform: perspective(2500px) rotateY(50deg);
    transition: all 0.5s ease;
    backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
}
.cards.expand li.animate{
    transform: perspective(2500px) rotateY(0);
    opacity: 1;
    visibility: visible;
}
.inner-cards{
    padding: 0;
}
.inner-cards ul{
    height: auto;
}
.inner-cards li{
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    margin-bottom: 40px;
    width: 275px;
    transition: all 0.3s ease;
}
.inner-cards li:hover{
    transform: scale(1.015);
}
.inner-cards h2{
    margin-top: 15px;
    text-align: center;
}
.inner-cards h2,
.aside-list li h2{
    font-size: 16px;
    /*max-height: 46px;*/
    overflow: hidden;
}
.aside-list li{
    margin-bottom: 15px !important;
}
.cards .img{
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 5px 5px 0 0;
}
.inner-cards .img{
    height: 180px;
}
.cards a{
    color: #484848;
    display: block;
}
.cards .content{
    background-color: #fff;
    padding: 0 10px 20px 10px;
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
    position: relative;
	min-height: 36px;
}
.cards .content p{
    font-size: 14px;
}

/*Expandable on hover cards style*/
.cards.expand .img{
    height: 190px;
}
.cards.expand .content{
    max-height: 90px;
    line-height: 90px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.cards.expand .content h2{
    text-align: center;
    transition: all 0.5s ease;
}

.cards.expand li a:hover .content{
    max-height: 380px;
    line-height: 60px;
}
.cards.expand li a:hover h2{
    color: #D19933;
}

/*Cards with tag title style */
.cards.tag a:hover {
	transform: scale(1.05);
}
.cards.tag a:hover .content h2 {
    background: rgba(72,72,72, 0.9);
    width: 100%;
}
.cards.tag .content h2{
	color: #fff;
    background: rgba(136, 133, 111, 0.9);
    display: inline-block;
    box-sizing: border-box;
    height: 50px;
    text-align: center;
    line-height: 44px;
    position: absolute;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    left: 0;
	font-size:  FONT;
	width: 188px;
}
.cards.tag .content p{
    padding-top: 35px;
}

/*cards list*/
.cards-list li{
    list-style: none;
    margin-bottom: 5px;
}

.cards-list li a{
    display: flex;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 3px;
}
.cards-list li a:hover{
    background-color: rgba(183, 179, 172, 0.2);
}
.cards-list li .img{
    width: 60px;
    height: 60px;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
    border-radius: 6px;
    margin-right: 15px;
}
.cards-list li h2{
    font-size: 16px;
    color: #484848;
    line-height: 1.6em;
}
.aside-list ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.aside-list ul li{
    width: 49%;
}
.aside-list ul li a{
    background-color: #F6F6F6;
    padding: 10px;
    border-radius: 5px;
}
.aside-list li .img{
    width: 65px;
    height:65px;
    transition: all 0.3s ease;
}
.aside-list li a:hover .img{
    transform: scale(1.29);
    border-radius: 0 3px 3px 0;
}

@media (max-width: 500px) {
	#example5 .sp-thumbnail {
		text-align: center;
	}

	#example5 .sp-thumbnail-image-container {
		display: none;
	}

	#example5 .sp-thumbnail-text {
		width: 120px;
	}

	#example5 .sp-thumbnail-title {
		font-size: 12px;
		text-transform: uppercase;
	}

	#example5 .sp-thumbnail-description {
		display: none;
	}
}

/*-----------------------------------------------------------------------------------*/
/*  INNER PAGES
/*-----------------------------------------------------------------------------------*/
.inner{
    display: flex;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 100px;
    min-height: calc(100vh - 549px);
}
.wrapper{
    position: relative;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
	flex-grow: 1;
}
aside{
    width: 300px;
    flex-shrink: 0;
}
.side{
    position: relative;
    margin-top: 38px;
    padding: 20px 10px;
    box-sizing: border-box;
    animation: Slide 1s forwards;
}
.wrapper > .content{
    position: relative;
    z-index: 10;
    padding:  20px;
    background-color: #fff;
}
.wrapper > .content p,
.wrapper > .content div,
.wrapper > .content li {
    font-size: 20px;
    line-height: 1.6;
}
.wrapper > .content .article-data h1,
.wrapper > .content .article-data h2 {
    font-family: 'DIN Next LT Arabic';
    font-weight: 500;
    font-size: 24px;
}
.wrapper > .content p a {
    display: block;
    background-color: rgba(0,0,0,0.03);
    border-radius: 5px;
    padding: 5px;
    box-sizing: border-box;
    text-decoration: none;
}
.wrapper > .content p a:hover {
    background-color: rgba(0,0,0,0.05);
}
.wrapper > .content p img {
    margin: 10px 20px;
	border-radius: 5px;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
	max-width: 96%;
}
.wrapper > .content ol {
	list-style-position: inside;
}
.side{
    left: -350px;
    border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.breadcrumbs{
    background-color: #F6F6F6;
    border-radius: 5px 5px 0 0;
    padding: 0 20px;
    height: 38px;
}
.breadcrumbs li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
.breadcrumbs li:after{
    content: '';
    background-image: url(images/icons/breadcrumbs.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;transform: rotate(180deg);padding-left: 10px;
}
.breadcrumbs li:last-child::after{
    display: none;
}
.breadcrumbs a{
    font-size: 14px;
    line-height: 38px;
}
.pagination{
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
    position: absolute;
    bottom: 0;
    transition: all 0.5s ease;
    left: 0;
	direction: ltr;
}
.pagination.animate{
    bottom: -35px;  
}
.pagination li{
    list-style: none;
    display: inline-block;
}
.pagination li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #D9D6D1;
    color:#fff;
    border-radius: 0 0 3px 3px;
    font-size: 16px;
}
.pagination li.disabled {
	padding: 5px 10px;
    color: #B7B3AC;
	background-color: transparent;
}
.pagination li a:hover {
    background-color: #ccc;
}
.pagination li.current a{
    background-color: #999;
}
.pagination .statics {
    height: 35px;
    line-height: 50px;
    font-size: 14px;
    color: #88856f;
	float: right;
}
.ads{
    padding: 0 15px;
}
.ads li{
    list-style: none;
    display: block;
    margin: 30px 0;
    text-align: center;
    box-sizing: border-box;
}
.ads li a{
    background-color: #CCA256;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 30px;
    font-size: 28px;
    background-size: cover;
    background-position: center;
    min-height: 120px;
    box-sizing: border-box;
}
.art-info{
    position: relative;
    top: -31px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.art-info .date{
    font-family: 'DIN Next LT Arabic';
    display: inline-block;
    background-color: #ccaac8;
    color: #fff;
    font-size: 14px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    margin-right: 40px;
}
.share{
    direction: ltr;
}
.share li{
    list-style: none;
    display: inline-block;
    margin-top: 5px;
}
.share li a{
    padding: 0 20px 0 35px;
    box-sizing: border-box;
    display: block;
    height: 35px;
    background-repeat: no-repeat;
    background-size: 17px;
    text-transform: capitalize;
    color: #fff;
    font-size: 14px;
    line-height: 35px;
    background-position: left 10px center;
}
.share li a.fb{
    background-image: url(images/icons/facebook.svg);
    background-color: #3a559fd3;
}
.share li a.tw{
    background-image: url(images/icons/twitter.svg);
    background-color: #50abf1d5;
}
.share li a.fb:hover{
    background-color: #3a559f;
}
.share li a.tw:hover{
    background-color: #50abf1;
}
.art-actions{
    margin-top: 20px;
}
.art-actions li{
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}
.art-actions a{
	position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height:35px;
    background-color:  #d0d0d0;
    text-align: center;
    font-size: 14px;
    display: inline-block;
}
.art-actions a i{
    position: relative;
    z-index: 10;
}
.art-actions a:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #b160b4;
    position: absolute;
    top: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 500ms;
    right: 0;
}
.art-actions a:hover{
    color: #fff;
}
.art-actions a:hover:after{
    transform: scale(1);
}
.title-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(183, 179, 172, 0.5);
    margin-bottom: 30px;
}
.title-header .title{
    font-family: 'DIN Next LT Arabic';
    margin-bottom: 0;
}
article h3 {
	font-size: 24px;
	text-decoration: underline;
}
article p a:hover {
	text-decoration: underline;
}
article a.bigimg {
	/*background-size: cover;
	width: 100%;
	height: 500px;
	background-color: #fff;
	padding: 5px;
	display: block;
	margin-top: auto;
	margin-bottom: auto;
	overflow: hidden;
    box-sizing: border-box;	*/
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
section a.bigimg {
	padding: 0;
	margin-top: 16px;
}
article a.bigimg img{
    transition: all 0.3s ease;
}
article a.bigimg:hover img{
	-moz-box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.25);
}
article a.bigimg img.video,
section a.bigimg img.video {
	margin: 0px;
	width: 48px;
	position: absolute;
	top: 0;
	z-index: 100;
	background-color: rgba(0,0,0,0.4);
	padding: 82px 132px;
}
article a.bigimg img.video:hover,
section a.bigimg img.video:hover {
	background-color: rgba(0,0,0,0);
}
article p img {
	width: auto;
}
article .attachs {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
article .attachs a {
	background-size: cover;
	background-position: center center;
	width: 145px;
	height: 145px;
	margin: 10px;
	display: block;
	overflow: hidden;
	background-repeat: no-repeat;
	position: relative;
	flex-grow: 1;
    transition-property: transform, opacity, box-shadow;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	-webkit-transition-property: transform, opacity, box-shadow;
	-webkit-transition-duration: 0.2;
	-webkit-transition-timing-function: ease-in-out;
}
article .attachs a img.video {
	padding: 50px 50px;
}
article .attachs a:hover {
	-ms-transform: scale(0.95,0.95) !important; /* IE 9 */
    -webkit-transform: scale(0.95,0.95) !important; /* Safari */
    transform: scale(0.95,0.95) !important; /* Standard syntax */

	-moz-box-shadow:    0px 0px 15px 0px #999;
	-webkit-box-shadow: 0px 0px 15px 0px #999;
	box-shadow:         0px 0px 15px 0px #999;
}
article .files {
	overflow: auto;
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
}
article .files a {
	margin: 5px;
	border-width: 3px;
	border-color: #DBDBDB;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 15px;
	background-color: #EFEFEF;
	border-bottom-style: solid;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	flex-basis: 200px;
	flex-grow: 1;
	background-image: url('images/save.svg');
	background-repeat: no-repeat;
	background-size: 36px 36px;
}
article .files a:hover {
	color: inherit;
	background-color: #E5E5E5;
}
article .files a img {
	border-style: none;
	border-width: 0px;
	padding: 0;
	width: inherit;
	height: inherit;
}
.compensate-for-scrollbar{
    margin: 0 !important;
}
body.compensate-for-scrollbar{
    overflow: auto !important;
}
/* --- Forms --- */
article form {
	font-weight: normal;
	padding: 5px 0;
	margin: 5px 0;
	border-top-style: none;
    display: flex;
    align-items: center;
	width: 100%;
	box-sizing: border-box;
	flex-wrap: wrap;
}
article form * {
	font-size: 18px;
    font-weight: 300;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
article form label {
	width: 160px;
	display: inline-block;
}
article form *:focus {
	border-color: #ccaac8;
}
article form fieldset {
	margin: 10px;
	border: 1px solid #CCCCCC;
}
article form select {
	min-width: 40px;
	height: 35px;
	margin: 5px;
	border-style: solid;
	border-color: #ccc;
	border-width: 1px 1px 2px 1px;
	box-sizing: content-box;
}
article form input[type=text],
article form input[type=search],
article form input[type=email],
article form input[type=number],
article form input[type=date],
article form input[type=tel] {
	border-width: 1px 1px 2px 1px;
	height: 25px;
	flex-grow: 1;
	margin: 5px;
	padding: 5px 5px 5px 5px;
	background-color: #fff;
	color: #333;
	border-style: solid;
	border-color: #ccc;
	box-sizing: content-box;
}
article form input[type=date] {
	width: auto;
}
article form textarea {
	padding: 10px;
	width: 50%;
	height: 200px;
	margin: 5px;
	border-style: solid;
	border-color: #ccc;
	border-width: 1px 1px 2px 1px;
}
article form input:focus {
	border-color: #ccaac8;
}
article form input[type=text].input {
	width: 100px;
	margin-top: 0px;
	font-size: 26px;
}
article form input[type=submit],
input[type=button] {
	height: 40px;
	width: 150px;
	margin: 5px 15px 5px 5px;
	padding: 8px 5px 10px 5px;
	border-style: none;
	background-color: #ccaac8;
	color: #fff;
	display: block;
	cursor: pointer;
	border-color: #88856F;
	border-bottom-style: solid;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 18px;
	line-height: 20px;
}
article form input[type=submit]:hover {
	background-color: #CCA256;
}
.fancybox-progress{
    background: #CCA256 !important;
}

/*-----------------------------------------------------------------------------------*/
/*  FOOTER
/*-----------------------------------------------------------------------------------*/
footer{
    margin-top: 50px;
    background-color: #333;
}
footer .container{
    padding: 50px 0;
}
footer .web-title a {
    color: #ccc;
    font-size: 24px;
    font-weight: 300;
}
footer .web-title a h2 {
    color: #fff;
    font-size: 30px;
}
footer .contact{
    display: flex;
}
footer .contact h3{
    position: relative;
    color: #fff;
    font-size: 28px;
    box-sizing: border-box;
    font-weight: 100;
}
footer .contact li{
    list-style: none;
    color: #fff;
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}
footer .contact li a{
    color: #fff;
    font-size: 14px;
}
footer .btm{
    background-color: #222;
    padding: 10px 0;
    color: #fff;
    text-align: center;
}
footer p{
    font-size: 14px;
    max-width: 85%;
    margin: 0 auto;
	text-align: center;
}
footer .social{
    direction: ltr;
    text-align: center;
    position: absolute;
    bottom: -24px;
}
footer .social li {
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}
footer .social a {
    display: block;
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #666;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    border-radius: 50%;
}
footer .social a:hover {
    background-color: #ef2e24;
}
footer a.facebook{
    background-image: url('images/icons/facebook.svg');
}
footer a.twitter{
    background-image: url('images/icons/twitter.svg');
}
footer a.instagram{
    background-image: url('images/icons/instagram.svg');
}
footer a.youtube{
    background-image: url('images/icons/youtube.svg');
}
footer a.linkedin{
    background-image: url('images/icons/linkedin.svg');
}
/*-----------------------------------------------------------------------------------*/
/*  MONGID | SOFTWARE HOUSE
/*-----------------------------------------------------------------------------------*/
.mongiddesigns {
  position: absolute;
  bottom: 23px;
  left: 15px;
  direction: ltr;
}
.mongiddesigns span {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  background-image: url(https://mongid.com/designs/mongid/iconxl2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size:100%;
  border-radius: 50%;
  z-index: 10;
  transform: scale(0.85);
  transition: all 0.3s ease;
}
.mongiddesigns:hover span {
  transform: scale(1) rotate(360deg);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}
.mongiddesigns h3 {
  display: block;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 30px;
  padding: 2px 10px 0 30px;
  border-radius: 0 15px 15px 0px;
  z-index: 1;
  opacity: 0;
  background-color: #00000075;
  transition: left 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition-delay: 0.1s;
}
.mongiddesigns h3 i {
  color: #fff;
  display: block;
  text-transform: capitalize;
  font-size: 10px;
  height: 10px;
  line-height: 16px;
  font-style: normal;
}
.mongiddesigns h3 b {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 20px;
  height: 12px;
  white-space: nowrap;
}
.mongiddesigns:hover h3 {
  left: 15px;
  opacity: 1;
}
.mongiddesigns h3:hover {
  background-color: #00000075;
}

/*-----------------------------------------------------------------------------------*/
/*  PAGE LOADING
/*-----------------------------------------------------------------------------------*/
.loader{
    background-color: #700056;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-size: 1000px;
    opacity: 0.98;
}
.loader img{
    animation-name: loader;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    width: 80px;
}
#ccaac8k-top {
    position: fixed;
    z-index: 10;
	bottom: 60px;
    transition-property: opacity;
    transition-duration: 0s;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 0s;
    width: 48px;
    height: 48px;
    background-color: rgba(122,69,155,0.7);
    transform: rotate(45deg);
    transition: background-color 0.5s ease;
    border-radius: 3px;
}
#ccaac8k-top span {
    width: 48px;
    height: 48px;
	display: block;
	background: url(images/top.png) center center no-repeat;
    transform: rotate(-45deg);
}
#ccaac8k-top:hover {
	background-color: #7a459b;
}
.show {
    transition-property: transform, opacity, box-shadow;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
	-webkit-transition-property: transform, opacity, box-shadow;
	-webkit-transition-duration: 0.5;
	-webkit-transition-timing-function: ease-in-out;
	opacity: 0;
	transform: translateY(150px);
}
.hide {
	transform: translateY(0px);
	opacity: 1 !important;
}
/*-----------------------------------------------------------------------------------*/
/*  KEYFRAMES
/*-----------------------------------------------------------------------------------*/
@keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
      }

  }

  @keyframes scaleUp {
    0% {opacity: 0; visibility: hidden;transform: scale(0.5);  }
    100% { opacity: 1;visibility: visible;transform: scale(1); }
  }

/*-----------------------------------------------------------------------------------*/
/*  RESPONSIVE STYLE
/*-----------------------------------------------------------------------------------*/
@media print{
    footer,aside,.menu-wrapper,.art-info,.art-actions,
    .breadcrumbs,.menu-wrapper,header .actions,.web-title,#ccaac8k-top{
        display: none;
    }
    header .flex-container{
        justify-content: center;
    }
    .cards-list{
        page-break-inside: avoid;
    }
}
@media screen and (max-width: 1260px) {
    .slider .block{
        left: 10%;
    }
}
@media screen and (max-width: 1150px) {
    .menu-wrapper .container{
        width: 95%;
    }
    .menu{
        margin: 0 auto;
    }
    .search{
        margin: 10px auto;
    }
    .inner{
        display: block;
    }
    aside{
        width: 100%;
        margin-top: 80px;
    }
    aside .side{
        animation: none !important;
        border-radius: 5px;
        left: 0 !important;
    }
    .ads{
        padding: 0em;
    }
    .menu li ul li ul{
        left: 60%;
    }
}
@media screen and (max-width: 1004px) {
    .cards:not(.inner-cards){
        padding: 50px 0 !important;
    }
    .news .main-item{
        width: 100%;
        float: none !important;
        border-bottom: 4px solid rgba(183, 179, 172, 0.41);
        margin-bottom: 30px;
        padding: 0 !important;
        padding-bottom: 30px;
    }
    .news .main-item::after{
        display: none;
    }
    .swiper-nav{
        top: -20px;
    }
    .news .cards-list{
        width: 100%;
        float: none;
        padding: 10px 0 0 0;
    }

}
@media screen and (max-width: 910px) {
    .search input:not([type='submit']){
        width: 400px;
        max-width: calc(100% - 40px);
    }
    header .logo{
        width: 180px;
    }
    header .logo img{
        max-width: 180px;
    }
    header .web-title{
        width: 250px;
    }
    header .web-title h1{
        font-size: 30px;
    }
    header .web-title h2{
        font-size: 18px;
    }
}

@media screen and (max-width: 780px) {
    .menu-wrapper{
        display: none;
        background-color: #484848f8;
        position: absolute;
        top: 100px;
        width: 100%;
        height: calc(100vh - 100px);
        z-index: 20;
        padding: 20px;
        box-sizing: border-box;
        right: 0;
    }
    .lang{
        z-index: 200;
        top: auto;
        bottom: auto;
    }
    .menu-wrapper .container{
        height: calc(100vh - 300px);
        overflow-y: auto;
        padding-top: 40px;
    }
    .menu li{
        display: block;
        margin-bottom: 15px;
    }
    .menu li a{
        display: block;
        color: #fff;
    }
    .menu li ul{
        right: auto !important;
        left: auto !important;
        top: auto !important;
    }
    .menu li:hover > ul{
        position: relative;
    }
    .menu li:after{
        display: none;
    }
    .toggle-menu{
        display:block;
    }
    form.search{
        margin: 40px auto 0 auto;
        text-align: center;
    }
    header .flex-container{
        display: block;
    }
    header .logo,header .web-title{
        margin: 0 auto;
    }
    header .actions{
        width: 100%;
        margin: 20px 0;
    }
    .social{
        text-align: center;
        display: none;
    }
    .lang,header .web-title{
        display: none;
    }
    .toggle-menu{
        position: absolute;
        top: 30px;
        right: 15px;
        border-radius: 50%;
    }
   .slider{
       margin-top: 0;
   }

}

@media screen and (max-width: 676px) {
    .news .main-item{
        display: block;
    }
    .news .main-item .img{
        margin: 0 auto 20px auto !important;
        display: block;
        text-align: center;
        width: auto;
    }
    .cards ul,.flex-container{
        display: block;
    }
    .cards li{
        margin: 0 auto 30px auto;
    }
    footer .contact{
        margin-top: 40px;
    }
    footer .web-title{
        text-align: center;
    }
    footer .contact{
        justify-content: center;
    }
    .aside-list ul li{
        width: 100%;
    }

}
@media screen and (max-width: 500px) {
    .slider .block{
        top: 328px;
        color: #333;
        margin: 40px auto 0 auto;
        max-width: 100%;
    }
    .slider .bg {
        height: 34%;
    }
    .slider .content h3 {
        font-size: 24px;
        color: #8f397c;
    }
    .slider .content p {
        font-size: 16px;
    }
    .counter{
        top: 0;
        border-top-left-radius: 0;
    }
    section.indx a.img {
        width: 100%;
    }
    section.indx:not(.r) h2.animate:before,
    section.indx:not(.r) h2.animate:after {
        width: 50px;
    }
    .cards.m li {
        margin-bottom: 120px;
    }
    section.news h2 {
        margin-bottom: 30px;
    }
    .sp-caption-container {
        width: 85px !important;
        top: 164px;
        left: 10px !important;
        bottom: auto !important;
        font-size: 14px !important;
    }
    .sp-thumbnail-container {
        height: 166px !important;
    }
    .sp-slide,
    .sp-mask {
        width: 100% !important;
    }
    section.news {
        padding-bottom: 0px;
    }
}
h2 {
    font-size: 18px;
}
.counter{
    right: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
section.news {
    /*background-color: #ef2e24;*/
}
section.news h2 {
    /*color: #9e0c40;*/
}
section.indx:not(.r) h2:before,
section.indx:not(.r) h2:after {
    background-color: #9e0c40;
}
.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
    border-color: #9e0c40 !important;
}
footer .contact h3:after {
    background-color: #ef2e24;
    border-radius: 4px;
}
footer .contact h3{
    padding-right: 20px;
    margin-right: 20px;
}
#back-top {
	left: 30px;
}
@keyframes Slide {
    0% {
        left: -350px;
    }
    100% {
        left: 0;
	}
}