/* General */
@font-face {
    font-family: estedad;
    src: url(../fonts/estedad.woff2);
}

* a {
    text-decoration: none;
}

p, ul li {
    font-family: estedad;
    list-style-type: circle;
    list-style-position: inside;
}

.responsive {
    width: 100%;
    height: auto;
}

/* Header */
.header {
    height: 600px;
    background-color: #E8CBAE;
    padding-top: 50px;
    background-image: url('../img/header-background.jpg');
    background-size: cover;
    background-position: center;
    background-position: top;
    background-repeat: no-repeat;  
}

#header-container-page .header {
    height: 200px;
}

/* Content Container */
#content-container {
    direction: rtl;
    margin: 50px 0 50px;
}

#content-container td img {
    height: 32px;
}

/* Menu */
.menu {
    direction: rtl;
    font-family: estedad;
}

.menu ul li {
    display: inline;
    padding-left: 40px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding-bottom: 5px;
}

/* Hover Underline */
.menu .hvr-underline-from-right:before {
    height: 2px;
    background: #fff;
}


/* Slider */
.slider {
    padding: 20px 0 20px;
    background-color: #f0f0f0;
}

.slider img {
    border: 5px solid transparent;
    border-color: #fff;
    height: 300px;
}

.owl-stage{
    text-align: center !important;
}

.owl-dots {
    display: none !important;
}

.owl-carousel img {
    width: auto !important;
}

.owl-carousel {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}
  
.owl-carousel::before,
.owl-carousel::after {
    content: "";
    position: absolute;
    width: 150px; /* Adjust this value as needed */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
  
.owl-carousel::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, #f0f0f0, rgba(240, 240, 240, 0));
}
  
.owl-carousel::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, #f0f0f0, rgba(240, 240, 240, 0));
}

/* Intro */
.intro {
    font-family: estedad;
    padding: 50px 0 50px;
}

.intro h2 {
    padding: 10px 0 10px;
    font-weight: 700;
}

.intro p {
    direction: rtl;
    padding-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #F0F0F0;
    padding: 50px 0 50px;
    font-size: 15px;
}

.footer .contact {
    direction: rtl;
    font-family: estedad;
}

.footer .contact a {
    color: #000;
}

.footer .contact ul {
    padding: 30px 0 30px;
}

.footer a span {
    padding-bottom: 2px;
}

.footer .contact ul li {
    padding-left: 20px;
    display: inline;
}

.footer .contact ul li a {
    text-decoration: none;
    color: #000;
}

.footer .contact img {
    height: 20px;
    padding-left: 10px;
}

.footer .brand img {
    height: 100px;
}

.footer a {
    padding-bottom: 25px;
}

.footer .hvr-underline-from-right:before {
    height: 1px;
    background: #666;
}

/* SlickNav */
.slicknav_menu {
	display:none;
}

/* Table */
table {
    font-family: estedad;
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #BDBDBD;
    font-weight: 500;
}

td {
    font-weight: 300;
}

tr:nth-child(even) {
    background-color: #f0f0f0;
}

tr:hover {
    background-color: #CFD8DC;
}

tr {
    cursor: pointer;
}

/* Search Input */
#searchInput {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    background-color: #f8f8f8;
    border: 2px solid #ccc;
}

/* Responsive Mode */

@media (max-width: 768px) {
    .controls button {
        display: block;
        width: 100%;
    }
    .controls fieldset {
        margin-top: 10px;
        width: 100%;
    }
    .controls select {
        width: 100%;
    }
}

@media screen and (max-width: 40em) {
	#menu {
		display:none;
	}
	
	.slicknav_menu {
		display:block;
        text-align: center;
	}

    .header .brand {
        margin-left: -10px;
        text-align: center;
    }

    .footer .brand {
        margin-left: -10px;
        text-align: center;
        padding-bottom: 50px;
    }

    .footer .contact {
        text-align: center;        
    }

    .footer ul li {
        display: block !important;
        padding-bottom: 10px;
    }

    .intro {
        text-align: center !important;
    }
}  