@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("../fonts/font-awesome/css/font-awesome.css");
@import url("../fonts/elegant_font/HTML_CSS/style.css");
@import url("../fonts/et-line-font/style.css");
@import url("../fonts/icofont/icofont.min.css");

* {
    --title-font: "Poppins", sans-serif;
    --body-font: "Poppins", sans-serif;
    --border-default: solid 1px rgba(30, 30, 30, 1);
    --bg-color-even: #E8E8E8;
    --bg-color-odd: #F4F4F4;
    --bg-color-dark: var(--title-font-color);
    --body-font-color: #1b1b1b;
    --title-font-color: #161C2D;
    --dark-body-font-color: rgba(255, 255, 255, .5);
    --main-gradient: linear-gradient(90deg,
            var(--white-color) 0%,
            var(--tertiary-color) 40%,
            var(--secondary-color) 85%,
            var(--primary-color) 100%);
}

.g-custom-x {
    --bs-gutter-x: 30px;
}

html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

body {
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 300;
    color: var(--body-font-color);
    padding: 0;
    line-height: 1.6em;
    word-spacing: 0px;
}

p {
    margin-bottom: 20px;
}

a,
a:hover {
    text-decoration: none;
}

#wrapper {
    overflow: hidden;
}

/* ================================================== */

/*  header  */

/* ================================================== */

header {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1001;
    background: #2b313f;
    margin: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0);
}

header.transparent {
    background: none;
}

header div#logo {
    color: white;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header .logo-scroll {
    display: none;
}

header .logo-mobile {
    display: none;
}



/* ================================================== */

/* navigation */

/* ================================================== */

#mainmenu {
    font-family: var(--title-font);
    font-weight: 500;
    font-size: 14px;
    margin: 0 auto;
    float: none;
}

#mainmenu ul {
    margin: 0px 0px;
    padding: 0px;
    height: 30px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    background: #ffffff;
    color: var(--body-font-color);
}

#mainmenu ul:not(.mega) {
    border: solid 1px #dddddd;
}

#mainmenu li {
    margin: 0px 0px;
    padding: 0px 0px;
    /* float: left; */
    display: inline;
    list-style: none;
    text-transform: uppercase;
    position: relative;
}

#mainmenu>li.has-child:after {
    font-family: FontAwesome;
    content: "\f078";
    padding-left: 5px;
    font-size: 8px;
    position: relative;
    top: -2px;
    color: white;
}

.rtl #mainmenu li.has-child:after {
    padding-left: 15px;
}

.header-light #mainmenu li.has-child:after {
    color: rgba(0, 0, 0, .5);
}

#mainmenu li>a {
    padding-right: 6px;
    font-weight: 500;
}

#mainmenu li.has-child>a {
    padding-right: 0px;
}

#mainmenu a {
    position: relative;
    display: inline-block;
    padding: 25px 15px;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    outline: none;
}

#mainmenu p {
    line-height: 1.8em;
    margin-bottom: 0;
}

header.header-light #mainmenu a {
    color: #35404e;
}

#mainmenu a span:not(.badge) {
    position: relative;
    width: 0%;
    color: #ffffff;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 14px;
    border-bottom: solid 2px #ffffff;
}

#mainmenu li:hover a span:not(.badge) {
    width: 100%;
}

#mainmenu li li a span:not(.badge) {
    float: right;
    margin-top: 5px;
}

#mainmenu a.active span:not(.badge) {
    width: 100%;
    margin-left: 0%;
}

.header-light {
    border-bottom: solid 1px rgba(255, 255, 255, 0);
    background: white;
    position: relative;
}

.header-light #mainmenu>li>a {
    color: #222;
}

#mainmenu li li {
    font-family: var(--body-font);
    font-size: 14px;
}

#mainmenu li li:last-child {
    border-bottom: none;
}

#mainmenu li li a {
    padding: 5px 15px;
    border-top: none;
    color: #606060;
    width: 100%;
    border-left: none;
    text-align: left;
    font-weight: normal;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
}

#mainmenu li:last-child>a {
    border-bottom: none;
}

.dark-scheme #mainmenu li li a {
    color: #ffffff;
}

#mainmenu li li a:hover {
    color: #111;
}

#mainmenu li li a:after {
    content: none;
}

#mainmenu li li a:hover,
#mainmenu ul li:hover>a {
    color: #fff;
}

#mainmenu li ul {
    width: 190px;
    height: auto;
    position: absolute;
    left: 0px;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    border-radius: 3px;
}

#mainmenu ul li b {
    background: #333;
    color: #ffffff;
    padding: 0 3px;
    padding-bottom: 3px;
    font-size: 10px;
    margin-right: 3px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}

#mainmenu li li {
    font-size: 14px;
    display: block;
    float: none;
    text-transform: none;
}

#mainmenu li:hover>ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
}

#mainmenu li ul ul {
    top: 0px;
    margin-left: 188px;
}

#mainmenu select {
    padding: 10px;
    height: 36px;
    font-size: 14px;
    border: none;
    background: #ff4200;
    color: #eceff3;
}

#mainmenu select option {
    padding: 10px;
}

#mainmenu .btn-type {
    padding: 0;
    margin: 0;
}

#mainmenu .btn-type a {
    background: #eee;
    padding: 0;
    margin: 0;
}

#mainmenu>li ul.mega {
    position: fixed;
    left: 0;
    height: 0%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: none;
}

#mainmenu>li ul.mega .sb-menu {
    background: #fff;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: solid 1px #dddddd;
}

.dark-scheme #mainmenu>li ul.mega .sb-menu {
    background: #101224;
    border-color: rgba(255, 255, 255, .1);
}

#mainmenu li:hover ul.mega {
    visibility: visible;
    opacity: 1;
}

#mainmenu li ul.mega>li,
#mainmenu li ul.mega>li a {
    width: 100%;
}

#mainmenu li ul.mega li.title {
    padding: 0px 10px 15px 10px;
    text-align: left;
    color: #fff;
    font-weight: bold;
}

#mainmenu li ul.mega>li ul {
    position: static;
    visibility: visible;
    opacity: 1;
    left: 0;
    float: none;
    width: 100%;
}

#mainmenu ul.mega>li ul li {
    margin: 0;
    padding: 0;
}

#mainmenu ul.mega>li ul li:last-child {
    border-bottom: none;
}

#mainmenu li ul.mega .menu-content {
    background: #171A21;
    padding: 30px;
}

#mainmenu li ul.mega li.title {
    font-family: var(--main-font);
    padding: 0px;
    text-align: left;
    font-weight: bold;
    color: #586383;
}

#mainmenu ul.mega>li ul {
    border: none;
}

#mainmenu li ul.mega ul li a {
    background: none;
    padding: 2px 0;
}

#mainmenu li ul.mega ul li a:hover {
    color: #35404e;
}

header.header-mobile #mainmenu>li ul.mega {
    visibility: visible;
    opacity: 1;
}

header:not(.header-mobile) #mainmenu>li:hover ul.mega {
    height: auto;
}

/* menu toggle for mobile */

#menu-btn {
    display: none;
    float: right;
    width: 30px;
    height: 32px;
    padding: 4px;
    text-align: center;
    cursor: poInter;
    color: #fff;
    margin-top: 5px;
    margin-left: 20px;
}

#menu-btn:before {
    font-family: FontAwesome;
    content: "\f0c9";
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    line-height: 23px;
}

#menu-btn:hover {
    background: #fff;
}

#menu-btn:hover:before {
    color: #222;
}

.rtl #menu-btn {
    float: left;
}

header.header-mobile.header-light,
header.header-mobile.header-light #menu-btn,
header.header-mobile.header-light #menu-btn:hover {
    background: none;
}

header.header-mobile.header-light #menu-btn {
    color: #222;
}

header.header-mobile {
    position: fixed !important;
    background: #ffffff;
    top: 0;
    padding-bottom: 10px;
}

header.header-mobile.menu-open {
    background: #ffffff;
}

header.header-mobile .container {
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
}

header.header-mobile.has-topbar .header-row,
header.header-mobile.has-topbar .header-col {
    margin-top: 10px;
}

header.header-mobile nav {
    float: none;
}

header.header-mobile .logo {
    display: none;
}

header.header-mobile .btn-rsvp {
    padding-top: 40px;
    height: 90px;
}

header.header-mobile .logo-2 {
    display: inline-block;
}

header.header-mobile.header-light {
    background: #fff;
}

header.header-mobile #mainmenu ul {
    padding: 0;
}

/* ================================================== */

/* content */

/* ================================================== */

#content {
    width: 100%;
    background: #ffffff;
    padding: 90px 0 90px 0;
    z-index: 100;
}


/* ================================================== */

/* section */

/* ================================================== */

section {
    padding: 70px 0 70px 0;
    position: relative;
}

/* ================================================== */

/* footer */

/* ================================================== */

footer {
    padding: 80px 0 0 0;
    font-size: 14px;
}

footer.footer-light {
    background: var(--tertiary-color);
}

footer.footer-light a {
    color: var(--body-font-color);
}

footer p {
    font-size: 14px;
    line-height: 1.8em;
}

footer a {
    color: #ffffff;
    text-decoration: none !important;
}

.subfooter {
    border-top: solid 1px rgba(255, 255, 255, .1);
    padding: 20px 0 20px 0;
}

.footer-light .subfooter {
    border-top: solid 1px rgba(0, 0, 0, .1);
}

/* topbar start here */

#topbar {
    z-index: 1000;
    width: 100%;
    overflow: hidden;
    top: 0;
    background: rgba(0, 0, 0, .05);
}

#topbar a {
    color: var(--title-font-color);
    font-weight: 400;
    text-decoration: none;
}

.topbar-left,
.topbar-right {
    display: flex;
}

.topbar-right {
    float: right;
}

/* #topbar:not(.topbar-noborder) .topbar-right .topbar-widget {
    border-left: 1px solid rgba(var(--primary-color-rgb), 0.3);
} */

/* topbar left content */
.topbar-left {
    float: left;
}

#topbar:not(.topbar-noborder) .topbar-left .topbar-widget {
    border-right: 1px solid rgba(var(--primary-color-rgb), 0.3);
}

/* topbar widget */
.topbar-widget {
    font-size: 13px;
    display: flex;
    padding: 3px 10px;
    font-weight: 400;
    height: 40px;
}

.topbar-widget i {
    font-size: 14px;
    margin-top: 10px;
    margin-right: 5px;
}

.topbar-widget:before {
    float: left;
    position: relative;
    font-family: "FontAwesome";
    font-size: 16px;
    margin-right: 10px;
}

/* topbar end here */

/* swiperjs */

.swiper,
.sw-overlay {
    position: absolute;
    width: 100%;
    height: 100% !important;
}

.swiper-slide {
    position: relative;
    background: var(--bg-dark-1);
}

.sw-caption {
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 80%;
    transform: translateY(-80%);
    letter-spacing: -.5;
}

.slider-title {
    font-size: 48px;
}

p.slider-teaser {
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 400;
}

.sw-overlay {
    background-color: rgba(27, 26, 26, 0.55);
}

.swiper-scrollbar {
    display: none;
}

.swiper-inner {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}


.main-slider .v-center {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

header.smaller.scroll-light {
    background: #ffffff;
}

header.scroll-light .logo-scroll {
    display: none;
}

header.smaller.scroll-light .logo-main {
    display: none;
}

header.smaller.scroll-light .logo-scroll {
    display: block;
}

header.smaller {
    position: fixed;
    top: 0px;
    background: #ffffff;
}

header.smaller {
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.15);
}

header.smaller.scroll-light .h-phone {
    color: #202020;
}

header.smaller #mainmenu ul ul {
    top: 0px;
}

header.smaller.scroll-light {
    background: #ffffff;
}

header.smaller .logo-init {
    display: none;
}

header:not(.header-light).smaller.scroll-light div#logo .logo {
    display: none;
}

header.smaller.scroll-light div#logo .logo-2 {
    display: inline-block;
}

header.smaller.scroll-light div#logo .logo-scroll {
    display: inline-block;
}

header.smaller.header-light div#logo .logo {
    display: none;
}

header.smaller.scroll-light .social-icons i {
    color: #333;
}

header.smaller.scroll-light #mainmenu li a,
header.smaller.scroll-light #mainmenu li.has-child:after {
    color: #333333;
}

header.smaller.scroll-light #mainmenu li li a:hover {
    color: #ffffff;
}

header.smaller div#logo .logo-1 {
    display: none;
}

header.smaller div#logo .logo-2 {
    display: inline-block;
}

header.smaller .hide-on-scroll {
    display: none;
}

.logo-main {
    position: relative;
    width: 80px;
}

.logo-scroll {
    position: relative;
    width: 80px;
}


header.smaller #topbar {
    margin-top: -42px;
}

#topbar .social-icons i {
    font-size: 14px;
    background: none;
    margin-bottom: 0;
    margin-right: 5px;
    height: 20px;
    width: 0px;
    display: inline-block;
}

.base-card {
    padding: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background: transparent;
}

blockquote .by {
    font-weight: 500;
    margin-top: 10px;
    padding-left: 30px;
    font-style: italic;
}

blockquote .by:before {
    content: "";
    display: block;
    position: absolute;
    left: 12px;
    margin-top: 12px;
    width: 20px;
    height: 1px;
    background: #171c2c;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#notice-carousel {
    position: relative;
}

.absolute {
    position: absolute;
}

.bloglist {
    border-radius: 12px;
}

.aspect-1 {
    aspect-ratio: 1/1;
    width: 100%;
}

.aspect-2-3 {
    aspect-ratio: 2 / 3;
    width: 100%;
}

.aspect-3-2 {
    aspect-ratio: 3 / 2;
    width: 100%;
}

.aspect-4-2 {
    aspect-ratio: 4 / 2;
    width: 100%;
}

.aspect-4-3 {
    aspect-ratio: 4 / 3;
    width: 100%;
}

.cover {
    object-fit: cover;
}

.contain {
    object-fit: contain;
}

.img-fixed-area:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(var(--primary-color-rgb), .3);
    z-index: 1;
}

.img-fixed-area {
    position: relative;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.rounded-30 {
    overflow: hidden;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
}

.padding90 {
    padding: 120px;
}

.img-fixed-area>* {
    position: relative;
    z-index: 2;
}

.img-fixed-area blockquote span {
    color: white;
    font-size: 20px;
}

.img-fixed-area blockquote .by:before {
    background: white;
}

.img-fixed-area blockquote {
    border-left: solid 3px #ffffff;
    font-size: 20px;
}

.logo-carousel img {
    height: 80px;
    object-fit: contain;
    object-position: center;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


.president-image {
    background: -moz-linear-gradient(180deg, rgba(var(--primary-color-rgb), 1) 20%, rgba(var(--primary-color-rgb), 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(var(--primary-color-rgb), 1) 20%, rgba(var(--primary-color-rgb), 0) 100%);
    background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 1) 20%, rgba(var(--primary-color-rgb), 0) 100%);
    border-radius: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* de-bloglist-type-1 */
.de-bloglist-type-1 .d-content {
    display: block;
    border-bottom: solid 1px rgba(0, 0, 0, .1);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.de-bloglist-type-1 .d-image {
    position: absolute;
    overflow: hidden;
    width: 80px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.de-bloglist-type-1 .d-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.de-bloglist-type-1 .d-content {
    padding-left: 100px;
}

.de-bloglist-type-1 .d-content h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.de-bloglist-type-1 .d-date {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    padding-left: 18px;
}

.de-bloglist-type-1 .d-date:before {
    font-family: "FontAwesome";
    font-weight: 300;
    color: var(--primary-color);
    content: "\f073";
    left: 0;
    position: absolute;
}


/* de-post-type-1 */

/* blog comment */

.post-content {
    position: relative;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 20px;
}

.p-tagline {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
}

.p-tagline {
    left: auto;
    right: 20px;
}

.p-tagline {
    font-family: var(--body-font);
    background: rgba(var(--primary-color-rgb), .2);
    border-radius: 5px;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    line-height: 10px;
    padding: 8px 10px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.p-tagline {
    background: var(--secondary-color);
}

.blog-read img {
    margin-bottom: 20px;
}

.blog-read .post-text {
    padding: 0;
}

/*.post-date:before{
    content: "\f133";
}*/

/* blog comment form */

.hover:hover .hover-scale-1-2 {
    transform: scale(1.1);
}

.post-image img {
    width: 100%;
    margin-bottom: 0px;
    filter: brightness(0.9);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image:hover img {
    filter: brightness(1);
}


/* input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
} */

#form_subscribe input[type=text] {
    padding: 7px 12px 7px 12px;
    width: 80%;
    float: left;
    display: table-cell;
    border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    -webkit-border-radius: 30px 0 0 30px;
    border: none;
    border-right: none;
    background: rgba(255, 255, 255, .7);
    -webkit-box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
    -moz-box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
    box-shadow: 2px 2px 20px 0px rgba(20, 20, 20, 0.05);
}

.footer-light #form_subscribe input[type=text] {
    border: none;
    border-right: none;
    padding: 6px 12px;
    background: var(--tertiary-color);
}

#form_subscribe input[type=text]:focus {
    background: rgba(255, 255, 255, .2);
}

#form_subscribe #btn-subscribe i {
    text-align: center;
    font-size: 28px;
    float: left;
    width: 20%;
    background: #171A21;
    color: #ffffff;
    display: table-cell;
    padding: 5px 0 5px 0;
    border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
}


.small-border {
    width: 50px;
    height: 2px;
    background: rgba(0, 0, 0, .5);
    border-left: none;
    border-right: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* breadcrumb */
.crumb {
    margin: 0;
    padding: 0;
    font-weight: 500;
}


.crumb {
    font-size: 14px;
    line-height: normal;
    font-weight: 300;
}


.crumb a {
    color: var(--white-color);
}

.crumb li {
    display: inline;
    text-decoration: none;
    letter-spacing: 0;
    color: var(--white-color);
}

.crumb li:last-child:after {
    display: none;
}

.crumb a {
    text-decoration: none;
}

/* ------------------------------ */

/* box icon */

/* button and link */


/* ------------------------------ */

a {
    text-decoration: none;
}

#notice-carousel .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    color: var(--primary-color);
    transform: translateY(-50%);
    font-size: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #3c4858;
    border: none;
    transition: all 0.5s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
}

#notice-carousel .owl-nav i {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#news-carousel .owl-nav i {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#news-carousel .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    color: var(--primary-color);
    transform: translateY(-50%);
    font-size: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #3c4858;
    border: none;
    transition: all 0.5s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
}

#activity-carousel .owl-nav i,
#activity-detail-carousel .owl-nav i {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#activity-carousel .owl-nav [class*=owl-],
#activity-detail-carousel .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    color: var(--primary-color);
    transform: translateY(-50%);
    font-size: 25px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: #3c4858;
    border: none;
    transition: all 0.5s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
}

#notice-carousel {
    position: relative;
}

#mainmenu li,
#mainmenu li ul {
    -o-transition: .2s ease;
    -ms-transition: .2s ease;
    -moz-transition: .2s ease;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    outline: none;
}

#notice-carousel {
    position: relative;
}

.spacer-10 {
    width: 100%;
    height: 10px;
    display: block;
    clear: both;
}

.spacer-20 {
    width: 100%;
    height: 20px;
    display: block;
    clear: both;
}

.spacer-30 {
    width: 100%;
    height: 30px;
    display: block;
    clear: both;
}

hr {
    display: block;
    clear: both;
    border-top: solid 1px #ddd;
    margin: 40px 0 40px 0;
}

/* dropcap */


/* ------------------------------ */

/* form */


/* ------------------------------ */

.de_form input[type="checkbox"] {
    /* hide the inputs */
    display: none;
}

.de_form input[type="checkbox"]+label:before {
    position: absolute;
    content: '';
    display: inline-block;
    font-family: "FontAwesome";
    margin-right: 10px;
    border: solid 2px rgba(0, 0, 0, .2);
    width: 16px;
    height: 16px;
    margin-top: 5px;
    left: 0;
    font-size: 11px;
    padding: 1px 3px 0 3px;
    line-height: 15px;
    border-radius: 4px;
    border-color: var(--primary-color);
}

.de_checkbox {
    position: relative;
    display: block;
    padding-left: 25px;
}

.de_form input[type="checkbox"]+label {
    cursor: pointer;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

.de_form input[type="checkbox"]:checked+label {
    /* style for the checked/selected state */
    border: none;
}

.de_form input[type="checkbox"]:checked+label:before {
    content: "\f00c";
    color: #ffffff;
    border: rgba(0, 0, 0, 0);
}

.item_filter_group {
    border: solid 1px rgba(0, 0, 0, .15);
    margin-bottom: 25px;
    padding: 30px 20px;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.item_filter_group h4 {
    font-size: 16px;
}

/* heading */


/* ------------------------------ */

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.4;
}

h3 {
    font-size: 17px;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.5;
}

h4 {
    font-size: 16px;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    line-height: 1.5;
}

h5 {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Ortak stil */
h2,
h3,
h4,
h5 {
    margin-top: 0;
    font-family: var(--title-font);
    font-weight: 500;
    color: var(--title-font-color);
}

.text-light {
    color: #ffffff;
}

.text-dark {
    color: #223044;
}

.text-light h2,
.text-light h3 {
    color: #fff;
}

.d-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border: solid 1px #dddddd;
}

.d-card i {
    text-align: center;
    position: absolute;
    width: 64px;
    height: 100%;
    font-size: 36px;
    color: #ffffff;
    padding: 12px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

.d-card .text {
    font-size: 15px;
    padding: 40px 20px;
    padding-left: 90px;
    margin-top: 25px;
}

/* list */


/* pagination */
.pagination {
    margin: 0 auto;
    font-weight: 500;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.pagination li a {
    font-size: 14px;
    color: #888;
    border: solid 1px #d2d2d2;
    background: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: block;
    line-height: 45px;
    text-align: center;
    margin-right: 5px;
}

.pagination>.active>a {
    color: #ffffff;
}


/* ================================================== */

/* social-icons */

/* ================================================== */

.social-icons {
    display: inline-block;
}

.social-icons i {
    text-shadow: none;
    color: #fff;
    padding: 12px 10px 8px 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    font-size: 16px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    margin: 0 3px 0 3px;
    background: #ffffff;
}

.social-icons i:hover {
    background: #fff;
    border-color: #eceff3;
    color: #333;
}

.de-color-icons i {
    text-shadow: none;
    color: #fff;
    padding: 12px 10px 8px 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    margin: 0 1px 10px 1px;
}


.de-color-icons .fa-x-twitter {
    background: #000;
}

.de-color-icons .fa-facebook {
    background: #344e86;
}

.de-color-icons .fa-linkedin {
    background: #0077B5;
}

.de-color-icons .fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.de-color-icons span {
    cursor: poInter;
    display: inline-block;
}

.de-color-icons span:hover {
    transform: scale(1.1);
}

/*
.social-icons .fa-facebook{background:#3e5a9b;}
.social-icons .fa-twitter{background:#55aded;}
.social-icons .fa-google-plus{background:#df4f37;}
.social-icons .fa-linkedin{background:#0075ad;}
.social-icons .fa-rss{background:#fb6506;}
.social-icons .fa-skype{background:#28A8EA;}
*/

/*
    .social-icons .fa-facebook{ background:#305fb3; }
    .social-icons .fa-twitter{  background:#00d7d5; }
    .social-icons .fa-rss{ background:#fca600;  }
    .social-icons .fa-google-plus{ background:#d7482a;  }
    .social-icons .fa-skype{ background:#12c7ef;    }
    .social-icons .fa-dribbble{ background:#f06eaa; }
    */


/* tabs */


/* ================================================== */

/* accordion
------------------------------ */


.accordion-section-title {
    color: var(--title-font-color);
    width: 100%;
    padding: 15px 0;
    cursor: poInter;
    font-family: var(--body-font);
    width: 100%;
    display: inline-block;
    font-size: 17px;
    transition: all linear 0.5s;
    text-decoration: none;
    font-weight: 500;
    overflow: none;
    border-bottom: solid 1px #dddddd;
}

.accordion-section-title:before {
    font-family: "FontAwesome";
    content: "\f107";
    float: right;
    color: #fff;
    text-align: center;
    padding: 0 8px 0 8px;
    font-size: 15px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    width: 30px;
}

.accordion-section-title:hover {
    text-decoration: none;
}

.accordion-section-content {
    padding-top: 15px;
    padding-bottom: 5px;
    display: none;
    margin-bottom: 10px;
}

.v-center {
    display: flex;
    align-items: center;
}


.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

/* margin top */

.mt-80 {
    margin-top: -80px;
}


.absolute {
    position: absolute;
    z-index: 1;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* ================================================== */


/* anim */


/* ================================================== */
header,
#topbar,
.hover,
.hover *,
.social-icons a i,
#mainmenu>li::before {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
}

header,
.social-icons a i,
.d-card:hover i,
#form_subscribe input[type=text],
.logo-carousel img,
.de-image-hover *,
.de-color-icons * {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
}

#mainmenu li,
#mainmenu li ul {
    -o-transition: .2s ease;
    -ms-transition: .2s ease;
    -moz-transition: .2s ease;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    outline: none;
}

.owl-carousel {
    position: relative;
    margin-top: -5px;
    bottom: -5px;
    margin-bottom: -15px;
}


table thead {
    font-weight: bold;
}

blockquote {
    font-family: var(--body-font);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.8em;
    border: none;
    border-left: solid 2px var(--primary-color);
    padding-left: 10px;
    color: var(--bg-color-dark);
    position: relative;
    text-align: justify;
}

blockquote span {
    font-family: var(--body-font);
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    margin-top: 0px;
    color: var(--title-font-color);
}


hr {
    border-top: solid 1px #555;
}


i {
    display: inline-block;
}


a,
a:hover {
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    margin: 3px 0;
}

.widget .small-border {
    height: 2px;
    width: 30px;
    background: #fff;
    margin: 0px 0 20px 0;
    display: block;
}

.widget-post li {
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: flex;
}

.widget-post li a {
    font-weight: 500;
    display: block;
    text-decoration: none;
    color: var(--title-font-color);
}

.widget-post .date {
    margin-top: 5px;
    margin-right: 10px;
    float: left;
    color: #fff;
    padding: 2px 3px 2px 3px;
    line-height: 1.4em;
    font-size: 30px;
    width: 100%;
    font-weight: 500;
    text-align: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 6px solid #fff;
    box-shadow: 0 2px 12px rgba(var(--primary-color-rgb), 0.08);
}

footer .widget {
    border: none;
    margin-bottom: 0;
}

.p-tagline,
i.bg-color-secondary {
    color: #ffffff;
}



.d-flex {
    display: flex;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #dddddd;
}

body::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.menu-simple {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.menu-simple li {
    display: inline;
    margin: 0 15px;
}

.de-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 28px;
    background: rgba(85, 85, 85, .2);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.de-flex {
    display: flex;
    justify-content: space-between;
}

.de-flex>.de-flex-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.v-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.force-text-center * {
    text-align: center !important;
}


strong {
    font-weight: bold;
}

.no-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}


.no-bottom {
    padding-bottom: 0 !important;
}

.no-top {
    padding-top: 0 !important;
}

.form-control {
    min-height: 40px;
    font-size: 14px;
    color: var(--primary-color);
}

.form-control:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.owl-nav {
    display: flex;
}

.owl-prev,
.owl-next,
.d-nav-left,
.d-nav-right {
    cursor: pointer;
    position: absolute;
    top: 27.5%;
    z-index: 100;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 1.0);
    border: solid 1px #ccc;
}


.owl-prev:hover,
.owl-next:hover {
    transform: scale(1.1);
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, 0.2);
}

.owl-prev,
.d-nav-left {
    left: -12px;
    border-radius: 60px;
    padding-left: 4px;
}

.owl-next,
.d-nav-right {
    right: -12px;
    border-radius: 60px;
    padding-right: 4px;
}

.d-nav-left i,
.d-nav-right i {
    position: absolute;
    top: 20px;
    color: #111111;
    font-size: 20px;
    font-weight: bold;
}

.owl-next i,
.d-nav-left i {
    top: 12px;
    left: 16px;
}

.d-nav-right i {
    top: 12px;
    right: 16px;
}

.owl-arrow {
    z-index: 100;
    background: #fff;
    margin-top: 48%;
    display: none;
    cursor: poInter;
}

.owl-arrow span {
    display: block;
    background: #555;
    position: absolute;
}

.owl-arrow .prev {
    left: 0;
}

.owl-arrow .next {
    right: 0;
}

.owl-arrow .prev:before,
.owl-arrow .next:before {
    font-family: "FontAwesome";
    content: '\f177';
    color: #222222;
    padding: 20px;
    font-size: 32px;
    display: block;
}

.owl-arrow .next:before {
    content: '\f178';
}

.owl-pagination {
    margin-top: 0px;
    height: 40px;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 6px;
    height: 6px;
    background-color: #555;
    opacity: 1;
}

.owl-theme .owl-controls .owl-page.active span {
    background: none;
}

.owl-theme .owl-controls .owl-page.active span:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    position: relative;
    border: solid 2px #555;
    top: -2px;
    left: -2px;
}



/* new owl */


/* new owl close */


.wow {
    visibility: hidden;
}

#back-to-top {
    background: #ffffff;
    position: fixed;
    bottom: -40px;
    right: 10px;
    z-index: 1020;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    cursor: poInter;
    padding-top: 3px;
    border: 0;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    outline: none;
    opacity: 0;
}

#back-to-top:hover {
    transform: scale(1.1);
}

#back-to-top:before {
    font-family: "FontAwesome";
    font-size: 18px;
    content: "\f106";
    color: #fff !important;
    position: relative;
}


.table {
    display: table;
    margin-bottom: 0;
}

#owl-logo img:hover {
    opacity: 1;
}

/*
 .switch:checked {
     background-color: blue;
}
*/


.de-image-hover {
    position: relative;
    overflow: hidden;
}

.dih-overlay {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eee;
    opacity: 0;
}

.dih-title-wrap {
    z-index: 2;
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
}

.dih-title {
    opacity: 0;
    font-size: 16px;
    z-index: 2;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    color: #fff;
}

.de-image-hover:hover .dih-overlay {
    opacity: .8;
}

.de-image-hover:hover .dih-title {
    opacity: 1;
    transform: scale(1.2);
}

.de-image-hover:hover img {
    transform: scale(1.1);
}

.de-image-hover:hover {
    -webkit-box-shadow: 5px 25px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 25px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 25px 15px 0px rgba(0, 0, 0, 0.1);
}

/* Image card with overlay */
.image-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 1;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.image-overlay .post-text {
    color: #fff;
}

.image-overlay .post-text h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.image-overlay .post-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.menu_side_area {
    margin-left: 20px;
}


.shadow-soft {
    -webkit-box-shadow: 0 30px 60px rgb(0 19 87 / 6%);
    -moz-box-shadow: 0 30px 60px rgb(0 19 87 / 6%);
    box-shadow: 0 30px 60px rgb(0 19 87 / 6%);
}

.rounded-5 {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* mdb carousel */

/* Carousel styling */

/* mdb carousel */


/* flex slider - testi slider */

/* Control Nav */

a,
img {
    outline: 0;
}



/* R E S P O N S I V E */

/* ================================================== */

@media (min-width: 1400px) {

    .container {
        max-width: 1300px;
    }
}


@media(min-width:980px) and (max-width: 1199px) {
    #mainmenu li a:after {
        margin-left: 15px;
    }

    .container {
        min-width: 95%;
    }
}

/* -------------------------------------------------- 
    design for 768px
    /* ================================================== */

@media only screen and (max-width: 767px) {
    header .logo-mobile {
        display: block;
        width: 75px;
    }
}

@media only screen and (max-width: 992px) {

    header .logo-main {
        display: none;
    }

    header .logo-init {
        display: none;
    }

    header .logo-mobile {
        display: block;
    }

    .img-fixed-area {
        position: relative;
        background-attachment: unset !important;
    }

    .de_table .tr .td:nth-child(4),
    .de_table .tr .td:nth-child(5),
    .de_table .tr .td:nth-child(6),
    .de_table .tr .td:nth-child(7) {
        display: none;
    }

    .col-right {
        position: absolute;
        top: -82px;
        right: 60px;
        width: 140px;
    }

    .mb-sm-30 {
        margin-bottom: 30px;
    }

    .sm-mt-0 {
        margin-top: 0;
    }

    .p-sm-30 {
        padding: 40px;
    }

    .mt-sm-50 {
        margin-top: -50px;
    }

    .p-sm-15 {
        padding: 15px;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }


    .mb-sm-0 {
        margin-bottom: 0;
    }

    header .header-col {
        position: absolute;
        top: 0;
    }

    header .header-col.mid {
        position: absolute;
        top: 70px;
        width: 100%;
        padding: 0 0 0 0;
    }

    .text-center-sm {
        text-align: center;
    }

    .sm-pt10 {
        padding-top: 10px;
    }

    #menu-btn {
        display: block;
        float: right;
        z-index: 1000;
        top: 0;
        right: 0;
        background: #333;
        border-radius: 3px;
    }

    .inner-padding {
        padding: 40px;
    }

    .header-col-left,
    .header-col-right {
        padding-top: 16px;
    }

    .header-col-mid #mainmenu {
        position: absolute;
        top: 90px;
        width: 100%;
        padding: 0 0 0 0;
        left: 20px;
    }

    header {
        display: none;
    }

    header .info {
        display: none;
    }

    header.header-bg {
        background: rgba(0, 0, 0, 1);
    }

    header,
    header.fixed {
        display: block;
        position: inherit;
        margin: 0;
        padding: 0;
        margin-top: 0;
        height: auto;
        background: #111111;
    }

    #de-sidebar {
        position: absolute;
        width: 100%;
        right: 1px;
    }

    header.side-header,
    .de_light header.side-header {
        position: absolute;
        display: block;
        height: 60px;
        top: 0;
        background: #000;
    }

    header.side-header #mainmenu {
        position: absolute;
        background: #000;
        margin: 0;
        top: 60px;
        left: 0;
        width: 100%;
    }

    header.side-header #logo .logo {
        display: none;
    }

    header.side-header #logo .logo-2 {
        display: inline-block;
        position: absolute;
        height: 30px;
        top: 15px;
        left: 40px;
    }

    header.side-header #menu-btn {
        position: absolute;
        top: 8px;
        right: 30px;
        height: 0;
        z-index: 2000;
        height: 35px;
    }

    header.side-header #mainmenu li {
        display: block;
    }

    header.side-header #mainmenu a,
    .de_light.de-navbar-left header #mainmenu>li>a {
        display: block;
        text-align: center;
        color: #fff;
    }

    .de_light.de-navbar-left header #mainmenu>li {
        border-bottom: solid 1px rgba(255, 255, 255, .1);
    }

    header.side-header #mainmenu a:hover {
        background: none;
    }

    header.side-header #mainmenu a:hover {
        background: none;
    }

    header.side-header .social-icons-2 {
        display: none;
    }

    header.autoshow {
        height: auto;
        top: 0;
    }

    header.autoshow #mainmenu li a {
        background: none;
    }

    header.header-mobile-sticky {
        position: fixed;
    }

    #subheader.s2 {
        padding: 40px 0 30px 0;
    }

    .de-navbar-left #subheader {
        padding: 0;
        margin: 0;
    }

    #subheader h1 {
        margin-top: 0;
    }

    #subheader span {
        display: none;
    }

    #subheader .crumb {
        display: none;
    }

    #content section:first-of-type {
        padding-top: 110px !important;
    }

    #sidebar {
        padding-left: 10px;
    }

    .de-navbar-left #subheader {
        padding-top: 70px;
    }

    .slider_text h1 {
        font-size: 32px;
    }

    .slider_text .description {
        display: none;
    }

    #logo,
    #logo .inner {
        vertical-align: middle;
        height: auto;
    }

    #domain-check .text,
    #domain-check .button {
        width: 100%;
    }

    .container-4 .de-team-list {
        width: 49.9%;
        float: left;
        position: relative;
    }

    #testimonial-full blockquote {
        padding: 20px;
    }

    nav {
        height: 0;
    }

    #mainmenu {
        position: fixed;
        height: 100%;
        z-index: 200;
        width: 200px;
        margin: 0;
        margin-top: 10px;
        padding: 0;
        padding-top: 20px;
        padding-bottom: 100px !important;
        overflow-y: auto;
        top: 100px;
    }

    #mainmenu ul {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    #mainmenu a.menu-item {
        text-align: left;
        padding-left: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #mainmenu li.has-child:after {
        display: none;
    }

    #mainmenu li li a.menu-item,
    #mainmenu li li li a.menu-item {
        padding-left: 0;
    }

    #mainmenu a.menu-item:hover {
        background: #111;
    }

    #mainmenu a.menu-item:hover {
        background: #111;
    }

    #mainmenu li ul {
        display: block;
        position: inherit;
        margin: 0;
        width: 100%;
    }

    #mainmenu li {
        border-bottom: solid 1px #eee;
        margin: 0;
        width: 100%;
        display: block;
    }

    #mainmenu li a.menu-item:after {
        display: none;
    }

    #mainmenu li:last-child {
        margin-bottom: 30px;
    }

    #mainmenu li ul {
        border-top: solid 1px #eee;
        top: auto;
        width: auto;
        height: auto;
        position: inherit;
        visibility: visible;
        opacity: 1;
    }

    #mainmenu>li.menu-item-has-children>a.menu-item {
        position: relative;
        padding-right: 15px;
    }

    #mainmenu>li.menu-item-has-children>a.menu-item:after {
        content: "\f107";
        font-family: "FontAwesome";
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
    }

    #mainmenu li ul a.menu-item {
        width: 100%;
        background: none;
        border: none;
    }

    #mainmenu li ul li {
        border: none;
        padding-left: 40px;
    }

    #mainmenu li ul li a.menu-item {
        display: block;
    }

    #mainmenu li ul li:last-child {
        border-bottom: none;
        margin: 0;
    }

    #mainmenu li ul li:last-child a.menu-item {
        border-bottom: none;
    }

    #mainmenu li a {
        color: #eceff3;
    }

    #mainmenu li li a.menu-item:hover {
        color: #fff;
    }

    #mainmenu ul:not(.mega) {
        border: none;
    }

    #mainmenu>li ul.mega .sb-menu {
        border: none;
    }

    #back-to-top {
        display: none;
    }

    header.header-mobile {
        overflow: hidden;
        position: relative;
    }

    header.header-mobile #mainmenu {
        width: 100%;
        padding-right: 30px;
    }

    header.header-mobile #mainmenu ul {
        background: none;
    }

    header.header-mobile #mainmenu a.menu-item {
        text-align: left;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    header.header-mobile #mainmenu a.menu-item:hover {
        background: none;
    }

    header.header-mobile #mainmenu li ul {
        display: block;
        position: inherit;
        margin: 0;
        width: 100%;
    }

    header.header-mobile #mainmenu li {
        border-bottom: solid 1px #eee;
        margin: 0;
        width: 100%;
        display: block;
    }

    .dark-scheme header.header-mobile #mainmenu li {
        border-bottom-color: rgba(255, 255, 255, .1);
    }

    header.header-mobile #mainmenu li ul.mega ul {
        height: auto;
    }

    header.header-mobile #mainmenu li ul.mega .menu-content {
        background: #fff;
    }

    header.header-light.header-mobile #mainmenu li,
    header.header-light.header-mobile #mainmenu li ul li a.menu-item {
        border-color: #eee;
    }

    header.header-dark.header-mobile {
        background: #222;
    }

    header.header-dark.header-mobile #mainmenu li {
        border-color: #333;
    }

    header.header-dark.header-mobile #mainmenu li a.menu-item {
        color: #fff;
    }

    header.header-mobile #mainmenu li a.menu-item:after {
        display: none;
    }

    header.header-mobile #mainmenu li:last-child {
        margin-bottom: 30px;
    }

    header.header-mobile #mainmenu li ul {
        border-top: none;
        top: auto;
    }

    header.header-mobile #mainmenu li ul a.menu-item {
        width: 100%;
        background: none;
        border: none;
    }

    header.header-mobile #mainmenu li ul li {
        border: none;
        padding-left: 40px;
    }

    header.header-mobile #mainmenu li ul.mega li {
        border: none;
        padding-left: 0;
    }

    header #mainmenu li ul li:first-child {
        border-top: solid 1px #eee;
    }

    .dark-scheme header #mainmenu li ul li:first-child {
        border-top-color: rgba(255, 255, 255, .1);
    }

    header.header-mobile #mainmenu li ul li a.menu-item {
        display: block;
        border-bottom: solid 1px #eee;
    }

    header.header-mobile #mainmenu li ul li:last-child {
        border-bottom: none;
        margin: 0;
    }

    header.header-mobile #mainmenu li ul li:last-child a.menu-item {
        border-bottom: none;
    }

    header.header-mobile #mainmenu li a.menu-item {
        color: var(--title-font-color);
    }

    .dark-scheme header.header-mobile #mainmenu li a.menu-item {
        color: #ffffff;
    }

    header.header-mobile #mainmenu li a.menu-item:hover {
        color: #333;
    }

    .dark-scheme header.header-mobile #mainmenu li a.menu-item:hover {
        color: #fff;
    }

    header.header-mobile #mainmenu li li a.menu-item:hover {
        color: #888;
    }

    header.header-mobile #mainmenu li ul {
        height: 0;
        overflow: hidden;
        position: relative;
        left: 0;
    }

    header.header-mobile #mainmenu li ul li ul {
        margin-bottom: 10px;
    }

    header.header-mobile #mainmenu>li>span {
        width: 36px;
        height: 36px;
        background: url(../images/ui/arrow-down.png) center no-repeat;
        position: absolute;
        right: 0;
        margin-top: 10px;
        z-index: 1000;
        cursor: poInter;
    }

    .dark-scheme header.header-mobile #mainmenu>li>span {
        background: url(../images/ui/arrow-down-light.png) center no-repeat;
    }

    header.header-mobile #mainmenu li span.active {
        background: url(../images/ui/arrow-up.png) center no-repeat;
    }

    .dark-scheme header.header-mobile #mainmenu li span.active {
        background: url(../images/ui/arrow-up-light.png) center no-repeat;
    }

    header.header-mobile #mainmenu li>ul>li>span {
        width: 36px;
        height: 36px;
        background: url(../images/ui/arrow-down.png) center no-repeat;
        position: absolute;
        right: 0;
        margin-top: -45px;
        z-index: 1000;
        cursor: poInter;
    }

    header.header-mobile #mainmenu>li>ul>li>span.active {
        background: url(../images/ui/arrow-up.png) center no-repeat;
    }

    header.header-mobile #mainmenu li ul li a.menu-item {
        border-bottom: solid 1px #eee;
    }

    .dark-scheme header.header-mobile #mainmenu li ul li a.menu-item {
        border-bottom-color: rgba(255, 255, 255, .1);
    }

    header.header-mobile #mainmenu li ul li:last-child>a.menu-item {
        border-bottom: none;
    }

    header.header-mobile .h-phone {
        color: #202020;
    }

    header.header-light.header-mobile #mainmenu>li>span,
    header.header-light.header-mobile #mainmenu li>ul>li>span {
        background: url(../images/ui/arrow-down.png) center no-repeat;
    }

    header.header-light.header-mobile #mainmenu>li>span.active,
    header.header-light.header-mobile #mainmenu li>ul>li>span.active {
        background: url(../images/ui/arrow-up.png) center no-repeat;
    }

    #mainmenu li ul.mega {
        position: fixed;
        left: 0;
        width: 100%;
        margin-top: 30px;
        display: block;
    }

    #mainmenu li ul.mega>li {
        width: 100%;
    }

    #mainmenu li ul.mega>li ul {
        position: static;
        visibility: visible;
        opacity: 1;
        left: 0;
        float: none;
        width: 100%;
    }

    #mainmenu ul.mega>li ul li {
        margin: 0;
        padding: 0;
    }

    #mainmenu li ul.mega .menu-content {
        background: #202020;
        padding: 30px;
    }

    /* header light */
    .header-light #mainmenu ul li a.menu-item,
    .header-light #mainmenu ul li a.menu-item:hover {
        color: #333;
    }

    .de_tab.tab_methods .de_nav {
        text-align: center;
    }

    .de_tab.tab_methods .de_nav li {
        margin: 5px;
        padding: 0;
    }

    .de_tab.tab_methods .de_nav li span {
        margin: 0;
        display: inline-block;
    }

    .de_tab.tab_methods .de_nav li .v-border {
        border: none;
    }

    .hidden-phone {
        display: none;
    }

    .grid_gallery .item {
        width: 100%;
    }

    .table [class*="col-"] {
        float: none;
        display: block;
        vertical-align: top;
    }

    .table-pricing thead tr,
    .table-pricing tbody tr {
        display: block;
        width: 100%;
    }

    .table-pricing thead tr {
        display: none;
    }

    .table-pricing tbody tr th,
    .table-pricing tbody tr td {
        text-align: left;
        display: block;
        width: 100%;

    }

    .table-pricing tbody tr td {
        padding: 10px 30px;
    }

    .table-pricing tbody tr td:nth-child(2) {
        padding-top: 30px;
    }

    .table-pricing tbody tr td:last-child {
        padding-bottom: 40px;
        text-align: center;
    }

    .table-pricing tbody tr th span,
    .table-pricing tbody tr td span {
        min-width: 50%;
    }

    .table-pricing tbody tr th .lbl,
    .table-pricing tbody tr td .lbl {
        display: inline-block;
        min-width: 50%;
    }

    .table-pricing tbody tr th {
        color: #ffffff;
        padding: 20px 30px;
    }

    .sm-hide {
        display: none;
    }

    .btn-rsvp {
        position: absolute;
    }

    .d-btn-close {
        position: relative;
    }

    .schedule-item .sc-info {
        padding-top: 20px;
    }

    .de_tab.tab_style_4 .de_nav li {
        min-width: 100px;
    }

    #mainmenu a.menu-item span {
        display: none;
    }

    .pf_full_width.grid {
        margin-left: 1.5%;
    }

    .de_tab.tab_methods.style-2 .de_nav li.active .arrow {
        margin-top: -40px;
        margin-bottom: 40px;

    }

    .table-custom-1 {
        position: relative;
        height: auto;
    }

    h1.very-big {
        font-size: 9vw;
        line-height: 9vw;
        letter-spacing: 0;
    }

    .timeline>li>.timeline-panel {
        width: 100%;
    }

    .timeline-badge {
        display: none;
    }

    .timeline:before {
        background: none;
    }

    .tp-caption {
        padding-left: 40px;
        padding-right: 40px;
    }

    .author_list {
        -moz-column-count: 3;
        -moz-column-gap: 20px;
        -webkit-column-count: 3;
        -webkit-column-gap: 20px;
        column-count: 3;
        column-gap: 20px;
    }

    .subfooter .de-flex,
    .subfooter .de-flex-col {
        display: block;
    }

    .subfooter .social-icons {
        margin-top: 20px;
    }

    .subfooter span.copy {
        margin-top: 20px;
        display: block;
    }

    .module-filter li {
        width: 100%;
    }

    .dropdown {
        display: inline-block;
        margin-bottom: 10px;
    }

    .side-bg .image-container {
        position: relative;
        width: 100%;
        height: 400px !important;
        top: 0;
        margin-bottom: 60px;
    }

    .side-bg-text {
        margin-bottom: 80px;
    }

    .countdown-s2 .countdown-show4 .countdown-section {
        width: 70px !important;
    }

}

/* -------------------------------------------------- 
    custom for 320px & 480px 
    /* -------------------------------------------------- */

@media only screen and (max-width: 767px) {

    .menu_side_area {
        margin-left: 5px;
        width: 100%;
        position: relative;
        right: 0;
        text-align: right;
        z-index: 0;
        display: block;
    }

    header .container {
        min-width: 100%;
    }

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .xs-hide {
        display: none;
    }

}

/* -------------------------------------------------- 
    design for 480px
    /* -------------------------------------------------- */


@media only screen and (max-width: 360px) {
    #topbar {
        display: none;
    }
}

@media only screen and (min-device-width: 768) and (max-device-width: 1024) and (orientation: portrait) {
    section {
        -webkit-background-size: auto 100%;
        -moz-background-size: auto 100%;
        -o-background-size: auto 100%;
        background-size: auto 100%;
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 992px) {

    section {
        -webkit-background-size: auto 100%;
        -moz-background-size: auto 100%;
        -o-background-size: auto 100%;
        background-size: auto 100%;
        background-attachment: scroll;
    }

    section {
        padding: 40px 0 40px 0;
        position: relative;
    }

    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }

    .slider-title {
        font-size: 20px;
        line-height: normal;
    }

    .slider-teaser {
        font-size: 16px !important;
        line-height: normal !important;
    }


    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 15px;
    }

    .base-card {
        height: 100%;
        padding: 10px;
    }

    .sw-caption {
        z-index: 1;
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }

    #topbar {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #topbar {
        display: none;
    }
}

.z-1 {
    z-index: 1;
}

.post-text h3 {
    position: relative;
    padding-left: 10px;
}


.post-text h3:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0px;
    height: 100%;
    width: 3px;
    background: var(--secondary-color);
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    border-radius: 5px;
}

h3 a {
    color: var(--title-font-color);
}

.links {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
    background: white;
    display: flex;
    align-items: center;
}

.links:hover {
    transform: translateY(-10px);
}

.widget-post .date i {
    transform: rotate(340deg);
}

.timeline-block {
    position: relative;
    margin-bottom: 40px;
    border-left: 1.5px solid var(--secondary-color);
    padding: 20px 5px;
}

.timeline-block::before {
    content: attr(data-year);
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
    padding-right: 5px;
    text-align: right;
    width: 60px;
}

.timeline-block p {
    margin: 0;
    padding-left: 10px;
    font-size: 15px;

}

@media (max-width: 992px) {
    .timeline-block {
        padding-left: 20px;
        border-left: 2px solid var(--primary-color);
        margin-left: 0px;
    }

    .timeline-block::before {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: block;
        width: auto;
        margin-bottom: 8px;
        text-align: left;
        padding: 0;
    }

    .timeline-block p {
        font-size: 14px;
        padding-left: 0;
    }
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border: solid 1px #dddddd;

}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-info-list i {
    font-size: 35px;
    margin-right: 10%;
    width: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-list strong {
    display: block;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-info-list p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.pdf-downloads {
    list-style: none;
    padding: 0;
    margin: 0;

}

.pdf-downloads li {
    margin-bottom: 15px;
    display: block;
}

.pdf-downloads a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    transition: 0.3s;
}


.pdf-icon {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    padding: 6px 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    margin-right: 5px;
}

.pdf-icon i {
    font-size: 14px;
}

.d-date:before {
    font-family: "FontAwesome";
    font-weight: 300;
    color: var(--primary-color);
    content: "\f073";
    left: 0;
    position: absolute;
}

.d-date {
    position: relative;
    font-size: 14px;
    padding-left: 20px;
    color: var(--primary-color);
}

.border-r {
    border-right: 1px solid #3c485826;
}

.sticky-bar {
    position: sticky;
    top: 120px;
}

.chamber-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border: solid 1px #dddddd;
}

.chamber-item ul li i {
    color: var(--primary-color);
}

.chamber-item ul li {
    padding-bottom: 10px;
    border-bottom: 1px solid #f9f9f9;
}

.rounded-10px {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

i {
    display: inline-block;
}

.abs-middle {
    top: 50%;
    transform: translateY(-50%);
}

.end-20px {
    right: 20px;
}

.absolute {
    position: absolute;
    z-index: 1;
}

.fs-24 {
    font-size: 24px;
}

.bg-color-3 {
    background: rgba(var(--primary-color-rgb), .2);
}

.bg-color-2 {
    background: var(--tertiary-color);
}

.table-special th {
    background: var(--primary-color) !important;
    color: white;
}


.tree ul {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;

}

.tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.tree li img {
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}


.tree li::before,
.tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 1px solid #ccc;
    width: 50%;
    height: 20px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid #ccc;
}


.tree li:only-child::after,
.tree li:only-child::before {
    display: none;
}

.tree li:only-child {
    padding-top: 0;
}

.tree li:first-child::before,
.tree li:last-child::after {
    border: 0 none;
}


.tree li:last-child::before {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #ccc;
    width: 0;
    height: 20px;
}

.tree li a {
    border: 1px solid #ccc;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    color: var(--body-font-color);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tree li a:hover,
.tree li a:hover+ul li a {
    background: rgba(var(--primary-color-rgb), 0.2);
    color: #000;
    border: 1px solid #94a0b4;
}

.subtitle-tag {
    display: inline-block;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: capitalize;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--title-font-color);
    background: var(--tertiary-color);
}

.chamber-item .subtitle-tag {
    color: white;
    background: var(--primary-color);
    margin-bottom: 30px;
}

.form-label {
    display: block;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

#sticky-popup-modal img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    margin: 20px 0px;
    border-radius: 8px;
}

#sticky-calendar-trigger {
    position: fixed;
    top: 48%;
    right: 8px;
    z-index: 9999;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.2);
    border: 4px solid #fff;
}

#sticky-calendar-trigger:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

#sticky-calendar-trigger i {
    font-size: 20px;
    color: #ffffff;
}

#sticky-calendar-popup {
    display: none;
    position: absolute;
    right: 60px;
    top: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    padding: 18px 12px 8px 12px;
    min-width: 320px;
    min-height: 320px;
    max-width: 370px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar-header button {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    background: #ffffff;
    color: #3c4858;
    border: none;
    transition: all 0.5s ease;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(60, 72, 88, 0.15);
}

.calendar-header button:hover {
    background: #f3f3f3;
}

#month-year-sticky {
    font-size: 16px;
    font-weight: 500;
    color: #1b1b1b;
    margin: 0;
}

.calendar-grid-sticky {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.day-name {
    color: #1b1b1b;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: 0.95rem;
}

.day-cell {
    text-align: center;
    padding: 6px 0;
    border-radius: 8px;
    color: #7a7a7a;
    font-size: 1rem;
    background: #fff;
    transition: background .2s, color .2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.day-cell.event {
    color: #ffffff;
    font-weight: 700;
    border: 1.5px solid var(--primary-color);
    position: relative;
    background: var(--primary-color);
}

.day-cell.today {
    border: 1.5px solid var(--primary-color);
}

.day-cell.event:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.day-cell.today.event {
    color: #fff;
}

.event-list-sticky {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-list-sticky li {
    padding: 8px 0 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #444;
}

.event-list-sticky li strong {
    color: #1b1b1b;
    font-weight: 500;
}

.event-list-sticky li:last-child {
    border-bottom: none;
}

.event-list-sticky.empty {
    color: #aaa;
    text-align: center;
    padding: 12px 0 0 0;
    font-style: italic;
}

#sticky-calendar-trigger.active #sticky-calendar-popup {
    display: block;
}

@media (max-width: 767px) {

    #sticky-calendar-trigger {
        top: 55%;
        width: 40px;
        height: 40px;
        right: 5px;
    }

    #sticky-popup-trigger {
        top: 63%;
        width: 40px;
        height: 40px;
        right: 5px;
        z-index: 99;
    }

    #sticky-calendar-popup {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        min-width: 90vw;
        max-width: 98vw;
        min-height: 320px;
        z-index: 99999;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {

    h2 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    h3 {
        font-size: 16px;
        letter-spacing: -0.2px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    h4 {
        font-size: 15px;
        letter-spacing: -0.1px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    h5 {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
}

@media screen and (min-width: 990px) and (max-width: 1077px) {
    #mainmenu a {
        padding: 30px 5px;
    }

    .slider-title {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    h3 {
        font-size: 16px;
        letter-spacing: -0.2px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    h4 {
        font-size: 15px;
        letter-spacing: -0.1px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    h5 {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
}


.crumb li:after {
    font-family: "FontAwesome";
    content: "\f054";
    font-size: 10px;
    margin: 0 5px;
    opacity: 0.5;
}

.crumb li:last-child:after {
    display: none;
}

.slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: var(--bg-dark-1);
    overflow: hidden;
    z-index: 1000;
}

.section-dark {
    background: var(--bg-dark-1);
    color: #fff;
}

.text-light {
    color: #fff;
}

.v-center {
    min-height: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.swiper,
.sw-overlay {
    position: absolute;
    width: 100%;
    height: 100% !important;
}

.swiper-slide {
    position: relative;
    background: var(--bg-dark-1);
}

.sw-caption {
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -.5;
}

h2.slider-title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.sw-overlay {
    background: rgba(27, 26, 26, 0.55);
}

.swiper-inner {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    width: 100px;
    font-size: 20px;
    text-align: right;
    position: absolute;
    left: auto;
    right: 40px;
    bottom: 40px;
    font-weight: 400;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

@media only screen and (max-width: 767px) {

    h2.slider-title {
        font-size: 30px !important;
        letter-spacing: -1px !important;
    }

    .footer-light img {
        width: 75px !important;
    }
}

#topbar .topbar-left .topbar-widget {
    align-items: center;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
}

#topbar .topbar-left .topbar-widget a {
    line-height: 1;
    padding: 0;
    margin: 0;
}

.main-button {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    max-width: max-content;
    transition: 0.3s;
    z-index: 1;
    gap: 15px;
    height: 40px;
    border-radius: 7px;
}

.main-button:focus {
    box-shadow: none;
}

.main-button img {
    max-width: 24px;
    height: auto;
}

.main-button.btn-primary {
    padding: 17px 15px;
    background: var(--secondary-color);
    ;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
    color: #fff;

}

.main-button.btn-border {
    border: 1px solid #D1D1D1;
    color: #262626;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.main-button.btn-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s, border 0.5s;
}

.main-button.btn-border:hover {
    color: #fff;
    border: 1px solid transparent;
}

.main-button.btn-border:hover::after {
    opacity: 1;
    transform: scaleX(1.5) scaleY(1.5);
}

.main-button.btn-border::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 0%;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

.main-button.btn-border:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(136deg) brightness(120%) contrast(107%);
}

.main-button.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s, border 0.5s;
}

.main-button.btn-primary::after {
    content: "";
    position: absolute;
    top: 1%;
    left: 0%;
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

.main-button.btn-primary:hover {
    color: var(--primary-color);
}

.main-button.btn-primary:hover::before {
    opacity: 0;
}

.main-button.btn-primary:hover::after {
    opacity: 1;
    transform: scaleX(1.5) scaleY(1.5);
}


.main-button.btn-primary img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2900%) hue-rotate(63deg) brightness(115%) contrast(100%);
}

section.no-top.relative.z-1.pt-sm-50 {
    position: relative;
    z-index: 1000;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 18px auto;
    background: rgb(var(--secondary-color-rgb), 1);
    border: 6px solid #fff;
    box-shadow: 0 2px 12px rgba(var(--primary-color-rgb), 0.08);
}

.card-icon i {
    color: #fff;
}

.base-card p {
    color: var(--body-font-color);
    font-size: 14px;
    line-height: normal;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card .icon-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.2);
    border: 4px solid #fff;
}

.news-card .icon-badge i {
    color: #fff;
    font-size: 28px;
}


.news-card .text {
    padding: 40px 20px;
    margin-top: 25px;
    min-height: 250px;
}

.news-card {
    margin-top: 0;
}

.news-card .news-date {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 10px;
    font-style: italic;
}



.main-image img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 300ms ease-in-out;
}

.main-image {
    position: relative;
    overflow: hidden;
    margin-left: 0;
    border-radius: 60px;
    box-shadow: -18px -13px 0px 2px var(--secondary-color);
}

.main-image img:hover {
    filter: none;
    transform: scale(1.1);
}

.mt-60 {
    margin-top: -60px;
}

#section-banner {
    background: var(--tertiary-color);
    margin: 70px 0px;
}

.subheader {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.subheader h2 {
    color: var(--white-color);
}

.subheader::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: 1;
}

.subheader-inner {
    position: relative;
    height: 200px;
    z-index: 2;
    padding-top: 150px;
}

.rounded-50 {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.chamber-item img {
    border: 6px solid #fff;
    box-shadow: 0 2px 12px rgba(var(--primary-color-rgb), 0.08);
}

@media (max-width: 991px) {
    .subheader-inner {
        padding-top: 0 !important;
        height: max-content !important;
    }

    .card-icon {
        width: 75px;
        height: 75px;
    }

    .base-card p {
        font-size: 13px;
    }

    #section-banner {
        padding: 30px 0px !important;
    }
}

.board-area .chamber-item .subtitle-tag {
    margin-bottom: 0;
}

.ad-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-wide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .ad-wide img {
        height: 200px;
    }
}

.module-date {
    display: block;
    font-size: 14px;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 10px;
    font-style: italic;
}


.module-content {
    padding: 25px;
}

/* #module-carousel .owl-stage-outer{
    overflow: visible;
} */

#activity-carousel .item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 10px
}

#notice-carousel .item {
    margin-top: 40px;
    padding: 10px;
}

.shadow {
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
}

.history-timeline {
    margin: 0 auto;
}

.history-item {
    margin-bottom: 80px;
}

.history-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.history-left {
    border-right: 1.5px solid #fecc02;
    padding-right: 10px;
}

.history-year {
    font-size: 50px;
    font-weight: 200;
    color: var(--title-font-color);
    line-height: 1;
    text-align: end;
    opacity: 0.9;
    letter-spacing: -2px;
}

.history-title {
    margin-top: 8px;
    font-size: 14px;
    text-align: end;
}

.history-right p {
    text-align: justify;
}

.spacer-double {
    width: 100%;
    height: 60px;
    display: block;
    clear: both;
}

.activity-detail .widget {

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-detail .widget:hover {
    transform: translateY(-3px);

}

.activity-detail .widget h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-detail .widget h3 i {
    color: var(--secondary-color);
}

.activity-detail .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.activity-detail .info-item:last-child {
    margin-bottom: 0;
}

.activity-detail .info-item i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.activity-detail .info-content {
    flex: 1;
}

.activity-detail .info-label {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

.activity-detail .info-text {
    font-size: 14px;
    line-height: 1.6;
}

.activity-detail .info-text a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--title-font-color);
}


.activity-detail .map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    border: 2px solid #ecf0f1;
}

.activity-detail .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.activity-detail .btn-reservation {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.activity-detail .btn-reservation:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.activity-detail .btn-reservation i {
    margin-right: 8px;
}

.activity-detail .social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.activity-detail .working-hours {
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.activity-detail .working-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.activity-detail .working-hours-item:last-child {
    border-bottom: none;
}

.activity-detail .working-hours-day {
    font-weight: 500;
}

.activity-detail .working-hours-time {
    opacity: 0.8;
}

.activity-detail .capacity-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.form-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.form-title i {
    background: #f3f4f6;
    color: #6b7280;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
    font-size: 1rem;
}

.form-title h2 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
}


.full-width {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Custom Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 50px;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Radio Button Styling */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 0px;
}

.radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-item input[type="radio"]:checked {
    border-color: #000000;
    background: #000000;
}

.radio-item input[type="radio"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-item label {
    cursor: pointer;
}

/* Textarea Styling */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* File Input Styling */
.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type=file] {
    position: absolute;
    left: -9999px;
}

.file-input-label {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.file-input-label:hover {
    border-color: var(--primary-color);
    background: #1231211f;
}

.file-input-label i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 12px;
    align-content: center;
    margin: 0;
    padding: 0;
}

.checkbox-wrapper label {
    color: #495057;
    line-height: 1.6;
    cursor: pointer;
}

.form-label {
    display: block;
    margin-bottom: 0px;
}

.required {
    color: #dc3545;
}

@media (max-width: 768px) {

    .form-body {
        padding: 25px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
}

.form-group {
    margin-bottom: 15px;
}

label {
    color: #000 !important;
}

select,
textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #000;
}

input::placeholder,
textarea::placeholder {
    color: #000 !important;
    opacity: 1;
}

.contact-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-box i {
    color: var(--secondary-color);
}

.custom-form {
    padding: 100px !important;
}

.contact-box a {
    color: var(--primary-color);
}

.tab-section .nav-link {
    background-color: var(--tertiary-color) !important;
    color: inherit;
}

.tab-section .nav-link h3 {
    font-size: 15px;
}

.tab-section .nav-link.active {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.tab-section .nav-link.active h3 {

    color: #fff !important;
}

.tab-section .nav-link .icofont-long-arrow-right {
    display: none;
}

.tab-section .nav-link.active .icofont-long-arrow-right {
    display: block;
}