@charset "UTF-8";

:root {
    --active: #2A74ED;
    --alter: #6d6d6d;
    --alter2: #81d742;
    --alter3: #81d742;
    --grey: #999;
    --red: #d33;
    --dark: #222;
    --dark2: #d93;
    --white: #fff;
    --black: #000;
    --primary-font: 'Roboto Mono';
    --secondary-font: 'Crimson Text';
}

body,html,p {
    font-family: var(--primary-font);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.86;
    letter-spacing: 0.28px;
    color: var(--black);
    font-style: normal;
}

a {
    font-family: var(--primary-font);
    font-weight: 300;
    font-size: 17px;
    color: var(--black);
    font-style: normal;
}

a:hover {
    color: var(--active);
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--secondary-font);
    font-weight: 700;
    letter-spacing: 0.64px;
    color: var(--black);
    font-style: normal;
}

h1 {
    font-size: 60px;
    line-height: 1.17;
}

h2 {
    font-size: 50px;
    line-height: 1.2;
}

h3 {
    font-size: 40px;
    line-height: 1.25;
}

h4 {
    font-size: 32px;
    line-height: 1.3;
}

h5 {
    font-size: 25px;
    line-height: 1.24;
}

h6 {
    font-size: 18px;
    line-height: 1.33;
}

blockquote {
    font-weight: 400;
    font-style: normal;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}
img, svg{
    width: 100%;
}

textarea{
    padding: 18px;
    width: 100%;
    height: 236px;
    background: 0 0;
    font: inherit;
    font-size: 1.2em;
    color: var(--c-dark);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #000000b3;
    resize: none;
    border-radius: 0;
}
select, input{
    padding: 12px 20px 12px 17px;
    width: 100%;
    font: inherit;
    font-size: 1.2em;
    color: var(--c-dark);
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #000000b3;
    background: 0 0;
    border-radius: 0;
    -webkit-appearance: none;
    border-radius: 0;
}

.white-link{
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.white-link:hover{
    color: var(--white);
    opacity: .7;
}

.theme-btn{
    position: relative;
    outline: 0;
    padding: 20px 52px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--secondary-font);
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    border-color: currentColor;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    letter-spacing: .32px;
}
.theme-btn::before{
    content: '';
    position: absolute;
    display: inline;
    top: 0;
    left: 0;
    border-width: 1px;
    height: 100%;
    width: 85%;
    transition: .3s all ease-in-out;
    border-style: hidden hidden solid solid;
}
.theme-btn::after{
    content: '';
    position: absolute;
    display: inline;
    top: 0;
    right: 0;
    border-width: 1px;
    height: 100%;
    width: 85%;
    transition: .3s all ease-in-out;
    border-style: solid solid hidden hidden;
}
.theme-btn.theme-btn-light{
    color: var(--white);
}
.theme-btn.theme-btn-light::before{
    border-color: var(--white);
}
.theme-btn.theme-btn-light::after{
    border-color: var(--white);
}

.theme-btn.theme-btn-dark{
    color: var(--dark);
}
.theme-btn.theme-btn-dark::before{
    border-color: var(--dark);
}
.theme-btn.theme-btn-dark::after{
    border-color: var(--dark);
}

.theme-btn:hover::before{
    width: 100%;
}
.theme-btn:hover::after{
    width: 100%;
}

.contact-btn{
    background: rgba(0, 0, 0, 1);
    color: #ffffff;
    border: #ffffff;
    font-family: var(--secondary-font);
    line-height: 1;
    letter-spacing: 0.32px;
    font-size: 16px;
    padding: 20px 52px;
    width: 100%;
    outline: 0 !important;
    display: block;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
}
.contact-btn:hover{
    background: rgba(0, 0, 0, 0.7);
}

.container{
    max-width: 1200px !important;
}
.heading-title{
    text-align: center;
    line-height: 1.25em;
    letter-spacing: 1px;
}
.heading-subtitle{
    font-weight: 400;
    letter-spacing: 0.32px;
}
.heading-text{
    font-weight: 300;
    line-height: 1.71em;
    letter-spacing: 0.28px;
}

.topbar {
    background: var(--black);
}
.topbar-box {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
.topbar-left, .topbar-right {
    display: flex;
}
.topbar-item{
    padding: 15px 0;
}
.topbar-left .topbar-item{
    color: var(--white);
    font-weight: 500;
}
.topbar-right .topbar-item{
    margin-left: 35px;
}
.header-wrapper{
    padding: 0 16px;
}
.header-box-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-togle-box{
    display: none;
}
.mobile-menu span{
    background: var(--dark);
    width: 35px;
    height: 2px;
    margin: 6px 0;
    display: block;
    border-radius: 30px;
}
.mobile-menu span:nth-child(2) {
    width: 25px;
}
.menubar-list{
    display: flex;
    justify-content: center;
}
.menubar-list .menubar-item{
    position: relative;
    padding: 21px 5px;
    margin: 0 12px;
}
.menubar-list .menubar-item:before{
    content: '';
    background-color: var(--dark);
    display: inline-block;
    position: static;
    width: 4px;
    height: 4px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    top: 0;
    margin-right: 10px;
    margin-bottom: 3px;
    opacity: 0;
    border-radius: 50%;
}
.menubar-list .menubar-item.active:before{
    opacity: 1;

}
.menubar-list .menubar-item:hover .menubar-link{
    color: var(--dark);
}
.menubar-list .menubar-item:hover:before{
    opacity: 1;
}
.menubar-link{
    font-size: 16px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 0.32px;
    text-decoration: none;
}

.mobile-menu-canvas{
    width: 300px !important;
}
.mobile-menu-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #d1d1d1;
}
.mobile-menu-top p, .mobile-menu-top span{
    font-size: 18px;
}
.mobile-menu-list{
    padding-bottom: 16px;
}
.mobile-menu-list li{
    padding: 15px;
    border-bottom: 1px solid #d1d1d1;
}
.mobile-menu-list li a{
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.mobile-menu-canvas .social-icon-list{
    padding: 0 15px;
}

.social-icon-list{
    display: flex;
    justify-content: end;
}
.social-icon-list .social-icon-item{
    margin-right: 19px;
}

.banner-slider-wrap.full-min-height-js{
    min-height: 100vh;
    height: calc(100vh - 216px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.banner-slider-wrap:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: color(srgb 0 0 0 / 0.40);
    z-index: 0;
}

.banner-slider-content{
    max-width: 1085px;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.banner-slider-sub-title{
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.32px;
}
.banner-title{
    margin-top: 40px;
    color: var(--white);
    margin-bottom: 31px;
}

.banner-slider-links{
    margin-top: 26px;
}
.custom-swiper-button-prev,
.custom-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
}

.custom-swiper-button-prev {
    left: 10px;
}

.custom-swiper-button-next {
    right: 10px;
}

.margin-spacing{
    margin-top: 115px;
    margin-bottom: 0px;
}

.bg-box{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0px 15px 0px 0px;
    padding: 75px 0px 80px 0px;    
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-box-1{
    background-image: url('http://mooseoom.foxthemes.me/wp-content/uploads/2019/10/block2-1.jpg');
}
.bg-box-2{
    background-image: url('https://mooseoom.foxthemes.me/wp-content/uploads/2019/10/block2-2.jpg');
}
.bg-box .heading-title{
    color: var(--white);
}

.exhibitions-swiper{
    margin-top: 40px;
    padding: 0 30px;
}
.exhibitions-box img{
    width: 100%;
    margin-bottom: 20px;
}
.exhibitions-content a{
    text-decoration: none;
}
.exhibitions-swiper .custom-swiper-button-prev, .exhibitions-swiper .custom-swiper-button-next{
    font-size: 30px;
    color: #000000;
}

.team-content{
    text-align: center;
    margin-top: 25px;
}
.event-section{
    background-image: url(http://mooseoom.foxthemes.me/wp-content/uploads/2019/10/schedule-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 120px;
    margin-bottom: 0px;
    padding: 125px 15px 113px 15px;
}
.event-list {
    display: flex;
    flex-direction: column;
}
.event-item-box {
    display: flex;
    margin-top: 20px;
}
.event-time-box {
    margin-right: 20px;
    min-width: 120px;
}
.event-time{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.4px;
}
.event-link{
    font-size: 14px;
}
.cta-section{
    margin-top: 130px;
    margin-bottom: 0px; 
    padding: 0px 90px 0px 90px;
}
.cta-box{
    background-image: url(http://mooseoom.foxthemes.me/wp-content/uploads/2019/10/block6_bg.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 160px 120px 160px;
}
.cta-content{
    display: flex;
    justify-content: space-between;
}
.cta-content h3{
    color: var(--white);
}
.testimonial-section{
    margin-left: 370px;
}
.comment-box{
    border: 1px solid var(--dark);
    padding: 50px 40px 48px 75px;
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
}
.review-detail {
    display: flex;
    align-items: center;
    gap: 30px;
}
.reviewer-img img {
    border-radius: 50%;
}
.grid-box{
    position: relative;
    height: 450px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.grid-box img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.grid-content{
    position: absolute;
}
.grid-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
.grid-content a{
    text-decoration: none;
    color: #fff;
}
.grid-content h4{
    color: #fff;
}
.grid-box:hover .grid-content{
    opacity: 1;
    visibility: visible;
}
.height-box{
    height: 216px !important;
    overflow: hidden;
}
.height-box.margin{
    margin-bottom: 20px;
}
.contact-section{
    margin-bottom: 120px;
}
.address-box a{
    font-size: 16px;
    text-decoration: none;
}
.footer-area{
    position: relative;
    padding: 130px 15px 0px 15px;
    background: var(--black);
}
.widget-list-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-widget img{
    width: 100px;
}
.footer-widget p, .footer-widget a{
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0;
}
.footer-title{
    color: var(--white);
    margin-bottom: 30px;
}
.social-title{
    color: var(--white);
}
.bottom-footer{
    background-color: var(--black);
    padding: 75px 0px 50px 0px;
}
.bottom-footer-list{
    display: flex;
    justify-content: center;
}
.bottom-footer-list .bottom-footer-link{
    padding: 0 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
}
.page-banner{
    position: relative;
    padding: 279px 0px 278px 0px;
}
.page-banner:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--black);
    opacity: 0.5;
    z-index: 0;
}

/* About us page */

.about-page-section{
    margin-bottom: 120px;
}

/* Event Page */ 
.event-page-section{
    margin: 120px 0;
}
.event-page-box{
    margin-bottom: 30px;
}
.event-details{
    margin-top: 16px;
}

/* Gallery Page */
.gallery-page-section{
    margin-bottom: 120px;
}
.gallery-category-box{
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
}
.category-name{
    margin-top: 15px;
    text-align: center;
    padding: 10px;
    border: 1px solid #dedede;
    transition: all 0.3s ease-in-out;
}
.category-name h5{
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}
.gallery-category-box:hover .category-name{
    background: var(--black);
    color: var(--white);
}
.gallery-category-box:hover .category-name h5{
    color: var(--white);
}
.gallery-grid-section{
    margin: 120px 0;
}
.gallery-image{
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.gallery-image img{
    transition: all 0.3s ease-in-out;
}
.gallery-image:hover img{
    transform: scale(1.2);
}


/* contact us page */
.address-section{
    position: relative;
    margin-top: -125px;
    z-index: 1;
}
.address-flex-box {
    display: flex;
    align-items: center;
}
.address-box {
    min-width: 405px;
    min-height: 508px;
    background-color: var(--white);
    padding: 72px 50px 58px 50px;
    text-align: center;
    border: solid 1px var(--dark);
}
.address-box:nth-child(2){
    min-height: 547px;
}
.address-box.active{
    padding: 93px 50px 58px 50px;
    position: relative;
    z-index: 10;
    background: var(--black);
    border: none;
}
.icon-box i{
    font-size: 60px;
}
.address-lining{
    width: 40px;
    height: 1px;
    background-color: var(--dark);
    margin: 40px auto;
}
.title-box{
    margin-bottom: 16px;
}
.address-list{
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}
.address-box p{
    margin-bottom: 0;
}
.address-box-link{
    margin-top: 60px;
}
.address-box.active i{
    color: var(--white);
}
.address-box.active .address-lining{
    background-color: var(--white);   
}
.address-box.active .title-box h5{
    color: var(--white);
}
.address-box.active p, .address-box.active a{
    color: var(--white);
}
.contact-page-section{
    margin-bottom: 120px;
}
.contact-info-box{
    margin-top: 60px;
}
.contact-info-box h5{
    margin-bottom: 55px;
}
.contact-info-list li{
    display: flex;
    margin-bottom: 20px;
}
.contact-info-list li .icon-box{
    margin-right: 15px;
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 50%;
}
.contact-info-list li .icon-box i{
    color: #fff;
    font-size: 16px;    
}
.contact-info-list li .content p{
    margin-bottom: 0;
}
.contact-info-list li p, .contact-info-list li a{
    font-size: 16px;
    text-decoration: none;
}
.contact-swiper-button{
    position: absolute;
    right: 0;
    top: 55px;
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 5;
}
.contact-social-list{
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}
.contact-social-list .contact-social-item{
    display: flex;
    gap: 18px;
    font-size: 18px;
    align-items: center;
    text-decoration: none;
}
.contact-social-item p{
    margin-bottom: 0;
    font-size: 18px;
}
.contact-form-box{
    margin-left: 40px;
}
.contact-form-box h4{
    margin-bottom: 20px;
}
.contact-form-box .form-group{
    margin-bottom: 16px;
}
