@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Cond.woff2') format('woff2'),
        url('../fonts/MyriadPro-Cond.woff') format('woff'),
        url('../fonts/MyriadPro-Cond.ttf') format('truetype'),
        url('../fonts/MyriadPro-Cond.svg#MyriadPro-Cond') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-BoldIt.woff2') format('woff2'),
        url('../fonts/MyriadPro-BoldIt.woff') format('woff'),
        url('../fonts/MyriadPro-BoldIt.ttf') format('truetype'),
        url('../fonts/MyriadPro-BoldIt.svg#MyriadPro-BoldIt') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-BoldCondIt.woff2') format('woff2'),
        url('../fonts/MyriadPro-BoldCondIt.woff') format('woff'),
        url('../fonts/MyriadPro-BoldCondIt.ttf') format('truetype'),
        url('../fonts/MyriadPro-BoldCondIt.svg#MyriadPro-BoldCondIt') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-CondIt.woff2') format('woff2'),
        url('../fonts/MyriadPro-CondIt.woff') format('woff'),
        url('../fonts/MyriadPro-CondIt.ttf') format('truetype'),
        url('../fonts/MyriadPro-CondIt.svg#MyriadPro-CondIt') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-SemiboldIt.woff2') format('woff2'),
        url('../fonts/MyriadPro-SemiboldIt.woff') format('woff'),
        url('../fonts/MyriadPro-SemiboldIt.ttf') format('truetype'),
        url('../fonts/MyriadPro-SemiboldIt.svg#MyriadPro-SemiboldIt') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('../fonts/MyriadPro-Regular.woff') format('woff'),
        url('../fonts/MyriadPro-Regular.ttf') format('truetype'),
        url('../fonts/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Semibold.woff2') format('woff2'),
        url('../fonts/MyriadPro-Semibold.woff') format('woff'),
        url('../fonts/MyriadPro-Semibold.ttf') format('truetype'),
        url('../fonts/MyriadPro-Semibold.svg#MyriadPro-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.woff2') format('woff2'),
        url('../fonts/MyriadPro-Bold.woff') format('woff'),
        url('../fonts/MyriadPro-Bold.ttf') format('truetype'),
        url('../fonts/MyriadPro-Bold.svg#MyriadPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Light.woff2') format('woff2'),
        url('../fonts/MyriadPro-Light.woff') format('woff'),
        url('../fonts/MyriadPro-Light.ttf') format('truetype'),
        url('../fonts/MyriadPro-Light.svg#MyriadPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-BoldCond.woff2') format('woff2'),
        url('../fonts/MyriadPro-BoldCond.woff') format('woff'),
        url('../fonts/MyriadPro-BoldCond.ttf') format('truetype'),
        url('../fonts/MyriadPro-BoldCond.svg#MyriadPro-BoldCond') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Myriad Pro';
    font-size: 18px;
    font-weight: 400;
    background: #fff;
    color: #000;
}

a,
button {
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

label {
    margin-bottom: 0;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #57501E;
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid #57501E;
    z-index: 1;    
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #57501E;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
}

.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: #57501E;
  margin-left: -15px;
  margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear; 
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/* ====top-headre ==== */
.top-header {
    padding: 26px 24px;
    border-bottom: 1px solid #E7E7E7;
}

.top-header2 {
    padding: 26px 0;
    border-bottom: none;
}

.top-teader-wrapper{
    display:flex;
    align-items: center;
    justify-content: space-between;

}
.tp-item {
    display: flex;
    align-items: center;
    gap: 0px 20px;
}

.tp-item li a {
    font-family: 'Myriad Pro';
    color: #28260B;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    gap: 10px;
    transition: 0.3s all ease;
}

.tp-item li:hover {
    color: #57501E;
}

.tp-item li a img {
    display: inline-block;
}

.tp-fnt-s {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-fnt-s li a {
    width: 35px;
    padding: 4px;
    text-transform: uppercase;
    border: 1px solid var(--primary-900, #28260B);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #28260B;
}

.tp-fnt-s li a:hover {
    background: #57501E;
    color: #ffff;
}

.language-flag{}
.language-flag img{}
.language-flag span{
    color:  #28260B !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    transition: .3s;
}
.language-flag span:hover{
    color:  #57501E !important;  
}

.language-flag img {
    margin-right: 16px;
}

/*==== nev area start===== */

header {
    padding: 21px 24px;
/*     background: #8D7E23; */
/*     backdrop-filter: blur(7px); */
    z-index: 9999;
}

.header2 {
    padding: 0;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header2-main {
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    padding: 20px 42px;
    margin-bottom: -35px;
    z-index: 999;
    position: relative;
}

.menu-item {
    display: flex;
    align-items: center;
}
.menu-item ul li{
    padding: 0px 35px 0 0;
}
.menu-item ul li:last-child{
    padding: 0;
}

.menu-item ul li a {
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #28260B;
    display: inline-block;
    text-transform: inherit;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: left;
    position: relative;
}

.menu-item ul li a::before {
    display: block;
    content: '';
    width: 0;
    height: 2px;
    background: #28260B;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s all ease;
}

.menu-item ul li a:hover::before {
    right: 0;
    width: 100%;
}

.menu-item ul li a:hover {
    color: #57501E;
    font-weight: 700;
}

.menu-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-contact-item a {
    display: inline-block;
    border-radius: 12px;
    padding: 12.5px 39.3px;
    border: 1px solid #57501E;
    color: #28260B;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.menu-contact-item a:hover {
    background: #57501E;
    color: #ffff;
}

.menu-contact-item a img {
    margin-left: 12px;
}

.menu-contact-item a i {
    margin-left: 12px;
}

.menu-contact-item2 {
    margin-left: 19px;
}

.menu-contact-item2 a {
    color: #FFFFFF;
    border-radius: 12px;
    background: #57501E;
    border: none;
}

.menu-contact-item2 a:hover {
    background: #4A461D;
}

.menu-contact-item2 a span svg {
    margin-left: 12px;
}

.menu-contact-item3 a svg {
    margin-left: 12px;
}

.menu-contact-item3 a svg path {
    fill: #57501E;
}

.menu-contact-item3 a:hover svg path {
    fill: #ffff;
}

.menu-logo {
    display: none;
}

.menu-logo img {
    max-width: 200px;
    width: 100%;
}

.menu-bar {
    display: none;
}

.menu-bar a {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/*==== nev area end===== */
.menu-logo2{
    display: none;
    width: 220px;
    margin-right: 80px;
}
/*==== sticky-nev start=== */
.fixed-menu nav .menu-logo2{
    display: block !important;
}


.fixed-menu {
    background: #ffff;
    position: fixed;
    top: 0;
    -webkit-animation: slide-down 0.5s !important;
            animation: slide-down 0.5s !important;
    left: 0;
    top:0px;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    z-index: 250;
    -webkit-transition: .10s;
    -o-transition: .10s;
    transition: .10s;
}

.fixed-menu2 {
    background: #FBF6EA;
    min-height: 83px;
    position: fixed;
    top: 0;
    -webkit-animation: slide-down 0.5s !important;
            animation: slide-down 0.5s !important;
    left: 0;
    top:0px;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    z-index: 250;
    -webkit-transition: .10s;
    -o-transition: .10s;
    transition: .10s;
}

/* .fixed-menu2 .header2-main {
    background: #fff;
    min-height: 83px;
    position: fixed;
    top: 0;
    -webkit-animation: slide-down 0.5s !important;
            animation: slide-down 0.5s !important;
    left: 0;
    top:0px;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    z-index: 250;
    -webkit-transition: .10s;
    -o-transition: .10s;
    transition: .10s;
} */


@-webkit-keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
                transform: translateY(50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
                transform: translateY(50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

/*==== sticky-nev end=== */


/* ====offcanvas manu start===== */

.offcanvas-header {
    background-color: #fff;
    /*! border-bottom: 1px solid #FFD233; */
}

.offcanvas-header h5 img {
    max-width: 200px;
}

.offcanvas-body {
    background-color: #ffff;
    padding: 0px 0 30px 0 !important;
}

.clloss-x {
    font-size: 25px;
    cursor: pointer;
    color: #000;
}

.clloss-x:hover {
    color: #000 !important;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 340px;
    z-index: 11111111111111;
}

.mobile-menu-item ul li a {
    color: #28260B;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding: 15px 20px;
    display: block;
    transition: .2s;
}

.mobile-menu-item ul li a:hover {
    background-color: #4A461D;
    color: #fff;
}

.m-active {
    background: #4A461D;
    color: #fff !important;
}

.mobile-menu-item ul li a i {
    font-size: 20px;
    margin-right: 15px;
}

.mobile-menu-item-contactwrap {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 10px;
    margin: 30px 0 0 15px;
}

.mobile-menu-item-contact a {
    display: block;
    width: 100%;
    text-align: center;
    color: #ffff;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    background: #57501E;
    padding: 12px 16px;
    border-radius: 12px;
}

.mobile-menu-item-contact3 {
    border-radius: 12px;
    color: #28260B !important;
    border: 1px solid var(--primary-700, #57501E);
    background: #ffff !important;
}

.mobile-menu-item-contact3:hover {
    background: #4A461D !important;
    color: #fff !important;
}

.mobile-menu-item-contact a:hover {
    background: #4A461D;
}

.mobile-menu-item-contact a i,
.mobile-menu-item-contact a span img {
    margin-left: 10px;
}

.mobile-menu-item-contact a svg {
    margin-left: 12px;
}

.mobile-menu-item-contact a svg path {
    fill: #28260B;
}

.mobile-menu-item-contact a:hover svg path {
    fill: #ffff;
}

.mobile-menu-item-contact a span img {
    width: 15px;
}

.mobile-menu-item-contact2 {
    margin-left: 20px;
}

.mobile-top-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 15px 0;
    padding: 0 10px;
}

.mobile-top-menu ul li {
    margin-right: 10px;
}

.mobile-top-menu ul li:last-child {
    margin-right: 0px;
}

.mobile-top-menu ul li a img {
/*     margin-right: 5px; */
}

.mobile-top-menu ul li a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    padding: 0;
}

.mobile-top-menu ul li a:hover {
    color: #57501E;
    background: none;
}

.mobile-topmenub {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 25px !important;
    text-transform: uppercase;
    border: 1px solid var(--primary-900, #28260B);
    text-align: center;
    color: #28260B;
    transition: 0.3s all ease;
}

.mobile-top-menu ul li a:hover.mobile-topmenub {
    background: #57501E;
    color: #fff;
}


/* ====offcanvas manu end===== */

/* =====hero-area-start===== */

.hero-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;  
}

.mobile-db {
    display: none;
}

.hero-left {
    width: 30%;
    display: flex;
    height: 769px;
    padding: 48px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    background: var(--primary-900, #28260B);
}

.hero-left h2 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 51px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.hero-left p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.hero-left a {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.hero-left a svg {
    margin-left: 12px;
}

.hero-left a svg path {
    fill: #ffff;
}

.hero-left a:hover {
    background: #4A461D;
}

.hero-right {
    width: 70%;
    height: 769px;
}

.hero-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-item {
    position: absolute;
    right: 44px;
    bottom: 50px;
    padding: 16px 32px 16px 16px;
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(12px);
}

.video-item a {
    display: flex;
    align-items: center;
}

.video-item a .video-item-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 360px;
    background: #8D7E23;
    margin-right: 24px;
}

.video-item a:hover .video-item-icon {
    background: #4A461D;
}

.video-item a .video-item-icon i {
    font-size: 24px;
    color: #fff;
    margin-top: 29px;
}

.video-item a span {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

/* modal start */

.modally-init {
    display: none;
}

.modally-wrap {
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    overflow: auto;
    display: none;
    box-sizing: border-box;
}

.modally-wrap .modally-underlay {
    position: fixed;
    background: rgba(23, 23, 23, 0.85);
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.modally {
    margin: 0px auto;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
    width: calc(100% - 40px);
    height: auto;
    background: white;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.05);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
    padding-top: 48px;
}

.modally .modally-close-button {
    border: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    cursor: pointer;
    background: transparent;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 12px 20px;
    font-size: 32px;
    line-height: 23px;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
    font-weight: 300;  
}

.modally .modally-close-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.modally-table {
    display: table;
    width: 100%;
    min-height: 100%;
}

.modally-cell {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.modally .iframe-landing {
    position: relative
}

.modally .iframe-landing iframe,
.modally .iframe-landing video {
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0px;
    left: 0px;
    border: none;
}

@media screen and (min-width: 960px) {
    .modally .modally-close:hover {
        opacity: 0.5;
    }
}

@media screen and (max-width: 959px) {
    .modally {
        height: auto;
        max-width: none;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: calc(100% - 40px);
    }
}

/* modal end */

/* ========= Museum-area-start ======== */

.Museum-area {
    background: var(--primary-50, #FBF6EA);
    padding: 50px 0;
}

.Museum-wrap {
    border-bottom: 1px solid #28260B;
    padding-bottom: 45px;
}

.Museum-item h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Museum-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Museum-btn {
    margin-top: 30px;
}

.Museum-btn-item h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Museum-btn-item h5 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Museum-btn-item a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.Museum-btn-item a:hover {
    background: #4A461D;
}

.Museum-btn-item a svg {
    margin-left: 12px;
}

/* ========= Museum-area-end ======== */

/* ========= Upcoming-area-start ======== */

.Upcoming-area {
    background: var(--primary-900, #28260B);
    padding: 60px 0;
}

.Upcoming-top {
    margin-bottom: 60px;
}

.Upcoming-top-item h4 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Upcoming-top-item a {
    display: inline-block;
    padding: 16px 24px;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
}

.Upcoming-top-item a:hover {
    border-radius: 12px;
    color: #ffff;
    background: var(--primary-700, #57501E);
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
}

.Upcoming-top-item a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Upcoming-top-item a svg path {
    fill: #28260B;
}

.Upcoming-top-item a:hover svg path {
    fill: #ffff;
}

.Upcoming-item {
    text-align: center;
}

.Upcoming-cnt {
    padding: 32px;
}

.Upcoming-item1,
.Upcoming-item2 {
    margin-bottom: 50px;
}

.Upcoming-img img {
    width: 100%;
    height: 261px;
    border-radius: 12px;
}

.Upcoming-cnt small {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Upcoming-cnt h2 a {
    display: block;
    color: #FFF;
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 24px 0;
}

.Upcoming-cnt h2 a:hover {
    color: #57501E;
}

.Upcoming-cnt span {
    display: block;
    width: 100%;
    height: 1px;
    background: #ffff;
    opacity: 0.2;
}

.Upcoming-cnt-btn a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding-top: 24px;
}

.Upcoming-cnt-btn a:hover {
    color: #57501E;
}

.Upcoming-cnt-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Upcoming-cnt-btn a svg path {
    fill: #ffff;
}

.Upcoming-cnt-btn a:hover svg path {
    fill: #57501E;
}

/* ========= Upcoming-area-end ======== */

/* ========= News-area-start ======== */

.News-area {
    background: #fff;
    padding: 65px 0 273px 0;
}

.News-top {
    margin-bottom: 38px;
}

.News-top-item h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.News-top-item a {
    display: inline-block;
    padding: 16px 24px;
    color: #FFFFFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.News-top-item a:hover {
    background: #4A461D;
}

.News-top-item a svg,
.News-top-item a i {
    margin-left: 12px;
    font-size: 12px;
}

.News-top-item a svg path {
    fill: #fff;
}

.News-item {
    text-align: center;
}

.News-cnt {
    padding: 32px;
    border-radius: 0px 0px 12px 12px;
    border: 1px solid var(--black-200, #C8C8C8);
}

.News-img img {
    width: 100%;
    height: 171px;
    border-radius: 12px 12px 0px 0px;
}

.News-cnt small {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.News-cnt small svg {
    color: #B19C31;
    margin-right: 12px;
}

.News-cnt h2 a {
    display: block;
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 24px 0;
}

.News-cnt h2 a:hover {
    color: #57501E;
}

.News-cnt p {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 24px;
}

.News-cnt span {
    display: block;
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #28260B;
}

.News-bottom-btn a {
    display: inline-block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding-top: 24px;
}

.News-bottom-btn a:hover {
    color: #57501E;
}

.News-bottom-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

.News-bottom-btn a:hover svg path {
    fill: #57501E;
}

.That-item {
    text-align: center;
    margin-top: 70px;
}

.That-item h3 {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 13px;
}

.That-item p {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* ========= News-area-end ======== */

/* ========= Collections-area-start ======== */

.Collections-area {
    border-radius: 12px;
    background: var(--primary-900, #28260B);
    padding-bottom: 87px;
}

.Collections-item1,
.Collections-item2,
.Collections-item3 {
    margin-top: -220px;
    position: relative;
}

.Collections-item {
    display: flex;
    width: 100%;
    min-height: 451px;
    padding: 48px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 12px;
    position: relative;
}

.Collections-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), url('') lightgray 50% / cover no-repeat;
    z-index: -1;
}

.Collections-item h3 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Collections-item p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Collections-btn a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.Collections-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Collections-btn a svg path {
    fill: #ffff;
}

.Collections-btn a:hover {
    background: #4A461D;
}

.Collections-item {
    margin-bottom: 24px;
}

.Collections-item1 {
    background: url('../img/Collections.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-item2 {
    background: url('../img/Collections2.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-item3 {
    background: url('../img/Collections3.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-item4 {
    background: url('../img/Collections4.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-item5 {
    background: url('../img/Collections5.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-item6 {
    background: url('/wp-content/uploads/2025/02/dla-mediow-obraz.png') no-repeat; 
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
    min-height: 451px;
    padding: 48px;
    border-radius: 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.Collections-items1 {
    background: url('../img/Collections7.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-items2 {
    background: url('../img/Collections8.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 451px;
    border-radius: 12px;
}

.Collections-items h3 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Collections-items ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.Collections-items ul li:first-child {
    width: 75%;
}

.Collections-items ul li:last-child {
    text-align: right;
    width: 25%;
}

.Collections-items ul li p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Collections-items ul li a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.Collections-items ul li a:hover {
    background: #4A461D;
}

.Collections-items ul li a svg {
    margin-left: 12px;
    font-size: 12px;
    fill: #ffff;
}

.Collections-items ul li a svg path {
    fill: #ffff;
}

/* ========= Collections-area-end ======== */

/* ========= questions-area-start ======== */

.questions-area {
    background: #ffff;
    padding: 60px 0;
}

.questions-left {
    margin-top: 50px;
}

.questions-left h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 29px;
}

.questions-left p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.questions-right img {
    width: 100%;
    height: 465px;
    border-radius: 24px;
}

.questions-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.questions-box {
    margin-top: -155px;
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    display: flex;
    width: 333px;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-right: 22px;
}

.questions-box:last-child {
    margin-right: 0;
}

.questions-box h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.questions-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.questions-box span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C8C8C8;
}

.questions-box a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.questions-box a:hover {
    color: #57501E;
}

.questions-box a:hover svg path {
    fill: #57501E;
}

.questions-box a svg {
    margin-left: 12px;
    font-size: 12px;
}


/* ========= questions-area-end ======== */

/* ========= footer-area-start ======== */

.footer-area {
    background: #ffff;
    border-top: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
    padding: 60px 0;
}

.footer-item ul li a {
    display: inline-block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
    position: relative;
}

.footer-item ul li a::before {
    display: block;
    content: '';
    width: 0;
    height: 2px;
    background: #28260B;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s all ease;
}

.footer-item ul li a:hover::before {
    right: 0;
    width: 100%;
}

.footer-item ul li a:hover {
    color: #57501E;
}

.footer-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 20px;
}

.footer-item2 ul {
    margin-bottom: 20px;
}

.footer-item ul li {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.footer-icon-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.footer-icon-wrap:hover .footer-icon-iteml,
.footer-icon-wrap:hover .footer-icon-itemr{
    color: #57501E;
    border-color: #57501E;
}

.footer-icon-iteml {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #28260B;
    border-radius: 100px;
    border: 1px solid var(--primary-900, #28260B);
    margin-right: 12px;
}

.footer-icon-wrap:hover .footer-icon-iteml svg path {
    fill: #57501E;
}

.footer-icon-iteml svg {
    margin-top: -5px;
}

.footer-icon-itemr {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.footer-item h6 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.footer-item4 a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 14px;
}

.footer-item4 a:hover {
    color: #57501E;
}

.footer-item4 h5 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

/* ========= footer-area-end ======== */

/* ========= copyright-area-start ======== */

.copyright-area {
    background: #fff;
    padding: 38px 0 50px 0;
}

.copyright-item a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.copyright-item a:hover {
    color: #57501E;
}

.copyright-itemr a {
    text-align: right;
}

.copyright-itemr a b {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.copyright-itemr a img {
    margin-right: 13px;
}

/* ========= copyright-area-end ======== */

/* =========================== 1page-end ========================== */

/* ========= top-pagination-hero-start ======== */

.top-pagination-hero {
    background: #28260B;
    position: relative;
}

.top-pagination-left {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: #28260B;
    width: 100%;
    min-height: 530px;
    flex-shrink: 0;
    /* padding: 105px 160px 44px 410px; */
    padding-left: 30px;
    padding-right: 50px;
}


.top-pagination-left ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.top-pagination-left ul li a {
    display: block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.top-pagination-left ul li a:hover {
    color: #57501E;
}

.top-pagination-left ul li span {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding: 0 5px;
}

.top-pagination-left ul li a svg {
    margin-right: 12px;
}

.top-pagination-left ul li a svg path {
    fill: #fff;
}

.top-pagination-left ul li a:hover svg path {
    fill: #57501E;
}

.top-pagination-left h3 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 51px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 24px 0 48px 0;
}

.top-pagination-left p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}




.top-pagination-right img{
    position: absolute;
    right: 0px;
    top: 0px;
}

/* ========= top-pagination-hero-end ======== */

/* ========= Morbi-start ======== */

.Morbi-area {
    background: #fff;
    padding: 55px 0 279px 0;
}

.Morbi-top {
    margin-bottom: 39px;
}

.Morbi-box {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    width: 100%;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    transition: 0.3s all ease;
}

.Morbi-box:hover {
    background: #57501E; 
    color: #fff;
}

.News-cnt2 small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.News-cnt2 small svg path {
    fill: #B19C31;
}

.Morbi-item {
    margin-bottom: 32px;
}

.Morbi-next-btn ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.Morbi-next-btn ul li {
    margin-right: 16px;
}

.Morbi-next-btn ul li:last-child {
    margin-right: 0px;
}

.Morbi-next-btn ul li a {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Morbi-next-btn ul li a:hover,
.Morbi-next-btn ul li a.active {
    background: #57501E;
    color: #ffff;
}

/* ========= Morbi-hero-end ======== */

/* ========= Visiting-area-start ======== */

.Visiting-area {
    border-radius: 12px;
    background: var(--primary-900, #28260B);
    padding-bottom: 87px;
}

.Visiting-items1,
.Visiting-items2 {
    margin-top: -220px;
    position: relative;
}

.Visiting-item1,
.Visiting-item2,
.Visiting-item3 {
    margin-top: 24px;
    margin-bottom: 0;
}

/* ========= Visiting-area-end ======== */

/* =========================== 2page-end ========================== */

.top-pagination-left2 small {
    display: block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.top-pagination-left2 small svg {
    margin-right: 12px;
}

.top-pagination-left2 small svg path {
    fill: #B19C31;
}

/* ========= amaranth-area-start ======== */

.amaranth-area {
    background: #ffff;
    padding: 69px 0 42px 0;
}

.amaranth-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 32px;
}

.amaranth-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 32px;
}

.amaranth-img img {
    width: 100%;
    height: 481px;
    margin-bottom: 32px;
}

.amaranth-number-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 23px;
}

.amaranth-number-left {    
    width: 4%;
    margin-right: 10px;
}

.amaranth-number-right {
    width: 90%;
}

.amaranth-number-left p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    margin-bottom: 0;
}

.amaranth-number-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0;
}

.amaranth-item ul li {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding-left: 45px;
    position: relative;
    margin-bottom: 32px;
}

.amaranth-item ul li::before {
    display: block;
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    color: #8D7E23;
}

.amaranth-social {
    padding: 31px 0 0px 0;
    border-top: 1px solid #E5E5E5;
}

.amaranth-social h3 {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 20px;
}

.amaranth-social-media {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.amaranth-social-media a {
    margin-right: 12px;
}

.amaranth-social-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.amaranth-social-iconl {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 100px;
    border: 1px solid var(--primary-900, #28260B);
    margin-right: 12px;
    color: #28260B;
}

.amaranth-social-iconr {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.amaranth-social-iconr b {
    font-weight: 700;
}

/* ========= amaranth-area-start ======== */

/* ========= gallery-area-start ======== */

.gallery-area {
    padding: 58px 0;
    background: var(--primary-900, #28260B);
}

.gallery-top h3 {
    color: #FFF;
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 42px;
}

/* main-content8 */

.main-content8 {
    position: relative;
    margin-bottom: 105px;
}

.main-content8 .owl-theme .custom-nav {
    position: absolute;
    top: 113%;
    left: 0;
    right: 0;
}

.main-content8 .owl-theme .custom-nav .owl-prev, .main-content8 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content8 .owl-theme .custom-nav .owl-prev,
.main-content8 .owl-theme .custom-nav .owl-next {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 360px;
    background: var(--primary-700, #57501E);
    color: #ffff;
}

.main-content8 .owl-theme .custom-nav .owl-prev {
    left: 43.3%;
}

.main-content8 .owl-theme .custom-nav .owl-next {
    right: 43.3%;
}

.gallery-img img {
    width: 100%;
    border-radius: 24px;
}

/* ========= gallery-area-end ======== */

/* ========= Related-area-start ======== */

.Related-area {
    background: #ffff;
    padding: 80px 0 70px 0;
}

.Related-cnt small i {
    color: #B19C31;
}

/* ========= Related-area-end ======== */

/* ========= want-area-start ======== */

.Want-area {
    background: #ffff;
    padding: 50px 0;
}

.Want-item h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Want-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Want-item a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.Want-item a:hover {
    color: #57501E;
    text-decoration: none;
}

.Want-box {
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    margin-top: 50px;
    padding: 35px 57px;
}

.Want-box-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Want-box-item h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Want-box-item a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
}

.Want-box-item a:hover {
    background: #4A461D;
}

.Want-box-item a img {
    margin-left: 12px;
}

.Want-box-item2 {
    text-align: right;
}

/* ========= Wantwant-area-end ======== */

/* ========= Contact-area-start ======== */

.Contact-area {
    background: #fff;
    padding-bottom: 85px;
}

.Contact-top h3 {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Contact-top p {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 34px;
}

.Contact-box {
    max-width: 750px;
    width: 100%;
    margin: auto;
}

.Contact-input label {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 8px;
}

.Contact-input input {
    width: 100%;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding: 12px 20px;
    border: 1px solid var(--black-200, #C8C8C8);
    outline: none;
    margin-bottom: 24px;
}

/* dropdown */
.select-menu {
  max-width: 100%;
}
.select-menu .select-btn {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;    
    margin-bottom: 24px;
    letter-spacing: -0.28px;
    padding: 11px 20px;
    border: 1px solid var(--black-200, #C8C8C8);
    outline: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.select-menu .options {
  position: absolute;
  width: 363px;
  overflow-y: auto;
  max-height: 295px;
  padding: 10px;
  margin-top: -10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}
.select-menu .options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.select-menu .options .option:hover {
  background: #f2f2f2;
}
.select-menu .options .option i {
  font-size: 25px;
  margin-right: 12px;
}
.select-menu .options .option .option-text {
  font-size: 18px;
  color: #333;
}

.select-btn i {
  font-size: 15px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu.active .options {
  display: block;
  visibility: hidden;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 20px, 0);
    visibility: hidden;
  }
}

.Contact-box form label {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 8px;
}

.Contact-box form textarea {
    width: 100%;
    min-height: 159px;
    resize: none;
    outline: none;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 12px 20px;
    line-height: 130%;
    border: 1px solid var(--black-200, #C8C8C8);
    margin-bottom: 24px;
}

/* check-box */

input[type=checkbox] {
    appearance: none;
    height: 24px;
    width: 24px;
    border: 1px solid #A4A4A4;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 24px;
}

input[type=checkbox]::after {
    content: "\f00c";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    color: #ffffff;
    display: none;
}

input[type=checkbox]:checked {
    background: #57501E;
}

input[type=checkbox]:checked::after {
    display: block;
}

.check-box-wrap {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 24px;
    grid-row-gap: 10px;
}

.check-box label {
    color: var(--black-900, #000);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0 !important;
}

.check-box-btn a {
    display: inline-block;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
    padding: 16px 24px;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.check-box-btn a:hover {
    background: #4A461D;
}

.check-box-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

/* ========= Contact-area-end ======== */

/* =========================== 4page-end ========================== */

.opening-area {
    background: #ffff;
    padding: 57px 0 0 0;
}

.opening-main {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 57px;
}

/* ========= Access-area-start ======== */

.Access-area {
    background: #fff;
    padding: 57px 0 273px 0;
}

.Access-left h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 32px;
}

.Access-left h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Access-left p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 32px;
}

.Access-left p:last-child {
    margin-bottom: 0;
}

.Access-right h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 10px;
}

.Access-right-map iframe {
    width: 100%;
    height: 260px;
}

/* ========= Access-area-end ======== */

/* ========= Press-area-start ======== */

.Press-area {
    background: #fff;
    padding: 50px 0 58px 0;
}

.Press-left {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
}

.Press-left h4 a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 32px !important; 
}

.Press-left h4 a:hover,
 .Press-left h5 a:hover {
    color: #57501E;
}

.Press-left h5 a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    padding-bottom: 16px;
}

.Press-left span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C8C8C8;
    margin-bottom: 16px;
}

.Press-left a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 16px;
}

.Press-left a:hover {
    color: #57501E;
}

.Press-left a:last-child {
    margin-bottom: 0;
}

.Press-right h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 22px;
}

.Press-right ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.Press-right ul li {
    margin-right: 17px;
}

.Press-right ul li:last-child {
    margin-right: 0px;
}

.Press-right ul li a {
    display: block;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Press-right ul li a:hover {
    background: #57501E;
    color: #ffff;
}

.Press-right ul li a i {
    margin-left: 12px;
}

.Press-right-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 15px;
}

.Press-right-box small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.Press-right-box small svg {
    margin-right: 12px;
    color: #B19C31;
}

.Press-right-box h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.Press-right-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.Press-right-box span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C8C8C8;
    margin-bottom: 24px;
}

.Press-right-box-btn a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Press-right-box-btn a:hover {
    color: #57501E;
}

.Press-right-box-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Press-right-box-btn a svg path {
    fill: #28260B;
}

.Press-right-box-btn a:hover svg path {
    fill: #57501E;
}

.Press-right-next ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 42px;
}

.Press-right-next ul li {
    margin-right: 16px;
}

.Press-right-next ul li:last-child {
    margin-right: 0px;
}

.Press-right-next ul li a {
  display: flex;
  width: 60px;
  height: 60px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid var(--primary-700, #57501E);
  color: var(--primary-900, #28260B);
  font-family: "Myriad Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.Press-right-next ul li a:hover,
.Press-right-next ul li a.active {
  background: #57501E;
  color: #ffff;
}

/* ========= Press-area-end ======== */

/* ========= Press-area-start ======== */

.Media-right h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 15px;
}

.Media-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.Media-right p:last-child {
    margin-bottom: 0;
}

/* ========= Press-area-end ======== */

/* ========= Accreditation-area-start ======== */


.Accreditation-form-top h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Accreditation-form-top p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 36px;
}

/* select */
.select-dropdown,
.select-dropdown * {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}
.select-dropdown {
    position: relative;
    background-color: #ffff;
    border: 1px solid var(--black-200, #C8C8C8);
    margin-bottom: 24px;
}
.select-dropdown select {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.28px;
    padding: 12px 20px;
    width: 100%;
    border: none;
    background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
    appearance: none;
}
.select-dropdown select:active, .select-dropdown select:focus {
    outline: none;
    box-shadow: none;
}
.select-dropdown::after {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 15px;
    transform: translateY(-50%);
}

/* ========= Accreditation-area-end ======== */


/* =========================== 8page-end ========================== */

/* ========= Honorary-area-start ======== */

.Honorary-right {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 42px;
}

.Honorary-right-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 15px;
}

.Honorary-right-box-left img {
    width: 100%;
    height: 272px;
}

.Honorary-right-box-right small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.Honorary-right-box-right small i {
    margin-right: 12px;
    color: #B19C31;
}

.Honorary-right-box-right h2 a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.Honorary-right-box-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.Honorary-right-box-right p:last-child {
    margin-bottom: 0;
}

/* ========= Honorary-area-end ======== */

/* ========= Volunteering-area-start ======== */

.Volunteering-ul ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
}

.Volunteering-ul ul li {
    margin-bottom: 16px;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    position: relative;
    padding-left: 40px;
}

.Volunteering-ul ul li:last-child {
    margin-bottom: 0px;
}

.Volunteering-ul ul li::before {
    display: block;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: #8D7E23;
    position: absolute;
    left: 0;
    top: 0;
}

.Volunteering-img img {
    width: 100%;
    height: 474px;
    margin-bottom: 32px;
}

.Volunteering-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 32px;
}

.Volunteering-box h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.Volunteering-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.Volunteering-box span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C8C8C8;
    margin-bottom: 24px;
}

.Volunteering-box a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Volunteering-box a:hover,
.Volunteering-box a:hover svg path {
    color: #57501E;
    fill: #57501E;
}

.Volunteering-box a svg {
    margin-left: 12px;
}

.Volunteering-form-box {
    max-width: 100%;
}

.Volunteering-form-top p a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.Volunteering-form-top p a:hover {
    color: #57501E;
    text-decoration: none;
}

/* ========= Volunteering-area-end ======== */

/* =========================== 10page-end ========================== */

/* ========= donate-area-end ======== */

.donate-box {
    max-width: 100%;
}

.donate-form-top h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 32px;
}

.donate-form-top ul {
    margin-bottom: 32px;
}

.donate-form-top ul li {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.donate-form-top ul li a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
}

.donate-form-top ul li a:hover {
    color: #57501E;
    text-decoration: none;
}

.donate-form-top ul li:last-child a {
    text-decoration: none;
}

/* ========= donate-area-end ======== */

/* ========= Harvest-area-start ======== */

.Harvest-right h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 17px;
}

.Harvest-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 42px;
}

.Harvest-right-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 17px;
}

.Harvest-right-box:last-child {
    margin-bottom: 0;
}

.Harvest-right-box small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.Harvest-right-box small svg {
    margin-right: 12px;
    color: #B19C31;
}

.Harvest-right-box h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.Harvest-right-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.Harvest-right-box p:last-child {
    margin-bottom: 0;
}

.Harvest-right-box p a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
}

.Harvest-right-box p a:hover {
    color: #57501E;
    text-decoration: none;
}

/* ========= Harvest-area-end ======== */

/* ========= Investments-area-start ======== */

.Investments-area {
    background: #ffff;
    padding: 35px 0 46px 0;
}

.Investments-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 23px;
}

.Investments-box:last-child {
    margin-bottom: 0;
}

.Investments-img {
    margin-bottom: 24px;
}

.Investments-img ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.Investments-img ul li {
    margin-right: 24px;
}

.Investments-img ul li:last-child {
    margin-right: 0px;
}

.Investments-img ul li:nth-child(1) img {
    max-width: 110px;
    width: 100%;
    height: 69px;
}

.Investments-img ul li:nth-child(2) img {
    max-width: 110px;
    width: 100%;
    height: 69px;
}

.Investments-img ul li:nth-child(3) img {
    max-width: 245px;
    width: 100%;
    height: 69px;
}

.Investments-box h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 8px;
}

.Investments-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.Investments-btn a {
    display: block;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    padding: 16px 24px;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Investments-btn a:hover {
    background: #57501E;
    color: #ffff;
}

.Investments-btn a svg {
    margin-left: 12px;
}

.Investments-btn a svg path {
    fill: #57501E;
}

.Investments-btn a:hover svg path {
    fill: #ffff;
}

/* ========= Investments-area-end ======== */

/* ========= Get-area-start ======== */

.Get-area {
    background: #fff;
    padding: 53px 0 80px 0;
}

.Get-top h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.Get-top p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 53px;
}

.Get-main {
    margin-bottom: 27px;
}

.Get-main:last-child {
    margin-bottom: 0px;
}

.Get-left {
    height: 352px;
}

.Get-left img {
    width: 100%;
    border-radius: 12px;
    height: 352px;
}

.Get-right {
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    padding: 32px;
    display: flex;
    width: 100%;
    height: 352px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
}

.Get-right2 {
    background: var(--primary-700, #57501E);
}

.Get-right3 {
    background: var(--primary-900, #28260B);
}

.Get-right h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Get-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Get-btn a {
    display: inline-block;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    padding: 16px 24px;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Get-btn a:hover {
    background: #57501E;
    color: #ffff;
}

.Get-btn a:hover svg path {
    fill: #fff;
}

.Get-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Get-right2 h4,
.Get-right3 h4,
.Get-right2 p,
.Get-right3 p {
    color: #ffff;
}

.Get-btn2 a,
.Get-btn3 a {
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
}

.Get-btn4 a:hover {
    background: #998D37;
}

/* ========= Get-area-end ======== */

/* ========= Upcoming-area-start ======== */

.Upcoming-top2 {
    margin: 50px 0;
}

.Upcoming-top-item2 h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Upcoming-top-item3 {
    text-align: right;
}

.Upcoming-top-item2 a {
    display: inline-block;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
    padding: 16px 24px;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Upcoming-top-item2 a svg {
    margin-left: 12px;
    font-size: 12px;
}

.Upcoming-top-item2 a svg path {
    fill: #ffff;
}

.Upcoming-top-item2 a:hover {
    background: #4A461D;
}

/* ========= Upcoming-area-end ======== */

/* ========= invite-area-end ======== */

.invite-img img {
    width: 100%;
    height: 261px;
    border-radius: 12px;
}

.invite-cnt {
    padding: 32px;
    background: #fff;
}

.invite-cnt small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    margin-bottom: 24px;
}

.invite-cnt h2 a {
    display: block;
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.invite-cnt span {
    display: block;
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #28260B;
    margin-bottom: 24px;
}

.invite-cnt-btn a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
}

.invite-cnt-btn a:hover,
.invite-cnt-btn a:hover svg path {
    color: #57501E;
    fill: #57501E;
}

.invite-cnt-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

/* ========= invite-area-end ======== */

/* =========================== 15page-end ========================== */

/* ========= amaranth-area-start ======== */

.exhibition-area {
    background: #ffff;
    padding: 69px 0 100px 0;
}

.exhibition-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 32px;
}

.exhibition-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 32px;
}

/* ========= amaranth-area-end ======== */

/* ========= Photo-area-start ======== */

.Photo-area {
    padding: 58px 0 300px 0;
    background: var(--primary-900, #28260B);
}

.Photo-top h3 {
    color: #FFF;
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 42px;
}

/* main-content9 */

.main-content9 {
    position: relative;
    margin-bottom: 105px;
}

.main-content9 .owl-theme .custom-nav {
    position: absolute;
    top: 113%;
    left: 0;
    right: 0;
}

.main-content9 .owl-theme .custom-nav .owl-prev, .main-content9 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content9 .owl-theme .custom-nav .owl-prev,
.main-content9 .owl-theme .custom-nav .owl-next {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 360px;
    background: var(--primary-700, #57501E);
    color: #ffff;
}

.main-content9 .owl-theme .custom-nav .owl-prev {
    left: 43.3%;
}

.main-content9 .owl-theme .custom-nav .owl-next {
    right: 43.3%;
}

.Photo-img img {
    width: 100%;
    border-radius: 24px;
}

.Other-area {
    padding: 53px 0 20px 0;
    background: #fff;
}

.Other-box {
    margin-top: -275px;
    position: relative;
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    padding: 50px 57px;
    margin-bottom: 55px;
}

.Other-box-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Other-box-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Other-box .Other-box-span {
    display: block;
    width: 100%;
    height: 1px;
    opacity: 0.4;
    background: #28260B;
    margin: 46px 0 35px 0;
}

.Other-box-btn h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Other-box-btn h4 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Other-box-btnr {
    text-align: right;
}

.Other-box-btn a {
    display: inline-block;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
    padding: 16px 24px;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Other-box-btn a:hover {
    background: #4A461D;
}

.Other-box-btn a span img {
    margin-left: 12px;
}

/* ========= Photo-area-end ======== */

/* ========= Educational-area-start ======== */

.Educational-area {
    background: #ffff;
    padding: 115px 0 0 0;
}

.Educational-left h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Educational-left,
.Educational-right {
    margin-bottom: 80px;
}

.Educational-right p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Educational-right p:first-child {
    margin-bottom: 20px;
}

.Educational-main {
    border-top: 1px solid #A4A4A4;
    border-bottom: 1px solid #A4A4A4;
    padding: 52px 0 40px 0;
}

.Educational-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Educational-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* ========= Educational-area-end ======== */

/* ========= Department-area-start ======== */

.Department-left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--primary-900, #28260B);
    padding: 80px 97px 80px 390px;
    height: 578px;
}

.Department-left h3 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.Department-left p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Department-left .Department-leftb {
    margin-bottom: 20px;
}

.Department-right {
    background: url('../img/Department-img.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 578px;
    object-fit: cover;
    object-position: center;
}

/* ========= Department-area-end ======== */

/* ========= Cap-area-start ======== */

.Cap-pagination-left h3 {
    padding: 20px 0 35px 0;
}

.Cap-btn a {
    display: inline-block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
    padding: 16px 24px;
    margin-top: 35px;
}

.Cap-btn a:hover {
    background: var(--primary-700, #57501E);
}

.Cap-btn a i {
    margin-left: 12px;
}

/* ========= Cap-area-end ======== */

/* ========= carries-area-start ======== */

.carries-area {
    background: #ffff;
    padding: 114px 0 90px 0;
}

.carries-left h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.carries-left p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.carries-left2 {
    padding-left: 100px;
}

.carries-left-cnt {
    max-width: 465px;
    width: 100%;
}

.carries-leftb {
    margin-bottom: 20px;
}

.carries-right img {
    width: 100%;
    height: 465px;
    border-radius: 24px;
}

.carries-main {
    margin-bottom: 63px;
}

.carries-right2 p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.carries-right2 ul {
    margin-bottom: 24px;
}

.carries-right2 ul li {
    position: relative;
    margin-bottom: 24px;
    padding-left: 45px;
}

.carries-right2 ul li:last-child {
    margin-bottom: 0px;
}

.carries-right2 ul li::before {
    display: block;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #8D7E23;
}

/* ========= carries-area-end ======== */

/* ========= gallery-slide-area-start ======== */

/* main-content10 */
.main-content10 {
    position: relative;
    margin-bottom: 105px;
}

.main-content10 .owl-theme .custom-nav {
    position: absolute;
    top: 113%;
    left: 0;
    right: 0;
}

.main-content10 .owl-theme .custom-nav .owl-prev, .main-content10 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content10 .owl-theme .custom-nav .owl-prev,
.main-content10 .owl-theme .custom-nav .owl-next {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 360px;
    background: var(--primary-700, #57501E);
    color: #ffff;
}

.main-content10 .owl-theme .custom-nav .owl-prev {
    left: 43.3%;
}

.main-content10 .owl-theme .custom-nav .owl-next {
    right: 43.3%;
}

/* ========= gallery-slide-area-end ======== */

/* ========= Duration-area-start ======== */

.Duration-area {
    background: #fff;
    padding: 56px 0 83px 0;
}

.Duration-wrap {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 24px;
    grid-row-gap: 10px;
    padding-bottom: 40px;
    border-bottom: 1px solid #A4A4A4;
}

.Duration-item h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.Duration-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* ========= Duration-area-end ======== */

/* ========= headline-area-start ======== */

.headline-area {
    background: #fff;
    padding: 100px 0 96px 0;
}

.headline-item h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.headline-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.headline-item p:last-child {
    margin-bottom: 0;
}

.laoreet-area {
    background: #ffff;
    padding-bottom: 80px;
}

/* main-content11 */

.main-content11 {
    position: relative;
    margin-bottom: 105px;
}

.main-content11 .owl-theme .custom-nav {
    position: absolute;
    top: 113%;
    left: 0;
    right: 0;
}

.main-content11 .owl-theme .custom-nav .owl-prev, .main-content11 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content11 .owl-theme .custom-nav .owl-prev,
.main-content11 .owl-theme .custom-nav .owl-next {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 360px;
    background: var(--primary-700, #57501E);
    color: #ffff;
}

.main-content11 .owl-theme .custom-nav .owl-prev {
    left: 43.3%;
}

.main-content11 .owl-theme .custom-nav .owl-next {
    right: 43.3%;
}

.laoreet-item {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
}

.laoreet-item span {
    display: block;
    color: var(--primary-500, #8D7E23);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.laoreet-item h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.laoreet-item p {
    color: var(--primary-900, #28260B);
     font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* ========= headline-area-end ======== */

/* ========= relating-area-start ======== */

.relating-left {
    height: 794px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;    
    background: var(--black-50, #F7F7F7);
    padding: 0 121px 0 390px;
}

.relating-left h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.relating-left p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.relating-left p:last-child {
    margin-bottom: 0;
}

.relating-right {
    height: 794px;
}

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

/* ========= relating-area-end ======== */

/* ========= Children-area-start ======== */

.Children-area {
    background: #ffff;
    padding-bottom: 106px;
}

.Children-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 25px;
}

.Children-img {
    margin-bottom: 24px;
}

.Children-box h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 12px;
}

.Children-box p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Children-box1,
.Children-box2,
.Children-box3 {
    margin-top: -135px;
    position: relative;
}

.learn-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    padding: 35px 57px;
    margin-top: 45px;
}

.learn-box-left h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 25.63px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.learn-box-left small {
    font-weight: 400;
}

.learn-box-right a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
    padding: 16px 24px;
}

.learn-box-right a:hover {
    background: #4A461D;
}

.learn-box-right a img {
    margin-left: 12px;
}

/* ========= Children-area-end ======== */

/* ========= lessons-area-start ======== */

.lessons-left,
.lessons-right {
    height: 578px;
}

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

.lessons-right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--primary-900, #28260B);
    padding-left: 97px;
}

.lessons-right-cnt {
    max-width: 500px;
    width: 100%;
}

.lessons-right-cnt h3 {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.lessons-right-cnt p {
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.lessons-right p:last-child {
    margin-bottom: 0;
}

/* ========= lessons-area-end ======== */

/* ========= Adrianna-area-start ======== */



.Adrianna-area {
    background: #fff;
    padding-bottom: 64px;
}

.Adrianna-box {
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 30px;
    margin-bottom: 24px;
}

.Adrianna-img {
    margin-bottom: 24px;
}

.Adrianna-img img {
    max-width: 120px;
    width: 100%;
    height: 129px;
    object-fit: cover;
    border-radius: 12px;
}

.Adrianna-box h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 4px;
}

.Adrianna-box h4 {
    color: var(--primary-500, #8D7E23);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Adrianna-box span {
    display: block;
    width: 100%;
    height: 1px;
    background: #C8C8C8;
    margin: 24px 0;
}

.Adrianna-box ul li {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Adrianna-box ul li a {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.Adrianna-box ul li a:hover {
    color: #57501E;
    text-decoration: none;
}

/* ========= Adrianna-area-end ======== */

/* ========= Discover-area-start ======== */

.Discover-area {
    background: #fff;
    padding: 53px 0 273px 0;
}

.Discover-top {
    margin-bottom: 53px;
}

.Discover-top h2 {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.Discover-top p {
    color: var(--primary-900, #28260B);
    text-align: center;
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.Discover-box {
    margin-bottom: 16px;
}

.Discover-img img {
    width: 100%;
    height: 283px;
    margin-bottom: 10px;
}

.Discover-cnt {
    border-radius: 12px;
    background: var(--primary-50, #FBF6EA);
    padding: 32px;
    min-height: 351px;
}

.Discover-cnt h3 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.Discover-cnt p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.Discover-cnt-btn a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.Discover-cnt-btn a:hover {
    color: #57501E;
}

.Discover-cnt-btn a:hover svg path {
    fill: #57501E;
}

.Discover-cnt-btn a svg {
    margin-left: 12px;
    font-size: 12px;
}

/* ========= Discover-area-end ======== */

/* ========= grandchildren-area-start ======== */

.Scientific-area {
    background: #fff;
    padding: 114px 0 213px 0;
}

.grandchildren-area {
    width: 100%;
    height: 530px;
    background: url('../img/grandchildren-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
}

/* ========= grandchildren-area-end ======== */

/* ========= grandchildren-area-start ======== */

.publications-area {
    background: #ffff;
    padding: 67px 0;
}

.publications-top h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 32.44px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.publications-box {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-column-gap: 48px;
    grid-row-gap: 10px;
    border-radius: 12px;
    border: 1px solid var(--black-200, #C8C8C8);
    background: #FFF;
    padding: 32px;
    margin-bottom: 29px;
}

.publications-box-item img {
    width: 192px;
    height: 272px;
    object-fit: cover;
}

.publications-box-item small {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}

.publications-box-item small svg {
    width: 16px;
    height: 16px;
    margin-right: 12px;
}

.publications-box-item h2 a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 22.78px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.publications-box-item p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
}

.publications-box-item-btn a {
    display: block;
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.publications-box-item-btn a span svg {
    margin-left: 12px;
    font-size: 12px;
}

.publications-box-item-btn a:hover span svg path {
    fill: #57501E;
}

.publications-box-item-btn a:hover {
    color: #57501E;
}

.publications-bottom-btn {
    text-align: center;
}

.publications-bottom-btn a {
    display: inline-block;
    text-align: center;
    color: #28260B;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    border: 1px solid var(--primary-700, #57501E);
    padding: 16px 24px;
}

.publications-bottom-btn a:hover,
.publications-bottom-btn a:hover svg path {
    background: #4A461D;
    color: #fff;
    fill: #fff;
}

.publications-bottom-btn a svg {
    margin-left: 12px;
}

/* ========= grandchildren-area-end ======== */

/* ========= grandchildren-area-start ======== */

.library-left {
    background: var(--black-50, #F7F7F7);
    padding-left: 390px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.library-left,
.library-right {
    height: 658px;
}

.library-left-cnt h2 {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 24px;
}

.library-left-cnt p {
    color: var(--primary-900, #28260B);
    font-family: "Myriad Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 20px;
}

.library-left-cnt {
    max-width: 465px;
    width: 100%;
}

.library-left-cnt a {
    display: inline-block;
    color: #FFF;
    font-family: "Myriad Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 12px;
    background: var(--primary-700, #57501E);
    padding: 16px 24px;
}

.library-left-cnt a:hover {
    background: #4A461D;
}

.library-left-cnt a svg {
    margin-left: 12px;
    font-size: 12px;
}

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

.library-left2 {
    padding-left: 97px;
}

/* ========= grandchildren-area-end ======== */

/* .modal-video-close-btn {
    position: absolute;
    z-index: 2;
    top: -58px;
    right: 20px;
  } */








/* =========================== 1page-end ========================== */