@font-face {
    font-family: NotoKufiArabic-Regular;
    src: url(../webfonts/NotoKufiArabic-Regular.woff2);
}

@font-face {
    font-family: NotoKufiArabic-Bold;
    src: url(../webfonts/NotoKufiArabic-Bold.woff2);
}

* {
    margin: 0;
    padding: 0;
}

.modal-backdrop {
   opacity: 1;
    z-index: auto;
}

.modal-header .close {
    margin: -1rem auto -1rem -1rem;
}

.modal-content{
    margin-top: 100px;
}

::selection {
    color: #fff;
    background-color: #da9f00;
}

::-moz-selection {
    color: #fff;
    background-color: #da9f00;
}

@keyframes ripple {

    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        transform: scale(1.3);
        opacity: .8
    }

    to {
        opacity: 0;
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        transform: scale(1.6)
    }
}

body {
    font-family: NotoKufiArabic-Regular , sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e4e4e4;
    text-align: right;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #161616;
}

::-webkit-scrollbar-thumb {
    background-color: #da9f00;
}


.faz-btn{
    border: 0;
    padding: 10px 20px;
    border-radius: 2px;
    color: #fff;
    background-color: #841b2d;
    font-size: 14px;
    transition: all 300ms;
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
}

.faz-btn:hover{
    background-color: #6a1524;
    outline: none;
    box-shadow: none;
    color: inherit;

}

.faz-btn:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1.875rem;
}

img {
    max-width: 100%;
    height: auto;
}

p:last-of-type {
    margin-bottom: 0;
}

ul,
ol {
    margin-bottom: 0;
}

a {
    transition: all 300ms; 
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #da9f00;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

h3{
    color: #fff;
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
    padding: 0 5px;
}

h3::after {
    content: '';
    background-color: #841b2d;
    position: absolute;
    width: 100%;
    height: 14px;
    bottom: 5px;
    right: 0;
    border-radius: 1px;
    z-index: -1;
}


input[type='text'],
input[type='email'],
textarea{
    width: 100%;
    margin: 0;
    padding: 1rem 0.4rem;
    transition: all 300ms;
    border: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    outline: none; 
    background-color: transparent;
    appearance: none;
	text-align:right;
}

input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
    border-color: #fff;
}

input[type='text']::placeholder,
input[type='email']::placeholder,
textarea::placeholder{
    opacity: 1;
    color: rgba(255, 255, 255, .6);
}

input[type='text']:focus::placeholder,
input[type='email']:focus::placeholder,
textarea:focus::placeholder{
    opacity: 0;
}

.faz-main {
    position: relative;
    overflow: hidden;
}

.faz-navbar {
    position: relative;
    z-index: 70;
}

.faz-navbar .faz-navbar-inner {
    padding: 1rem;
    transition: padding 300ms;
}

.faz-navbar .faz-navbar-background {
    position: absolute;
    z-index: -1;
    top: -1px;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 300ms;
    box-shadow: none;
}

.faz-navbar-solid .faz-navbar-background {
    height: 100%;
}

.faz-navbar.faz-navbar-transparent .faz-navbar-background {
    background-color: transparent;
}

.faz-navbar.faz-navbar-solid .faz-navbar-background {
    background-color: #262626;
}

.faz-navbar-sticky {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
}

.faz-navbar .faz-navbar-logo img {
    display: block;
    height: 4rem;
}

.faz-menu-burger {
    font-size: 1.8rem;
    line-height: 0;
}

.faz-menu-burger svg {
    width: 1em;
    height: 1em;
    transition:transform 300ms;
}

.faz-menu-burger:hover {
    color: inherit;
}

.faz-menu-burger-opened:hover svg {
    transform: rotate(180deg);
}

.faz-default-menu-navigation .sf-menu > li {
    display:inline-flex;
}

.faz-default-menu-navigation .sf-menu > li > a {
    font-size: .9375rem;

}
.faz-default-menu-navigation .sf-menu > li + li {
    margin-right: 2rem;
}

.faz-default-menu-navigation .sf-menu > li.active > a,
.faz-default-menu-navigation .sf-menu > li:hover > a {
    color: #da9f00;
}

.faz-offcanvas-menu {
    position: fixed;
    z-index: 80; 
    top: 0;
    left: 0;
    bottom: 0;
    display:flex;
    flex-direction: column;
    width: 100%;
    padding: 1.8rem;
    transform: translate3d(-100%, 0, 0);
    color: #fff;
    background-color: #161616;

}
@media only screen and (min-width: 576px) {
    .faz-offcanvas-menu {
        width: 30rem;
    }
}

.faz-offcanvas-menu-header {
    display: flex;
    padding-bottom: 3.5rem;
    direction: ltr;
}

.faz-offcanvas-menu-navigation {
    overflow-y: auto;
    height: 100%;
}

.faz-offcanvas-menu-navigation .sf-menu > li:not(:last-child) {
    padding:1rem 0;
}

.faz-offcanvas-menu-navigation .sf-menu > li:first-child {
    padding-top: 0;
}

.faz-offcanvas-menu-navigation .sf-menu a {
    display: inline-block;
}

.faz-offcanvas-menu-navigation .sf-menu > li > a {
    font-size: 1.5rem;
    line-height: 1.2;
}

.faz-offcanvas-menu-navigation .sf-menu > li.active > a,
.faz-offcanvas-menu-navigation .sf-menu > li:hover > a {
    color: #da9f00;
}

.fixed-social {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgb(0 0 0);
    cursor: pointer;
    z-index: 100;
}


.fixed-social span {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #da9f00;
    font-size: 2em;
    line-height: 50px;
    transition: 0.3s ease-in-out;
}

.fixed-social  ul {
    position: absolute;
    bottom:65px;
    left: 0;
    min-width: 240px;
    background-color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 1px 5px rgb(0 0 0), 0 -1px 5px rgb(0 0 0);
    color: #262626;
}

.fixed-social.active ul {
    opacity: 1;
    visibility: visible;
}

.fixed-social ul li {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}

.fixed-social ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.fixed-social ul li i{
    padding-left: 10px;
}





.faz-site-overlay
{
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, .8);
}

.faz-social-icon {
    display:inline-flex;
    font-size: 1.3rem;
}

.faz-social-icon:hover {
    transform: scale(1.1);
}



.faz-fullpage-slider {
    height: 100vh;
}

.faz-fullpage-slider .faz-section
{
    display: flex;
    flex-direction: column;
    background-color: #161616;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex: 1 1 auto;
    flex-wrap: wrap;
}
.faz-fullpage-slider .faz-section-vertical-align {
    display: flex;
    overflow: hidden; 
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
}

.faz-fullpage-slider .faz-section-content {
    position: relative;
    z-index: 2; 
    display:flex;
    width: 100%;
    min-height: 100%;
    padding: 8rem 0 4rem;
    flex: 1 1 auto;
}

.faz-fullpage-slider .cover  h1 {
    font-size: 60px;
    color: #fff;
    line-height: 1.5;
    margin-top: 160px;
}

.faz-fullpage-slider .cover  p {
    font-size: 25px;
    margin-top: 30px;
    color: #fff;
}

.faz-fullpage-slider .cover  p span {
    color: #da9f00;
}

.faz-video-button {
    width: 70px;
    height: 70px;
    background-color: #da9f00ed;
    border-radius: 50%;
    position: relative;
    margin-top: 50px;
    margin-right: 10px;
    display: inline-block;
}

.faz-video-button:after,
.faz-video-button:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    background-image: linear-gradient(to bottom right, #da9f00, #f6c235);
}

.faz-video-button:before {
    animation: ripple 1.6s ease-out infinite;
}

.faz-video-button i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

.faz-brief-content p {
    text-align: justify;
}

.faz-brief-content span {
    color: #f0af00;
}

.faz-brief-img .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 0;
}

.faz-brief-img  .owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 0;
}

.faz-brief-img .owl-theme .owl-dots .owl-dot{
    outline: none;
}


.faz-book-item , .faz-courses-item , .faz-agenda-item , .faz-blog-item{
    margin-bottom: 20px;
}

.faz-book-img , .faz-agenda-img ,.faz-courses-img , .faz-blog-img{
    border-radius: 3px;
    background-color: #262626;
    overflow: hidden;

}

.faz-book-img img, .faz-agenda-img img,.faz-courses-img img , .faz-blog-img img {
    width: 100%;
}

.faz-book-img , .faz-agenda-img{
    padding: 30px;
}

.faz-book-content , .faz-courses-content , .faz-agenda-content , .faz-blog-content{
    padding: 20px 0;
}

.faz-courses-content h5 , .faz-book-content h5 , .faz-blog-content h5{
    margin-bottom: 15px;
}

.faz-book-content p , .faz-courses-content p , .faz-agenda-content p , .faz-blog-content p{
    text-align: justify;
}


.faz-book-item .modal-content {
    background-color: #000000;
}

.faz-book-details li{
    display: block;
}

.faz-book-item  .faz-book-details li  span {
    color: #da9f00;
}

.faz-book-item  .faz-book-details li a{
    text-decoration: underline;
}
.faz-book-item  .faz-book-details li a:hover{
    color: inherit;
}

.faz-agenda-img img , .img-collaborate img{
    filter: grayscale(100%);
    transition: all .3s ease-in-out;
}

.faz-agenda-item:hover .faz-agenda-img img, .img-collaborate img:hover {
    filter: grayscale(0%);
    transform: scale(1.06);
}

.contact  p {
    font-size: 20px;
}

.contact h5 {
    color: #fff;
    line-height: 1.8;
}

.contact h5 a{
  color: #f0af00;
}

.contact h5 span {
    color: #f0af00;
}