/********** Template CSS **********/
:root {
    --primary: #95533d;
    --secondary: #FFD33C;
    --light: #F3F3F3;
    --dark: #212121;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

.btn {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 7px;
        top: -4px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
	.navbar-light .navbar-nav .nav-link.active:hover::before{
		background: #FF9800!important;
	}
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        width: 100%;
        height: 1px;
        top: -1px;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.service-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.service-item a:hover i {
    padding-left: 50px;
}

.service-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.service-item a:hover i::after {
    width: 50px;
}

.product-item {
    padding: 10px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: -20px;
    opacity: 1;
}

.product-carousel .owl-nav,.history-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next,
.history-carousel .owl-nav .owl-prev,
.history-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover,
.history-carousel .owl-nav .owl-prev:hover,
.history-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
	background: #FF9800;
}

.bg-offer {
    background: url(../img/offer.jpg) top right no-repeat;
    background-size: cover;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.team-carousel .owl-nav,.latest-carousel .owl-nav {
    position: absolute;
    width: 50px;
    height: 160px;
    top: calc(50% - 80px);
    right: 0;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next,
 .latest-carousel .owl-nav .owl-prev,
.latest-carousel .owl-nav .owl-next{
    position: relative;
    width: 50px;
    height: 50px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover,
.latest-carousel .owl-nav .owl-prev:hover,
.latest-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
	background: #FF9800;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-item .team-overlay {
    position: absolute;
    top: 45px;
    right: 45px;
    bottom: 45px;
    left: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(189, 157, 0, .8);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/hero2.jpg) top left no-repeat;
    background-size: cover;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 46px;
    top: calc(50% - 23px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
	background: #FF9800;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

@media (min-width: 576px) {
    .blog-item .row,.latest-carousel .team-item .row {
        height: 300px;
    }
}

.blog-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.blog-item a:hover i {
    padding-left: 50px;
}

.blog-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.blog-item a:hover i::after {
    width: 50px;
}



/*new*/
img{max-width: 100%;}
.navbar-brand img{width:57px;}
.text-primary-shadow{
    text-shadow: 2px 1px 5px #000;
}
.text-primary-shadow-inverse{
    text-shadow: 1px 1px 1px #fff;
}
.text-title-new span{
    background: rgb(149, 83, 61, 0.7);
    color: #fff;
    padding: 0 10px;
    font-size: 70%;
    text-shadow: 1px 1px 1px #000000;
}
.text-title-black span{
    background: rgba(255, 255, 255, 0.7);
    color: #000000;
    padding: 0;
    text-decoration: overline;
    text-shadow: 1px 1px 1px #d5d5d5;
}
.text-title-new,.text-title-black{
	text-align: justify;
}
.text-normal-shadow{
    text-shadow: 1px 2px 5px #363636;
}

.latest-carousel .team-item:hover img{transform: none;}
.read-more:hover{color: #FF9800!important;}
.service-item a.read-more:hover i::after{background: #FF9800!important;}
.contactusMenu:hover,.navbar-light .navbar-nav .nav-link.contactusMenu.active{background: #FF9800!important;color:#000!important;}
.navbar-light .navbar-nav .nav-link.active:hover{
    color: #FF9800!important;
}
.navbar-light .navbar-nav .nav-link.contactusMenu.active:hover{background: #95533d!important;color:#fff!important;}
.btn-light:hover,.btn-light:focus{background: #FF9800!important;}
.nav-pills .nav-link:hover,.nav-pills .nav-link:focus{color:#000!important;background:#FF9800!important;}
.btn-outline-light:hover{    background-color: #FFC107!important;
    border-color: #F3F3F3!important;}
.footer_p .fix {font-size: 0.9rem;}
/*history*/
.text-shadow-gray{text-shadow: 1px 1px 1px #ebebeb;}
.hideBlock{display:none!important;}
.border-box-new{    border: 1px solid #afafaf;
    padding: 5px;
    border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    box-shadow: 1px 1px 1px #919191;}
	.display-inline-block{display:inline-block;vertical-align:top;}
	.display-block{display:block;margin: 0 auto;}
/*events*/
.w-16{width:16.66666666666667%}
.p-row-odd p:nth-of-type(odd){background:#ebebeb;}
/*newsletter*/
    #unsubscribe:checked + label {
        border-color: #dc3545;
        color: #fff;
        background-color: #dc3545;
    }
    #subscribe:checked + label {
         border-color: #18d318;
        color: #fff;
        background-color: #156e27;
    }
	.newsletter-div .btn-outline-secondary{color: #fff;
    border-color: #797979;}
	#subscribe + .btn-outline-secondary:active,#subscribe + .btn-outline-secondary:hover{background-color: #156e27;}
	#unsubscribe + .btn-outline-secondary:active,#unsubscribe + .btn-outline-secondary:hover{background-color: #dc3545;}
@media(max-width:1480px) {
	.navbar-light .navbar-nav .nav-link{
		    margin-left: 10px;
	}
	.navbar-light .navbar-nav .nav-link.contactusMenu{padding-right:15px!important;padding-left:15px!important;margin-left: 15px !important;}
	.navbar h1{font-size: 25px;}
}
@media(max-width:1350px) {
	.header-address,.header-email{        
	    font-size: 14px;
        line-height: 14px;
        display: inline-block;
        vertical-align: top;
	}
	.navbar-brand{
		margin-left: 15px !important;
	}
}
@media(max-width:1200px) {
	.text-title-new {
		text-align: left;
	}
	.text-title-new span{font-size: 58%;}
	
}
@media(max-width:1100px) {
	.navbar-light .navbar-nav .nav-link{font-size: 15px!important;}
}

@media(max-width:991.98px) {
	.py-5 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.footer_p .fix{
		font-size: 1rem;
	}
	.navbar-light .navbar-nav .nav-link {
		margin-left: 0;
	}
	.navbar-light .navbar-nav .nav-link.contactusMenu{margin-left: 0 !important;}
	.navbar h1{font-size: 2.5rem;}
	.header-address,.header-email{font-size: 1rem;display: flex;line-height: 1.5;}
	.navbar-light .navbar-nav .nav-link{font-size: 18px!important;}
	.navbar-brand{
		margin-left: 0 !important;
	}
}
@media(max-width:480px) {
	.navbar h1 {
		font-size: 2rem;
	}
}
@media(max-width:400px) {
	.text-title-new span{font-size: 49%;}
}
@media(max-width:380px) {
	.navbar h1 {
		font-size: 1.4rem;
	}
}
@media(max-width:320px) {
	.navbar h1 {
		font-size: 1rem;
	}
	.text-title-new span{font-size: 42%;}
}

/*google*/
.goog-te-combo,#google_translate_element {
    font-size: 16px !important;
    line-height: 30px !important;
    height: 30px !important;
    width: 155px !important;
	position:fixed!important;
	right:14px!important;
	bottom:auto!important;
	z-index: 1!important;
	font-family: ArticleText Arabic khebrat,serif!important;
	left:auto!important;top:14px!important;
}

.goog-te-gadget{
	    font-size: 0!important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd{display:none!important;}

html[lang="fr"] .sticky-top {
	top: 39px;
}
html[lang="fr"] .goog-te-combo, html[lang="fr"] #google_translate_element{
	top: 55px !important;
}
@media(max-width:1480px) {
	.goog-te-combo,#google_translate_element {width: 54px !important;}
}
@media (max-width: 991.98px) {
    .goog-te-combo, #google_translate_element {
        width: 54px !important;
        top: 90px !important;
        right: 100px !important;
    }
	html[lang="fr"] .goog-te-combo, html[lang="fr"] #google_translate_element{
		top: 125px !important;
        right: 45px !important
	}
}
.pt-6{padding-top:4rem;}
.w-5{width:5%;}
.w-4{width:4%;}
.w-6{width:6%;}
.w-7{width:7%;}
.w-8{width:8%;}
.w-9{width:9%;}
.listeventsDiv .w-4{width:3%;}
.listeventsDiv .w-5{width:4%;}
/*aspx*/
input[type="radio"] {
margin-right:10px;
}
.cursor-pointer{cursor:pointer;}
.cursor-pointer:hover {
    color: #FF9800 !important;
}
.owl-carousel .owl-item img{width:auto;max-height:440px;}
@media (max-width: 1120px) {
    .owl-carousel .owl-item img {
        max-height: none;
    }
}
    /*cms*/
    .navbarCMS {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

        .navbarCMS.sticky-top {
            position: sticky;
        }