body {
    font-size: 14px;
    font-family: 'EB Garamond', serif;
    line-height: 2;
    letter-spacing: 1px;
}

a:hover {
    text-decoration: none;
}

.f3 {
    font-family: 'Staatliches', cursive;
}

.f1 {
    font-family: 'EB Garamond', serif;
}

.f2 {
    font-family: 'Fugaz One', cursive;
}

.bg-evented {
    background: url("../images/p1.jpg");
}

.text-red {
    color: #923344;
    font-weight: bold;
}

.text-rose,
.bg-footer i {
    color: #e82f33;
}

.slide img {
    height: 640px;
}

.carousel-inner .slideimg {
    transform: scale(1.14, 1.14);
    transition: opacity 0, transform 0;
}

.carousel-inner .active .slideimg {
    transform: scale(1, 1);
    transition: opacity 1.6s ease-out, transform 7.2s linear;
}

.toplayer {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 100;
}

.menubar li {
    padding: 10px 15px;
}

.menubar li a {
    font-size: 20px;
    font-weight: bold;
}

.paracont {
    font-size: 20px;
}

/* Menu Styles */
.primary-nav {
    position: fixed;
    z-index: 999;
}

.menu {
    position: relative;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.open-panel {
    border: none;
    background-color: #fff;
    padding: 0;
}

.hamburger {
    background: #fff;
    position: relative;
    display: block;
    text-align: center;
    padding: 13px 0;
    width: 50px;
    height: 73px;
    left: 0;
    top: 0;
    z-index: 1000;
    cursor: pointer;
}

.hamburger:before {
    content: "\2630"; /* hamburger icon */
    display: block;
    color: #000;
    line-height: 32px;
    font-size: 16px;
}

.openNav .hamburger:before {
    content: "\2715"; /* close icon */
    display: block;
    color: #000;
    line-height: 32px;
    font-size: 16px;
}

.hamburger:hover:before {
    color: #777;
}

.primary-nav .menu li {
    position: relative;
}

.menu .icon {
    position: absolute;
    top: 12px;
    right: 10px;
    pointer-events: none;
    width: 24px;
    height: 24px;
    color: #fff;
}

.menu,
.menu a,
.menu a:visited {
    color: #aaa;
    text-decoration: none !important;
    position: relative;
}

.menu a {
    display: block;
    white-space: nowrap;
    padding: 1em;
    font-size: 14px;
}

.menu a:hover {
    color: #fff;
}

.menu {
    margin-bottom: 3em;
}

.menu-dropdown li .icon {
    color: #777;
}

.menu-dropdown li:hover .icon {
    color: #fff;
}

.menu label {
    margin-bottom: 0;
    display: block;
}

.menu label:hover {
    cursor: pointer;
}

.menu input[type="checkbox"] {
    display: none;
}

input#menu[type="checkbox"] {
    display: none;
}

.sub-menu-dropdown {
    display: none;
}

.new-wrapper {
    position: absolute;
    left: 50px;
    width: calc(100% - 50px);
    transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
}

#menu:checked + ul.menu-dropdown {
    left: 0;
    -webkit-animation: all .45s cubic-bezier(0.77, 0, 0.175, 1);
    animation: all .45s cubic-bezier(0.77, 0, 0.175, 1);
}

.sub-menu-checkbox:checked + ul.sub-menu-dropdown {
    display: block !important;
    -webkit-animation: grow .45s cubic-bezier(0.77, 0, 0.175, 1);
    animation: grow .45s cubic-bezier(0.77, 0, 0.175, 1);
}

.openNav .new-wrapper {
    position: absolute;
    transform: translate3d(200px, 0, 0);
    width: calc(100% - 250px);
    transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
}

.downarrow {
    background: transparent;
    position: absolute;
    right: 50px;
    top: 12px;
    color: #777;
    width: 24px;
    height: 24px;
    text-align: center;
    display: block;
}

.downarrow:hover {
    color: #fff;
}

.menu {
    position: absolute;
    display: block;
    left: -200px;
    top: 0;
    width: 250px;
    transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    background-color: #000;
    z-index: 999;
}

.menu-dropdown {
    top: 0;
    overflow-y: auto;
}

.overflow-container {
    position: relative;
    height: calc(100vh - 73px) !important;
    overflow-y: auto;
    border-top: 73px solid #fff;
    z-index: -1;
    display: block;
}

.menu a.logotype {
    position: absolute !important;
    top: 11px;
    left: 55px;
    display: block;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    color: #000;
    font-size: 21px;
    padding: 10px;
}

.menu a.logotype span {
    font-weight: 400;
}

.menu a.logotype:hover {
    color: #777;
}

.sub-menu-dropdown {
    background-color: #333;
}

.menu:hover {
    position: absolute;
    left: 0;
    top: 0;
}

.openNav .menu:hover {
    position: absolute;
    left: -200px;
    top 73px;
}

.openNav .menu {
    top 73px;
    transform: translate3d(200px, 0, 0);
    transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
}

/* label.hamburger {
    display: none;
} */

/* look and feel only, not needed for core menu*/
@-webkit-keyframes grow {
    0% {
        display: none;
        opacity: 0;
    }

    50% {
        display: block;
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }

}

@keyframes grow {
    0% {
        display: none;
        opacity: 0;
    }

    50% {
        display: block;
        opacity: 0.5;
    }

    100% {
        opacity: 1
    }

}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;  /* Above WP toolbar. */
}

.pulse {
    animation: pulse 2s infinite;
}

.wedding {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

/*abtpage*/
.abt1 {
    background: rgba(0, 0, 0, 0.7);
    padding: 80px 0 50px;
    position: relative;
}

.abt {
    background: #923344;
    padding: 80px 0 78px;
}

.abted {
    padding: 80px 0 78px;
}

.abtcont {
    line-height: 2;
    font-size: 20px;
}

.fullscreen-bg::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/*footer*/
.bg-footer {
    background: #333;
}

.footer-copyright {
    position: relative;
    float: left;
    width: 100%;
    color: #fff;
    font-size: 14px;
    padding: 30px 10px 15px;
    text-align: center;
    font-weight: normal;
    background: #923243;
}

.footer-copyright p {
    margin: 0;
    font-size: 18px;
}

.back-to-top {
    background-color: #923243;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transform: rotate(45deg);
    position: absolute;
    top: -20px;
    left: 28px;
    right: 0px;
    margin: auto;
    z-index: 9999;
}

.back-to-top i {
    transform: rotate(-45deg);
}

.line,
.line1 {
    position: relative;
}

.line::after {
    content: '';
    position: absolute;
    top: 22px;
    height: 66%;
    width: 15%;
    left: 43%;
    border-bottom: 3px solid #b41015;
}

.line1::after {
    content: '';
    position: absolute;
    top: 22px;
    height: 66%;
    width: 15%;
    left: 0;
    border-bottom: 3px solid #fff;
}

/*contactpage*/
.contact {
    font-size: 22px;
}

/*Courses*/
.courses img {
    height: 350px;
}

.courseshover .hover {
    background: #000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 4));
    text-align: center;
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 89%;
    padding: 70px 0 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}

.courseshover:hover .hover {
    visibility: visible;
    opacity: 1;
}

.arrowsleft {
    margin-top: -18%;
    left: 12%;
    font-size: 43px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
}

.arrowsright {
    margin-top: -18%;
    right: 12%;
    font-size: 43px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
}

.mp-responsive {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hoveredevent {
    visibility: hidden;
}

.hoveredevent h3 {
    position: absolute;
    content: '';
    top: -120px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.slick-current > .hoveredevent {
    visibility: visible;
}

/*events*/
.events img {
    height: 350px;
}

.eventhover .hover {
    background: #000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 4));
    text-align: center;
    position: absolute;
    left: 17px;
    bottom: 0;
    width: 89%;
    padding: 70px 0 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s linear;
}

.eventhover:hover .hover {
    visibility: visible;
    opacity: 1;
}

.event1 {
    background: url(../images/event/wd.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event2 {
    background: url(../images/event/cm.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event3 {
    background: url(../images/event/tour.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event4 {
    background: url(../images/event/fs.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event5 {
    background: url(../images/event/culture.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event6 {
    background: url(../images/event/theme.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event7 {
    background: url(../images/event/party.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event8 {
    background: url(../images/event/concert.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event9 {
    background: url(../images/event/ngo.jpg)no-repeat;
    background-size: cover;
    height: 581px;
    position: relative;
}

.event10 {
    background: url(../images/event/fund.jpg)no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
}

.event11 {
    background: url(../images/event/pe.jpg)no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
}

.event12 {
    background: url(../images/event/trade.jpg)no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
}

.event13 {
    background: url(../images/event/expo.jpg)no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
}

.event14 {
    background: url(../images/event/annualday.jpg)no-repeat;
    background-size: cover;
    height: 950px;
    position: relative;
}

.event1::before,
.event2::before,
.event3::before,
.event4::before,
.event5::before,
.event6::before,
.event7::before,
.event8::before,
.event9::before,
.event10::before,
.event11::before,
.event12::before,
.event13::before,
.event14::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
}

.arrowsleft {
    margin-top: -18%;
    left: 12%;
    font-size: 43px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
}

.arrowsright {
    margin-top: -18%;
    right: 12%;
    font-size: 43px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
}

.mp-responsive {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hoveredevent {
    visibility: hidden;
}

.hoveredevent h3 {
    position: absolute;
    content: '';
    top: -120px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.slick-current > .hoveredevent {
    visibility: visible;
}

/*effect zoom*/
.mp-carousel span {
    display: block;
    transform: translate(-45%, 0) scale(.8);
    transition: all .4s ease;
    opacity: .5;
}

.slick-slide.lt2 span {
    transform: translate(45%, 0) scale(.8);
}

.slick-slide.lt1 span {
    opacity: .7;
    transform: translate(45%, 0) scale(.8);
}

.slick-slide.gt1 span {
    opacity: .7;
    transform: translate(-45%, 0) scale(.8);
}

.slick-slide.gt2 span {
    transform: translate(-45%, 0) scale(0.8);
}

.slick-slide.slick-center span {
    z-index: 1;
    transform: scale(1);
    opacity: 1;
    color: #e67e22;
}

/*FIN effect zoom*/
.slick-slide {
    overflow: hidden;
}

.slick-slider button {
    display: none;
}

.slick-slider .slick-prev {
    content: '';
    top: 170px;
    left: 12%;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
    position: absolute;
    background: #923243;
    color: #fff;
    z-index: 999;
    outline: none;
}

.slick-slider .slick-next {
    content: '';
    top: 170px;
    right: 12%;
    font-size: 15px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    line-height: 52px;
    padding: 5px;
    position: absolute;
    background: #923243;
    color: #fff;
    outline: none;
    z-index: 999;
}

.slick-dots {
    display: none !important;
}

.slick-slide span {
    &:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    &.no-before::before {
        display: none;
    }

}

.slick-active iframe {
    width: 640px !important;
    height: 310px !important;
    margin-top: 10% !important;
}

.slick-active iframe {
    width: 640px !important;
    height: 410px !important;
    margin-top: 0 !important;
    z-index: 999;
}

.slick-active img {
    width: 640px !important;
    height: 310px !important;
    margin-top: 10% !important;
}

.slick-active img {
    width: 960px !important;
    height: 410px !important;
    margin-top: 0 !important;
    // z-index: 999;
    margin-left: -60%;
}

.map {
    width: 100%;
}

/*mediaquries*/
@media(min-width:300px) and (max-width:575px) {
    .slide img {
        height: 300px;
    }

    .list-inline-item:not(:last-child) {
        margin-right: unset;
    }

    .menubar li {
        padding: 10px 2px;
    }

    .menubar li a {
        font-size: 14px;
    }

    .line::after {
        top: 43px;
    }

    .map {
        width: 100%;
    }

    .back-to-top {
        left: 12px;
    }

    .footer-copyright p {
        font-size: 14px;
    }

    .bg-evented,
    .bg-footer {
        overflow: hidden;
    }

    .abt,
    .abt1 {
        padding-left: 50px;
    }

    .events img {
        height: 200px;
    }

    .courses img {
        height: 226px;
    }

}

@media(min-width:576px) and (max-width:767px) {
    .slide img {
        height: 400px;
    }

    .menubar li {
        padding: 10px;
    }

    .menubar li a {
        font-size: 16px;
    }

    .map {
        width: 100%;
    }

    .events img {
        height: 195px;
    }

    .courses img {
        height: 226px;
    }

}

@media(min-width:768px) and (max-width:991px) {
    .slide img {
        height: 500px;
    }

    .menubar li {
        padding: 10px;
    }

    .menubar li a {
        font-size: 16px;
    }

    .events img {
        height: 200px;
    }

    .courses img {
        height: 226px;
    }

}
