@font-face {
    font-family: "regularH";
    src: url("../fonts/FSAlbertArabic-Regular.ttf");
}

@font-face {
    font-family: "lightH";
    src: url("../fonts/FSAlbertArabic-Light.ttf");
}

@font-face {
    font-family: "boldH";
    src: url("../fonts/FSAlbertArabic-Bold.ttf");
}

@font-face {
    font-family: "extraBoldH";
    src: url("../fonts/FSAlbertArabic-ExtraBold.ttf");
}

:root {
    scroll-behavior: smooth;
    --yellow: #E9BA22;
    --tab-color: #ECE6E0;
    --gray: #434340;
    --border-color: #DBE0DF;
    --border-radius: 7px;
    --border-input: 3px;
    --main-title-color: #FFF;
}

html {
    direction: rtl;
    margin: 0;
    padding: 0;
    text-align: right;

}
/* Loader */
.pre-loader{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgb(0 0 0 / 71%);
}


@keyframes loader {
  0%, 10%, 100% {
    width: 80px;
    height: 80px;
  }
  65% {
    width: 150px;
    height: 150px;
  }
}
@keyframes loaderBlock {
  0%, 30% {
    transform: rotate(0);
  }
  55% {
    background-color: #0476B9;
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes loaderBlockInverse {
  0%, 20% {
    transform: rotate(0);
  }
  55% {
    background-color: #0476B9;
  }
  100% {
    transform: rotate(-90deg);
  }
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  animation: loader 1.2s infinite ease-in-out;
}
.loader span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  animation: loaderBlock 1.2s infinite ease-in-out both;
}
.loader span:nth-child(1) {
  top: 0;
  left: 0;
}
.loader span:nth-child(2) {
  top: 0;
  right: 0;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader span:nth-child(3) {
  bottom: 0;
  left: 0;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}
.loader span:nth-child(4) {
  bottom: 0;
  right: 0;
}


/* Loader */
ul {
    list-style-type: none;
}

a {
    text-decoration: unset !important;
    cursor: pointer;
}
.whatsapp {
    position: fixed;
    top: 90vh;
    left: 3vw;
    z-index: 99;
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s ease-in;
}

.whatsapp:hover {
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease-out;
    transform: scale(1.1);
}

.color-gray {
    color: var(--gray) !important;
}

.color-gray-n-1 {
    color: #989898 !important;
}

.font-regular {
    font-family: regularH;
}

.alert-ad {
    z-index: 9990;
    background-color: var(--yellow);
    border-radius: 0;
    position: absolute;
    top: 149px;
    width: 100%;
    font-size: 16px;
    font-family: extraBoldH;
    color: white;
}

.alert-ad strong {
    color: var(--gray);
}

.alert-ad a {
    color: white;
    text-decoration: underline !important;
}

.alert-ad button {
    width: 30px;
    height: 30px;
    background: #D1A415;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
    color: white;
    opacity: 1;
    font-family: 'lightH';
    font-size: 26px;
    margin-top: -5px;
    outline: none;

}

.content-alert {
    display: flex;
    justify-content: space-between;
}

.alert-ad button span {
    transition: 0.2s ease-in;
}

.alert-ad button:hover span {
    color: red;
    transition: 0.2s ease-in;
}

.custom-btn {
    background-color: var(--yellow);
    color: white;
    font-size: 16px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'regularH';
}
.custom-btn.expired{
    background-color: #efece9;
    color: #808080b0;
    border-radius: 0;
}
.custom-btn.expired:focus,.custom-btn.expired:hover{
    outline: none;
    box-shadow: none;
}
.breadcrumb-main {
    background-color: #ECE6E0;
}

.breadcrumb {
    background-color: transparent;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: baseline;
}

.breadcrumb-item a {
    color: var(--gray);
    font-size: 16px;
    font-family: 'regularH';
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    font: normal normal normal 12px/1 FontAwesome;
    -webkit-font-smoothing: antialiased;
    color: var(--gray);
    line-height: 2;
    font-size: 10px;
    padding-left: 10px;
    padding-right: 8px;
}

.breadcrumb-item.active {
    color: var(--gray);
    font-family: boldH;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header {
    background-color: white;
}

/* .main-header .top{
    border-bottom: 1px solid var(--border-color);
} */

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 12px;
    font-family: lightH;
    background-color: var(--tab-color);
}

.top svg {
    width: 14px;
    height: 14px;
}

.main-header .aside-bar-menu {
    display: none;
}

@media (max-width: 992px) {
    .main-header .aside-bar-menu {
        display: inline;
        position: fixed;
        right: -900px;
        top: 0;
        height: 100%;
        background-color: white;
        width: 230px;
        z-index: 9999;
        padding-left: 24px;
        padding-right: 24px;
        transition: 0.3s ease-in;
    }
}

@media (max-width: 992px) and (max-width: 376px) {
    .main-header .aside-bar-menu {
        width: 190px;
    }
}

@media (max-width: 992px) {
    .main-header .aside-bar-menu .close-menu {
        font-size: 25px;
        cursor: pointer;
        margin-top: 17px;
        text-align: left;
    }

    .main-header .aside-bar-menu .close-menu i:hover {
        color: red;
        transition: 0.1s ease-in;
    }
}

@media (max-width: 992px) {
    .main-header .aside-bar-menu ul {
        display: flex;
        flex-flow: column;
        padding-right: 0;
        margin-top: 15px;
        padding-left: 0;
        margin-bottom: 0;
    }

    .main-header .aside-bar-menu ul li {
        padding-bottom: 5px;
    }

    .main-header .aside-bar-menu ul li a {
        color: #858A8F;
        transition: 0.3s ease-out;
        border-bottom: 1px solid transparent;
        font-size: 16px;
        width: 100%;
    }

    .main-header .aside-bar-menu ul li a:hover {
        color: #2A1935;
    }
}

.main-header .btn-nav {
    display: none;
    border: none;
    background: #FFF;
    color: #2A1935;
    font-size: 20px;
    width: 40px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
}

.main-header .header {
    background-color: #F7F5F3;

}

.main-header .navbar {
    padding: 13px 0px;
}

.main-header .navbar .nav-link {
    font-family: regularH;
    color: var(--gray);
}

.main-header .navbar-nav {
    padding-inline-start: 40px;
    align-items: center;
}

.main-header .navbar .nav-item {
    padding-left: 12.2px;
    padding-right: 12.2px;
}

.main-header .navbar .nav-item.active {
    position: relative;

}

.main-header .navbar .nav-item.active .nav-link {
    font-family: boldH;
    font-weight: unset;
}

.main-header .navbar .nav-item.active::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    transform: translate(50%, 0%);
    width: 14px;
    height: 2px;
    background-color: #A89152;
}

.search {
    position: relative;
}

.search input[type=text] {
    display: none;
    width: 0%;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    margin-inline-end: 0;
    margin-inline-start: auto;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 12px;
    font-family: regularH;
    background-color: transparent;
}

.has-val {
    width: 100% !important;
}

.search input[type=text]:focus {
    width: 100%;
}

.search svg {
    position: absolute;
    left: 5px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.logo {
    width: 73.8px;
    height: 72.8px;
}

@media (max-width: 992px) {
    .main-header .btn-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.btn-group button {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
    font-size: 12px;

}

.btn-group button:focus {
    box-shadow: none;
}

.btn-group button a {
    color: var(--gray);
    font-size: 16px;
    font-family: regularH;
}

.dropdown-menu {
    min-width: 0rem;
}

.dropdown-item {
    font-size: 16px;
    font-family: 'regularH';
}

.btn-group .dropdown-item:active {
    background-color: #ECE6E0;
}

/* banner */
.main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.overlay-img:hover::after {
    box-shadow: 0px 0px 20px #ffffff94;
    transition: 0.2s ease-in;
}

.overlay-img {
    position: relative;
    margin-bottom: 0;
}

.overlay-img.play {
    cursor: pointer;

}

.overlay-img::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.41);
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}

.overlay-img.play::after {
    content: '';
    position: absolute;
    background-image: url(../images/play.svg);
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    background-size: 80px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s ease-in;
    z-index: 1;
}

.logo-in-img {
    position: absolute;
    width: 100px;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.section-title {
    color: var(--gray);
    text-align: start;
}

.main-title h2 {
    color: var(--gray);
    font-family: extraBoldH;
    font-size: 25px;
    padding-top: 13px;
}

.section-title p {
    color: var(--gray);
    font-size: 14px;
    font-family: lightH;
    white-space: pre-line;
}

.section-title .sub-title {
    font-family: boldH;
    font-size: 16px;
    color: var(--gray);
}

.bg-blue {
    background-color: #0476B9;
    width: 100%;
    height: 100%;
}

.bg-blue.section-title {
    padding: 53px 80px 0 170px;
    color: white;
}

.bg-blue.section-title .main-title h2 {
    color: white;
}

.bg-blue.section-title .sub-title {
    color: white;
    margin-bottom: 10px;
}

.bg-blue.section-title p {
    color: white;
}

/* ./banner */

/* brands */
.brands {
    margin-top: 144px;
}

.img-brand {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card {
    background-color: #F7F5F3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 0px 20px 0px;
    height: 190px;
}

.brand-card h3 {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    font-family: boldH;
}

.brand-card img {
    width: 100px !important;
    height: 100px;
    object-fit: contain;
}

.arrows {
    position: relative;
}

.arrows .owl-nav {
    margin-inline-start: -5px;
    margin-inline-start: -5px;
}

.arrows-bottom-left .owl-nav {
    position: absolute;
    left: 0;
}

.arrows-bottom-right .owl-nav {
    position: absolute;
    right: 0;
}

.arrows-bottom-center .owl-nav {
    position: absolute;
    right: 50%;
    transform: translate(50%, 0);
}

.arrows-center .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.arrows-center .owl-nav .owl-prev {
    position: absolute;
    right: -60px;
}

.arrows-center .owl-nav .owl-next {
    position: absolute;
    left: -70px;
}

.owl-theme .owl-dots .owl-dot {
    outline: none;
    margin-top: 25px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #BEBEBE;
    opacity: .25;
    width: 13px;
    height: 13px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #0090DF;
    opacity: 1;
}

.arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
    background-color: #EFECE9 !important;
    width: 40px;
    height: 40px;
    outline: none;
    border-radius: 0;

}

.arrows .owl-nav .disabled {
    opacity: 0.67;
}

.arrows .owl-nav span {
    font-size: 25px;
    color: var(--gray);
    text-align: center;
    line-height: 0;
}

/* ./brands */

/* branches */
.branches {
    margin-top: 80px;
}

.branch-card .branch-card-body {
    position: relative;
}

.branch-card figure img {
    height: 450px;
    object-fit: cover;
}

.branch-card .branch-card-body {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    padding-inline-start: 25px;
    padding-inline-end: 25px;

}

.branch-card .branch-card-body p {
    position: absolute;
    font-size: 16px;
    font-family: boldH;
    color: white;
    bottom: 0;

}

.branches div[class*="owl-normal"] {
    margin-top: 42px;
}

/* ./branches */

/* products */
.products {
    margin-top: 80px;
    background-image: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    padding-top: 57.6px;
    padding-bottom: 57.6px;
    background-size: cover;
}

.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
}

.tabs .tab-link {
    color: #989898;
    font-family: 'regularH';
}

.tabs .active .tab-link {
    color: var(--gray);
    font-family: boldH;
}

.tabs .active {
    position: relative;
}

.tabs .active::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    right: 50%;
    transform: translate(50%, 0%);
    width: 14px;
    height: 2px;
    background-color: #E9BA22;
}

.products div[class*="owl-normal"] {
    margin-top: 42px;
}

.product-card {
    background-color: #FFFFFF;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    padding: 37.6px 0px;
    margin-top: 30px;
}

.product-card img {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain;

}

.product-card:hover {
    transition: 0.2s ease-in;
    box-shadow: 0px 0px 20px #DFDFDF;
}

.product-card h3 {
    font-size: 14px;
}

/* ./products */

/* unknown-section */
.unknown {
    margin-top: 80px;
}

.unknown img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.unknown-info {
    position: relative;
}

.unknown-info:hover .content {
    opacity: 1;
    transition: 0.2s ease-in;
}

.unknown-info .content {
    opacity: 0;
    background-image: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    background-image: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    background-image: -ms-linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    background-image: -o-linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transition: 0.2s ease-in;
}

.content {
    font-size: 16px;
    font-family: boldH;
    color: white;
    padding: 33px;
}

.content a {
    font-size: 13px;
    font-family: boldH;
    border-radius: 0;
    box-shadow: none !important;
    outline: none !important;

}

.content a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    width: fit-content;
}

/* ./unknown-section */

/* news */
.news {
    margin-top: 80px;
    margin-bottom: 120px;
}

.news-card {
    position: relative;
    transition: 0.2s ease-in;
    overflow: hidden;
}

.news-card img {
    transition: 0.2s ease-in;
    width: 100%;
    height: 455px;
    object-fit: cover;

}

.news-card:hover img {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transition: 0.2s ease-in;
}

.overlay-img::before {
    transition: 0.2s ease-in;
}

.news-card:hover .overlay-img::before {
    background-color: rgb(162 128 13 / 80%);
    transition: 0.2s ease-in;
}
.news-card:hover .news-card-body p{
    opacity: 0;
    transition: 0.2s ease-in;
}
.news-card .news-card-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-inline-start: 25px;
    padding-inline-end: 25px;
    padding-bottom: 15px;
    z-index: 2;
}

.news-card .news-card-body p {
    font-size: 16px;
    font-family: boldH;
    margin-top: -35px;
    bottom: unset;
    color: white;
    transition: 0.2s ease-in;
}

.news-card .news-card-body .post {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid #F8F8F8;
    padding-top: 10px;
}

.news-card .hover-card {
    opacity: 0;
    position: absolute;
    top: 0;
    padding: 40px 22px;
    z-index: 2;
    transition: 0.2s ease-in;
}

.hover-card h3 {
    font-size: 21.6px;
    color: white;
    font-family: boldH;
}

.hover-card p {
    font-size: 14px;
    font-family: lightH;
    color: white;

}

.hover-card a {
    background-color: var(--yellow);
    border-radius: 0;
    border-color: var(--yellow);
    font-size: 14px;
    font-family: boldH;
}

.news-card:hover .hover-card {
    opacity: 1;
    transition: 0.2s ease-in;
}

/* ./news */

/* footer */
.footer {
    background-color: #262626;
    padding-top: 37px;
    padding-bottom: 37px;
    color: white;
    padding-bottom: 1px;
}

.goles p {
    font-size: 12px;
    font-family: lightH;
}

.footer-title {
    font-size: 16px;
    font-family: boldH;
    margin-bottom: 16px;
}

.footer .menu {
    padding-inline-start: 40px;
}

.footer .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    padding-inline-start: 15px;
}

.footer .menu ul li {
    list-style-type: square;
    flex: 1 1 75px;
}

.footer .menu ul li a {
    font-size: 14px;
    font-family: lightH;
    color: white;
}

.footer .menu ul li a:hover {
    opacity: 0.8;
}

.footer .subscription {
    margin-inline-start: 40px;
}

.footer .subscription form input[type='email'] {
    background-color: #303030;
    border: none;
    font-size: 14px;
    color: white;
    font-family: lightH;
    height: 40px;
    border-radius: 0;
}

.footer .subscription form {
    display: flex;
    margin-top: 28px;
}

.footer .subscription form input[type='email']:focus {
    outline: none;
    box-shadow: none;
}

.footer .subscription form input::placeholder {
    color: white;
    font-family: lightH;
    font-size: 14px;
}

.footer .subscription form button {
    color: white;
    font-family: bold;
    font-size: 14px;
    background-color: var(--yellow);
    border-radius: 0;
    box-shadow: none;
}

.footer .subscription form button:hover {
    opacity: 0.7;
}

.footer .part-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.31);
}

.footer .part-2 {
    padding-top: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.31);
    padding-bottom: 5px;
}

.footer .part-2 svg {
    width: 28px;
    height: 28px;
}

.footer .part-2 p {
    margin-bottom: 0;
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    font-family: lightH;
    font-size: 12px;
}

.footer .social-media {
    text-align: end;
}

.social-media a svg {
    transition: 0.2s ease-in;
    margin-inline-start: 4px;
    margin-inline-end: 4px;
}

.social-media a svg:last-child {
    margin-inline-end: 0px;
}

.social-media a:hover svg {
    transform: scale(1.2);
    transition: 0.2s ease-in;
}

.part-3 {
    padding-top: 13px;
}

.copyright {
    font-family: lightH;
    font-size: 12px;
    text-align: center;
}

/* ./footer */

/* about-page */
.about {
    background-image: url(../images/product-bg.jpg);
    background-position: center;
    background-size: contain;
}

.about .section-1 {
    background-color: white;
    margin-top: -16px;
}

.about .section-1 figure {
    max-width: 515px;
    max-height: 340px;
}

.about .section-1 img {
    width: 100%;
    height: 100%;
}

.about .section-1 {
    padding-top: 68px;
    padding-bottom: 68px;
}

.about .section-1 .section-title p {
    white-space: normal;
    font-size: 15px;
}

.about .section-2 {
    background-color: white;
    margin-top: 80px;
    padding-top: 52.8px;
    padding-bottom: 59.2px;
}

.about .section-2 .section-title p {
    white-space: normal;
    font-size: 15px;
}

.about-product {
    background-color: #F7F5F3;
    padding: 20px 20px;
    text-align: center;
    margin-top: 24px;
}

.about-product img {
    max-width: 200px;
    max-height: 170px;
    object-fit: contain;
    border-bottom: 1px dashed #EBE7E3;
    padding-bottom: 20px;
}

.about-product h3 {
    font-size: 18px;
    font-family: boldH;
    color: var(--gray);
}

.about-product p {
    white-space: pre-line !important;
    font-size: 14px;
    font-family: lightH;
    color: var(--gray);
}

.about .section-3 {
    background-color: #F7F5F3;
    padding-top: 41px;
    padding-bottom: 72px;
}

.about .section-3 .members-card {
    margin-top: 40px;
}

.members-card {
    background-color: white;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0px 8px 0px #efece9;
    margin-bottom: 5px;
}

.members-card figure {
    background-color: #F7F5F3;
    border: 2px solid #ECEAE7;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    margin-bottom: 21px;
}

.members-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.members-card h3 {
    color: var(--gray);
    font-size: 16px;
    font-family: boldH;
}

.members-card p {
    color: #ABA29A;
    font-size: 16px;
    font-family: regularH;
}
.about-product{
    height: 400px;
    overflow-y: scroll;
    /* scrollbar-width: thin; */
    scrollbar-color: #E9BA22 #555;
}
.about-product img{
    margin-inline: auto;
}
.about-product::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.about-product::-webkit-scrollbar-track {
    background: rgba(233, 186, 34, 0.15);
}

/* Handle */
.about-product::-webkit-scrollbar-thumb {
    background: #E9BA22;
}

/* Handle on hover */
.about-product::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* ./about-page */

/* products-page */
.products-page {
    background: #F7F5F3;
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-inline-start: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    width: 20px;
    border: 1.55px solid #CECFD2;
    border-radius: 5px;
    background-color: white;
    display: none;
}

/* On mouse-over, add a grey background color */

.custom-checkbox:hover input~.checkmark {
    background-color: #8ec6412e;
}

/* Create the checkmark/indicator (hidden when not checked) */

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

/* When the checkbox is checked, add a blue background */

.custom-checkbox input:checked~.checkmark {
    border: 1.55px solid var(--green);
}

.custom-checkbox input:checked~.label {
    color: var(--gray);
    font-family: boldH;
}

/* Style the checkmark/indicator */

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--green);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadcrumb.official {
    top: 24px;
    margin-bottom: 50px;
}

.products-show {
    margin-top: 20px;
    padding-bottom: 120px;
}

.filters {
    padding: 20px 24px 12px 24px;
    background-color: white;
    margin-top: 30px;
}

.filter-tilte {
    color: #989898;
    font-family: 'regularH';
    padding-bottom: 15px;
}

.filters .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.filters .top p {
    font-size: 16px;
    margin-bottom: 0;
    color: #989898;
    font-family: boldH;
    cursor: pointer;
}
.filters .top p.active{
    color: var(--gray);
}
.filters .top .hide, .filters .top .show {
    cursor: pointer;
}

.filters .top .show {
    display: none;
}

.filters .bottom .custom-checkbox {
    color: #989898;
    font-size: 14px;
    font-family: 'regularH';
}

.filters .bottom {
    max-height: 150px;
    overflow-y: scroll;
    margin-bottom: 20px;
    max-width: 200px;
}

.custom-checkbox input:checked .custom-checkbox {
    font-family: regularH;
}

.filters>div:not(:last-child) {
    border-bottom: 1px solid #F2F2F2;
}

.custom-pagination .page-link {
    position: relative;
    color: var(--gray);
    background-color: #fff;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    display: block;
    margin-left: 5px;
    margin-right: 5px;
    line-height: 32px;
    font-size: 16px;
    outline: none !important;
    box-shadow: none;
    font-family: 'regularH';
    text-align: center;
}

.page-item:last-child .page-link, .page-item:first-child .page-link {
    font-size: 24px;
}

.custom-pagination .page-link:hover {
    background-color: #8ec6412e;
}

.custom-pagination .page-item.active .page-link {
    background-color: #E9BA22;
    border-color: transparent;
}

/* width */
.bottom::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.bottom::-webkit-scrollbar-track {
    background: rgba(233, 186, 34, 0.15);
}

/* Handle */
.bottom::-webkit-scrollbar-thumb {
    background: #E9BA22;
}

/* Handle on hover */
.bottom::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ./products-page */

/* events-page */
.events {
    padding-bottom: 128px;
}

.events-cards {
    margin-top: 10px;
}

.events-cards .news-card {
    margin-top: 30px;
}

/* ./events-page */

/* albums-page */
.albums-page {
    background-image: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    padding-top: 0;
}

.albums-items {
    background-color: #F7F5F3;
    text-align: start;
    padding-top: 40px;
    padding-bottom: 80px;
    margin-top: 80px;
}

.albums-items .head {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.albums-items .head a {
    color: #989898;
    font-size: 14px;
    border-left: 1px solid rgba(233, 186, 34, 0.36);
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    font-family: regularH
}

.albums-items .head a:last-child {
    border-left: none;
}

.albums-items .head a.active {
    color: var(--gray);
    font-family: extraBoldH;
}

.albums-items .album-card {
    margin-top: 30px;
}

.album-card {
    position: relative;

}

.album-card figure img {
    height: 350px;
}

.album-body-hover {
    opacity: 0;
    position: absolute;
    bottom: 40px;
    color: white;
    z-index: 2;
    font-family: 'extraBoldH';
    font-size: 25px;
    width: 100%;
    text-align: center;
    transition: 0.2s ease-in;
}

.album-card:hover .overlay-img::before {
    background-color: rgba(0, 0, 0, 0.65);
}

.album-card:hover .overlay-img.play::after {
    background-image: url(../images/play-2.svg);
    opacity: 1;

}

.album-card:hover .album-body-hover {
    opacity: 1;
}

.album-card .overlay-img.play::after {
    opacity: 0.8;
}

/* ./albums-page */


/* event-details */
.event-details {
    padding-bottom: 120px;
}

.details {
    margin-top: 45px;
    position: relative;
}

.details-top .subtitle {
    color: #707070;
    font-size: 14px;
}

.details-top .title {
    color: #434340;
    font-size: 25px;
    font-family: extraBoldH;
}

.auther {
    font-size: 12px;
    color: var(--gray);
    font-family: 'regularH';
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.auther svg {
    width: 23px;
    height: 23px;
}

.details-photo {
    margin-top: 25px;
}

.details-photo img {
    height: 352px;
    width: 100%;
    /*object-fit: cover;*/
}

.details-content p {
    font-size: 14px;
    color: var(--gray);
    font-family: 'regularH';
    overflow: hidden;
}

.details-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.details .overlay-img {
    margin-bottom: 1rem;
}

.details-content {
    background-color: white;
    padding: 25px;
    margin-top: 32px;
}

.details-content *{
    font-family: 'regularH' !important;
}
.event-details {
    background-color: #F7F5F3;
}

.share {
    display: flex;
    align-items: baseline;
    margin-inline-start: 40px;
    gap: 10px;
}

.share h4 {
    font-size: 14px;
    font-family: boldH;
    color: var(--gray);
    margin-bottom: 0;
}

.share .links {
    display: flex;
    align-items: center;
}

.share .links a {
    margin-inline-start: 20px;
}

.share .links svg {
    width: 33px;
    height: 33px;
}

.share .links a:first-child {
    margin-inline-start: 10px;
}

.share_links {
    position: relative;
}

.share_links .links {
    position: absolute;
    display: none;
    background: white;
    z-index: 52;
    top: -60px;
    left: 0px;
    padding: 9px;
    width: 160px;
    border-radius: 4px;
    text-align: center;
}

.share_links .links a svg {
    width: 30px;
    height: 30px;
}

.share_links .links a {
    padding-inline-start: 10px;
}

.others {
    margin-top: 60px;
}

.event-details .main-title {
    margin-bottom: 32px;
}

@media (max-width:419px) {
    .auther {
        font-size: 10px;
    }

    .details-top .subtitle {
        font-size: 13px;
    }

    .details-top .title {
        font-size: 16px;
    }

    .auther {
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
    }

    .share {
        margin-inline-start: 0;
    }

}

.jobs-page {
    background-image: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    padding-top: 0;
}

/* ./event-details */


/* jobs */



.jobs-page .content {
    padding-top: 80px;
    background-color: #F7F5F3;
    margin-top: 80px;
}

.jobs-page .img-story {
    width: 100%;
    height: 290px;
}

.jobs-page .img-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.available-job, .why {
    margin-top: 0;
    background-color: #ffffff;
    padding: 46.4px 0px;
}

.available-job h4, .why h4 {
    font-size: 17.6px;
    color: #575757;
    font-family: boldH;
    margin-bottom: 41.6px;
}
.jobs-page .job-card{
    height: 269.8px !important;
}
.job-card {
    border: 1.5px solid #D2D1D0;
    padding: 25px 17px;
    border-radius: 0;
    background-color: transparent;
    transition: 0.2s ease-in;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.job-card:hover {
    background-color: white;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    transition: 0.2s ease-in;
    border-color: transparent;
}

.job-card-header {
    border-bottom: 1px dashed gray;
    padding-bottom: 16px;
}

.job-card-header h3 {
    font-size: 16px;
    padding-bottom: 10.8px;
}

.category {
    font-size: 12px;
    color: #434340;
}

.job-card svg {
    width: 15px;
    height: 15px;
}

.job-card-body p {
    font-size: 12px;
    color: #707070;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card-footer span, .job-card-footer p {
    font-size: 14px;
    /* margin-bottom: 3px; */
}

.job-card-footer p {
    color: #707070;
    margin-bottom: 7px;
}

.job-card-footer span {
    color: #434340;
    font-family: boldH;
}

.job-card-footer .custom-btn {
    width: 40%;
    height: 45px;
}


.why {
    background-color: transparent;
}

.card-askmo {
    justify-content: center;
    width: 200px;
    background-color: white;
    padding-top: 30px;
    row-gap: 10px;
    margin-bottom: 30px;
    border: none;
}

.card-askmo .card-img-top {
    width: 21px;
    height: 21px;
}

.card-askmo .card-header {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.card-askmo .card-header figure {
    width: 60px;
    background-color: #F4F3EF;
    border-radius: 50%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-askmo .card-body p {
    font-size: 14px;
    text-align: center;
    color: var(--gray);
}

.card-askmo .card-body {
    padding-bottom: 40px;
    padding-top: 0;
}

.why {
    margin-top: 15.6px;
    padding-bottom: 80px;
    background: #F7F5F3;
}

@media (max-width:992px) {
    .top-page {
        margin-top: 0;
    }

    .jobs-page .content {
        padding-top: 0;
    }
}

@media (max-width:419px) {
    .card-askmo {
        width: 100%;
    }
}

/* ./jobs */

/* job-details */
.job-details {
    background-color: #F7F5F3;
    /* margin-top: 80px; */
}

.job-details .overlay-img::before {
    background-color: rgba(0, 0, 0, 0.2);

}

.job-content {
    margin-top: 50px;
    padding-bottom: 120px;
}

.job-details .details-photo {
    margin-bottom: 32px;
}

.job-content h3 {
    font-size: 25px;
    font-family: extraBoldH;
    color: var(--gray);
}

.job-content p {
    font-family: lightH;
    font-size: 14px;
    color: var(--gray);
}

.roles-jobs {
    margin-top: 25px;
    /* padding-bottom: 20px; */
}

.roles-jobs i {
    font-size: 10px;
    color: var(--yellow);
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gray);
    line-height: 2;
}

.roles-jobs p {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.roles-jobs h3 {
    font-size: 25px;
    font-family: 'boldH';
    color: var(--gray);
}

.roles-jobs p span {
    font-size: 16px;
    /* font-family: 'boldH'; */
    color: var(--gray);
}

.column-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    flex: 1;
}

.column-table .head {
    border: 1.5px solid var(--border-color);
    background-color: var(--yellow);
    padding: 15px 32px;
    color: white;
    font-size: 20px;
    font-family: mediumH;
    margin-bottom: 0;
    width: 100%;
}



.column-table .body {
    border: 1.5px solid var(--border-color);
    background-color: white;
    padding: 15px 32px;
    color: var(--black);
    font-size: 18px;
    font-family: mediumH;
    border-top: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.column-table .custom-btn {
    margin-top: 0;
    min-width: 120px;
    height: 45px;
    font-size: 16px;
    border-radius: 0;
}

@media (max-width:768px) {
    .column-table {
        flex: 1 1 100%;
    }

    .column-table .body {
        margin-bottom: 0;
    }

    .column-table:nth-child(1) .head {}

    .column-table:last-child .head {
        border-top-left-radius: 0;
    }

    .column-table:nth-child(1) .body {
        border-bottom-right-radius: 0;
    }

    .column-table:last-child .body {}

    .column-table .custom-botton {
        margin-top: 0;
        min-width: 100%;
        height: 40px;
        font-size: 16px;
    }
}

/* ./jobs-details */

/* job-form */
.job-form {
    background-color: #F7F5F3;
}

.job-form .form {
    margin-top: 50px;
}

#form .error {
    border-color: red !important;
    color: red;
}

#form .error~figure {
    border-color: red !important;
}

#form .error ~ .upload-file{
    border: 1px solid red !important;
}

.form label {
    font-size: 14px;
    font-family: boldH;
    color: var(--gray);
}

.form .custom-input::placeholder {
    font-size: 14px;
    color: #BEBEBE;
}

.custom-input:focus {
    box-shadow: none;
    border: 1.5px solid var(--border-color);
}

.custom-input {
    background-color: white;
    border: 1.5px solid var(--border-color);
    height: 50px;
    font-size: 14px;
    font-family: regularH;
    color: #BEBEBE;
    box-shadow: none;
    border-radius: 0;
}

.job-form .form h1 {
    text-align: center;
    font-size: 24px;
    font-family: regularH;
    margin-bottom: 32px;
}

.upload-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.upload-img figure {
    background-color: #FFF;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 2;
    cursor: pointer;
    border: 1px solid #DBE0DF;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.upload-img p {
    font-size: 14px;
    color: var(--green);
}

#preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-form .custom-input {
    height: 55px;
    text-indent: 10px;
    background: white;
}

.custom-select-main {
    position: relative;
}

.custom-select-main select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.custom-select-main i {
    position: absolute;
    z-index: 99;
    top: 68%;
    left: 32px;
    font-size: 20px;
    transform: translate(0, -50%);
    color: var(--gray);
}

.custom-select-main select::-ms-expand {
    display: none;
}

.job-form .custom-botton {
    min-width: 100%
}

.upload-file {
    position: relative;
    cursor: pointer;
}

.upload-file .text-upload {
    display: flex;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 32px;
    font-size: 14px;
    transform: translate(0, -50%);
    color: var(--green);
    align-items: center;
    gap: 10px;
    user-select: none;
}

.upload-img span {
    font-size: 14px;
    font-family: regularH;
}

#upload-file {
    cursor: pointer;
    outline: none;
    box-shadow: none;
    border: none;
}

.custom-modal.success .modal-body {
    text-align: center;
    margin-top: -25px;
}

.custom-modal.success .modal-body h3 {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.custom-modal.success .modal-body .custom-botton {
    min-width: 50%;
    margin: 0 auto;
    margin-bottom: 40px;
    width: 50%;
}

.custom-modal.success .modal-body p {
    font-size: 20px;
    font-family: mediumH;
    color: var(--gray);
    margin-bottom: 40px;
}

.job-form .custom-input.datepicker {
    text-align: end;
    padding-inline-end: 15px;
}

@media (min-width: 992px) {
    .custom-modal.success .modal-lg, .custom-modal.success .modal-xl {
        max-width: 680px;
    }
}

@media (max-width:419px) {
    .job-form .form {
        padding: 30px 0px;
    }

    .custom-select-main i {
        left: 22px;
    }

    .job-form .custom-input {
        text-indent: 5px;
    }

    .custom-modal.success .modal-body .custom-botton {
        min-width: 100%;
        width: 100%;
    }
}

/* ./job-form */

/* contact-us */
.contact-us {
    background-color: #F7F5F3;
    padding-bottom: 120px;
}

#map {
    height: 380px;
    width: 100%;
    margin-top: -16px;
    margin-bottom: 52px;
}

.contact-us .section-1 p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
    font-family: lightH;
}

.contact-us .custom-btn {
    width: 50%;
    margin-inline-end: 0;
    margin-inline-start: auto;
    border-radius: 0;
}

.contact-info {
    background-color: white;
    padding: 38px 25px;
    border: 1px solid #DBE0DF;
}

.contact-us .roles-jobs h3 {
    font-family: 'extraBoldH';

}

.contact-info .roles-jobs p span {
    font-family: boldH;
}

.contact-info .roles-jobs:not(:last-child) {
    border-bottom: 1px solid #DBE0DF;
}

.contact-info .roles-jobs svg {
    width: 33px;
    height: 33px;
}

.contact-info .roles-jobs .d-flex {
    column-gap: 90px;
}

.contact-info .roles-jobs .d-flex p {
    margin-top: 0;

}

a svg {
    transition: 0.2s ease-in;
}

a:hover svg {
    transition: 0.2s ease-out;
    transform: scale(1.2);
}
.contact-us .custom-select-main {
    height: 117px;
}
.contact-us .custom-select-main i {
    top: 50%;

}
.branches-contact{
    display: flex;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 18px;
}
.contact-us .roles-jobs .info-branch-contact {
    /* margin-top: 18px; */
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: -3px;
}

/* .contact-us .roles-jobs h3 {
    font-size: 25px;
    font-family: 'boldH';
    color: var(--gray);
} */

.contact-us .roles-jobs .info-branch-contact span {
    font-size: 16px;
    font-family: 'boldH';
    color: var(--gray);
}

/* contact-us */

.swal2-container {
    height: auto !important;
}

#form label.error {
    font-size: 12px;
    font-family: 'regularH';
}
/* search */
.nav-search {
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    color: #8A8A8F;
    border: 1px solid #E7E5EA;
    border-radius: 0;
    padding: 12px;
    margin-top: 18px;
    margin-bottom: 18px;
    text-indent: 10px;
}

.number-of-search-result {
    font-family: 'boldH';
    color: var(--yellow);
}
.number-of-search-result .result{
    color: #8A8A8F;
    font-family: lightH;
}

.nav-search select {
    border: none;
    color: #8A8A8F;
    font-family: 'regularH';
}
.card-search{
    border: 1px solid #EBEAEE;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    margin-bottom: 2rem;
}
.card-search .body-search {
    width: 750px;
}
.card-search .body-search .date{
   margin-bottom: 1rem;
   color: #8A8A8F;
   font-size: 13px;
   font-family: lightH;
}
.card-search figure{
    width: 220px;
    height: 160px;
    /* border:1px solid var(--border-color); */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.card-search figure img{
    /* border-radius: 20px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-search h2{
    color: var(--gray);
    font-size: 18px;
    font-family: 'boldH';
}
.card-search p{
    font-family: lightH;
    font-size: 14px;
    color: #8A8A8F;
}
.footer-search svg{
    transition: 0.2s ease-in;
}
.footer-search svg:hover{
    transform: scale(1.2);
    transition: 0.2s ease-in;
}
.card-search.product-card figure{
    position: relative;
}
.card-search.product-card .size {
    position: absolute;
    top: 7px;
    left: 7px;
    height: 25px;
    width: 75px;
    text-align: center;
    border-radius: 13px;
    background-color: #EBEAEE;
    color: var(--gray);
    line-height: 27px;
    font-size: 14px;
}
.card-search.product-card img{
    width: auto;
    height: auto;
}
.card-search.product-card img{
    transition: 0.2s ease-in;
}
.card-search.product-card img:hover{
    transform: scale(1.2);
    transition: 0.2s ease-in;
}
.card-search.product-card h2{
    font-size: 14px;
    color: var(--yellow);
}
.card-search.product-card p{
    color: var(--black);
    font-size: 18px;
    width: 30%;
}
.search ~ .main-footer{
    padding-top: 80px;
}
.word-search{
    color: var(--yellow);
    font-family: 'boldH';
}
@media screen and (max-width:1023px) {
    .nav-search {
        flex-flow: column;
        align-items: center;
        padding: 15px;
        text-indent: 0;

    }
}
@media (max-width:992px) {
    .card-search{
        flex-direction: column;
        width: 100%;
    }
    .card-search .body-search{
        width: auto;
    }
    .card-search figure{
        width: 100%;
    }
    .card-search figure img{
        width: 100%;
        object-fit: cover;
    }
    .card-search.product-card p{
        color: var(--black);
        font-size: 18px;
        width: 100%;
    }
}
/* ./search */

.link-to{
    border-radius: 25px;
    width: auto;
    margin-inline-start: auto;
    margin-inline-end: 10px;
    height: 30px;
    font-size: 14px;
}