@font-face {
    font-family: abel;
    src: url("../fonts/Abel-Regular.ttf") format("opentype");
}
@font-face {
    font-family: garamond;
    src: url("../fonts/garamond.ttf") format("opentype");
}

:root {
    --main-color: #0077c3;
    --main-light-color: #67a6f1;
    --main-color-opacity: #0077c399;
    --hover-color: #c7df91;
}

* {
    background-repeat: no-repeat;
    background-size: cover;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: garamond;
    font-size: 17px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a,
a:hover {
    color: inherit;
    transition: .3s;
    text-decoration: none;
}

button,
button:focus,
button:hover {
    border: none !important;
    background: none;
    outline: none !important;
    box-shadow: none !important;
}

.dir-ltr {
    direction: ltr;
}

.dir-rtl {
    direction: rtl;
}

[class*="mobile"] {
    display: none;
}

ul.list {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    object-fit: cover;
}

input {
    outline: none;
}

.overlay-wrapper {
    position: relative;
}

.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.main-link {
    background-color: var(--main-color);
    padding: 7px 50px;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    border: 2px solid var(--main-color);
}

.main-link:hover {
    background: none;
}

.section {
    padding: 20px 0;
}

.section-head {
    text-align: center;
}

.section-title {
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-color);
    font-weight: bold;
}

.section-icon-wrapper {
    position: relative;
    width: 250px;
    margin: auto;
}

.section-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 2px;
    background-color: #e4c8c7;
}

.section-icon {
    width: 50px;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.section-desc {
    padding: 10px 0;
}

.section-body {
    padding-top: 50px;
    margin-bottom: 70px;
}

.bg-main {
    background-color: #f5f0ec;
}

.box {
    border-radius: 15px;
}

[class*="hint--"]::after {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
    white-space: nowrap;
}

.hint--black::after {
    background: #000000;
    color: #ffffff;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 5px;
}

[class*="hint--"][aria-label]::after {
    content: attr(aria-label);
}

[class*="hint--"]:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1222px;
    }
}

/*socialmedia list */
.socialmedia-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 2px;
}

.socialmedia-list li {
    display: inline-block;
    padding: 0 2px;
    position: relative;
}

.socialmedia-list li i {
    width: 30px;
    border: 2px solid var(--main-color);
    color: #fff;
    background-color: var(--main-color);
    text-align: center;
    padding: 2px;
    border-radius: 50%;
    height: 30px;
    line-height: 21px;
    transition: ease-in-out all 0.3s;
}

.langs-list {
    position: absolute;
    left: -33px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px;
    background: #070c0f;
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
    width: 34px;
    text-align: center;
    font-size: 17px;
}

@media screen and (max-width: 992px) {
    [class*="lap"] {
        display: none;
    }

    [class*="mobile"] {
        display: block;
    }

    .langs-list {
        left: 0;
        top: 86px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}


/*****************************
******************************
        Header Style
******************************
*****************************/
header {
    margin-bottom: 15px;
    z-index: 9999 !important;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 5px 0 10px;
}

.logo-wrapper {
    flex: 2;
    text-align: center;
}

.logo-wrapper img {
    max-width: 175px;
    width: auto !important;
    padding-top: 10px;
}

.navbar {
    padding: 0;
    width: 100%;
}

.navbar-wrapper {
    color: #fff;
    font-size: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.nav-list {
    display: flex;
    width: 100%;
}

header .nav-item:not(:last-child) {
    padding-inline-end: 3px;
    background-color: #fff;
}

header .nav-item:first-child {
    border-bottom-left-radius: 30px;
}

header .nav-item:first-child .nav-item-link {
    border-bottom-left-radius: 30px;
    padding: 2px;
}

header .nav-item:last-child .nav-item-link {
    border-bottom-right-radius: 30px;
}

header .nav-item-link {
    background: var(--main-color);
    padding: 20px 15px 5px;
    display: block;
    position: relative;
    height: 100%;
    text-align: center;
    font-size: 14px;
}

header .nav-item-link i {
    font-size: 32px;
}

header .nav-item:hover .nav-item-link,
.nav-item.active .nav-item-link {
    background: var(--main-light-color);
}

header .nav-list li.has-list>.nav-item-link::before {
    display: inline;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7px;
    content: '\f107';
    font: normal normal normal 14px/1 FontAwesome;
}

.nav-item-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: none;
    color: var(--main-color);
    background: #f2f2f2;
    width: 100%;
    padding-top: 5px !important;
    box-shadow: 0 10px 22px -11px rgba(112, 112, 112, 0.77);
    -webkit-box-shadow: 0 10px 22px -11px rgba(112, 112, 112, 0.77);
    -moz-box-shadow: 0 10px 22px -11px rgba(112, 112, 112, 0.77);

}

.nav-item-list-title {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 4px;
    color: #444;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.nav-item-list-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30%;
    display: block;
    height: 1px;
    background-color: var(--main-color-opacity);
}

.nav-item:hover .nav-item-list {
    display: flex;
}

.nav-item-list>li {
    padding: 7px 15px;
    flex: 1;
    gap: 10px;
}

.nav-item-list li a {
    display: block;
    white-space: nowrap;
}

.sub-list li {
    margin-bottom: 5px;
    font-size: 18px;
}

header .nav-item img {
    width: 34px;
    display: block;
    margin: auto;
}

header .nav-toggle {
    border-radius: 0;
}

@media screen and (max-width: 992px) {
    .nav-list {
        flex-wrap: wrap;
    }

    header .nav-item:first-child {
        order: 1;
    }

    header .nav-item:nth-child(2) {
        order: 2;
    }

    header .nav-item:nth-child(2) i {
        color: #fff;
    }

    header .nav-item:not(:nth-child(2)):not(:first-child) {
        display: none;
        order: 3;
        width: 100%;
    }

    header .nav-item-link {
        font-size: 16px;
    }

    header .nav-item-link i {
        font-size: 22px;
    }

    header .nav-item {
        border-radius: 0;
    }

    header .nav-item .nav-item-link {
        border-radius: 0 !important;
    }

    header .nav-item:not(:last-child) {
        padding-inline-end: 0;
    }

    .mobile--nav-list {
        position: absolute;
        top: 0
    }

}

/*****************************
******************************
        Home Slider
******************************
*****************************/
.slider-section {
    padding: 20px 40px;
}

.home-slide {
    height: 450px;
    border-radius: 20px;
}

.home-slide-wrapper {
    display: flex;
    align-items: center;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding: 20px 40px 50px;
}

.home-slide-box {
    height: 100%;
    width: 100%;
    border: 3px solid var(--main-color);
    border-radius: 20px;
}

.home-slides .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-dot span {
    background: #fff !important;
    width: 15px !important;
    height: 15px !important;
}

.owl-dot.active span {
    background: var(--main-color) !important;
    width: 20px !important;
    height: 20px !important;
}

@media screen and (max-width: 992px) {
    .slider-section {
        margin-top: 117px;
    }

    .home-slide-wrapper {
        width: 100%;
    }
}

/*****************************
******************************
        News Section
******************************
*****************************/
.news-item {}

.news-item img {
    width: 100%;
    margin-inline-end: 25px;
}

.news-item-text {
    padding: 19px 20px 15px;
    margin-top: -10px;
    background-color: #f2f2f2;
}

.news-item-title {
    color: #555;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-read-more {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
}

@media screen and (max-width: 992px) {
    .news-item {
        margin-bottom: 15px;
    }
}

/*****************************
******************************
        Organizor Section
******************************
*****************************/
.organizer-item-title {
    color: var(--main-color);
    padding: 15px 0 10px 0;
    font-weight: bold;
    font-size: 23px;
}

.organizer-section .owl-nav [class*="owl-"] {
    background: none;
    color: #888;
    font-size: 67px !important;
    position: absolute;
    top: 80px;
}

.organizer-section .owl-nav .owl-prev {
    left: -70px
}

.organizer-section .owl-nav .owl-next {
    right: -70px;
}

.organizer-section .owl-nav [class*="owl-"]:hover {
    background: none;
    color: var(--main-color);
}

.organizer-slides-dots-wrapper {
    margin-bottom: 20px;
}

.organizer-slides-dots-list {
    display: flex;
    justify-content: center;
}

.organizer-slides-dots-list li {
    background-color: var(--main-light-color);
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    margin-inline-end: 3px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.organizer-slides-dots-list li:first-child {
    border-top-left-radius: 30px;
}

.organizer-slides-dots-list li:last-child {
    border-top-right-radius: 30px;
}

.organizer-slides-dots-list li.active {
    background-color: var(--main-color);
}

@media screen and (max-width: 992px) {
    .organizer-slides-dots-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .organizer-slides-dots-list li {
        border-radius: 0 !important;
    }

    .organizer-item {
        margin-bottom: 25px;
    }

}

/*******************************
********* Information STYLES ********
*******************************/

.info-tabs .nav-tabs {
    border-bottom: none;
    justify-content: space-between;
}

.info-tabs .nav-item {
    max-width: 130px;
}

.info-tabs .nav-item .nav-link {
    text-align: center;
}

.info-tabs .nav-item .nav-link,
.info-tabs .nav-link.active {
    border: none;
}

.info-tabs .nav-item img {
    max-width: 90px;
    width: 90px;
    padding: 10px;
    box-shadow: 0 0 7.2px 0.2px #ddd;
    margin-bottom: 20px;
}

.info-tabs .nav-tab-title {
    font-size: 17px;
    font-weight: bold;
}

.info-tabs .nav-link.active {
    color: var(--main-light-color);
}

.info-tabs .nav-link.active img {
    background-color: var(--main-light-color);
}

.info-tabs .tab-title {
    margin-top: 20px;
    text-align: center;
    padding: 10px 20px;
    background-color: var(--main-light-color);
    color: #fff;
    font-size: 22px;
}

/*******************************
********* clients STYLES ********
*******************************/
.clients-slides .owl-nav [class*="owl-"] {
    height: 90px;
    line-height: 90px !important;
    padding: 0px 8px !important;
    border-radius: 14px !important;
    font-size: 45px !important;
    font-weight: bold;
    background: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.clients-slides .owl-nav [class*="owl-"]:hover {
    background: none !important;
}

.clients-slides .owl-nav .owl-next {
    right: -50px;
}

.clients-slides .owl-nav .owl-prev {
    left: -50px;
}

/*****************************
******************************
        Footer Section
******************************
*****************************/
footer {
    position: relative;
}

footer .map {
    width: 100%;
    min-height: 350px;
}

footer .map iframe {
    width: 100%;
    height: 100% !important;
    min-height: 350px;
}

.footer-section {
    padding: 60px 60px 60px 40px;
}

.contact-section {
    width: 70%;
    margin: auto;
    position: absolute;
    top: 300px;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    box-shadow: 0 0 7.2px 0.2px #797979;
    padding: 40px 60px 0px;
    background: #fff;
}

.contact-title {
    padding-bottom: 10px;
    font-size: 25px;
    font-weight: bold;
    color: var(--main-light-color);
    margin-bottom: 20px;
}

.contact-info-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info-item {
    margin: 10px 0;
    width: 30%;
    color: #999;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 30px;
    height: 25px;
    min-width: 30px;
    font-size: 19px;
    line-height: 25px;
    margin-inline-end: 10px;
}

.contact-info-item-value {
    margin: 7px 0;
    color: var(--main-color);
    line-height: 1;
}

.contact-info-item-title {
    font-size: 13px;
}

.footer-cols {
    background-color: var(--main-light-color);
    padding-top: 660px;
    padding-bottom: 60px;
    margin-bottom: -10px;
    color: #fff;
}

.footer-cols-wrapper {
    width: 70%;
    margin: auto;
}

.footer-col-title {
    font-size: 18px;
    font-weight: bold;
}

.footer-col-list li {
    margin-bottom: 7px;
    font-size: 16px;
}

.footer-col-two {
    display: flex;
    flex-wrap: wrap;
}

.footer-col-two li {
    flex: 50%;
}

.contact-form .form-control {
    border-radius: 20px;
}

.contact-form .btn.btn-submit {
    padding: 9px 30px;
    border-radius: 20px;
}

.powered-by {
    color: var(--main-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

@media screen and (max-width: 992px) {
    .footer-wrapper {
        display: block;
    }

    .footer-wrapper .map {
        width: 100%;
        min-height: 100%;
    }

    .footer-section {
        width: 100%;
        padding: 60px 60px 60px 40px;
    }

    .footer-cols-wrapper {
        width: 90%;
    }

    .footer-cols {
        padding-top: 40px;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .contact-section {
        position: static;
        transform: none;
        width: 90%;
    }

    .contact-info-item {
        width: 100%;
    }

    .powered-by {
        text-align: end;
    }
}

/*****************************
******************************
        Elements Section
******************************
*****************************/
.elements-section,
.details-page {
    border-bottom: 30px solid var(--main-color);
}


/*****************************
******************************
     Contact Page
******************************
*****************************/


.btn.btn-submit {
    background-color: var(--main-color);
    color: #fff;
}

.btn.btn-submit:hover {
    background-color: var(--main-light-color);
}

.contact-title {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.error-text {
    color: red !important;
}

.contact-box {
    padding: 7px 0;
}

.contact-box .icon {
    font-size: 22px;
    color: var(--main-color);
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 10px;
    margin-left: 15px;
    transition: all ease-in-out 0.3s;
    border: 1px solid var(--main-color);
}

.contact-box .value {
    font-size: 17px;
    color: var(--grey-color);
    transition: var(--main-transition);
}

.contact-box:hover .icon {
    color: #fff;
    background-color: var(--main-color);
    transition: var(--main-transition);
}

.contact-box:hover .value {
    color: var(--dark-color);
}

.contact-section .location {
    margin-top: 100px;
}

.contact-section .location .map {
    height: 350px;
}

.contact-section .location .map iframe {
    height: 100%;
    width: 100%;
}

.location iframe {
    width: 100% !important;
    height: 300px !important;
}


/*****************************************
******************************************
************ Details Page ***************
/*****************************************
******************************************/
.details-section {
    min-height: 350px;
    padding: 10px 0 50px;
}

.single-element-page .img-box {
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    max-width: 350px;
}

.single-element-page .img-box img {
    width: 100%;
}

.single-element-page .img-box .element-title {
    text-align: center;
    padding: 20px 0;
}

.page-heading-title {
    font-size: 43px;
    font-weight: bold;
    margin-bottom: 35px;
    color: var(--main-color);
    text-align: center;
    padding: 30px 10px;
    position: relative;
}

.page-heading-title::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 50px;
    content: '';
    background-color: var(--main-color);
}

.page-heading-title::before {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 85px;
    content: '';
    background-color: var(--main-color);
}

@media (max-width:992px) {
    .single-element-page .img-box {
        width: 100%;
        clear: both;
        max-width: 100%;
        margin-right: auto;
        text-align: center;
    }

    .single-element-page img {
        margin: auto;
    }
}

.album-item {
    border: 2px solid var(--main-color);
}

.album-item-title {
    padding: 5px 10px;
    text-align: center;
}

.marquee-content {
    display: block;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;

}

.marquee-content * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-family: garamond, "Helvetica Neue", Helvetica, sans-serif;
}

.simple-marquee-container .marquee-sibling {
    padding: 0;
    background: rgb(0 119 195);
    width: 15%;
    height: 45px;
    line-height: 42px;
    font-size: 20px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    float: left;
    left: 0;
    z-index: 2000;
}

.simple-marquee-container {
    background: #0077c3ba !important;
}

.marquee-content * {
    font-family: DroidKufi, "Tahoma", Helvetica, sans-serif;
}
@media screen and (max-width: 768px) {
    .slider-section {
    margin-top: 75px;
    }
    .home-slide {
        height: 200px;
        background-size: cover;
        background-position: center;
    }
    .contact-info-item i {

        margin-inline-end: 0 !important;
    }
    .powered-by .col-md-4{
        text-align: center !important;
        margin-bottom: 5px;
    }
}
