@charset "utf-8";
@font-face {
    font-family: 'MyriadPro-Regular';
    src: url(../fonts/MyriadPro-Regular.eot);
    src: url(../fonts/MyriadPro-Regular.eot?#iefix) format('embedded-opentype'), url(../fonts/MyriadPro-Regular.otf) format('otf'), url(../fonts/MyriadPro-Regular.svg#MyriadPro-Regular) format('svg'), url(../fonts/MyriadPro-Regular.ttf) format('truetype'), url(../fonts/MyriadPro-Regular.woff) format('woff'), url(../fonts/MyriadPro-Regular.woff2) format('woff2');
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    color: #000000;
    font-size: 16px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    color: #dba900;
}

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

img:focus,
input:focus,
textarea:focus,
button:focus,
select:focus,
.slick-slide:focus {
    outline: none;
}

.form-control:focus {
    box-shadow: none;
}

p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 1.75rem;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: #000;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
}

h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

h4 {}

h5 {}

h6 {}
.color-white{color: #fff;}

.page-wrapper,
.navigation-open,
.page-loader {
    overflow: hidden;
}
.print-view {
    display: none;
}
.page-rightside-width {
    width: calc(100% - 75px);
}

.animation-element {
    opacity: 0;
    transform: translate3d(-150px, 0, 0);
    transition: transform 1.2s cubic-bezier(.14, 1, .34, 1), opacity .4s cubic-bezier(.215, .61, .355, 1);
}

.animation-element.do-animation {
    opacity: 1;
    transform: translateZ(0);
}

.fade-element {
    opacity: 0;
    transition-property: opacity;
    transition-duration: .4s;
    transition-timing-function: ease-in;
    transition-delay: 0.1s;
}

.fade-element.do-fade {
    opacity: 1;
}

.defult-btn {
    background: transparent;
    border: 1px solid rgba(44, 144, 61, 0.5);
    letter-spacing: 1px;
    border-left: none;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    text-transform: uppercase;
    color: #2c903d;
    display: inline-block;
    padding: 32px 47px;
    min-width: 350px;
    position: relative;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    -o-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    transition: color .8s cubic-bezier(.165, .84, .44, 1);
    cursor: pointer;
}

.defult-btn span {
    position: relative;
    z-index: 1;
}

.defult-btn:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    -o-transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s, -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s, -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    -moz-transform-origin: top right;
    transform-origin: top right;
}

.defult-btn:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
}

.defult-btn:before {
    background-color: #2c903d;
}

.defult-btn:hover {
    border-color: #2c903d;
    color: #fff;
    background-color: unset;
}

.defult-btn:after {
    content: "";
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -18px;
    right: 47px;
    transition: all 0.2s ease;
}

.defult-btn:hover:after {
    background-color: #fff;
    background-image: url(../images/button-arrow-green.png);
}

.defult-btn.white-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.defult-btn.white-btn:hover {
    color: #fff;
}

.defult-btn.white-btn:before {
    background-color: #511c6c;
}

.defult-btn.white-btn:after {
    content: "";
    background-image: url(../images/button-arrow-white.png);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.defult-btn.purpel-btn {
    border-color: rgba(102, 47, 142, 0.4);
    color: #662f8e;
}

.defult-btn.purpel-btn:hover {
    color: #fff;
}

.defult-btn.purpel-btn:before {
    background-color: #662f8e;
}

.defult-btn.purpel-btn:after {
    content: "";
    background-image: url(../images/button-arrow-purpel.png);
    background-color: transparent;
    border: 1px solid rgba(102, 47, 142, 0.5);
}

.defult-btn.purpel-btn:hover:after {
    background-color: #fff;
    border-color: #fff;
    background-image: url(../images/button-arrow-purpel.png);
}


/* Page Loader CSS */

.pageloader-div {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.pageloader-bgcolordiv {
    background: #662d91;
    position: fixed;
    left: 0;
    top: 0;
    transform: scaleX(1);
    transform-origin: 100% 0;
    transition: .8s cubic-bezier(.14, 1, .34, 1) .2s;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pageloader-bgcolordiv:before {
    background: url(../images/navigation-bg-logo.svg) no-repeat;
    position: absolute;
    bottom: 10px;
    left: -25px;
    content: "";
    width: 407px;
    height: 448px;
    animation-name: spin;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pageloader-bgcolordiv:after {
    position: absolute;
    background: #2c903d;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: .8s cubic-bezier(.14, 1, .34, 1) 0s;
    width: 100%;
}

.pageloader-innerdiv {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.pageloader-logodiv {
    transition: .8s cubic-bezier(.14, 1, .34, 1) 0s, opacity .3s cubic-bezier(.215, .61, .355, 1) 0s;
}

.pageloader-logodiv img {
    height: 200px;
    display: none;
}

.pageloader-div.none {
    pointer-events: none;
}

.none .pageloader-bgcolordiv {
    transform: scaleX(0);
}

.none .pageloader-bgcolordiv:after {
    transform: scaleX(1);
}

.none .pageloader-logodiv {
    opacity: 0;
    transform: translateX(60px);
}

@keyframes spin {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


/* Page Loader CSS End */

.page-loader .page-wrapper {
    opacity: 0;
    transition: all 0.2s ease;
}

.page-wrapper {
    transition: all 0.2s ease;
}


/* Header CSS */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 100px);
    right: 0;
    z-index: 1;
    margin: 0px;
    padding-top: 30px;
    padding-left: 80px;
}

.site-header .logo-div {
    width: 110px;
    margin: 0px auto;
}

.site-header .logo-div a {
    display: block;
}

.alert-notification-div {
    position: relative;
    cursor: pointer;
    min-height: 83px;
    transition: all 0.4s;
    width: 100%;
    padding: 15px 65px;
    background-color: #ff0000;
    display: flex;
    align-items: center;
}

.alert-notification-div.active {
    margin-top: -83px;
}

.notification-alert {
    font-size: 35px;
    margin-right: 80px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
}

.notification-p {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 30px;
    max-width: 645px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
}

.notification-infoicon {
    position: absolute;
    top: 50%;
    right: 65px;
    margin-top: -18px;
    padding-right: 30px;
}

.notification-infoicon:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    background: url(../images/notification-arrow.svg) no-repeat;
    height: 19px;
    width: 10px;
    background-size: cover;
}

.notification-bell {
    margin-right: 45px;
}
.header-social li {
    margin-right: 25px;
}
.header-social li a:hover path{
    fill: #2c903d;
}
header .header-social .quick-link{
    color: #fff;
    font-size: 15px;
}
header .header-social .quick-link:hover{
    color: #fff;
}


/* Mennu CSS */

.navigation-close {
    font-weight: 700;
    cursor: pointer;
    color: #662d91;
    border: 1px solid rgba(0, 0, 0, 0.7);
    font-size: 28px;
    line-height: 1;
    padding: 9px;
    display: block;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 4;
    transition: all 0.2s ease 0s;
    background-color: transparent;
    width: 45px;
    height: 45px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.navigation-dropdown.is-active .navigation-close {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: all 0.2s ease 0.7s;
}

.navigation-close:hover {
    color: #fff;
    border-color: #662f8e;
    background-color: #662f8e;
}

.navigation-dropdown {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    transition: visibility 1.1s cubic-bezier(.19, .44, .22, 1);
    height: 100vh;
    height: calc(var(--1vh, 1vh)*100);
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    z-index: 9;
}

.navigation-dropdown.is-active {
    pointer-events: all;
    visibility: visible;
    /* transition: visibility 1.5s cubic-bezier(.19,.44,.22,1); */
}

.navigation-dropdown-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity .7s .3s, visibility 0.3s .7s;
}

.navigation-dropdown.is-active .navigation-dropdown-bg {
    visibility: visible;
    opacity: 1;
    transition: opacity .7s .1s, visibility 0.3s .1s;
}

.navigation-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.navigation-container {
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.navigation-col,
.navigation-container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.site-navbox {
    width: 65%;
    display: block;
    position: relative;
}

.site-navbox:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(81, 28, 108, 0.87);
    transition: transform 1s cubic-bezier(.77, 0, .175, 1) 0s;
    transform: scaleY(0) translateZ(0);
    transform-origin: top;
}

.is-active .site-navbox:before {
    transform: scaleY(1) translateZ(0);
    transition: transform 1s cubic-bezier(.77, 0, .175, 1) 0s;
}

.navigation-logodiv {
    position: absolute;
    bottom: -15px;
    z-index: 1;
    left: -20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s .1s, visibility 0.2s .1s;
}

.is-active .navigation-logodiv {
    visibility: visible;
    opacity: 1;
    transition: opacity .7s .7s, visibility 0.3s .7s;
}

.navigation-content-wrap {
    position: relative;
    padding: 0 30px 0 145px;
    z-index: 2;
}

.nav-link-div {
    position: relative;
    margin: 0;
    max-width: 460px;
    /* border-right: 1px solid rgba(255,255,255,0.4);*/
}

.nav-link-div:after {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    content: "";
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease 0.1s;
}

.navigation-dropdown.is-active .nav-link-div:after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: all 0.2s ease 0.7s;
}

.nav-link-div ul {
    z-index: 2;
    padding: 0;
    margin: 0;
}

.nav-link-div ul>li {
    list-style: none;
    margin-bottom: 0px;
}

.nav-link-div ul>li:last-child {
    margin-bottom: 0px;
}

.nav-link-div ul>li>a {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    letter-spacing: 0px;
    font-weight: 700;
    display: block;
    position: relative;
    transition: all 0.1s;
    overflow: hidden;
}

.nav-link-div li a:focus {
    outline: 0;
}

.nav-link-div ul>li>a:hover {
    text-decoration: none;
}

.nav-link-div ul>li:hover>a,
.nav-link-div ul>li.active-li>a {
    color: #a47cce;
}

.drop-down ul {
    position: absolute;
    left: 100%;
    top: 0;
    list-style: none;
    width: 100%;
    max-width: 510px;
    height: 100%;
    margin: 0px;
    padding-left: 70px;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s;
}

.drop-down ul li {
    position: relative;
    margin-top: 15px;
    margin-bottom: 0;
}

.drop-down ul a,
.drop-down ul li {
    padding: 0;
    transition: inherit !important;
    bottom: 0;
}

.drop-down ul li a {
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.drop-down ul li a:hover,
.drop-down ul li.active-li a {
    color: #a47cce;
    border-left: none;
    padding-left: 0;
}

.drop-down ul li:hover>a:after {
    display: none;
}

.drop-down ul li:hover>a:before {
    display: none;
}

.drop-down ul li:first-child {
    margin-top: 0;
}

.nav-link-div ul>.drop-down .drop-down ul>li>a {
    color: #fff;
}

.nav-link-div ul>.drop-down .drop-down ul>li:hover>a,
.nav-link-div ul>.drop-down .drop-down ul>li.active-li>a {
    color: #ddb307;
}

.nav-link-div ul>.drop-down .drop-down {
    position: relative;
}

.nav-link-div ul>.drop-down .drop-down ul {
    position: relative;
    left: 0;
    display: none !important;
    top: 0;
    padding: 25px 0 5px 30px;
    list-style: none;
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    transition: all 0.1s;
}

.drop-down .drop-down ul li a {
    color: #c9c6c6;
}

.drop-down .drop-down ul li.active-li>a {
    color: #fff;
}

.nav-link-div ul>.drop-down .drop-down>a:after {
    position: relative;
    bottom: 0;
    left: 0;
    content: "";
   /* background: url(../images/dropdown-arrow.png) no-repeat;*/
    background-size: cover;
    height: 9px;
    width: 16px;
    display: inline-block;
    border-bottom: none;
    margin-left: 15px;
}

.nav-link-div ul>.drop-down .drop-down:hover>a:after {
    display: inline-block;
    background: url(../images/dropdown-arrow2.png) no-repeat;
    height: 16px;
    width: 9px;
}

.nav-link-div ul>.drop-down .drop-down:hover>ul {
    visibility: visible;
    opacity: 1;
    display: block !important;
}

.nav-link-div ul>.drop-down .drop-down>.sub-menu>li.active-li>a:after {
    display: none;
}

.drop-down ul ul.sub-sub-menu {
    left: 0;
    max-width: 100%;
    position: relative;
    padding-left: 30px;
    padding-bottom: 5px;
    display: none;
    top: 0;
    height: auto;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    transition: all 0.1s;
}

.nav-link-div ul>li>a>span {
    display: inline-block;
    transform: translateY(105%) translateZ(0);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
}

.is-active .nav-link-div ul>li:first-child>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) .8s;
}

.is-active .nav-link-div ul>li:nth-child(2)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) .9s;
}

.is-active .nav-link-div ul>li:nth-child(3)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1s;
}

.is-active .nav-link-div ul>li:nth-child(4)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.1s;
}

.is-active .nav-link-div ul>li:nth-child(5)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.2s;
}

.is-active .nav-link-div ul>li:nth-child(6)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.3s;
}

.is-active .nav-link-div ul>li:nth-child(7)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.4s;
}

.is-active .nav-link-div ul>li:nth-child(8)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.5s;
}

.is-active .nav-link-div ul>li:nth-child(9)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.6s;
}

.is-active .nav-link-div ul>li:nth-child(10)>a>span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) 1.7s;
}

.is-active .nav-link-div ul>li>a>span {
    transform: translateY(0) translateZ(0);
}

.nav-searchbar {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 60px 0 25px 140px;
    margin-bottom: 100px;
}

.nav-searchbar:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    content: "";
    width: 0;
    transition: width .5s cubic-bezier(.165, .84, .44, 1) 0s;
}

.is-active .nav-searchbar:after {
    width: 85%;
    transition: width .9s cubic-bezier(.165, .84, .44, 1) .7s;
}

.nav-searchbar form {
    max-width: 300px;
    overflow: hidden;
}

.nav-searchbar svg {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    margin-top: -8px;
}

.nav-searchbar .form-group {
    position: relative;
    margin-bottom: 0;
}

.nav-searchbar .form-group {
    transition: all 0.2s;
}

.nav-searchbar .form-control {
    border-radius: 0px;
    border: none;
    color: #fff;
    background: transparent;
    padding-right: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 32px;
    line-height: 20px;
    padding-left: 30px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-searchbar .form-control:focus {
    border-color: #fff;
}

.nav-searchbar .form-control::-webkit-input-placeholder {
    color: #fff;
}

.nav-searchbar .form-control::-moz-placeholder {
    color: #fff;
}

.nav-searchbar .form-control:-ms-input-placeholder {
    color: #fff;
}

.nav-searchbar .form-control:-moz-placeholder {
    color: #fff;
}

.nav-searchbar .form-group {
    transform: translateY(105%) translateZ(0);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
}

.is-active .nav-searchbar .form-group {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) .8s;
    transform: translateY(0) translateZ(0);
}

.navquiklink-social-box {
    display: block;
    width: 35%;
}

.nav-quicklink-boxdiv {
    display: block;
    width: 100%;
    height: 69%;
    position: relative;
}

.nav-quicklink-boxdiv:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scaleY(0) translateZ(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.77, 0, .175, 1) .1s;
    background-color: rgba(225, 223, 218, 0.94);
}

.quicklink-innerdiv {
    position: relative;
    z-index: 1;
    padding-top: 116px;
}

.nav-quicklink-title:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background: rgba(119, 59, 131, 0.4);
    content: "";
    width: 0;
    transition: width .5s cubic-bezier(.165, .84, .44, 1) 0s;
}

.is-active .nav-quicklink-title:before {
    width: 85%;
    transition: width .9s cubic-bezier(.165, .84, .44, 1) .7s;
}

.nav-quicklink-title {
    font-size: 18px;
    padding-top: 20px;
    position: relative;
    padding-left: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: #662f8e;
    letter-spacing: 1px;
    margin-bottom: 40px;
    overflow: hidden;
}

.nav-quicklink-title span {
    display: block;
    transform: translateY(105%) translateZ(0);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
}

.is-active .nav-quicklink-title span {
    transition: transform .9s cubic-bezier(.165, .84, .44, 1) .7s;
    transform: translateY(0) translateZ(0);
}

.nav-quicklink-list {
    width: 70%;
    margin: 0 auto;
}

.nav-quicklink-list ul {
    display: flex;
    flex-wrap: wrap;
}

.nav-quicklink-list ul li {
    width: 33.33%;
    /* margin: 30px 0; */
    margin: 23px 0;
    overflow: hidden;
    padding: 0 10px;
    position: relative;
    text-align: center;
    display: block;
}

.nav-quicklink-list ul li a {
    display: flex;
    align-items: center;
    min-height: 40px;
    justify-content: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    color: #662f8e;
    transition: all 0.2s ease;
}

.nav-quicklink-list ul li a span {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.nav-quicklink-list ul li a:hover svg path,
.nav-quicklink-list ul li a:hover svg polygon {
    fill: #2c903d;
}

.nav-quicklink-list ul li a:hover span {
    color: #2c903d;
}

.nav-quicklink-list ul li div {
    transform: translateY(102%) translateZ(0);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    position: relative;
    padding-bottom: 20px;
}

.nav-social-boxdiv {
    display: block;
    width: 100%;
    height: 31%;
    position: relative;
}

.nav-social-boxdiv:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scaleY(0) translateZ(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.77, 0, .175, 1) .1s;
    background-color: rgba(46, 41, 37, 0.94);
}

.is-active .nav-social-boxdiv:before {
    transform: scaleY(1) translateZ(0);
}

.nav-social-boxdiv .nav-quicklink-title {
    color: #fff;
}

.nav-social-boxdiv .nav-quicklink-title:before {
    background: rgba(255, 255, 255, 0.4);
}

.nav-social-list {
    /* margin-left: 125px; */
    margin-left: 30px;
}

.nav-social-list li {
    display: inline-block;
    overflow: hidden;
    margin: 0 25px;
}

.nav-social-list li a {
    display: inline-block;
}

.nav-social-list li a svg path {
    fill: #fff;
}

.nav-social-list li a:hover svg path {
    fill: #2c903d;
}

.nav-social-list li div {
    transform: translateY(102%) translateZ(0);
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    position: relative;
    padding-bottom: 20px;
}

.is-active .nav-social-list li:first-child div {
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) .8s;
}

.is-active .nav-social-list li:nth-child(2) div {
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1s;
}

.is-active .nav-social-list li:nth-child(3) div {
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.2s;
}

.is-active .nav-social-list li div {
    transform: translateY(0) translateZ(0);
}


/* Home Slider CSS */

.home-banner-section {
    position: relative;
    padding-right: 90px;
}

.home-slider {
    position: relative;
    width: 100%;
}

.home-slider .slick-slide {
    position: relative;
}

.home-slider .slick-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 50%;
    width: 100%;
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a3000000', endColorstr='#00000000', GradientType=0);
}
.home-slider .sliderimg-div {
    background-position: center;
    position: relative;
    /* padding-bottom: 56.25%; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    height: calc((var(--vh, 1vh) * 100));
}

.home-slider .sliderimg-div iframe {
    /* height: 100%; width: 100%; */
}

.home-slider .sliderimg-div .video-background-controls {
    display: none !important;
}

.home-slider .sliderimg-div.vimeo-video-div iframe {
    height: 120%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-slider .slider-content {
    position: absolute;
    bottom: 0;
    padding: 45px 45px 70px 55px;
    left: 0;
    right: 0;
    margin: 0;
    width: 642px;
}
.home-slider .slick-slide:after {
    content: "";
    position: absolute;
    height: 147px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #260a40;
}
.home-slider .slider-content a{
    display: block;
    position: relative;
    z-index: 1;
}
.home-slider .slider-content .bg-overlay {
    background: rgba(102, 47, 142, 0.87);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.home-slider .slider-title {
    opacity: 0;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    color: #a27ccc;
    margin-bottom: 0px;
}

.home-slider .slider-title strong {
    font-weight: 700;
    display: block;
    color: #fff;
}
.home-slider .slider-content .defult-btn{
    padding: 0;
    border: 0;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.home-slider .slider-content .defult-btn:after{
    border: 1px solid #fff;
}
.home-slider .slider-content .defult-btn:hover{
    color: #fff;
}
.home-slider .slider-content .defult-btn:before{
    background-color: transparent;
}
.home-slider .slider-content:before {
    content: "";
    position: absolute;
    height: calc(100% - 48px);
    width: calc(100% - 24px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    left: 0;
    top: 0;
    margin: 24px 24px 24px 0;
    border-left: 0;
    z-index: 1;
}

.home-slider .slick-slide.slick-active .slider-title {
    animation: SlideContentText 1s forwards;
    animation-delay: 0.8s;
}

@keyframes SlideContentText {
    from {
        bottom: -40px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

.home-slider .video-box{
    height: calc((var(--vh, 1vh) * 100));
    display: block;
}
.home-slider .video-box .video-wrapper{
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 0;
}
.home-slider .video-box .video-wrapper iframe{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 115%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.home-slider .video-background-controls {
    position: absolute;
    left: 40px;
    height: 160px;
    width: 160px;
    top: -170px;
    z-index: 1;
}
.home-slider .video-background-controls a{
    position: relative;
    opacity: 0;
}
.home-slider .slick-slide.slick-active .video-background-controls a{
    animation: SlideContentText 1s forwards;
    animation-delay: 0.8s;
}
.home-slider .video-background-controls text {
    font-family: 'Rubik', sans-serif;
}
.home-slider .video-background-controls a svg{
    transition: all 0.6s;
}
.home-slider .video-background-controls a:hover svg{
    transform: scale(1.05);
}
.campus-block:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 89.53px;
    opacity: 0.87;
    mix-blend-mode: multiply;
    background-color: #662F8E;
    z-index: 0;
}
.campus-block:before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 147px;
    width: 100%;
    left: 0;
    background-color: #511C6C;
    z-index: 0;
}
.campus-block{
    position: absolute;
    bottom: 0;
    left: 642px;
    text-align: right;
    width: calc(100% - 732px);
}
.campus-block .campus-btn {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    z-index: 1;
    text-align: left;
}
.campus-block .campus-btn:not(:first-child) {
    margin-left: 80px;
    padding-left: 35px;
}
.campus-block .campus-btn:first-child .campus-btn-content {
    padding-left: 115px;
}
.campus-btn span {
    display: block;
}
.campus-block .campus-btn .campus-btn-lable{
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    width: 190px;
}
.campus-block .campus-btn .campus-btn-subtxt{
    font-size: 18px;
    color: #A27CCC;
    font-weight: bold;
}
.campus-block .campus-btn-content{
    position: absolute;
    bottom: 5px;
    left: 0;
}
.campus-block .campus-btn img{
    transition: all 0.4s;
    transform-origin: right bottom;
}
.campus-block .campus-btn:hover img{
    transform: scale(1.2);
}
body.fancybox-open .enrol-book-prospectus,
body.fancybox-open .site-header{
    z-index: 99999;
}
body.fancybox-open{
    margin-right: 0;
    overflow: hidden !important;
}
.custom-fancybox {
    width: calc(100% - 100px);
}
body.fancybox-open.ebp-stickybody .custom-fancybox {
    width: calc(100% - 74px);
}
.custom-fancybox::before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: -37px;
    height: 430px;
    width: 430px;
    background-image: url(../images/navigation-bg-logo.svg);
    background-repeat: no-repeat;
    z-index: 1;
    background-position: left bottom;
    background-size: contain;
}
.custom-fancybox .fancybox-bg{
    opacity: 1;
    background-image: url(../images/fancybox-bg.png);
    background-color: rgba(81, 28, 108, 0.87);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}
.custom-fancybox.fancybox-is-open .fancybox-bg{
    opacity: 1;
}
.custom-fancybox .fancybox-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.25;
    background: #000;
}
.custom-fancybox .fancybox-stage {
    height: calc(100% - 270px);
    margin: 140px 230px 130px;
}
.custom-fancybox .fancybox-slide--video .fancybox-content{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.5);
}
body.fancybox-open .site-header{
    position: fixed;
    width: 75%;
}
body.fancybox-open .site-header .logo-div{
    margin-right: -5%;
}
.custom-fancybox .fancybox-button.fancybox-button--close {
    position: absolute;
    top: 130px;
    right: 230px;
    background: #e1dfda;
    height: 41px;
    width: 41px;
    color: #662d91;
    border: 1px solid #e1dfda;
}
.custom-fancybox .fancybox-button.fancybox-button--close:hover{
    color: #fff;
    background: #662d91;
}
.custom-fancybox .fancybox-toolbar{
    visibility: visible;
    opacity: 1;
}
.custom-fancybox .fancybox-button--close svg{
    display: none;
}
.custom-fancybox .fancybox-button--close::before {
    content: "Close";
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    color: #fff;
    position: absolute;
    bottom: -19px;
    left: 0;
    right: 0;
}
.custom-fancybox .fancybox-button--close::after {
    content: "x";
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


/* enrol-book-prospectus SEction */

.enrol-book-prospectus {
    background: #e1dfda;
    height: 100vh;
    width: 100px;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 0px;
    padding: 30px 0;
}

.enrol-book-prospectus.ebp-sticky {
    position: fixed;
    width: 75px;
    transition: all 0.3s;
    z-index: 2;
    padding: 20px 0;
}

.scenecube {
    width: 44px;
    height: 44px;
    margin: 0px auto;
    /* perspective: 88px;*/
}

.scenecube a {
    display: block;
}

.cube {
    width: 44px;
    height: 44px;
    position: relative;
    /* transform-style: preserve-3d; */
    transform: unset !important;
    /* transform: translateZ(-22px);
    transition: transform 1s;
    transform: rotate(360deg) rotateY(1800deg); */
}

.cube__face {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    line-height: 44px;
    font-size: 28px;
    font-weight: 700;
    color: #662d91;
    text-align: center;
    background: #e1dfda;
}

.cube__face:nth-child(1) {
    transform: rotateY(0deg) translateZ(22px);
}

.cube__face:nth-child(2) {
    transform: rotateY(90deg) translateZ(22px);
    background: #662d91;
    border-color: #662d91;
    color: #fff;
}

.cube__face:nth-child(3) {
    transform: rotateY(180deg) translateZ(22px);
    color: #2c903d;
}

.cube__face:nth-child(4) {
    transform: rotateY(270deg) translateZ(22px);
    background: #2c903d;
    border-color: #2c903d;
    color: #fff;
}

.cube__face:nth-child(5) {
    transform: rotateX(90deg) translateZ(22px);
}

.cube__face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(22px);
}

.phone-quiklink-div {
    margin-top: 50px;
    text-align: center;
}

.phone-quiklink-div ul {}

.phone-quiklink-div ul li {
    display: block;
    margin-bottom: 20px;
}

.phone-quiklink-div ul li:last-child {
    margin-bottom: 0px;
}

.enrol-book-prospectus.ebp-sticky .phone-quiklink-div {
    margin-top: 30px;
}

.phone-quiklink-div ul li a:hover svg path {
    fill: #662d91;
}

.enrol-book-prospectus.ebp-sticky .phone-quiklink-div ul li {
    margin-bottom: 15px;
}

.social-linkdiv {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 100%;
    opacity: 0;
}
/* .enrol-book-prospectus.ebp-sticky .social-linkdiv{
    opacity: 1;
} */
.enrol-book-prospectus.ebp-sticky .hideon-sticky{
    display: none;
}
/* .enrol-book-prospectus.ebp-sticky .purpel-menudiv li:nth-last-child(2){
    border-bottom: 0;
} */

.social-linkdiv ul {}

.social-linkdiv ul li {
    display: block;
    margin-bottom: 26px;
}

.social-linkdiv ul li:last-child {
    margin-bottom: 0px !important;
}

.enrol-book-prospectus.ebp-sticky .social-linkdiv {
    bottom: 110px;
}

.enrol-book-prospectus.ebp-sticky .social-linkdiv ul li {
    margin-bottom: 20px;
}

.social-linkdiv ul li a:hover svg path {
    fill: #662d91;
}

.stickylogo-div {
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 20px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.enrol-book-prospectus.ebp-sticky .stickylogo-div {
    opacity: 1;
    visibility: visible;
}

.stickylogo-div a {
    display: inline-block;
}

.purpel-menudiv {
    background-color: #511c6c;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    width: 120px;
    transition: all 0.3s;
    padding: 0px 15px;
    position: absolute;
    top: 50%;
    margin-top: -165px;
    left: -20px;
}

.purpel-menudiv li {
    border-bottom: 1px solid rgba(255, 255, 255,0.5);
    text-align: center;
    display: block;
}

.purpel-menudiv li:last-child {
    border-bottom: none;
    text-align: center;
}

.purpel-menudiv li a {
    background-color: #511c6c;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.2;
    display: block;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.2s;
}

.purpel-menudiv li a:hover {
    opacity: 0.5;
}

.purpel-menudiv li a span {
    order: 2;
}

.purpel-menudiv li a svg {
    display: block;
    margin: 0 auto 15px;
}

.purpel-menudiv li a svg.pmobile-icon {
    display: none;
}

.purpel-menudiv li a svg.pdesktop-icon {
    display: block;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv {
    width: 80px;
    margin-top: -281px;
    left: 0;
    padding: 0 10px;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv li a {
    /*display: block;*/
    padding: 30px 0;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv li a span {
    order: inherit;
    margin: 0 auto 15px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: block;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv li a svg {
    display: block;
    margin: 0 auto 0px;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv li a svg.pmobile-icon {
    display: none;
}


/* Quicklinks Section */

.home-quicklink {
    margin: 30px 0;
    padding: 0 15px;
}

.home-quicklink .row .quiklink-col:first-child {
    transition-delay: .08s;
}

.home-quicklink .row .quiklink-col:nth-child(2) {
    transition-delay: .16s;
}

.home-quicklink .row .quiklink-col:last-child {
    transition-delay: .24s;
}

.quicklink-boxdiv {
    position: relative;
    background-color: #a47cce;
    padding-bottom: 75%;
    overflow: hidden;
}

.quicklink-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 24px 20px 25px 0;
    transition: all 0.2s ease;
    background: rgb(42 4 67 / 70%);
    backdrop-filter: none;
}

.quicklink-title-lg {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: #a47cce;
    padding: 15px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    width: calc(100% - 60px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.quicklink-title-lg strong {
    font-weight: 700;
    color: #fff;
    display: block;
}

.quicklink-boxdiv .bg-overlay {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.quicklink-boxdiv:hover .bg-overlay {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.quicklink-boxdiv:hover .quicklink-title {
    background: rgba(81, 28, 108, 0.5);
}

.quicklink-boxdiv:hover .quicklink-title-lg {
    background-color: rgba(81, 28, 108, 0.75);
}

.quicklink-boxdiv.college-newsletter:hover .quicklink-title-lg {
    background-color: rgba(0, 0, 0, 0.3);
}

.home-quicklink .row .quiklink-col:first-child .quicklink-title-lg .animation-element {
    transition-delay: .08s;
}

.home-quicklink .row .quiklink-col:nth-child(2) .quicklink-title-lg .animation-element {
    transition-delay: .16s;
    color: #662d91;
}

.home-quicklink .row .quiklink-col:last-child .quicklink-title-lg .animation-element {
    transition-delay: .24s;
}

.quicklink-boxdiv.college-newsletter {
    background: #2c903d;
}

.quicklink-boxdiv.college-newsletter img {
    position: absolute;
    top: -55px;
    right: -118px;
    height: 530px;
    transition: all 0.2s ease;
}

.quicklink-boxdiv.college-newsletter .quicklink-title {
    background: transparent;
    backdrop-filter: inherit;
}

.quicklink-boxdiv.college-newsletter:hover .quicklink-title {
    background: transparent;
}

.quicklink-boxdiv.college-newsletter:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.quicklink-title-lg .arrow-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-image: url(../images/button-arrow-white.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
    left: 0;
    margin-left: 10px;
}

.quicklink-boxdiv:hover .quicklink-title-lg .arrow-btn {
    left: 20px;
}


/* Pillar Section */

.pillar-slider-wrapper {
    position: relative;
}

.pillar-section {
    position: relative;
    padding: 0px 15px;
}

.pillar-image-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 940px;
    background-blend-mode: multiply;
}
.pillar-slidernav-wrap .slick-track
{
    display: flex !important;
}

.pillar-slidernav-wrap .slick-slide
{
    height: inherit !important;
}
.pillar-slidernav-wrap {
    position: absolute;
    margin-left: -30px;
    width: 100%;
    max-width: 1100px;
    top: 50%;
    transform: translateY(-50%);
}

.pillar-content {
    background-color: rgba(81, 28, 108, 0.85);
    min-height: 710px;
    max-width: 1100px;
    padding: 80px 145px 120px;
    background-blend-mode: multiply;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: 100%;
}

.pillar-title {
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 570px;
    font-size: 70px;
    line-height: 1;
    color: #fff;
}

.pillar-title span {
    color: #a47cce;
    display: block;
}

.pillar-content p {
    color: #fff;
    max-width: 480px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.pillar-action {
    position: absolute;
    margin-left: -30px;
    width: 100%;
    max-width: 1135px;
    bottom: 80px;
    padding: 45px 40px 65px 120px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: none;
}

.pillar-action a {
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    margin: 20px 20px;
}

.pillar-action a:after {
    content: attr(data-text);
    content: attr(data-text)/"";
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    font-weight: 700;
}

.pillar-action a:hover,
.pillar-action a.active {
    color: #fff;
    font-weight: 700;
}

.our-pillartitle {
    position: relative;
    padding-left: 35px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.our-pillartitle:before {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
    height: 1px;
    width: 25px;
    content: "";
    background-color: #fff;
}


/* Welcome section CSS */

.welcome-section {
    position: relative;
    padding: 50px 0;
    margin: 35px 0 70px;
}
.welcome-section .row:before {
    position: absolute;
    top: -50px;
    left: 40px;
    content: "";
    height: calc(100% + 100px);
    width: 100%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    z-index: 1;
    pointer-events: none;
}

.welcome-imagediv {
    width: 57%;
    position: relative;
    float: left;
    transition-delay: .08s;
}

.welcome-imagediv-inner {
    padding-bottom: 66.66%;
    position: relative;
    height: auto;
    display: block;
}
.home-video-divbox video[poster] {
    object-fit: cover;
}

.welcome-imagediv .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.welcome-text {
    float: right;
    width: calc(100% - 57%);
    padding-left: 65px;
}

.welcome-text p {
    font-weight: 300;
    max-width: 535px;
    letter-spacing: 0.5px;
    font-size: 19px;
    line-height: 1.5;
    color: #000;
}

.welcome-title {
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    color: #662f8e;
    transition-delay: .08s;
}

.welcome-title strong {
    font-weight: 700;
    font-size: 52px;
    color: #2c903d;
    display: block;
}

.welcome-text .defult-btn {
    margin-top: 35px;
}

.welcome-content {
    transition-delay: .16s;
}

.welcome-button {
    transition-delay: .24s;
}


/* Upcoming Event CSS */

.upcoming-event-section {
    position: relative;
    padding: 40px 0 100px;
    display: flex;
    flex-wrap: wrap;
}

.upevent-title-div {
    width: 260px;
    float: left;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    justify-content: end;
}

.upevent-title {
    color: #2D2A26;
    position: relative;
    font-weight: 700;
    font-size: 42px;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 260px;
    margin: 0 10px 0 0;
    transition-delay: .8s;
}

.title-rotate {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0px auto;    
    height: 353px;
}

.calendar-btn {
    margin-top: 111px;
    margin-bottom: 50px;
}

.calendar-btn .defult-btn {
    min-width: 290px;
    padding: 24px 47px;
    background-color: #511c6c;
    color: #fff;
    border-color: #511c6c;
}

.calendar-btn .defult-btn span {
    display: inline-block;
    max-width: 130px;
    line-height: 1.1;
}

.calendar-btn .defult-btn:hover {
    border-color: #2c903d;
}

.calendar-btn .defult-btn:after {
    background-color: #fff;
    background-image: url(../images/button-arrow-purpel.png);
}

.calendar-btn .defult-btn:hover:after {
    background-image: url(../images/button-arrow-green.png);
}

.upevent-sliderwrap {
    transition-delay: .16s;
    width: calc(100% - 260px);
    padding-left: 15px;
    float: left;
    position: relative;
}
.upevent-sliderwrap .slick-track{
    display: flex;
}

.upevent-box {
    position: relative;
    border: 1px solid #662f8e;
    margin: 25px 0;
    height: calc(100% - 50px);
    padding-bottom: 130px;
}

.event-list-date {
    padding: 35px 35px 58px;
    position: relative;
    text-align: center;
}

.event-list-date:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -23px;
    left: -23px;
    height: 260px;
    width: 100%;
    background: #e1dfda;
}

.event-list-date .event-day {
    font-weight: 300;
    color: #2e2925;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
}

.event-list-date .event-month {
    font-weight: 700;
    color: #2e2925;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
}

.event-list-date .event-date {
    position: relative;
    margin: 10px 0;
    font-weight: 700;
    color: #773b83;
    font-size: 87px;
    line-height: 1;
}

.event-list-content {
    text-align: center;
    padding: 40px 35px;
}
.event-list-content .eventlist-desc {
    min-height: 57px;
    margin: 0;
}

.upevent-box .defult-btn {
    min-width: auto;
    margin-left: -23px;
    padding: 32px 47px 32px 70px;
    margin-right: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.upevent-box .defult-btn:before {
    background-color: rgb(44, 144, 61, 0.9);
}

.event-list-content h2,.event-list-content p {
    font-size: 18px;
    color: #2e2925;
    min-height: 56px;
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 28px;
}

.event-list-content h2:last-child {
    margin-bottom: 0px;
}

.upevent-slider .slick-slide {
    padding: 0 30px;
    height: inherit;
}

.upevent-slider.slick-slider .slick-list {
    padding-left: 0 !important;
}

.upevent-slider .slick-arrow,.videohome-slider .slick-arrow, .showcase-slider .slick-arrow{
    position: absolute;
    bottom: 26px;
    left: -240px;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: none;
    text-align: center;
    background-color: #e1dfda;
    font-size: 0;
    background-image: url(../images/button-arrow-green.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.2s;
}

.upevent-slider .slick-arrow:hover,.videohome-slider .slick-arrow:hover,.showcase-slider .slick-arrow:hover {
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
}
.upevent-slider .slick-arrow{
    bottom: 30%;
}

.upevent-slider .slick-arrow.slick-prev{
    left: -195px;
}
.videohome-slider .slick-arrow.slick-prev,.showcase-slider .slick-arrow.slick-prev {
    transform: rotate(180deg);
}

.upevent-slider .slick-arrow.slick-next {
    left: -145px;
}
.videohome-slider .slick-arrow.slick-next {
    left: -80px;
}
.videohome-slider .slick-arrow.slick-arrow{
    bottom: 0;
}
.videohome-slider .slick-arrow.slick-prev{
    left: -135px;
}
.upevent-slider .slick-slide:focus,
.videohome-slider .slick-slide:focus {
    outline: 0;
}

.calendar-btn.mobile-calendar-btn {
    display: none;
}
.video-sliderwrap {
    padding-left: 35px;
}

.videohome-slider .slick-slide {
    padding: 0px 15px;
}

.videohome-slider.slick-slider .slick-list {
    padding-left: 0 !important;
    padding-right: 150px;
}

.videoslide-boxdiv {
    position: relative;
}

.videoslide-ifrem {
    position: relative;
    padding-bottom: 56.25%;
    height: auto;
}

.videoslide-ifrem iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.videoslide-boxdiv .videoslide-title {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: #2D2A26;
    padding-left: 45px;
}

.videoslide-boxdiv .videoslide-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    background-size: contain;
    background-image: url(../images/youtub-video-btn.svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 27px;
}
.videoslide-boxdiv .videoslide-ifrem{
    padding-bottom: 67%;
}
.videohome-slider .videoslide-boxdiv{
    min-height: 415px;
}

.videoslide-boxdiv .video-background-controls {
    /*pointer-events: none;*/
    z-index: 2;
    position: absolute;
    top: 50% !important;
    right: auto !important;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    transition: all 0.6s;
}
.videoslide-boxdiv .video-background-controls i{
    transition: all 0.6s; 
}
.videoslide-boxdiv .video-background-controls a:hover i {
    transform: scale(0.8);
}


.videoslide-boxdiv .video-background-controls button {
    cursor: pointer;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    height: 100%;
    width: 100%;
}

.videoslide-boxdiv .video-background-controls button i {
    display: none;
    position: relative;
    cursor: pointer;
    height: 170px;
    width: 170px;
    border: 1px solid #511c6c;
    border-radius: 100%;
    font-size: 22px;
    line-height: 92px;
    text-align: center;
    color: #FFFFFF;
    background: transparent;
    font-style: normal;
    font-size: 0;
    font-style: normal;
    margin: 0 auto;
}

.videoslide-boxdiv .video-background-controls button i:before {
    content: "";
    width: 62px;
    height: 80px;
    background-image: url(../images/youtub-video-btn.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s 0s,visibility 0s .2s;
    -moz-transition: opacity .2s 0s,visibility 0s .2s;
    transition: opacity .2s 0s,visibility 0s .2s;
    opacity: 1;
    visibility: visible;
    opacity: 0.95;
}

.videoslide-boxdiv .video-background-controls button.paused i {
    display: block;
}

.videoslide-boxdiv .video-background-controls button:hover {
    font-size: 0;
}

.videoslide-boxdiv .video-background-controls button:hover i:before {
    opacity: 1;
    visibility: visible;
}


/* twilight Section */

.twilight-section {
    position: relative;
    padding: 0px 15px;
    margin: 50px 0 35px 60px;
}

.twilight-section:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1170px;
    background: rgba(255, 255, 255, 0.4);
    left: -30px;
    bottom: 190px;
    z-index: 1;
    display: none;
}

.twilight-image-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    margin-left: 40px;
}

.twilight-content {
    margin-left: -60px;
    max-width: 930px;
    padding: 100px 145px 135px;
    position: relative;
}
.twilight-content .bg-layer{
    background-color: rgba(102, 47, 142, 0.87);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.twilight-title {
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 500px;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    transition-delay: .08s;
    position: relative;
    z-index: 1;
}

.twilight-title span {
    color: #a47cce;
}

.twilight-content p {
    color: #fff;
    max-width: 480px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.twilight-content .defult-btn {
    margin-top: 40px;
}

.twilight-textdiv {
    transition-delay: .16s;
    position: relative;
    z-index: 1;
}

.twilight-button {
    transition-delay: .24s;
    position: relative;
    z-index: 1;
}


/* Inner Page Slider CSS */

.innerpage-slider {
    position: relative;
    width: 100%;
    height: 90vh;
}

.innerpage-slider .slick-slide {
    position: relative;
}

.innerpage-slider .slick-slide:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 50%;
    width: 100%;
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a3000000', endColorstr='#00000000', GradientType=0);
}

.innerpage-slider .slick-slide:after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    content: "";
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a3000000', GradientType=0);
}

.innerpage-slider .sliderimg-div {
    background-position: center;
    position: relative;
    /* padding-bottom: 56.25%; */
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
}

.innerpage-slider .sliderimg-div iframe {
    /* height: 100%; width: 100%; */
}

.innerpage-slider .sliderimg-div .video-background-controls {
    display: none !important;
}

.innerpage-slider .sliderimg-div.vimeo-video-div iframe {
    height: 120%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.innerpage-slider .subtile-div {
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    position: relative;
    padding-left: 40px;
}

.innerpage-slider .subtile-div:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 220px;
    background: rgba(255, 255, 255, 0.4);
    left: -200px;
    top: 50%;
    margin-top: -3px;
    line-height: 1;
}

.innerpage-slider .slider-content {
    position: absolute;
    bottom: 100px;
    left: 200px;
    right: 0;
    margin: 0;
    z-index: 1;
    width: 100%;
    max-width: 930px;
}

.innerpage-slider .slider-title {
    opacity: 0;
    position: relative;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0px;
}

.innerpage-slider .slider-title strong {
    color: #662d91;
    font-weight: 700;
    display: block;
}

.innerpage-slider .slick-slide.slick-active .slider-content:before {
    animation: SlideContentLine 1s forwards;
    animation-delay: 0.2s;
}

@keyframes SlideContentLine {
    from {
        width: 0;
    }
    to {
        width: calc(100% + 80px);
    }
}

.innerpage-slider .slick-slide.slick-active .slider-title {
    animation: SlideContentText 1s forwards;
    animation-delay: 0.8s;
}

@keyframes SlideContentText {
    from {
        bottom: -40px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}


/* Geral page CSS */

.defultpage-wrapper {
    padding: 40px 15px;
}

.comman-detaildiv {
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 0;
}

.comman-detaildiv blockquote {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
    color: #2e2925;
    letter-spacing: 1px;
    padding-left: 40px;
    border-left: 1px solid rgba(102, 47, 142, 0.5);
    margin-bottom: 40px;
    margin-top: 50px;
}

.directorypage-wrapper .comman-detaildiv blockquote:first-child {
    margin-top: 0;
}

.comman-detaildiv h1 {
    position: relative;
    margin-bottom: 40px;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
    color: #511c6c;
    clear: both;
    padding-top: 30px;
}

.comman-detaildiv h2 {
    font-size: 36px;
    margin-bottom: 35px;
    padding-top: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #2e2925;
}

.comman-detaildiv h3 {
    padding-top: 30px;
    font-weight: 300;
    line-height: 1.2;
    color: #2c903d;
    font-size: 28px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.comman-detaildiv h3:before {
    width: 45px;
    height: 1px;
    background: #2c903d;
    content: "";
    position: absolute;
    top: 73%;
    margin-top: -1px;
    left: 0px;
}

.comman-detaildiv h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: #2e2925;
    margin-bottom: 30px;
    padding-top: 15px;
}

.comman-detaildiv h5 {
    color: #2e2925;
    margin-bottom: 30px;
    padding-top: 15px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.comman-detaildiv p,
.comman-detaildiv h6 {
    font-family: 'Noto Sans KR', sans-serif;
    color: #606060;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
}

.comman-detaildiv h6 {
    font-weight: 400;
	font-family: "hello-bloomie-script", sans-serif;
	color:#2C903D;
	font-size:32px;
	margin-top:2em;
	line-height:1.3em;
}

.comman-detaildiv p a {
    color: #2c903d;
}

.comman-detaildiv p a:hover {
    text-decoration: underline;
}

.comman-detaildiv p:last-child {
    margin-bottom: 0;
}

.comman-detaildiv ul,
.comman-detaildiv ol {
    padding-left: 0px;
    margin-bottom: 30px;
}

.comman-detaildiv ul li,
.comman-detaildiv ol li {
    font-family: 'Noto Sans KR', sans-serif;
    color: #606060;
    font-size: 14px;
    margin-bottom: 3px;
    position: relative;
    padding-left: 20px;
}

.comman-detaildiv ol {
    list-style: decimal;
}

.comman-detaildiv ul li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #606060;
    border-radius: 5px;
    left: 0;
    top: 7px;
}

.comman-detaildiv figure {
    position: relative;
    margin-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.comman-detaildiv figcaption {
    padding: 13px 0px 15px 20px;
    max-width: 360px !important;
    text-align: left;
    position: absolute;
    left: 60px;
    /*bottom: 0px;*/
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    line-height: 20px;
    color: #2e2925;
}

.comman-detaildiv figcaption:before {
    position: absolute;
    content: "";
    top: -60px;
    left: 0px;
    height: calc(100% + 60px);
    width: 1px;
    background: #2c903d;
}

.comman-detaildiv figure.no-caption {
    padding-bottom: 0;
    margin-bottom: 30px;
}

.table {
    width: 100%;
    background: #fff;
    margin-top: 0px;
    margin-bottom: 50px;
    position: relative;
    border-bottom: 1px solid rgba(102, 47, 142, 0.5);
}

.table thead th {
    border-bottom: 1px solid rgba(102, 47, 142, 0.5);
}

.table thead th {
    font-family: 'Noto Sans KR', sans-serif;
    padding: 15px 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.03em;
    color: #2c903d;
    border-color: rgba(102, 47, 142, 0.5);
    border-top: none;
}

.table td {
    font-family: 'Noto Sans KR', sans-serif;
    border-top: 1px solid rgba(102, 47, 142, 0.5);
    padding: 15px 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #606060;
    letter-spacing: 0.3px;
}

.table td p {
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #606060;
}

.file-dwonload-a {
    white-space: inherit;
    display: block;
    padding: 0px;
    border: none;
    text-align: left;
    background-color: transparent;
    border-radius: 0px;
    text-transform: inherit;
    text-shadow: none;
    box-shadow: none;
}

.file-dwonload-a a {
    display: inline-block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: #2c903d;
    letter-spacing: 1px;
    line-height: 20px;
    width: 100%;
    max-width: 460px;
    padding: 20px 15px 20px 100px;
    position: relative;
    background: transparent;
    border: 1px solid #2c903d;
    border-left: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    -o-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    -moz-transition: color .8s cubic-bezier(.165, .84, .44, 1);
    transition: color .8s cubic-bezier(.165, .84, .44, 1);
}

.file-dwonload-a a span {
    position: relative;
    z-index: 1;
}

.file-dwonload-a a:after {
    content: "";
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: block;
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    margin-top: -18px;
    left: 30px;
    z-index: 1;
}

.file-dwonload-a a:hover {
    color: #fff;
}

.file-dwonload-a a:hover:after {
    transform: rotate(90deg);
    background-color: #fff;
    background-image: url(../images/button-arrow-green.png);
}

.file-dwonload-a a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2c903d;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    -o-transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s, -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s, -webkit-transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    -moz-transform-origin: top right;
    transform-origin: top right;
}

.file-dwonload-a a:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    -moz-transform-origin: left top;
    transform-origin: left top;
}

.craftcms-formdiv {
    max-width: 620px;
    margin: 50px auto 0;
}

.craftcms-formdiv .form-group {
    margin-bottom: 12px;
}

.craftcms-formdiv label {
    font-size: 16px;
    display: none;
    line-height: 26px;
    margin-bottom: 3px;
    color: #0F1843;
}

.craftcms-formdiv form select,
.craftcms-formdiv form input[type="text"],
.craftcms-formdiv form input[type="email"],
.craftcms-formdiv form input[type="number"],
.craftcms-formdiv form textarea {
    font-size: 14px;
    color: #808083;
    border: 1px solid rgba(0, 40, 93, 0.5);
    border-radius: 0px;
    height: 42px;
    background-color: transparent;
    padding: 8px 20px;
}

.craftcms-formdiv form textarea {
    height: 180px;
}

.craftcms-formdiv form .form-control::-webkit-input-placeholder {
    color: #808083;
}

.craftcms-formdiv form .form-control::-moz-placeholder {
    color: #808083;
}

.craftcms-formdiv form .form-control:-ms-input-placeholder {
    color: #808083;
}

.craftcms-formdiv form .form-control:-moz-placeholder {
    color: #808083;
}

.craftcms-formdiv button[type="button"],
.craftcms-formdiv button[type="submit"],
.craftcms-formdiv input[type="submit"] {
    border: 1px solid rgba(44, 144, 61, 0.5);
    color: #2c903d;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 90px;
    min-width: 230px;
    border-left: none;
    margin-top: 20px;
}

.craftcms-formdiv button[type="button"]:after,
.craftcms-formdiv button[type="submit"]:after,
.craftcms-formdiv input[type="submit"]:after {
    right: auto;
    left: 35px;
    background-image: url(../images/button-arrow-white.png);
    background-color: #2c903d;
    border: 1px solid rgba(44, 144, 61, 0.5);
}

.craftcms-formdiv button[type="button"]:before,
.craftcms-formdiv button[type="submit"]:before,
.craftcms-formdiv input[type="submit"]:before {
    background-color: #2c903d;
}

.craftcms-formdiv button[type="button"]:hover:before,
.craftcms-formdiv button[type="submit"]:hover:before,
.craftcms-formdiv input[type="submit"]:hover:before {
    background-color: #2c903d;
}

.craftcms-formdiv button[type="button"]:hover:after,
.craftcms-formdiv button[type="submit"]:hover:after,
.craftcms-formdiv input[type="submit"]:hover:after {
    background-image: url(../images/button-arrow-light-blue.png);
}


/* Event Calneder CSS */

.calendar-sliderdiv {
    width: calc(100% - 75px);
}

.calendar-sliderdiv.innerpage-slider .slick-slide:before {
    display: none;
}

.calendar-sliderdiv:before {
    position: absolute;
    top: 45px;
    left: 0px;
    content: "";
    height: calc(100% - 90px);
    width: calc(100% - 110px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    z-index: 1;
    pointer-events: none;
}

.calendar-sliderdiv.innerpage-slider,
.calendar-sliderdiv.innerpage-slider .sliderimg-div {
    height: 100vh;
}

.calender-date-wrapper {
    width: 50%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 75px;
    background-color: rgba(81, 28, 108, 0.85);
    backdrop-filter: blur(5px);
    padding-bottom: 130px;
    display: flex;
    align-items: flex-end;
}

.calevent-listwrap {
    width: calc(100% - 390px);
    float: right;
    padding-left: 65px;
}

.calevent-listrow {
    margin: 0 -20px;
}

.event-listview {
    width: 50%;
    padding: 0 20px;
    float: left;
}

.calevent-listwrap .event-listview .upevent-box {
    margin-bottom: 40px;
}

.calevent-listwrap .event-listview:nth-child(even) .upevent-box {
    box-shadow: -10px -10px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 210px 210px 0 0;
}

.calendar-wrapper {
    padding: 0;
    position: relative;
}

.calendar-div {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}

.custom-calendar-wrap {
    position: relative;
    height: 100%;
    padding: 7px;
}

.fc-calendar-container {
    height: auto;
    width: 100%;
}

.fc-calendar {
    border-top: none;
}

.fc-calendar .fc-row>div {
    border-right: none;
}

.fc-calendar .fc-row {
    border-bottom: none;
    height: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.fc-calendar .fc-body {
    border: none;
}

.fc-calendar .fc-head {
    height: auto;
    background: transparent;
}

.fc-calendar .fc-head>div {
    border: 1px solid transparent;
    padding: 4px;
    padding-bottom: 13%;
    width: -moz-calc(100%/7);
    width: -webkit-calc(100%/7);
    width: calc(100%/7);
    text-align: center;
    color: #fff;
}

.fc-calendar .fc-head>div>span.fc-week {
    width: 52px;
    height: 52px;
    color: #fff;
    text-shadow: none;
    position: absolute;
    bottom: auto;
    right: auto;
    top: 50%;
    left: 50%;
    margin: -26px 0 0 -26px;
    font-weight: 300;
    text-align: center;
    font-size: 18px;
    line-height: 48px;
}

.fc-calendar .fc-row>div>span.fc-date {
    color: #fff;
    width: 52px;
    height: 52px;
    text-shadow: none;
    bottom: auto;
    right: auto;
    top: 50%;
    left: 50%;
    margin: -26px 0 0 -26px;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    line-height: 48px;
    border: 1px solid transparent;
}

.fc-calendar .fc-row>div {
    cursor: pointer;
}

.fc-calendar .fc-row>div.fc-content>span.fc-date {
    border-color: #a47cce;
}

.fc-calendar .fc-row>div.fc-today {
    background: transparent;
    /* box-shadow: inset 0 0 0 1px #fff; */
}

.fc-calendar .fc-row>div.fc-today>span.fc-date {
    background: #2c903d;
    border-radius: 100%;
}

.fc-calendar .fc-row>div.fc-today.fc-content>span.fc-date {
    border-color: #2c903d;
}

.fc-calendar .fc-row>div {
    padding-bottom: 13%;
    width: -moz-calc(100%/7);
    width: -webkit-calc(100%/7);
    width: calc(100%/7);
}

.calendar-arrow {
    position: relative;
    left: 0;
    width: 50%;
    float: right;
    top: 0;
    text-align: right;
}

.calendar-arrow.arrow-cal-btm .prev-next-text {
    font-size: 15px;
    line-height: 26px;
    color: #000000;
    margin: 52px 0 52px 30px;
    display: inline-block;
}

.calendar-arrow .custom-prev,
.calendar-arrow .custom-next {
    opacity: 0.7;
    display: inline-block;
    position: relative;
    margin: 0 6px;
    cursor: pointer;
}

.calendar-year {
    margin: 0px;
    width: 50%;
    float: left;
}

.calendar-arrow-month {
    margin: 0px auto 110px;
    position: relative;
}

.calendar-arrow-month:after {
    clear: both;
    display: table;
    content: "";
}

.custom-month,
.custom-year {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
    display: inline-block;
}

.custom-month {}

.custom-year {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 19px;
}

.fc-calendar .content_wrap {
    position: absolute;
    display: none;
    background: #e1dfda;
    padding: 8px 12px;
    top: -40px;
    min-height: 40px;
    z-index: 1;
    left: 50%;
    min-width: 172px;
    margin-left: -86px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 12px;
    color: #2e2925;
    text-align: left;
}

.fc-calendar .content_wrap p {
    font-size: 10px;
    padding-left: 12px;
    position: relative;
    line-height: 12px;
    color: #2e2925;
    margin: 0;
    text-align: left;
}

.fc-calendar .content_wrap p:before {
    position: absolute;
    height: 4px;
    width: 4px;
    border-radius: 5px;
    background: #2e2925;
    content: "";
    top: 3px;
    left: 0;
}

.fc-calendar .fc-row>div.fc-content {
    overflow: inherit;
}

.fc-calendar .content_wrap:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    width: 0px;
    height: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #e1dfda;
}

.fc-calendar .fc-row>div.fc-content:hover .content_wrap {
    display: flex;
    flex-direction: column;
    align-content: baseline;
    justify-content: center;
}

.calendar-eventlistdiv {
    max-width: 1060px;
    margin: 0 auto;
}

.calendar-eventbox {
    padding: 34px 15px;
}

.calendar-eventbox .event-list-content h2 {
    margin: 10px 0;
}

.calendar-eventlistdiv .calendar-year,
.btm-yeararrowdiv .calendar-year {
    margin: 0px;
    width: 100%;
    float: none;
}

.calendar-eventlistdiv .custom-month,
.btm-yeararrowdiv .custom-month {
    color: #662f8e;
}

.calendar-eventlistdiv .custom-year,
.btm-yeararrowdiv .custom-year {
    color: #2e2925;
}

.calendar-eventlistdiv .calendar-arrow,
.btm-yeararrowdiv .calendar-arrow {
    margin-top: 10px;
    position: relative;
    left: 0;
    width: 100%;
    float: none;
    top: 0;
    text-align: right;
}

.btm-yeararrowdiv .calendar-arrow {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.calendar-eventlistdiv .calendar-yeararrowdiv {
    height: 100%;
    padding-right: 15px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.btm-yeararrowdiv {
    margin-top: 35px;
}

.calendar-arrow .custom-prev:before,
.calendar-arrow .custom-next:before {
    position: absolute;
    top: 0px;
    left: -1px;
    height: 38px;
    width: 38px;
    border: 1px solid #fff;
    content: "";
    border-radius: 50%;
}

.calendar-arrow .custom-prev:hover,
.calendar-arrow .custom-next:hover {
    opacity: 1;
}

.calendar-arrow .custom-prev svg,
.calendar-arrow .custom-next svg {
    position: relative;
}

.calendar-arrow .custom-prev:hover svg line,
.calendar-arrow .custom-next:hover svg line {
    stroke: #662f8e;
}

.calendar-arrow .custom-prev:hover svg polyline,
.calendar-arrow .custom-next:hover svg polyline {
    stroke: #662f8e;
}

.calendar-arrow .custom-prev:hover:before,
.calendar-arrow .custom-next:hover:before {
    background: #fff;
}

.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-prev:before,
.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-next:before {
    border: 1px solid #2e2925;
}

.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-prev:hover svg line,
.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-next:hover svg line {
    stroke: #fff;
}

.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-prev:hover svg polyline,
.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-next:hover svg polyline {
    stroke: #fff;
}

.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-prev:hover:before,
.calendar-eventlistdiv .calendar-yeararrowdiv .calendar-arrow .custom-next:hover:before {
    background: #2e2925;
}

.calendar-filterdiv {
    background: #e1dfda;
    padding: 20px 0;
}

.cal-filter-container {
    width: 80%;
    margin: 0 auto;
    padding: 0 30px;
}

.cal-filter-title {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #808080;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 50px;
    display: inline-block;
    vertical-align: middle;
}

.filterselect-box {
    position: relative;
    display: inline-block;
    min-width: 240px;
    background: #fff;
    border: 1px solid #b3b3b3;
}

.filterselect-box .filteroptions ul li {
    position: relative;
    padding: 0 15px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #2e2925;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    cursor: pointer;
}

.filterselect-box .filteroptions ul li.bundoora-li:before {
    height: 100%;
    width: 5px;
    background: #662f8e;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.filterselect-box .filteroptions ul li.preston-li:before {
    height: 100%;
    width: 5px;
    background: #a47cce;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.filterselect-box .filteroptions ul li.events-li:before {
    height: 100%;
    width: 5px;
    background: #2c903d;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.filterselect-box .filteroptions ul li.academic-li:before {
    height: 100%;
    width: 5px;
    background: #002447;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.filterselect-box .filteroptions ul li.excursions-li:before {
    height: 100%;
    width: 5px;
    background: #808080;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.filterselect-box .filteroptions ul li.apply-li {
    margin-top: 25px;
    margin-bottom: 0;
}

.filterselect-box .filteroptions ul li.apply-li a {
    color: #2c903d;
}

.filterselect-box .filteroptions ul {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    width: calc(100% + 2px);
    padding: 6px;
    border: 1px solid #b3b3b3;
    border-top: none;
    left: -1px;
    z-index: 1;
}

.filterselect-box .filteroptions ul.active {
    display: block;
}

.filterselect-box .filterselect-dropbox a {
    background-image: url(../images/slect-arrow.svg);
    padding: 3px 21px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 11px;
    display: block;
    background-color: #fff;
    color: #2e2925;
    font-weight: 300;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calcfilter-searchdiv {
    display: inline-block;
    margin-left: 60px;
}

.calcfilter-searchdiv .quick-search {
    margin-bottom: 0;
    position: relative;
    top: 2px;
}

.calcfilter-searchdiv .search-form {
    border: none;
    margin-left: 8px;
    color: #2e2925;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 1px;
    background: transparent;
}

.calcfilter-searchdiv input::-webkit-input-placeholder {
    color: #2e2925;
}

.calcfilter-searchdiv input::-moz-placeholder {
    color: #2e2925;
}

.calcfilter-searchdiv input:-ms-input-placeholder {
    color: #2e2925;
}

.calcfilter-searchdiv input:-moz-placeholder {
    color: #2e2925;
}

body.modal-open {
    overflow: hidden !important;
}

.modal-backdrop {
    background: #fff;
}

.modal-backdrop.show {
    opacity: .9;
}

.modal .close {
    opacity: 1;
    position: absolute;
    z-index: 1;
    font-weight: 600;
    right: 54px;
    top: 65px;
    color: #662f8e;
    font-size: 36px;
    background: transparent;
}

.modal .close svg {
    height: 20px;
}

.modal .modal-dialog {
    max-width: 900px;
}

.modal-dialog .modal-content {
    border-radius: 0;
    background: #fff;
    width: 100%;
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 0;
}

.reserve-place {
    background: #00488f;
    border-radius: 30px;
    padding: 11px 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.2px;
    margin: 50px 0 25px;
}

.reserve-place .red {
    color: #ddb307;
    float: right;
}

.event-info-modal {
    width: 100%;
}

.eventpopup .event-info-modal {
    padding: 50px 30px 30px;
    position: relative;
}

.eventpopup .event-info-modal:before {
    height: calc(100% - 80px);
    width: calc(100% - 60px);
    content: "";
    border: 1px solid rgba(102, 47, 142, 0.5);
    top: 50px;
    left: 30px;
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.eventpopup .event-info-modal .event-list-date {
    float: left;
    padding: 40px 68px 62px;
}

.eventpopup .event-info-modal .event-list-date:before {
    width: 300px;
    z-index: 0;
    height: 270px;
    top: -25px;
    left: -55px
}

.eventpopup .event-info-modal .event-list-date .event-day,
.eventpopup .event-info-modal .event-list-date .event-month {
    position: relative;
}

.event-info-modal .event-info-content {
    width: calc(100% - 132px);
    max-width: 575px;
    padding-left: 80px;
    float: left;
}

.cloack-pin-div .marker-p svg {
    width: 20px;
}

.cloack-pin-div {
    margin-bottom: 45px;
}

.cloack-pin-div .clock-p,
.cloack-pin-div .marker-p {
    width: 100%;
    float: none;
    font-weight: 400;
    line-height: 20px !important;
    margin-bottom: 0;
    position: relative;
}

.cloack-pin-div .clock-p {
    padding-left: 35px;
}

.cloack-pin-div .marker-p {
    padding-left: 35px;
    margin-top: 20px;
}

.cloack-pin-div .clock-p svg,
.cloack-pin-div .marker-p svg {
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0px;
    left: 0;
}

.eventpopup .event-list-content {
    float: left;
    width: calc(100% - 246px);
    text-align: left;
    padding: 80px 80px 70px 80px;
}

.eventpopup .event-list-content p {
    color: #2e2925;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

.eventpopup .event-list-content h2 {
    max-width: 220px;
    margin-bottom: 40px;
}

.eventpopup .calendar {
    padding-top: 25px;
}

.event-catagory-uline {
    position: absolute;
    bottom: 2px;
    width: 100%;
    text-align: center;
    left: 0;
}

.event-catagory-uline li {
    display: inline-block;
    margin: 0 5px;
}

.event-catagory-uline li.bundoora-bg span {
    height: 6px;
    width: 30px;
    background: #662f8e;
    display: block;
}

.event-catagory-uline li.preston-bg span {
    height: 6px;
    width: 30px;
    background: #a47cce;
    display: block;
}

.event-catagory-uline li.events-bg span {
    height: 6px;
    width: 30px;
    background: #2c903d;
    display: block;
}

.event-catagory-uline li.academic-bg span {
    height: 6px;
    width: 30px;
    background: #002447;
    display: block;
}

.event-catagory-uline li.excursions-bg span {
    height: 6px;
    width: 30px;
    background: #808080;
    display: block;
}


/* Footer CSS */

.site-footer {
    background-color: #e1dfda;
}

.leftpart-footer {
    width: 70%;
    float: left;
}

.logo-linkdiv {
    border-right: 1px solid #fff;
}

.footelogo-div {
    width: 25%;
    padding: 45px 0;
    text-align: center;
    float: left;
}

.footelogo-div a {
    display: inline-block;
}

.footerall-linkwrap {
    width: 75%;
    float: left;
}

.footer-content {
    width: 33.33%;
    float: left;
}

.footer-content h5 {
    font-size: 15px;
    margin-bottom: 25px;
    padding-left: 75px;
    padding-top: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    line-height: 1.2;
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-content ul {
    padding-left: 75px;
    line-height: initial;
}

.footer-content ul li {
    display: block;
    line-height: initial;
}

.footer-content ul li a {
    font-size: 13px;
    transition: all 0.2s;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 300;
    color: #000;
}

.footer-content ul li a:hover {
    font-weight: 700;
}

.rightpart-footer {
    float: left;
    width: 30%;
}

.rightpart-footer .footer-content {
    width: 100%;
    float: none;
}

.rightpart-footer .footer-content h5 {
    padding-left: 55px;
}

.footer-content p {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 300;
    color: #000;
}

.copyright-text {
    font-size: 11px;
    padding-top: 15px;
    line-height: 1.2;
    font-weight: 300;
    color: #000;
}

.copyright-text a {
    display: inline-block;
    position: relative;
    top: 1px;
    margin-left: 15px;
}

.copyright-text a:hover svg path,
.copyright-text a:hover svg polygon {
    fill: #2c903d
}

.rightpart-footercontent {
    padding-left: 55px;
    max-width: 500px;
}

.leftpart-greyline {
    background-color: #2e2925;
    display: flex;
    align-items: center;
}

.footer-icondiv {
    width: 25%;
    text-align: center;
}

.footer-icondiv a {
    display: inline-block;
}

.celebration-social-foot {
    width: 75%;
    display: flex;
    align-items: center;
}

.celebration-logodiv {
    width: 33.33%;
    padding-left: 75px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-left: 1px solid #fff;
}

.footer-getsocial {
    width: 66.67%;
}

.footer-getsocial p {
    /* margin: 0 145px 0 0; */
    margin: 0;
    width: 50%;
    padding-left: 75px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-getsocial p span {
    position: relative;
    display: inline-block;
}

.footer-getsocial p span:after {
    width: 130px;
    height: 1px;
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    background-color: #e1dfda;
    margin-left: 50px;
}

.footer-getsocial ul {
    width: 48%;
    padding-left: 75px;
    display: inline-block;
}

.footer-getsocial ul li {
    display: inline-block;
    line-height: normal;
    margin: 0 15px;
}

.footer-getsocial ul li:first-child {
    margin-left: 0px;
}

.footer-getsocial ul li a {
    display: inline-block;
    line-height: normal;
}

.footer-getsocial ul li a svg path {
    fill: #2c903d;
}

.footer-getsocial ul li a:hover svg path {
    fill: #a47cce;
}

.footelogo-div.tbl-logodiv {
    display: none !important;
}

.footer-mobileshow-div {
    display: none;
}

.menu-logo .navigation-close {
    display: none;
}


/* Module Page CSS */

.intro-module {
    background: #e1dfda;
    padding: 115px 0;
    position: relative;
}

.intro-module .container {
    max-width: 87.5%;
}

.intro-module:before {
    position: absolute;
    top: 35px;
    bottom: 35px;
    right: 0px;
    content: "";
    height: calc(100% - 70px);
    width: 93%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    border-right: none;
    z-index: 1;
    pointer-events: none;
}

.intro-content-wrap p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #662f8e;
}

.intro-content-wrap p:last-child {
    margin-bottom: 0;
}

.intro-content-wrap {
    max-width: 650px;
    position: relative;
    left: 13%;
}

.comman-accordion {
    position: relative;
    height: auto;
}

.accordion-container .comman-detaildiv {
    padding-top: 0px;
}

.accordion-box {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(153, 153, 153, 0.5);
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(0, 100px, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
}

.accordion-box.fade-element.do-fade {
    opacity: 1;
    transform: translateZ(0);
}

.accordion-box>a {
    font-family: 'Noto Sans KR', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.4;
    color: #662f8e;
    letter-spacing: 1px;
    padding: 24px 40px 24px 0;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
}

.accordion-box .content {
    position: relative;
    display: none;
}

.accordion-box .content:after {
    content: "";
    display: table;
    clear: both;
}

.accordion-sign {
    position: absolute;
    height: 32px;
    width: 32px;
    background: #2c903d;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -16px;
}

.accordion-sign .horizontal {
    position: absolute;
    background-color: #fff;
    width: 18px;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.accordion-sign .vertical {
    position: absolute;
    background-color: #fff;
    width: 18px;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accordion-sign .vertical:after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 1px;
    height: 18px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accordion-sign.opened .vertical {
    opacity: 0;
}

.accordion-sign.opened .horizontal {
    opacity: 1;
}

.accordion-box .table {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

.comman-detaildiv .accordion-box .content p {
    opacity: 1;
}

.imgDivider-module-section {
    padding: 130px 0;
    background: #662f8e;
    position: relative;
    margin: 35px 0;
}

.imgDivider-module-section .container {
    max-width: 87.5%;
}

.imgDivider-module-section:before {
    position: absolute;
    top: 35px;
    bottom: 35px;
    right: 0px;
    content: "";
    height: calc(100% - 70px);
    width: 93%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    z-index: 1;
    pointer-events: none;
}

.imgdivider-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imgdivider-bg:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    background: rgba(102, 47, 142, 0.85);
}

.paralaxScroll {
    background-attachment: fixed;
}

.imgDivider-module-section .imgDivider-content {
    max-width: 650px;
    float: left;
    width: 100%;
    position: relative;
    left: 13%;
}

.imgDivider-module-section .imgDivider-content:before {
    content: "";
    position: absolute;
    top: 3px;
    left: -15%;
    background-image: url(../images/quote-icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 18px;
}

.imgDivider-module-section .imgDivider-content:after {
    content: "";
    position: absolute;
    bottom: 2.4rem;
    right: -15%;
    background-image: url(../images/quote-icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 18px;
}

.imgDivider-container .imgDivider-title {
    color: #fff;
    font-size: 75px;
    line-height: 1;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5.5rem;
}

.imgDivider-content .imgDivider-title:last-child {
    margin-bottom: 0;
}

.imgDivider-content p {
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
}

.imgDivider-content .imgDivider-p-author p {
    text-transform: uppercase;
}

.imgDivider-module-section.rightside {}

.imgDivider-module-section.rightside:before {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.imgDivider-module-section.rightside .imgDivider-content {
    text-align: right;
    float: right;
    left: auto;
    right: 13%;
}

.imgDivider-module-section.imgDivider-green {
    background: #2c903d;
}

.imgDivider-module-section.imgDivider-imgonly {
    height: 450px;
    padding: 0;
}

.imgDivider-module-section.imgDivider-imgonly:before {
    display: none;
}

.imgDivider-module-section.imgDivider-imgonly .imgdivider-bg:before {
    display: none;
}

.pillar-module-section .pillar-content {
    min-height: 820px;
}

.pillar-module-section .pillar-content p {
    max-width: 780px;
    max-height: 156px;
    overflow: hidden;
}

.pillar-module-section .pillar-action {
    bottom: 30px;
    padding: 20px 40px 40px 120px;
}

.pillar-module-section .defult-btn {
    margin-top: 50px;
}


/* Image/Textbox Module */

.imagetext-module-section {
    max-width: 100%;
    margin: 30px auto;
    padding: 110px 30px 0;
    position: relative;
}

.imagetext-title-div {
    min-height: 840px;
    padding: 90px 100px;
    width: 52%;
    float: right;
    position: relative;
    z-index: 1;
    background: #fff;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(100px, 0, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
}

.imagetext-innerdiv {
    max-width: 732px;
    margin: 0 auto;
}

.imagetext-title-div h2 {
	font-size: 62px;
    line-height: 1.2em;
    letter-spacing: 0px;
    font-weight: 400;
    color: #2e2925;
    margin-bottom: 70px;
    max-width: 630px;
    /*padding-left: 65px;*/
}
.imagetext-title-div h2:not(.tk-hello-bloomie-script){
	font-weight:bold;
	text-transform:uppercase;
}
.imagetext-title-div h2 a {
    /* color: #2e2925; */
	color: #662F8E
}

.imagetext-title-div h3 {
    margin-bottom: 65px;
}

.imagetext-title-div h3 p {
    margin-bottom: 0;
    padding-left: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #662f8e;
}

.imagetext-title-div p {
   /* padding-left: 70px; */
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #606060;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
}

.imagetext-title-div p:last-child {
    margin-bottom: 0;
}

.imagetext-title-div .defult-btn {
    margin-top: 60px;
    /*margin-left: 70px;*/
}

.imagetextimg-div {
    width: calc(55% - 30px);
    padding: 0;
    min-height: 950px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    left: 0;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(-100px, 0, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
}

.imagetextimg-div:after {
    position: absolute;
    bottom: 50px;
    right: 10px;
    z-index: 3;
    content: "";
    height: 1px;
    width: 80%;
    background: rgba(102, 47, 142, 0.5);
    pointer-events: none;
}

.imagetext-module-section.rightside .imagetextimg-div {
    left: auto;
    right: 0;
}

.imagetext-module-section.rightside .imagetextimg-div {
    /* transform: translate3d(100px,0,0); */
}

.imagetext-module-section.rightside .imagetext-title-div {
    float: none;
    /* transform: translate3d(-100px,0,0); */
}

.imagetext-module-section.rightside .imagetextimg-div.aos-init.aos-animate,
.imagetext-module-section.rightside .imagetext-title-div.aos-init.aos-animate {
    transform: translateZ(0);
}


.imagetext-module-section.gerybgcolor .imagetext-title-div p {
    color: #2e2925;
}

.imagetext-module-section.gerybgcolor .imagetext-title-div {
    background: #e1dfda;
}

.imagetext-module-section.gerybgcolor .imagetext-title-div h3 p {
    color: #662f8e;
}

.imagetext-module-section.rightside .imagetext-title-div h2,
.imagetext-module-section.rightside .imagetext-title-div p {
    padding-left: 0;
    padding-right: 45px;
}

.imagetext-module-section.rightside .imagetext-title-div h3 p {
    padding: 0;
}

.imagetext-module-section.rightside .imagetext-title-div .defult-btn {
    margin-left: 0;
}

.imagetext-module-section.rightside .imagetextimg-div:after {
    right: auto;
    left: 10px;
}

.imagetextimg-div.fade-element.do-fade,
.imagetext-title-div.fade-element.do-fade {
    opacity: 1;
    transform: translateZ(0);
}


/* Video Module */

.video-module {
    margin: 35px 0;
}

.video-module .container {
    max-width: 87.5%;
}

.video-wrapdiv {
    position: relative;
    display: flex;
}

.video-outerdiv {
    /* max-width: 57%; */
    width: 57%;
    margin-bottom: 72px;
    overflow: hidden;
    /* position: absolute; */
    z-index: 1;
    height: 100%;
    display: block;
    left: 0;
    right: 0;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(-100px, 0, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
}

.video-divbox {
    position: relative;
    padding-bottom: 56.25%;
}

.video-divbox .youtube-background {
    background-size: 100% !important;
}

.video-divbox iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100% !important;
    width: 100% !important;
    transform: translateX(-50%) translateY(-50%);
}

.video-divbox .video-background-controls button i {
    display: none;
    position: relative;
    cursor: pointer;
    height: 170px;
    width: 170px;
    border: 1px solid #662f8e;
    border-radius: 100%;
    font-size: 22px;
    line-height: 92px;
    text-align: center;
    color: #FFFFFF;
    background: transparent;
    font-style: normal;
    font-size: 0;
    font-style: normal;
    margin: 0 auto;
}

.video-divbox .video-background-controls button i:before {
    content: "";
    width: 62px;
    height: 80px;
    background-image: url(../images/youtub-video-btn.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s 0s, visibility 0s .2s;
    -moz-transition: opacity .2s 0s, visibility 0s .2s;
    transition: opacity .2s 0s, visibility 0s .2s;
    opacity: 1;
    visibility: visible;
    opacity: 0.95;
}

.video-divbox .video-background-controls button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.video-divbox .video-background-controls {
    position: absolute;
    top: 50% !important;
    right: auto !important;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 170px;
    width: 170px;
    cursor: pointer;
    z-index: 0;
}

.video-divbox .video-background-controls button.paused i {
    display: block;
}

.video-divbox .video-background-controls button:hover {
    font-size: 0;
}

.video-divbox .video-background-controls button:hover i:before {
    opacity: 1;
    visibility: visible;
}

.video-module-content {
    background: #662f8e;
    width: 53%;
    padding: 65px;
    position: absolute;
    height: calc(100% - 72px);
    right: 0;
    top: 0;
    float: right;
    margin-top: 72px;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(100px, 0, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
    margin-left: auto;
}

.video-outerdiv.fade-element.do-fade,
.video-module-content.fade-element.do-fade {
    opacity: 1;
    transform: translateZ(0);
}

.video-module-content:before {
    position: absolute;
    content: "";
    top: 65px;
    left: 0px;
    z-index: 1;
    height: 1px;
    width: calc(100% - 65px);
    background: #fff;
    opacity: 0.4;
}

.video-module-contentinner {
    padding-right: 40px;
    padding-left: 165px;
}

.video-module-content p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 90px;
}

.video-module-content .defult-btn {
    margin-top: 25px;
}

.video-module-content p,
.video-module-content .defult-btn {
    /* margin-left: 165px; */
}

.vimeo-videodiv {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.vimeo-videodiv .video-background-controls {
    pointer-events: none;
}

.photogallery-module {
    padding: 75px 30px 0;
    margin: 35px 0 70px;
    position: relative;
}

.photogallery-module:before {
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 30px;
    content: "";
    height: calc(100% - 40px);
    width: 91.3%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    z-index: 1;
    pointer-events: none;
}

.photogallery-module:after {
    position: absolute;
    right: 30px;
    top: 0;
    width: 55%;
    background: #e1dfda;
    content: "";
    height: calc(100% - 35px);
    z-index: -1;
}

.photogallery-slider {
    position: relative;
    padding-left: 100px;
}

.photogallery-slider .slider-image.with-caption {
    padding-bottom: 100px;
}

.photogallery-slider .photogallery-imgdiv {
    position: relative;
    padding-bottom: 66.66%;
    margin: 0px;
}

.photogallery-slider .photogallery-imgdiv img,
.photogallery-slider .photogallery-imgdiv .photogallery-imgpic {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
}

.photogallery-slider .photogallery-imgdiv p {
    padding: 25px 0px 15px 20px;
    max-width: 360px !important;
    text-align: left;
    position: absolute;
    left: 60px;
    bottom: -100px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    line-height: 20px;
    color: #2e2925;
}

.photogallery-slider .photogallery-imgdiv p:before {
    position: absolute;
    content: "";
    top: -60px;
    left: 0px;
    height: calc(100% + 60px);
    width: 1px;
    background: #2c903d;
}

.photogallery-slider .photogallery-imgdiv p:after {
    position: absolute;
    top: -20px;
    left: 0px;
    content: "";
    height: calc(100% + 20px);
    width: calc(100% + 68%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    border-bottom: none;
    z-index: 1;
    pointer-events: none;
}

.photogallery-slider .slider-image.slick-current.slick-active .photogallery-imgdiv p {
    visibility: visible !important;
    opacity: 1;
}

.photogallery-slider .slick-list {
    width: 56%;
    position: relative;
    z-index: 1;
}

.photogallery-slider .slider-image img {
    max-width: 100%;
}

.photogallery-slider .slick-slide:focus {
    outline: 0;
}

.photogallery-slider .slick-arrow.slick-prev,
.photogallery-slider .slick-arrow.slick-next {
    position: absolute;
    left: calc(60% + 40px);
    bottom: 30%;
    border: 1px solid #2c903d;
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    background: transparent;
    cursor: pointer;
    font-size: 0;
    vertical-align: middle;
}

.photogallery-slider .slick-arrow.slick-prev:hover,
.photogallery-slider .slick-arrow.slick-next:hover {
    background: #2c903d;
}

.photogallery-slider .slick-arrow.slick-next {
    bottom: calc(30% - 50px);
}

.photogallery-slider .slick-arrow.slick-prev:after {
    content: "";
    background-image: url(../images/button-arrow-green.png);
    position: relative;
    top: -2px;
    background-repeat: no-repeat;
    height: 36px;
    width: 36px;
    background-size: 18px;
    background-position: center;
    display: inline-block;
}

.photogallery-slider .slick-arrow.slick-next:after {
    content: "";
    background-image: url(../images/button-arrow-green.png);
    position: relative;
    top: 0px;
    background-repeat: no-repeat;
    height: 36px;
    width: 36px;
    background-size: 18px;
    background-position: center;
    display: inline-block;
    transform: rotate(180deg);
}

.photogallery-slider .slick-arrow.slick-prev:hover:after,
.photogallery-slider .slick-arrow.slick-next:hover:after {
    background-image: url(../images/button-arrow-white.png);
}

.photogallery-thumb {
    position: absolute;
    z-index: 1;
    top: 55px;
    left: calc(56% + 45px);
    width: calc(44% + 45px);
    display: flex;
    padding-left: 65px;
}

.photogallery-thumb .custom-next-button,
.photogallery-thumb .custom-next-next-button {
    border: none;
    background: transparent;
    width: auto;
    float: left;
}

.photogallery-thumb .custom-next-button {
    margin-right: 30px;
}

.photogallery-thumb .custom-next,
.photogallery-thumb .custom-next-next {
    position: relative;
}

.photogallery-thumb .custom-next img,
.photogallery-thumb .custom-next-next img {
    width: auto;
    object-fit: cover;
    height: 315px;
}

.accordion-module-wrapper {
    padding-top: 0px;
    padding-bottom: 15px;
}

.accordion-module-wrapper .comman-detaildiv {
    padding-top: 0;
    padding-bottom: 0;
}


/* Module Page CSS End */


/* Newsletter Page CSS */

.enrol-book-prospectus.newsletter-floating-sidebar {
    position: fixed;
    width: 75px;
    transition: all 0.3s;
    z-index: 2;
    padding: 20px 0;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv {
    width: 80px;
    margin-top: -87px !important;
    left: 0;
    padding: 0 10px;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv li {
    position: relative;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv li:before {
    position: absolute;
    height: 15px;
    width: 1px;
    background: #fff;
    content: "";
    left: 50%;
    margin-left: -1px;
    bottom: 0;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv li a span {
    order: inherit;
    margin: 0 auto;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: block;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv li a {
    padding: 37px 0 !important;
}

.enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv li a.also-in-edition {
    padding: 25px 0 !important;
}

.enrol-book-prospectus.newsletter-floating-sidebar .stickylogo-div {
    opacity: 1;
    visibility: visible;
}

.enrol-book-prospectus.newsletter-floating-sidebar .phone-quiklink-div {
    margin-top: 30px;
}

.previous-edition-wrapper {}

.previous-edition-div {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.prevedition-boxdiv {
    position: relative;
    overflow: hidden;
    padding-bottom: 96%;
    height: auto;
    background: #2c903d;
}

.prevedition-boxdiv:before {
    content: "";
    background-image: url(../images/navigation-bg-logo.svg);
    position: absolute;
    top: -105px;
    left: 0px;
    background-repeat: no-repeat;
    height: 548px;
    width: 507px;
    background-size: cover;
}

.prevedition-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.prevedition-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(81, 28, 108, 0.8); */
    background: #511C6C;
    mix-blend-mode: multiply;
    opacity: 0.93;
}

.prevedition-content {
    position: absolute;
    padding: 35px 35px 45px 45px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.prevedition-content p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
}

.prevedition-content h3 {
    font-size: 44px;
    transition: all 0.4s ease;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0px;
    color: #662f8e;
}

.prevedition-content span {
    transition: all 0.4s ease;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    padding-bottom: 4px;
    color: #fff;
    position: relative;
}

.prevedition-content span:before {
    transition: all 0.4s ease;
    content: "";
    background: #fff;
    height: 1px;
    width: 43px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.prevedition-dateno {
    padding: 35px 35px 25px 0;
    margin-bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.previous-edition-div {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.prevedition-boxdiv:hover .prevedition-bg,
.prevedition-boxdiv.active .prevedition-bg {
    opacity: 1;
    visibility: visible;
}

.prevedition-boxdiv:hover .prevedition-content h3,
.prevedition-boxdiv.active .prevedition-content h3 {
    color: #a47cce;
}

.prevedition-boxdiv:hover .prevedition-content span,
.prevedition-boxdiv.active .prevedition-content span {
    color: #2c903d;
}

.prevedition-boxdiv:hover .prevedition-content span:before,
.prevedition-boxdiv.active .prevedition-content span:before {
    background: #2c903d;
}

.previous-edition-col {
    padding-top: 15px;
    padding-bottom: 15px;
}

.newsletter-articel-banner {
    border-right: 1px solid #fff;
    position: relative;
    width: calc(100% - 75px);
}

.newsletter-articel-banner:before {
    position: absolute;
    top: 50px;
    bottom: 90px;
    left: 0px;
    content: "";
    height: calc(100% - 140px);
    width: 95%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    border-left: none;
    z-index: 1;
    pointer-events: none;
}

.newsletter-articel-banner .innerpage-slider {
    width: 62%;
    float: left;
}

.newsletter-articel-banner .newsletter-articel-title {
    width: 38%;
    height: 90vh;
    display: flex;
    align-items: center;
    float: left;
    background: #e1dfda;
}

.articel-title-inner {
    margin-left: 55px;
    max-width: 632px;
    width: 100%;
}

.articel-title {
    color: #662f8e;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 60px;
}

.newsletter-articel-banner:after {
    clear: both;
    content: "";
    display: table;
}

.newsletter-articel-banner .author-picdiv .author-img {
    margin-top: 25px;
}

.author-picdiv {
    padding-top: 30px;
    position: relative;
}

.author-picdiv:after {
    content: "";
    position: absolute;
    top: 0px;
    left: -115px;
    height: 1px;
    width: 210px;
    background: rgba(102, 47, 102, 0.5);
}

.author-picdiv .author-img {
    height: 130px;
    width: 130px;
    margin-top: 30px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.author-picdiv .author-text,
.author-picdiv .author-cat,
.author-picdiv .author-coatsub {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.54px;
    position: relative;
    color: #2e2925;
    margin-bottom: 10px;
}

.author-picdiv .author-text {
    margin-bottom: 10px;
    font-weight: 700;
}

.author-picdiv .author-text strong {
    font-weight: 900;
}

.author-picdiv .author-cat {}

.author-picdiv .author-coatsub {
    margin-bottom: 0;
}

.twofeature-secrtion {
    padding: 35px 15px;
    position: relative;
}

.twofeature-eventbox {
    height: 360px;
    position: relative;
}

.twofeature-eventbox .overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.2s ease;
}

.twofeature-eventbox .overlay-bg:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 55%;
    background: #511C6C;
    mix-blend-mode: multiply;
    min-height: 266px;
    opacity: 0.93;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.twofeature-eventbox .feaure-texttitle {
    position: absolute;
    z-index: 1;
    transform: translateY(-50%);
    width: 55%;
    padding: 35px 80px 45px 90px;
    top: 50%;
    left: -30px;
    overflow: hidden;
    /* background: rgba(81, 28, 108, 0.85); background-blend-mode: multiply; -webkit-backdrop-filter: blur(5px);  backdrop-filter: blur(5px); */
    min-height: 266px;
}

.twofeature-eventbox .feaure-texttitle p {
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-left: 45px;
}

.twofeature-eventbox .feaure-texttitle p:before {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: -92%;
    height: 1px;
    width: 100%;
    content: "";
    background: #fff;
}

.twofeature-border {
    padding: 25px 35px 35px 0;
    min-height: 145px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.twofeature-eventbox .feaure-texttitle span {
    font-size: 18px;
    margin-top: 10px;
    display: block;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
}

.twofeature-eventbox .feaure-texttitle h2 {
    font-size: 44px;
    transition: all 0.4s ease;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0px;
    color: #a47cce;
}

.twofeature-eventbox.right .feaure-texttitle {
    left: auto;
    right: -30px;
    padding: 35px 90px 45px 80px;
}

.twofeature-eventbox.right .feaure-texttitle p {
    text-align: right;
    padding-left: 0;
    padding-right: 45px;
}

.twofeature-eventbox.right .feaure-texttitle p:before {
    left: auto;
    right: -92%;
}

.twofeature-eventbox.right .twofeature-border {
    padding: 25px 0px 35px 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: none;
}

.twofeature-eventbox.right .feaure-texttitle h2 {
    text-align: right;
    margin: 15px 0;
}

.twofeature-eventbox.right .overlay-bg:before {
    left: auto;
    right: -30px;
}

.also-this-section {
    position: fixed;
    right: -71%;
    z-index: 99;
    top: 3vh;
    background: rgba(81, 28, 108, 1);
    height: 94vh;
    height: calc((var(--vh, 1vh) * 94));
    width: 70%;
    transition: all 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.also-this-sectioninner {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 130px 110px;
    display: flex;
    align-items: center;
}

.also-this-sectioninner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(81, 28, 108, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.also-this-section.active {
    right: 0;
}

.also-this-centerdiv {
    width: 100%;
}

.also-this-section .also-title {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 65px;
    font-weight: 300;
}

.also-this-section .also-title small {
    margin-bottom: 0px;
    padding-left: 30px;
    letter-spacing: 1px;
    line-height: 1.2;
    display: block;
    font-size: 18px;
    font-weight: 300;
    position: relative;
}

.also-this-section .also-title small:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    opacity: 0.7;
    left: -98.5%;
    height: 1px;
    width: 100%;
    background: #fff;
    opacity: 0.7;
}

.also-bantl-inner {
    margin-bottom: 75px;
    padding: 35px 35px 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.also-bantl-inner span {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
}

.also-bantl-inner h2 {
    font-size: 44px;
    transition: all 0.4s ease;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0px;
    color: #a47cce;
}

.also-back-edition a {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.also-back-edition a .backedition-icon-span {
    height: 50px;
    vertical-align: middle;
    width: 50px;
    margin-right: 12px;
    border-radius: 50%;
    text-align: center;
    background: #a47cce;
    display: inline-block;
}

.also-back-edition a .backedition-icon-span svg {
    height: 22px;
    margin: 14px 0;
}

.also-back-edition a .backedition-icon-span svg path {
    fill: #fff;
}

.also-back-edition a span {
    display: inline-block;
    vertical-align: middle;
}

.also-back-edition a:hover {
    color: #2c903d;
}

.also-back-edition a:hover .backedition-icon-span {
    background: #2c903d;
}

.also-back-edition a:hover .backedition-icon-span svg path {
    fill: #fff;
}

.alsotiledi-hlf {
    width: 40%;
    float: left;
    padding-right: 60px;
    position: relative;
}

.alsotiledi-hlf:before {
    content: "";
    /* width: 1px; background: #a47cce;  top: 0; right: 0; height: 100%; position: absolute; */
}

.alsoedition-listdiv {
    position: relative;
}

.also-close {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    padding: 7px;
    right: 25px;
    top: 35px;
    height: 40px;
    width: 40px;
    border-radius: 2px;
    font-weight: 700;
    color: #662f8e;
    text-align: center;
    font-size: 28px;
    line-height: 1;
    background: #fff;
}

.also-neewslist {
    width: 60%;
    float: left;
    padding-left: 110px;
}

.also-this-section ul {
    overflow: auto;
    height: calc(94vh - 396px);
}

.also-this-section ul li {
    margin-bottom: 20px;
    display: block;
}

.also-this-section ul li a {
    display: block;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    transition: all 0.2s;
}

.also-this-section ul li:hover a,
.also-this-section ul li.active a {
    color: #a47cce;
}

.alsonav-fixed {
    overflow: hidden;
}

.alsonav-fixed:after {
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 9;
}

.newsletter-articelist-banner {
    border-right: none;
    width: 100%;
}

.newsletter-articel-banner .innerpage-slider .slick-slide:before,
.newsletter-previousedi-banner .innerpage-slider .slick-slide:before {
    display: none;
}

.newsletter-articelist-banner.newsletter-articel-banner:before {
    display: none;
}

.newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider {
    height: 100vh;
    width: 100%;
    float: none;
}

.newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div {
    height: 100vh;
}

.newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 460px;
    background: #662F8E;
    mix-blend-mode: multiply;
    opacity: 0.87;
}

.newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
    width: 460px;
    padding: 120px 40px 40px 70px;
    height: 100vh;
    display: block;
    align-items: inherit;
    float: none;
    background: transparent;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    /* background: rgba(81, 28, 108, 0.85); background-blend-mode: multiply; -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); */
}

.parade-newstitle {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 65px;
    font-weight: 700;
}

.parade-newstitle small {
    margin-bottom: 0px;
    padding-left: 40px;
    letter-spacing: 1.5px;
    line-height: 1.2;
    display: block;
    font-size: 18px;
    font-weight: 300;
    position: relative;
}

.parade-newstitle small:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    opacity: 0.7;
    left: -92.5%;
    height: 1px;
    width: 100%;
    background: #fff;
    opacity: 0.7;
}

.newsletter-articel-title .twofeature-border {
    margin-bottom: 75px;
    padding: 25px 35px 35px 70px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    margin-left: -70px;
}

.newsletter-articel-title .twofeature-border span {
    font-size: 18px;
    margin-top: 10px;
    display: block;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
}

.newsletter-articel-title .twofeature-border h2 {
    font-size: 44px;
    transition: all 0.4s ease;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0px;
    color: #fff;
}

.newsletterlist-issues {
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: 70px;
}

.inthis-edititle {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 300;
}

.inthis-edititle small {
    margin-bottom: 0px;
    letter-spacing: 1px;
    line-height: 1.2;
    display: block;
    font-size: 18px;
    font-weight: 300;
    position: relative;
}

.newsletterlist-issues ul li {
    display: block;
    position: relative;
}

.newsletterlist-issues ul li:after {
    position: absolute;
    bottom: 0px;
    width: 70px;
    background: #938897;
    height: 1px;
    left: 0;
    content: "";
}

.newsletterlist-issues ul li a {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    padding: 16px 0;
    color: #a47cce;
    letter-spacing: 1px;
    font-weight: 300;
    transition: all 0.2s ease;
}

.newsletterlist-issues ul li:last-child:after {
    display: none;
}

.newsletterlist-issues ul li a:hover {
    color: #fff;
}

.newsletterlist-titles-inner {
    max-width: 1610px;
    margin: 0 auto 70px;
}

.newsletterlist-tiles {
    margin: 0px -24px;
    height: auto !important;
}

.newsletterlist-tiles .tiles-grid-item {
    position: relative !important;
    padding: 24px;
    width: 25%;
}

.newsletterlist-tiles .tiles-boxdiv {
    height: auto;
    padding-top: 100%;
    cursor: pointer;
    position: relative;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.newsletterlist-tiles .tiles-image {
    display: flex;
    height: 100%;
    width: 100%;
    background-size: cover;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.newsletterlist-tiles .tiles-boxdiv:hover .tiles-image {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.newsletterlist-tiles .tiles-content {
    position: absolute;
    bottom: 0px;
    right: unset;
    width: 100%;
    padding: 20px 15px;
    left: 0;
    max-height: 88px;
    color: #fff;
    background: rgba(81, 28, 108, 1);
    transition: all 0.2s ease-in-out;
    background-blend-mode: multiply;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.newsletterlist-tiles .tiles-grid-item.green-bg .tiles-content {
    background: #2c903d;
}

.newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-content {
    background: #002447;
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-content {
    background: #e1dfda;
}

.newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-content {
    background: #A47CCE;
}

.newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-content {
    background: #662F8E;
}

.newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .tiles-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-height: 44px;
    letter-spacing: 0.54px;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
}
.newsletterlist-tiles .tiles-grid-item .tiles-boxdiv p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    margin-top: 0px;
    width: 100%;
    margin-bottom: 20px;
    height: 48px;
    overflow: hidden;
}

.newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .new-btn {
    font-size: 15px;
    line-height: 28px;
    display: block;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .new-btn:after {
    content: '';
    position: relative;
    height: 1px;
    background: #fff;
    width: 35px;
    opacity: 0.7;
    display: block;
    transition: all 0.2s;
}

.newsletterlist-tiles .tiles-boxdiv:hover .tiles-content {
    transition: all 0.4s ease-in-out;
    max-height: 100%;
}

.newsletterlist-tiles .tiles-grid-item.green-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(44, 144, 61, 0.8);
}

.newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(0, 36, 71, 0.8);
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(225, 223, 218, 0.8);
}

.newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(164, 124, 206, 0.80);
}

.newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(102, 47, 142, 0.80);
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv .tiles-title {
    color: #662f8e
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv p{
    color: #2e2925;
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv .new-btn {
    color: #2f9045;
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}

.newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-boxdiv .new-btn {
    color: #2f9045;
}

.newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}


.newsletterlist-wrapper {
    margin: 50px 0 100px;
}
.newsletterlist-wrapper .container{
    max-width: 1405px;
}
.feature-newsletterlist {
    margin-bottom: 30px;
    position: relative;
    max-width: 1490px;
}

.feature-newsletterlist:after {
    content: "";
    clear: both;
    display: table;
}


.featuretitles-itemlarg {
    position: relative;
}

.featuretitles-itemlarg:after {
    content: "";
    position: absolute;
    bottom: -90px;
    right: -53px;
    background-image: url(../images/navigation-bg-logo.svg);
    background-repeat: no-repeat;
    height: 398px;
    width: 296px;
    background-size: contain;
}
.featuretitles-itemlarg .tiles-image {
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featuretitles-itemlarg .featuretitlesl-contemt {
    background: #e1dfda;
    position: relative;
    float: left;
    padding: 55px 55px 85px;
}
.feature-widebox.gray .featuretitlesl-contemt{
    background: #e1dfda
}
.feature-widebox.lightPurple .featuretitlesl-contemt{
    background: #A47CCE;
}
.feature-widebox.blue .featuretitlesl-contemt{
    background: #002447;
}
.feature-widebox.green .featuretitlesl-contemt{
    background: #2C903D;
}
.feature-widebox.purple .featuretitlesl-contemt{
    background: #511C6C;
}
.feature-widebox.lightPurple .featuretitlesl-contemt *,.feature-widebox.purple .featuretitlesl-contemt *,
.feature-widebox.green .featuretitlesl-contemt *,.feature-widebox.blue .featuretitlesl-contemt *{
    color: #fff;
}
.feature-widebox.lightPurple .featuretitles-itemlarg .featuretitlesl-contemt a:after,
.feature-widebox.green .featuretitles-itemlarg .featuretitlesl-contemt a:after,
.feature-widebox.purple .featuretitles-itemlarg .featuretitlesl-contemt a:after{
    background: #fff;
}
.feature-widebox.blue .featuretitlesl-contemt a{
    color: #2C903D;
}
.featuretitles-itemlarg .featuretitlesl-contemt h3 {
    font-size: 32px;
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #662f8e;
}

.featuretitles-itemlarg .featuretitlesl-contemt p {
    color: #2e2925;
    font-size: 14px;
    line-height: 143.403%;
    letter-spacing: 0.48px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 495px;
}

.featuretitles-itemlarg .featuretitlesl-contemt a {
    text-transform: uppercase;
    position: relative;
    color: #2c903d;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1.12px;
    padding-bottom: 3px;
    transition: all 02s;
}

.featuretitles-itemlarg .featuretitlesl-contemt a:after {
    content: "";
    transition: all 02s;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 1px;
    background: #2c903d;
}

.featuretitles-itemlarg .featuretitlesl-contemt a:hover {
    color: #662f8e;
}

.featuretitles-itemlarg .featuretitlesl-contemt a:hover:after {
    background: #662f8e;
}

.feature-newsletterlist .feature-smallbox {
    width: 25%;
    float: left;
    padding: 0 15px;
}

.feature-smallbox .tiles-boxdiv {
    height: 720px;
    padding: 0px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.feature-smallbox .tiles-image {
    display: flex;
    height: 100%;
    width: 100%;
    background-size: cover;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.feature-smallbox .tiles-content {
    position: absolute;
    bottom: 0px;
    max-width: 340px;
    right: unset;
    width: 95%;
    padding: 20px 30px;
    left: 0;
    max-height: 90px;
    color: #fff;
    background: rgba(81, 28, 108, 1);
    transition: all 0.2s ease-in-out;
    background-blend-mode: multiply;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.feature-smallbox .tiles-boxdiv .tiles-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
    min-height: 50px;
    font-size: 18px;
    line-height: 24px
}

.feature-smallbox .tiles-boxdiv p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    margin-top: 0px;
    width: 100%;
    margin-bottom: 20px;
    height: 48px;
    overflow: hidden;
}

.feature-smallbox .tiles-boxdiv .new-btn {
    font-size: 13px;
    line-height: 20px;
    display: block;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0px;
    transition: all 0.2s;
}

.feature-smallbox .tiles-boxdiv .new-btn:after {
    content: '';
    position: relative;
    height: 1px;
    background: #fff;
    width: 35px;
    opacity: 0.7;
    display: block;
    transition: all 0.2s;
}

.feature-smallbox .tiles-boxdiv:hover .tiles-content {
    transition: all 0.4s ease-in-out;
    max-height: 100%;
}

.feature-smallbox .tiles-grid-item.green-bg .tiles-content {
    background: rgba(44, 144, 61, 1);
}

.feature-smallbox .tiles-grid-item.blue-bg .tiles-content {
    background: rgba(0, 36, 71, 1);
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-content {
    background: rgba(225, 223, 218, 1);
}

.feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-content {
    background: rgba(164, 124, 206, 1);
}

.feature-smallbox .tiles-grid-item.darkpurpel-bg .tiles-content {
    background: rgba(81, 28, 108, 1);
}

.feature-smallbox .tiles-grid-item.green-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(44, 144, 61, 0.8);
}

.feature-smallbox .tiles-grid-item.blue-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(0, 36, 71, 0.8);
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(225, 223, 218, 0.8);
}

.feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(164, 124, 206, 0.8);
}

.feature-smallbox .tiles-grid-item.darkpurpel-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(81, 28, 108, 0.8);
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv .tiles-title {
    color: #662f8e
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv p,
.feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-boxdiv p {
    color: #2e2925;
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv .new-btn {
    color: #2f9045;
}

.feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}

.feature-smallbox .tiles-grid-item.blue-bg .tiles-boxdiv .new-btn {
    color: #2f9045;
}

.feature-smallbox .tiles-grid-item.blue-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}

.feature-smallbox .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .new-btn {
    color: #2f9045
}

.feature-smallbox .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}

.feature-smallbox .tiles-grid-item.green-bg .tiles-boxdiv .new-btn {
    color: #67308c;
}

.feature-smallbox .tiles-grid-item.green-bg .tiles-boxdiv .new-btn:after {
    background: #67308c;
}

.feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .new-btn {
    color: #67308c
}

.feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .new-btn:after {
    background: #67308c;
}

.articel-arrowdiv .right-arrow {
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
    position: fixed;
    top: 37%;
    margin-top: -18px;
    right: 18px;
    background-repeat: no-repeat;
    height: 36px;
    width: 36px;
    background-size: 18px;
    background-position: center;
    display: inline-block;
    border-radius: 50%;
}

.articel-arrowdiv .left-arrow {
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
    position: fixed;
    top: 37%;
    margin-top: -18px;
    background-repeat: no-repeat;
    height: 36px;
    width: 36px;
    background-size: 18px;
    background-position: center;
    display: inline-block;
    transform: rotate(180deg);
    border-radius: 50%;
    left: 18px;
}


/* Newsletter Page CSS End */


/* Directory List Page CSS */

.directorypage-wrapper {}

.directorypage-wrapper .craftcms-formdiv {
    max-width: 1170px;
    margin: 0 auto;
}

.craftcms-formdiv label {
    display: none;
}

.craftcms-formdiv .form-control {
    border: 1px solid rgba(102, 47, 141, 0.5);
    letter-spacing: 0.2px;
    line-height: 20px;
    color: #808082;
    border-radius: 0;
    font-size: 14px;
    padding: 10px 15px;
    background: #fff;
}

.craftcms-formdiv .form-control::-webkit-input-placeholder {
    color: #808082;
}

.craftcms-formdiv .form-control::-moz-placeholder {
    color: #808082;
}

.craftcms-formdiv .form-control:-ms-input-placeholder {
    color: #808082;
}

.craftcms-formdiv .form-control:-moz-placeholder {
    color: #808082;
}

.craftcms-formdiv select.form-control {
    height: 42px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/select-arrow-icon.svg) no-repeat right 15px center;
}

.craftcms-formdiv select.form-control option {
    color: #808082;
}

.directory-form {
    margin: 0 -15px;
}

.directory-form .form-group {
    padding: 0 15px;
    position: relative;
    width: 33.33%;
    float: left;
}

.directory-form .form-group.searchicon:before {
    content: "";
    position: absolute;
    background: url(../images/search-icon.svg) no-repeat;
    height: 18px;
    width: 16px;
    top: 50%;
    margin-top: -9px;
    right: 30px;
}

.directory-form .form-group.serach-btn {
    width: 100%;
    text-align: center;
}

.directory-form .defult-btn {
    padding: 19px 30px 19px 60px;
    margin-top: 15px;
    min-width: 230px;
}

.directory-form .defult-btn:after {
    right: auto;
    left: 30px;
}

.directory-list-wrap {
    margin: 50px 0 100px;
    position: relative;
}

.directory-listinner {
    max-width: 1490px;
    margin: 0 auto;
}

.directory-listbox {
    position: relative;
    margin: 50px 0;
    display: flex;
}

.directory-listbox .directory-content {
    width: calc(69% - 10px);
    margin-right: 10px;
    position: relative;
}

.directory-listbox .directory-content:after {
    clear: both;
    display: table;
    content: "";
}

.directory-listbox .directory-content:before {
    position: absolute;
    top: 0;
    right: 0;
    background: #e0ded9;
    height: 100%;
    width: 88%;
    content: "";
}

.directory-listbox .directory-info {
    padding: 40px 35px 30px;
}

.directory-titlediv {
    position: relative;
    padding-bottom: 20px;
}

.directory-titlediv:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    opacity: 0.5;
    height: 1px;
    width: 55%;
    background: #fff;
}

.directory-catlist {
    padding-top: 15px;
    margin-bottom: 20px;
    position: relative;
}

.directory-catlist li {
    font-size: 16px;
    display: inline-block;
    line-height: 1.2;
    font-weight: 300;
    color: #2c8e3d;
}

.directory-catlist li+li:before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #2c8e3d;
    content: "|";
}

.directory-listbox .directory-bgdiv {
    width: 450px;
    float: left;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    position: relative;
    margin-top: 30px;
}

.directory-listbox .directory-bgdivinner {
    padding-bottom: 56.25%;
    background: #fff;
    position: relative;
}

.directory-listbox .directory-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.directory-info {
    width: calc(100% - 450px);
    float: left;
    position: relative;
}

.directory-info h3 {
    color: #511c6c;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 28px;
    line-height: 1;
}

.directory-info h3 a {
    color: #511c6c;
}

.directory-titlediv p {
    color: #2e2925;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.directory-telmail {
    background: #e0ded9;
    width: 31%;
    padding: 45px 25px;
}

.directory-telmail ul {
    margin-bottom: 25px;
}

.directory-telmail ul li {
    font-size: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
}

.directory-telmail ul li strong {
    font-weight: 500;
    min-width: 20px;
    display: inline-block;
}

.directory-telmail ul li a {
    color: #000;
    word-break: break-all;
}

.directory-address {
    font-size: 20px;
    letter-spacing: 0.7px;
    margin-bottom: 0px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
}

.directory-text {
    margin-bottom: 25px;
}

.directory-text p {
    color: #000;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 0;
}

.directory-info .defult-btn {
    padding: 19px 30px 19px 90px;
    min-width: 240px;
}

.directory-info .defult-btn:after {
    right: auto;
    left: 30px;
}

.directory-mapcontact {
    background-color: #511c6c;
    display: flex;
}

.directory-contactinfo {
    position: relative;
    width: 50%;
    padding: 70px 0;
}

.directory-contactinfo:before {
    content: "";
    position: absolute;
    top: 20px;
    opacity: 0.5;
    background: #fff;
    height: 1px;
    left: 0;
    width: 100%;
}

.directory-contactinfo:after {
    content: "";
    position: absolute;
    bottom: 20px;
    opacity: 0.5;
    background: #fff;
    height: 1px;
    left: 0;
    width: 100%;
}

.directory-textinfo {
    max-width: 400px;
    margin: 0 auto;
}

.directory-textinfo p {
    font-weight: 300;
    letter-spacing: 0.7px;
}

.directory-textinfo h3 {
    font-weight: 300;
    line-height: 1.2;
    color: #2c903d;
    font-size: 28px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 45px;
    margin-left: -60px;
    letter-spacing: 1px;
}

.directory-textinfo h3:before {
    width: 45px;
    height: 1px;
    background: #2c903d;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0px;
}

.directory-textinfo .directory-telmail {
    background: transparent;
    width: 100%;
    padding: 0;
}

.directory-textinfo .directory-telmail ul {
    margin-bottom: 0px;
}

.directory-textinfo .directory-telmail ul li,
.directory-textinfo .directory-telmail ul li a,
.directory-textinfo .directory-address {
    color: #fff;
}

.directorymapdiv {
    position: relative;
    width: 50%;
}

.directorymapdiv iframe {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
}

.directory-listbox.directory-detailpage {
    /*width: calc(100% - 75px);*/
    width: 100%;
    margin: 0;
    background: #e0ded9;
}

.directory-listbox.directory-detailpage .directory-content:before {
    display: none;
}

.directory-listbox.directory-detailpage .directory-bgdiv {
    position: relative;
    height: 100%;
    width: 43%;
    box-shadow: none;
    margin-top: 0;
}

.directory-detailpage .directory-info {
    width: 57%;
    position: relative;
}

.directory-detailpage .directory-info:before {
    position: absolute;
    top: 65px;
    bottom: 65px;
    left: 0px;
    content: "";
    height: calc(100% - 130px);
    width: 88%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    border-left: none;
    z-index: 1;
    pointer-events: none;
}

.directory-detailpage.directory-listbox .directory-info {
    padding: 130px 160px;
}

.directory-detailpage .directory-titlediv:before {
    display: none;
}

.directory-listbox.directory-detailpage .directory-content {
    width: 100%;
}

.directory-detailpage .directory-titlediv {
    padding-bottom: 5px;
}

.directory-detailpage .directory-info h3 {
    letter-spacing: 0;
    margin: 0;
    font-size: 70px;
}

.directory-detailpage .directory-catlist li {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.directory-detailpage .directory-catlist {
    margin-bottom: 90px;
}

.directory-detailpage .directory-info .sharebtn.defult-btn:after {
    display: none;
}

.directory-detailpage .directory-info .sharebtn.defult-btn {
    margin-left: 30px;
    padding: 13px 20px 13px 20px;
    min-width: inherit;
    vertical-align: top;
    min-height: 64px;
}

.directory-detailpage .directory-info .sharebtn.defult-btn svg {
    position: relative;
    top: 3px;
}

.directory-detailpage .directory-info .sharebtn.defult-btn:hover svg path {
    fill: #fff;
}

.directory-detailpage.directory-listbox .directory-bgdivinner {
    padding-bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.directory-goback {
    background: #2e2925;
    position: relative;
    padding: 22px 0;
}

.directory-goback .defult-btn {
    margin-left: 18%;
    padding: 19px 30px 19px 90px;
    min-width: 240px;
}

.directory-goback .defult-btn:after {
    transform: rotate(180deg);
    right: auto;
    left: 30px;
}
.phone-quiklink-div .cart-li a {
    position: relative;
}
.snipcart-items-count {
    position: absolute;
    right: -8px;
    top: -14px;
    background-color: #023770;
    color: #fff;
    font-size: 10px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    border-radius: 100%;
}

/* Directory List Page CSS End */
/* .grecaptcha-badge{z-index: 9;} */
.home-video-divbox .video-background-controls button i{background-size: contain;}
.fancybox-active{overflow: hidden;}

/* Showcase Slider css start  */
.showcase-sec {
    margin: 100px 0;
}
.showcase-sec .section-header{
    padding-left: 30px;
    margin-bottom: 40px;
}
.showcase-sec .section-header h2{
    font-weight: 300;
    color: #773B83;
    font-size: 42px;
    line-height: 1;
}
.showcase-sec .section-header h2 strong{
    color: #2C903D;
    font-size: 52px;
    font-weight: 700;
}
.showcase-sec .container,.welcome-section .container {
    max-width: 1830px;
    padding-left: 100px;
    padding-right: 100px;
}
.showcase-sec .slick-slide{
    padding: 0 15px;
}
.showcase-sec .showcase-block .img-wrapper {
    position: relative;
    padding-top: 100%;
}
.showcase-sec .showcase-block .img-wrapper img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.4s;
}
.showcase-sec .showcase-block:hover .img-wrapper img{
    transform: scale(1.15);
}
.showcase-sec .showcase-slider{
    margin-right: calc(-100vw / 2 + 1520px / 2);
    padding-bottom: 60px;
}
.showcase-sec .showcase-block {
    position: relative;
    overflow: hidden;
}
.showcase-sec .showcase-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    min-height: 68px;
    display: flex;
    align-items: center;
}
.showcase-sec .bg-layer {
    background: rgba(102, 47, 142, 0.87);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.showcase-sec .showcase-content .showcase-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.showcase-sec .slick-list {
    margin: 0 -15px;
    padding-right: 300px;
}
.showcase-slider .slick-arrow {
    bottom: 0;
    top: auto;
    left: 30px;
    z-index: 1;
}
.showcase-slider .slick-arrow.slick-next{
    margin-left: 55px;
}
/* Showcase Slider css end  */

/* reader view css start  */
.readerview-principle {
    background: #E1DFDA;
    margin-top: 50px;
}
.readerview-principle .img-wrapper{
    position: relative;
    padding-top: 50%;
    height: 100%;
}
.readerview-principle .img-wrapper .readerview-principle-img{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.readerview-principle .col-left{
    width: 52%;
}
.readerview-principle .newsletter-articel-title {
    width: 48%;
    background-image: url(../images/navigation-bg-logo.svg);
    background-repeat: no-repeat;
    background-position: 106% center;
    background-size: 245px;
    padding: 80px 30px 80px 55px;
}
.readerview-principle.purple {
    background: #511C6C;
}
.readerview-principle.green {
    background: #2C903D;
}
.readerview-principle.blue {
    background: #002447;
}
.readerview-principle.lightPurple {
    background: #A47CCE;
}
.readerview-principle.green .articel-title-inner *,
.readerview-principle.blue .articel-title-inner *,
.readerview-principle.purple .articel-title-inner *,
.readerview-principle.lightPurple .articel-title-inner *{
    color: #fff;
}
.readerview-principle:not(.grey) .author-picdiv:after{
    background-color: #fff;
}
.readerview-principle .articel-title-inner>:last-child {
    margin-bottom: 0;
}
/* reader view css end  */

/* Media Query CSS */

@media (min-width: 768px) {
    .drop-down:hover>ul {
        visibility: visible;
        opacity: 1;
    }
    .drop-down ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        display: block !important;
    }
    .phone-quiklink-div ul li.serach-mobile {
        display: none;
    }
    .header-stickylogo-div {
        display: none;
    }
    .mobilequicklink-div {
        display: none;
    }
    .is-active .nav-quicklink-boxdiv:before {
        transform: scaleY(1) translateZ(0);
    }
    .is-active .nav-quicklink-list ul li:first-child div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) .8s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(2) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) .9s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(3) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(4) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.1s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(5) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.2s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(6) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.3s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(7) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.4s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(8) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.5s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(9) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.6s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(10) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.7s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(11) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.8s;
    }
    .is-active .nav-quicklink-list ul li:nth-child(12) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.9s;
    }
    .is-active .nav-quicklink-list ul li div {
        /* transition: transform .9s cubic-bezier(.165,.84,.44,1) .8s; */
        transform: translateY(0) translateZ(0);
    }
    .phone-quiklink-div ul li.quick-li {
        display: none;
    }
}
@media (min-width: 1200px){
    /* .custom-fancybox .fancybox-slide--video .fancybox-content{
        height: 100% !important;
        width: 100% !important;
    } */
}
@media (max-width: 4000px) and (min-width: 2801px) {
    .pageloader-logodiv img {
        height: 260px;
    }
    .pageloader-bgcolordiv:before {
        width: 437px;
        height: 478px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -70px;
        right: -150px;
        height: 720px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -100px;
        right: -230px;
        height: 125%;
    }
    .stickylogo-div {
        bottom: 55px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 160px;
    }
    .enrol-book-prospectus.ebp-sticky {
        padding: 35px 0;
    }
    .pillar-image-sec {
        min-height: 1200px;
    }
    .pillar-action {
        bottom: 210px;
    }
    .nav-searchbar {
        padding: 90px 0 25px 140px;
        margin-bottom: 120px;
    }
    .quicklink-innerdiv {
        padding-top: 146px;
    }
    .nav-link-div ul>li>a {
        font-size: 56px;
    }
    .drop-down ul li a {
        font-size: 20px;
    }
    .nav-link-div {
        max-width: 530px;
    }
    .drop-down ul {
        max-width: 550px;
    }
    .navigation-logodiv img {
        width: 120%;
        max-width: 120%;
    }
    .navigation-logodiv {
        bottom: -25px;
        left: -30px;
    }
    .nav-quicklink-title {
        font-size: 22px;
        padding-top: 30px;
    }
    .nav-quicklink-list ul li a {
        min-height: 55px;
        font-size: 15px;
        line-height: 18px;
    }
    .nav-quicklink-list ul li a svg {
        height: 34px;
        width: 34px;
    }
    .nav-quicklink-list ul li:first-child a svg {
        height: 38px;
        width: 38px;
    }
    .nav-quicklink-list ul li {
        margin: 38px 0;
    }
    .nav-social-list li a svg {
        height: 22px;
        width: 22px;
    }
    .twofeature-eventbox {
        height: 410px;
    }
    .twofeature-eventbox .feaure-texttitle {
        padding: 55px 130px 55px 110px;
    }
    .twofeature-eventbox.right .feaure-texttitle {
        padding: 55px 110px 55px 130px;
    }
    .twofeature-eventbox .feaure-texttitle p {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .twofeature-eventbox .feaure-texttitle h2 {
        font-size: 48px;
    }
    .twofeature-eventbox .feaure-texttitle span {
        font-size: 20px;
        margin-top: 15px;
    }
    .twofeature-eventbox .feaure-texttitle p:before {
        left: -94%;
    }
    .twofeature-eventbox .overlay-bg:before {
        min-height: 317px;
    }
    .twofeature-eventbox.right .feaure-texttitle p:before {
        right: -94%;
    }
    .twofeature-eventbox.right .feaure-texttitle h2 {
        margin: 19px 0;
    }
}

@media (max-width: 2800px) and (min-width: 2121px) {
    .pageloader-logodiv img {
        height: 260px;
    }
    .pageloader-bgcolordiv:before {
        width: 437px;
        height: 478px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -70px;
        right: -150px;
        height: 122%;
    }
    .stickylogo-div {
        bottom: 45px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 150px;
    }
    .enrol-book-prospectus.ebp-sticky {
        padding: 30px 0;
    }
    .pillar-image-sec {
        min-height: 1200px;
    }
    .pillar-action {
        bottom: 210px;
    }
    .nav-searchbar {
        padding: 90px 0 25px 140px;
        margin-bottom: 120px;
    }
    .quicklink-innerdiv {
        padding-top: 146px;
    }
    .nav-link-div ul>li>a {
        font-size: 56px;
    }
    .drop-down ul li a {
        font-size: 20px;
    }
    .nav-link-div {
        max-width: 530px;
    }
    .drop-down ul {
        max-width: 550px;
    }
    .navigation-logodiv img {
        width: 120%;
        max-width: 120%;
    }
    .navigation-logodiv {
        bottom: -25px;
        left: -30px;
    }
    .nav-quicklink-title {
        font-size: 22px;
        padding-top: 30px;
    }
    .nav-quicklink-list ul li a {
        min-height: 55px;
        font-size: 15px;
        line-height: 18px;
    }
    .nav-quicklink-list ul li a svg {
        height: 34px;
        width: 34px;
    }
    .nav-quicklink-list ul li:first-child a svg {
        height: 38px;
        width: 38px;
    }
    .nav-quicklink-list ul li {
        margin: 33px 0;
    }
    .nav-social-list li a svg {
        height: 22px;
        width: 22px;
    }
    .footer-getsocial p span:after {
        width: 180px;
        margin-left: 85px;
    }
    .imagetext-title-div {
        padding: 110px 150px;
    }
    .imagetext-module-section {
        padding: 130px 30px 0;
    }
    .imagetext-title-div h2,
    .imagetext-title-div p {
        padding-left: 90px;
    }
    .intro-content-wrap,
    .imgDivider-module-section .imgDivider-content {
        left: 10%;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 10%;
    }
    .photogallery-thumb .custom-next img,
    .photogallery-thumb .custom-next-next img {
        height: 400px;
    }
    .photogallery-imgdiv p:after {
        width: calc(100% + 150%);
    }
    .photogallery-thumb {
        top: 120px;
    }
    .pillar-section.pillar-module-section .pillar-image-sec {
        min-height: 940px;
    }
    .video-module-content p {
        margin-top: 140px;
        font-size: 24px;
        line-height: 1.5;
    }
    .video-module-contentinner {
        padding-right: 85px;
        padding-left: 300px;
    }
    .video-module-content .defult-btn {
        margin-top: 90px;
    }
    .video-module-content {
        padding: 85px 65px;
    }
    .video-module-content:before {
        top: 85px;
    }
    .twofeature-eventbox {
        height: 410px;
    }
    .twofeature-eventbox .feaure-texttitle {
        padding: 55px 130px 55px 110px;
    }
    .twofeature-eventbox.right .feaure-texttitle {
        padding: 55px 110px 55px 130px;
    }
    .twofeature-eventbox .feaure-texttitle p {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .twofeature-eventbox .feaure-texttitle h2 {
        font-size: 48px;
    }
    .twofeature-eventbox .feaure-texttitle span {
        font-size: 20px;
        margin-top: 15px;
    }
    .twofeature-eventbox .feaure-texttitle p:before {
        left: -94%;
    }
    .twofeature-eventbox .overlay-bg:before {
        min-height: 317px;
    }
    .twofeature-eventbox.right .feaure-texttitle p:before {
        right: -94%;
    }
    .twofeature-eventbox.right .feaure-texttitle h2 {
        margin: 19px 0;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 90px 50px;
        width: 34%;
    }
    .feature-newsletterlist .feature-smallbox {
        padding: 0 30px;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 800px;
    }
}
@media (max-width: 2560px) {
    .videohome-slider.slick-slider .slick-list{
        padding-right: 330px;
    }
}
@media (max-width: 1920px) {
    .videohome-slider.slick-slider .slick-list{
        padding-right: 410px;
    }
}
@media (max-width: 1750px) {
    .showcase-sec .slick-list{
        padding-right: 210px;
    }
    .showcase-sec .showcase-slider{
        margin-right: calc(-100vw / 2 + 1330px / 2);
    }
}
@media (max-width: 1680px) {
    .defult-btn {
        padding: 27px 40px;
        min-width: 310px;
    }
    .defult-btn:after {
        right: 40px;
    }
    .site-header .logo-div {
        margin: 0px auto;
    }
    .enrol-book-prospectus {
        padding: 20px 0;
    }
    .phone-quiklink-div {
        margin-top: 30px;
    }
    .purpel-menudiv li a {
        padding: 20px 0;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv li a svg {
        display: none;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv li a span {
        margin: 0 auto;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv li a {
        padding: 23px 0;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv {
        margin-top: -190px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 100px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv ul li {
        margin-bottom: 15px;
    }
    .home-slider .slider-title {
        font-size: 40px;
    }
    .quicklink-title {
        padding: 20px 20px 20px 0;
    }
    .quicklink-title-lg {
        width: calc(100% - 30px);
    }
    .quicklink-title-lg {
        font-size: 40px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -40px;
        right: -90px;
        height: 400px;
    }
    .quicklink-title-lg .arrow-btn {
        top: 1px;
        height: 30px;
        width: 30px;
    }
    .pillar-content {
        padding: 65px 120px 100px;
        max-width: 850px;
        min-height: 580px;
    }
    .pillar-slidernav-wrap {
        max-width: 850px;
    }
    .pillar-title {
        margin-bottom: 35px;
        font-size: 64px;
    }
    .our-pillartitle {
        margin-bottom: 40px;
    }
    .pillar-action {
        bottom: 60px;
        max-width: 875px;
        padding: 25px 20px 50px 105px;
    }
    .pillar-image-sec {
        min-height: 750px;
    }
    .pillar-action a {
        font-size: 16px;
        margin: 15px 15px;
    }
    .welcome-text .defult-btn {
        margin-top: 20px;
    }
    .event-list-content {
        padding: 35px 30px;
    }
    .event-list-content h2,.event-list-content p {
        margin-bottom: 30px;
    }
    .upevent-box .defult-btn {
        min-width: 270px;
        margin-left: -23px;
        padding: 27px 40px 27px 70px;
    }
    .calendar-btn .defult-btn {
        padding: 19px 40px;
    }
    .calendar-btn {
        margin-top: 128px;
    }
    .upcoming-event-section {
        padding: 50px 0;
    }
    .twilight-content {
        max-width: 780px;
        padding: 80px 120px 110px;
    }
    .twilight-title {
        margin-bottom: 40px;
        max-width: 470px;
    }
    .twilight-content .defult-btn {
        margin-top: 30px;
    }
    .twilight-image-sec {
        padding: 90px 0;
    }
    .twilight-section:after {
        width: 980px;
        bottom: 150px;
    }
    .rightpart-footercontent {
        padding-left: 40px;
        padding-right: 15px;
    }
    .rightpart-footer .footer-content h5 {
        padding-left: 40px;
    }
    .footer-content h5,
    .footer-content ul {
        padding-left: 40px;
    }
    .pageloader-logodiv img {
        height: 160px;
    }
    .pageloader-bgcolordiv:before {
        width: 367px;
        background-size: 100%;
        height: 365px;
    }
    .quicklink-innerdiv {
        padding-top: 80px;
    }
    .navigation-close {
        top: 20px;
        right: 20px;
    }
    .nav-searchbar {
        padding: 34px 0 15px 100px;
        margin-bottom: 80px;
    }
    .nav-quicklink-title {
        margin-bottom: 20px;
    }
    .nav-social-boxdiv .nav-quicklink-title {
        margin-bottom: 30px;
    }
    .nav-quicklink-list ul li {
        margin: 15px 0;
    }
    .navigation-content-wrap {
        padding: 0 30px 0 105px;
    }
    .nav-link-div {
        max-width: 380px;
    }
    .nav-link-div ul>li>a {
        font-size: 42px;
    }
    .drop-down ul {
        padding-left: 50px;
    }
    .drop-down ul li a {
        font-size: 16px;
    }
    .navigation-logodiv img {
        max-width: 80%;
    }
    .alert-notification-div {
        padding: 15px 30px;
    }
    .notification-alert {
        font-size: 30px;
        margin-right: 70px;
    }
    .notification-bell {
        margin-right: 30px;
    }
    .notification-infoicon {
        right: 25px;
    }
    .notification-p {
        max-width: 630px;
        margin-right: 0;
    }
    .celebration-logodiv,
    .footer-getsocial p,
    .footer-getsocial ul {
        padding-left: 40px;
    }
    .footer-getsocial p span:after {
        width: 100px;
        margin-left: 35px;
    }
    .calendar-sliderdiv:before {
        top: 35px;
        height: calc(100% - 70px);
        width: calc(100% - 80px);
    }
    .calendar-arrow-month {
        margin: 0px auto 70px;
    }
    .calender-date-wrapper {
        padding-bottom: 90px;
    }
    .calender-date-wrapper {
        width: 48%;
    }
    .intro-module {
        padding: 100px 0;
    }
    .intro-content-wrap,
    .imgDivider-module-section .imgDivider-content {
        left: 10%;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 10%;
    }
    .imagetext-title-div {
        min-height: 790px;
        padding: 70px 75px;
    }
    .imagetext-title-div h2 {
        font-size: 66px;
        margin-bottom: 40px;
    }
    .imagetext-title-div h3 {
        margin-bottom: 40px;
    }
    .imagetextimg-div {
        min-height: 880px;
    }
    .imagetext-title-div .defult-btn {
        margin-top: 40px;
    }
    .imagetext-module-section {
        padding: 90px 30px 0;
    }
    .video-module-contentinner {
        padding-right: 0px;
        padding-left: 125px;
    }
    .video-module-content p {
        font-size: 18px;
    }
    .video-module-content {
        padding: 50px;
    }
    .video-module-content:before {
        top: 50px;
    }
    .video-module-content p {
        margin-top: 70px;
    }
    .photogallery-module:before {
        width: 91%;
    }
    .photogallery-slider {
        padding-left: 75px;
    }
    .photogallery-thumb .custom-next img,
    .photogallery-thumb .custom-next-next img {
        height: 230px;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        left: calc(61% + 40px);
        bottom: 35%;
    }
    .photogallery-slider .slick-arrow.slick-next {
        bottom: calc(35% - 50px);
    }
    .photogallery-slider .photogallery-imgdiv p:after {
        width: calc(100% + 27.5%);
    }
    .photogallery-thumb {
        top: 45px;
    }
    .imgDivider-module-section .imgDivider-content:after {
        right: -13%;
    }
    .imgDivider-module-section .imgDivider-content:before {
        left: -13%;
    }
    .imgDivider-module-section {
        padding: 110px 0;
    }
    .imgDivider-module-section.imgDivider-imgonly {
        height: 380px;
    }
    .pillar-module-section .pillar-content {
        padding: 65px 70px 100px 110px;
        min-height: 665px;
    }
    .pillar-module-section .pillar-action {
        padding: 20px 40px 40px 95px;
    }
    .pillar-module-section .defult-btn {
        margin-top: 30px;
    }
    .pillar-module-section .pillar-content p {
        max-width: 780px;
        max-height: 132px;
        overflow: hidden;
        font-size: 16px;
        letter-spacing: 1px;
    }
    .pillar-module-section .pillar-image-sec {
        min-height: 775px;
    }
    .pillar-module-section .defult-btn {
        margin-top: 10px;
    }
    .newsletter-articel-banner:before {
        top: 40px;
        bottom: 60px;
        left: 0px;
        height: calc(100% - 100px);
        width: 96%;
    }
    .articel-title-inner {
        margin-left: 50px;
        max-width: 410px;
    }
    .articel-title {
        margin-bottom: 50px;
    }
    .twofeature-eventbox .feaure-texttitle {
        width: 62%;
        padding: 35px 70px 45px 80px;
    }
    .twofeature-eventbox .overlay-bg:before {
        width: 62%
    }
    .twofeature-eventbox.right .feaure-texttitle {
        padding: 35px 80px 45px 70px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
        padding: 90px 40px 20px 60px;
    }
    .newsletterlist-issues {
        left: 60px;
        bottom: 30px;
    }
    .parade-newstitle {
        font-size: 66px;
        margin-bottom: 25px;
    }
    .newsletter-articel-title .twofeature-border {
        margin-bottom: 25px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 70px 35px;
    }
    .feature-newsletterlist .feature-smallbox {
        width: 27%;
    }
    .articel-arrowdiv .left-arrow,
    .articel-arrowdiv .right-arrow {
        top: 33%;
    }
    .newsletterlist-titles-inner {
        max-width: 1280px;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 620px;
    }
    .directory-listinner {
        max-width: 1280px;
    }
    .directory-listbox .directory-content {
        width: calc(75% - 10px);
    }
    .directory-telmail {
        width: 25%;
    }
    .directory-listbox .directory-bgdiv {
        width: 400px;
    }
    .directory-info {
        width: calc(100% - 400px);
    }
    .directory-listbox .directory-bgdivinner {
        padding-bottom: 66.66%;
    }
    .directory-telmail ul li,
    .directory-text p,
    .directory-address {
        font-size: 18px;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 100px 120px 100px 80px;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 60px;
    }
    .directory-detailpage .directory-info:before {
        top: 50px;
        bottom: 50px;
        height: calc(100% - 100px);
    }
    .directory-detailpage .directory-catlist {
        margin-bottom: 70px;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 205px;
    }
    .campus-block .campus-btn:not(:first-child){
        margin-left: 40px;
    }
}
@media (max-width: 1560px) {
    .campus-block .campus-btn {
        width: 300px;
    }
    .showcase-sec .slick-list {
        padding-right: 140px;
    }
    .showcase-sec .showcase-slider {
        margin-right: -100px;
    }
    .readerview-principle .img-wrapper{
        padding-top: 70%;
    }
}
@media (max-width: 1440px) {
    .home-slider .slider-title {
        font-size: 36px;
    }
    .home-slider .slider-content{
        width: 600px;
    }
    .campus-block{
        left: 600px;
        width: calc(100% - 690px);
    }
    .rightpart-footercontent {
        padding-left: 25px;
        padding-right: 14px;
    }
    .footer-content h5,
    .footer-content ul,
    .rightpart-footer .footer-content h5 {
        padding-left: 25px;
    }
    .celebration-logodiv,
    .footer-getsocial p,
    .footer-getsocial ul {
        padding-left: 25px;
    }
    .footer-getsocial p span:after {
        width: 100px;
        margin-left: 30px;
    }
    .photogallery-slider .photogallery-imgdiv p:after {
        width: calc(100% + 16%);
    }
    .video-module-content p {
        font-size: 16px;
        margin-top: 60px;
    }
    .video-module-content{
        height: calc(100% - 60px);
    }
    .video-outerdiv{
        margin-bottom: 60px;
    }
    .video-module-contentinner {
        padding-left: 120px;
    }
    .imagetext-title-div {
        padding: 65px;
    }
    .imagetext-title-div h2 {
        font-size: 62px;
    }
    .video-module-content {
        margin-top: 60px;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        left: calc(61% + 45px);
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        width: 37%;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 600px;
    }
    .twofeature-eventbox {
        height: 340px;
    }
    .custom-fancybox .fancybox-stage {
        height: calc(100% - 210px);
        margin: 140px 140px 70px;
    }
    .custom-fancybox .fancybox-button.fancybox-button--close{
        right: 90px;
    }
    .custom-fancybox::before{
        height: 300px;
        width: 300px;
    }
    .home-slider .video-box .video-wrapper iframe{
        width: 122%;
    }
    .title-rotate{
        height: 345px;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 0;
    }
    .newsletterlist-tiles .tiles-grid-item{
        padding: 15px;
    }
    .newsletterlist-tiles{
        margin: 0px -15px;
    }
    .newsletterlist-wrapper {
        margin: 50px 0 80px;
    }
}
@media (max-height: 1180px) and (max-width: 1199px){
    .home-slider .video-box .video-wrapper iframe{
        width: 287%;
    }
}
@media (max-width: 1366px) and (max-height: 660px){
    .parade-newstitle{
        font-size: 44px;
    }
    .newsletter-articel-title .twofeature-border h2{
        font-size: 32px;
    }
}
@media (max-width: 1366px) {
    .defult-btn {
        padding: 22px 30px;
        min-width: 280px;
    }
    .defult-btn:after {
        right: 30px;
    }
    .site-header .logo-div {
        margin: 0px auto;
    }
    .purpel-menudiv {
        margin-top: -130px;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv {
        margin-top: -158px;
    }
    .social-linkdiv {
        bottom: 50px;
    }
    .purpel-menudiv li a {
        padding: 15px 0;
        font-size: 14px;
    }
    .purpel-menudiv {
        padding: 10px 15px;
    }
    .enrol-book-prospectus,
    .enrol-book-prospectus.ebp-sticky {
        padding: 15px 0;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv li a {
        padding: 15px 0;
    }
    .enrol-book-prospectus.ebp-sticky .phone-quiklink-div {
        margin-top: 20px;
    }
    .enrol-book-prospectus.ebp-sticky .stickylogo-div {
        bottom: 10px;
    }
    .stickylogo-div img {
        max-width: 50px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 78px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv ul li {
        margin-bottom: 12px;
    }
    .home-quicklink {
        padding: 0 10px;
        margin: 25px 0
    }
    .home-quicklink .row {
        margin: 0 -10px;
    }
    .home-quicklink .row .quiklink-col {
        padding: 0 10px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -40px;
        right: -75px;
        height: 354px;
    }
    .quicklink-title {
        padding: 17px 20px 17px 0;
    }
    .quicklink-title-lg {
        padding: 12px 15px;
        font-size: 36px;
        width: calc(100% - 20px);
    }
    .quicklink-title-lg .arrow-btn {
        top: 2px;
        margin-left: 8px;
        height: 26px;
        width: 26px;
        background-size: 12px;
    }
    .pillar-section,
    .twilight-section {
        padding: 0 10px;
    }
    .pillar-slidernav-wrap {
        margin-left: -25px;
    }
    .pillar-title {
        margin-bottom: 30px;
        max-width: 520px;
        font-size: 54px;
    }
    .pillar-content {
        padding: 60px 100px 90px 90px;
        max-width: 730px;
        min-height: 520px;
    }
    .pillar-slidernav-wrap {
        max-width: 730px;
    }
    .our-pillartitle {
        margin-bottom: 35px;
    }
    .pillar-image-sec {
        min-height: 670px;
    }
    .pillar-action a {
        font-size: 14px;
        margin: 15px 15px;
    }
    .pillar-action {
        bottom: 51px;
        margin-left: -25px;
        max-width: 753px;
        padding: 20px 20px 40px 75px;
    }
    .pillar-content p,
    .welcome-text p,
    .twilight-content p {
        font-size: 16px;
    }
    .welcome-title {
        margin-bottom: 30px;
    }
    .welcome-text{
        padding-left: 30px;
    }
    .welcome-section {
        padding: 40px 0 30px;
    }
    .upevent-box .defult-btn {
        min-width: 290px;
        padding: 22px 30px 22px 70px;
    }
    .event-list-date {
        padding: 31px 30px 45px;
    }
    .event-list-date:before {
        height: 242px;
    }
    .calendar-btn .defult-btn {
        padding: 14px 35px;
    }
    .calendar-btn {
        margin-top: 165px;
    }
    .welcome-section {
        margin: 35px 0 50px;
    }
    .twilight-section {
        margin: 35px 0 35px;
    }
    .twilight-title {
        margin-bottom: 30px;
        max-width: 400px;
    }
    .twilight-content {
        max-width: 680px;
        padding: 70px 100px 90px;
    }
    .twilight-content {
        margin-left: -25px;
    }
    .twilight-content .defult-btn {
        margin-top: 15px;
    }
    .twilight-section:after {
        width: 860px;
        bottom: 130px;
    }
    .twilight-image-sec {
        padding: 75px 0;
    }
    .welcome-text .defult-btn {
        margin-top: 15px;
    }
    .footer-content p {
        margin-bottom: 15px;
    }
    .pageloader-logodiv img {
        height: 140px;
    }
    .pageloader-bgcolordiv:before {
        width: 347px;
        bottom: 20px;
        background-size: 100%;
        height: 345px;
    }
    .copyright-text {
        padding-top: 10px;
    }
    .nav-link-div {
        max-width: 335px;
    }
    .nav-link-div ul>li>a {
        font-size: 36px;
    }
    .drop-down ul li a {
        font-size: 16px;
    }
    .drop-down ul {
        padding-left: 50px;
        padding-top: 5px;
    }
    .nav-searchbar {
        padding: 24px 0 15px 80px;
        margin-bottom: 60px;
    }
    .navigation-content-wrap {
        padding: 0 30px 0 85px;
    }
    .navigation-logodiv img {
        max-width: 64%;
    }
    .nav-quicklink-list {
        width: 75%;
    }
    .nav-quicklink-list ul li {
        margin: 8px 0;
    }
    .navigation-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        padding: 8px;
    }
    .quicklink-innerdiv {
        padding-top: 70px;
    }
    .nav-social-boxdiv .quicklink-innerdiv {
        padding-top: 50px;
    }
    .nav-quicklink-title {
        margin-bottom: 10px;
    }
    .nav-social-boxdiv .nav-quicklink-title {
        margin-bottom: 20px;
    }
    .nav-social-list {
        margin-left: 100px;
    }
    .innerpage-slider .slider-content {
        bottom: 60px;
        left: 100px
    }
    .innerpage-slider .slider-title {
        font-size: 60px;
    }
    .innerpage-slider .subtile-div:before {
        width: 120px;
        left: -100px;
    }
    .alert-notification-div {
        padding: 10px 20px;
    }
    .notification-alert {
        font-size: 24px;
        margin-right: 50px;
    }
    .notification-bell {
        margin-right: 25px;
    }
    .notification-infoicon {
        right: 20px;
    }
    .notification-p {
        max-width: 600px;
        font-size: 15px;
        margin-right: 0;
    }
    .footer-getsocial p span:after {
        width: 90px;
        margin-left: 25px;
    }
    .calendar-div {
        max-width: 400px;
    }
    .calendar-arrow-month {
        margin: 0px auto 40px;
    }
    .calendar-sliderdiv:before {
        top: 30px;
        height: calc(100% - 60px);
        width: calc(100% - 70px);
    }
    .calender-date-wrapper {
        padding-bottom: 70px;
    }
    .calendar-div {
        max-width: 380px;
    }
    .custom-calendar-wrap {
        left: -15px;
    }
    .fc-calendar .fc-head>div>span.fc-week,
    .fc-calendar .fc-row>div>span.fc-date {
        margin: -23px 0 0 -23px;
        width: 46px;
        line-height: 44px;
        height: 46px;
    }
    .cal-filter-container {
        width: 95%;
    }
    .eventpopup .event-list-content {
        padding: 50px 50px 40px 50px;
    }
    .cloack-pin-div,
    .eventpopup .event-list-content h2 {
        margin-bottom: 30px;
    }
    .eventpopup .calendar {
        padding-top: 15px;
    }
    .video-module .container,
    .imgDivider-module-section .container,
    .intro-module .container {
        max-width: 90%;
    }
    .intro-module:before {
        top: 30px;
        bottom: 30px;
        height: calc(100% - 60px);
        width: 94%;
    }
    .intro-module {
        padding: 90px 0;
    }
    .imgDivider-module-section {
        margin: 30px 0;
    }
    .imgDivider-module-section.imgDivider-imgonly {
        height: 320px;
    }
    .imagetextimg-div {
        min-height: 750px;
        width: calc(53% - 30px);
    }
    .imagetext-title-div {
        min-height: 750px;
    }
    .imagetext-title-div {
        width: 55%;
    }
    .imagetext-title-div h2 {
        font-size: 54px;
    }
    .imagetext-title-div {
        padding: 65px 70px;
    }
    .imagetext-title-div h3 p {
        font-size: 18px;
    }
    .imagetext-title-div p,
    .imagetext-title-div h2 {
        padding-left: 50px;
    }
    .imagetext-title-div .defult-btn {
        margin-top: 30px;
        margin-left: 50px;
    }
    .imagetext-module-section {
        padding: 70px 30px 0;
    }
    .video-outerdiv {
        width: 55%;
    }
    .video-module-content {
        padding: 40px;
        width: 55%;
    }
    .video-module-content:before {
        top: 40px;
    }
    .video-module-contentinner {
        padding-left: 115px;
    }
    .photogallery-slider {
        padding-left: 50px;
    }
    .photogallery-thumb {
        top: 40px;
        padding-left: 50px;
        left: calc(56% + 30px);
    }
    .photogallery-thumb .custom-next-button {
        margin-right: 20px;
    }
    .photogallery-thumb .custom-next img,
    .photogallery-thumb .custom-next-next img {
        height: 200px;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        left: calc(59% + 45px);
        bottom: 38%;
    }
    .photogallery-slider .slick-arrow.slick-next {
        bottom: calc(38% - 50px);
    }
    .photogallery-module:before {
        width: 91.5%;
        top: 30px;
        bottom: 30px;
        left: 30px;
    }
    .photogallery-module:after {
        width: 54%;
    }
    .photogallery-slider .photogallery-imgdiv p:after {
        width: calc(100% + 14.5%);
    }
    .imgDivider-module-section:before {
        width: 94%;
        top: 30px;
        bottom: 30px;
        height: calc(100% - 60px);
    }
    .imgDivider-module-section {
        padding: 100px 0;
    }
    .intro-content-wrap,
    .imgDivider-module-section .imgDivider-content {
        left: 12%;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 12%;
    }
    .video-divbox .video-background-controls button i {
        height: 150px;
        width: 150px;
    }
    .video-divbox .video-background-controls button i:before {
        background-size: 50px;
        width: 50px;
        height: 65px;
    }
    .pillar-module-section .pillar-content {
        min-height: 620px;
    }
    .pillar-module-section .pillar-image-sec {
        min-height: 710px;
    }
    .newsletter-articel-banner:before {
        top: 30px;
        bottom: 50px;
        left: 0px;
        height: calc(100% - 80px);
        width: 97%;
    }
    .articel-title-inner {
        margin-left: 40px;
        max-width: 380px;
    }
    .articel-title {
        margin-bottom: 40px;
    }
    .articel-title {
        font-size: 40px;
    }
    .newsletter-articel-banner .author-picdiv .author-img {
        margin-top: 20px;
        height: 120px;
        width: 120px;
    }
    .twofeature-eventbox .feaure-texttitle {
        min-height: 256px;
        padding: 30px 50px 40px 70px;
    }
    .twofeature-eventbox .overlay-bg:before {
        min-height: 256px;
    }
    .twofeature-eventbox.right .feaure-texttitle {
        left: auto;
        right: -30px;
        padding: 30px 70px 40px 50px;
    }
    .twofeature-eventbox {
        height: 320px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
        padding: 90px 40px 20px 40px;
        width: 400px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div:before {
        width: 400px;
    }
    .parade-newstitle {
        font-size: 60px;
        margin-bottom: 20px;
    }
    .parade-newstitle small {
        font-size: 16px;
    }
    .newsletterlist-issues ul li a {
        font-size: 16px;
        padding: 15px 0;
    }
    .inthis-edititle {
        font-size: 38px;
        margin-bottom: 5px;
    }
    .inthis-edititle small {
        font-size: 16px;
    }
    .newsletterlist-issues {
        left: 40px;
        bottom: 20px;
    }
    .newsletter-articel-title .twofeature-border {
        padding: 15px 35px 20px 40px;
        min-height: inherit;
        margin-left: -40px;
    }
    .feature-newsletterlist .feature-smallbox {
        width: 30%;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        width: 40%;
        padding: 60px 30px;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 540px;
    }
    .also-this-section {
        width: 75%;
        right: -75%;
    }
    .also-this-sectioninner {
        padding: 60px 100px;
    }
    .also-bantl-inner,
    .also-this-section .also-title {
        margin-bottom: 45px;
    }
    .also-this-section ul {
        height: calc(94vh - 245px);
    }
    .articel-arrowdiv .left-arrow,
    .articel-arrowdiv .right-arrow {
        top: 31%;
    }
    .newsletterlist-titles-inner {
        max-width: 1140px;
    }
    .directorypage-wrapper .craftcms-formdiv {
        max-width: 1100px;
    }
    .directory-listinner {
        max-width: 94%;
    }
    .directory-listbox .directory-bgdiv {
        width: 370px;
    }
    .directory-info {
        width: calc(100% - 370px);
    }
    .directory-info h3 {
        font-size: 26px;
    }
    .directory-titlediv p {
        font-size: 16px;
    }
    .directory-listbox {
        margin: 40px 0;
    }
    .directory-info .defult-btn {
        padding: 15px 20px 15px 80px;
        min-width: 220px;
    }
    .directory-info .defult-btn:after {
        right: auto;
        left: 20px;
    }
    .directory-telmail ul li,
    .directory-text p,
    .directory-address {
        font-size: 16px;
    }
    .directory-catlist li {
        font-size: 14px;
    }
    .directory-listbox .directory-content {
        width: calc(74% - 10px);
    }
    .directory-telmail {
        width: 26%;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 100px 100px 100px 60px;
    }
    .directory-detailpage .directory-info:before {
        top: 50px;
        bottom: 50px;
        height: calc(100% - 100px);
        width: 90%;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 58px;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn {
        min-height: 56px;
        padding: 9px 18px 9px 18px;
    }
    .videoslide-boxdiv .videoslide-ifrem {
        padding-bottom: 56.25%;
    }
    .videohome-slider  .slick-arrow{
        left: -230px;
    }
    .upevent-slider .slick-arrow.slick-prev {
        left: -190px;
    }
    .upevent-slider .slick-arrow.slick-next {
        left: -135px;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 350px;
    }
    .showcase-sec .container, .welcome-section .container {
        max-width: 1830px;
        padding-left: 50px;
        padding-right: 70px;
    }
    .videohome-slider .videoslide-boxdiv {
        min-height: 355px;
    }
    .campus-block .campus-btn {
        width: 250px;
    }
    .campus-block .campus-btn:first-child .campus-btn-content {
        padding-left: 65px;
    }
}

@media (max-width: 1280px) {
    .quicklink-title-lg {
        font-size: 32px;
    }
    .quicklink-title {
        padding: 15px 20px 15px 0;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -33px;
        right: -65px;
        height: 324px;
    }
    .event-list-content {
        padding: 35px 25px;
    }
    .footer-getsocial p span:after {
        width: 90px;
        margin-left: 20px;
    }
    .imagetext-title-div {
        padding: 65px 65px;
    }
    .imagetext-title-div h2 {
        font-size: 50px;
    }
    .photogallery-slider .photogallery-imgdiv p:after {
        width: calc(100% + 6.5%);
    }
    .pillar-module-section .pillar-content {
        min-height: 640px;
    }
    .pillar-module-section .pillar-image-sec {
        min-height: 745px;
    }
    .directory-listbox .directory-bgdiv {
        width: 340px;
    }
    .directory-info {
        width: calc(100% - 340px);
    }
    .directory-detailpage .directory-info h3 {
        font-size: 54px;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 80px 90px 80px 60px;
    }
    .directory-detailpage .directory-info:before {
        top: 40px;
        bottom: 40px;
        height: calc(100% - 80px);
    }
    .directory-detailpage .directory-catlist {
        margin-bottom: 60px;
    }
    .videoslide-boxdiv .videoslide-ifrem {
        padding-bottom: 76.25%;
    }
    .home-slider .slider-content {
        width: 560px;
    }
    .campus-block {
        left: 560px;
        width: calc(100% - 650px);
    }
}

@media (max-width: 1199px) {
    .home-quicklink {
        padding: 0 5px;
        margin: 20px 0;
    }
    .footer-content h5,
    .footer-content ul,
    .rightpart-footer .footer-content h5 {
        padding-left: 15px;
    }
    .rightpart-footercontent {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-content p {
        letter-spacing: 0.5px;
    }
    .footer-getsocial p {
        margin: 0;
        padding-right: 20px;
    }
    .footer-getsocial p:after {
        width: 70px;
    }
    .welcome-title,.showcase-sec .section-header h2{
        font-size: 32px;
    }
    .welcome-title strong,.showcase-sec .section-header h2 strong{
        font-size: 40px;
    }
    .pillar-section,
    .twilight-section {
        padding: 0 5px;
    }
    .welcome-section {
        padding: 40px 5px 30px;
    }
    .twilight-section {
        margin: 30px 0 30px;
    }
    .quicklink-title-lg {
        font-size: 24px;
    }
    .quicklink-title-lg .arrow-btn {
        margin-left: 5px;
        height: 22px;
        width: 22px;
        background-size: 9px;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -27px;
        right: -55px;
        height: 270px;
    }
    .navquiklink-social-box {
        width: 32%;
    }
    .site-navbox {
        width: 68%;
    }
    .nav-quicklink-list {
        width: 95%;
    }
    .nav-quicklink-title {
        padding-left: 30px;
    }
    .nav-social-list {
        margin-left: 10px;
    }
    .nav-link-div {
        max-width: 290px;
    }
    .nav-link-div ul>li>a {
        font-size: 32px;
    }
    .drop-down ul li a {
        font-size: 14px;
    }
    .drop-down ul {
        padding-left: 40px;
        padding-top: 5px;
    }
    .comman-detaildiv {
        max-width: 92%;
    }
    .alert-notification-div {
        padding: 10px 15px;
    }
    .notification-alert {
        font-size: 20px;
        max-width: 180px;
        margin-right: 25px;
    }
    .notification-p {
        max-width: 570px;
        font-size: 14px;
        margin-right: 0;
    }
    .notification-infoicon {
        right: 15px;
        padding-right: 15px;
    }
    .celebration-logodiv,
    .footer-getsocial p,
    .footer-getsocial ul {
        padding-left: 15px;
    }
    .footer-getsocial p span:after {
        width: 60px;
        margin-left: 13px;
    }
    .calcfilter-searchdiv {
        margin-left: 40px;
    }
    .cal-filter-title {
        margin-right: 40px;
    }
    .calendar-eventbox .upevent-box .defult-btn {
        min-width: 240px;
    }
    .video-module .container,
    .imgDivider-module-section .container,
    .intro-module .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .intro-module:before {
        width: calc(100% - 30px);
    }
    .imagetext-title-div {
        width: 57%;
        padding: 60px 60px;
    }
    .imagetext-title-div p,
    .imagetext-title-div h2 {
        padding-left: 40px;
    }
    .imagetext-title-div .defult-btn {
        margin-top: 20px;
        margin-left: 40px;
    }
    .imagetext-title-div {
        padding: 60px 40px 60px 60px;
    }
    .video-module-content {
        padding: 30px;
        width: 56%;
    }
    .video-module-content:before {
        top: 30px;
    }
    .video-module-contentinner {
        padding-left: 95px;
    }
    .video-module-content p {
        font-size: 16px;
        margin-top: 50px;
    }
    .video-module-content .defult-btn {
        margin-top: 15px;
    }
    .photogallery-thumb .custom-next img,
    .photogallery-thumb .custom-next-next img {
        height: 150px;
    }
    .imgDivider-module-section:before {
        width: calc(100% - 30px);
    }
    .prevedition-content {
        padding: 20px 20px 30px 30px;
    }
    .prevedition-dateno {
        padding: 25px 25px 15px 0;
        margin-bottom: 40px;
    }
    .prevedition-content p {
        margin-bottom: 8px;
    }
    .prevedition-boxdiv:before {
        top: -85px;
        height: 448px;
        width: 407px;
    }
    .newsletterlist-titles-inner {
        max-width: 860px;
    }
    .newsletterlist-tiles .tiles-grid-sizer,
    .newsletterlist-tiles .tiles-grid-item {
        padding: 15px;
        width: 33.33%;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .tiles-title{
        font-size: 16px;
    }
    .directory-listbox .directory-bgdiv {
        width: 300px;
    }
    .directory-info {
        width: calc(100% - 300px);
    }
    .directory-info h3 {
        font-size: 24px;
    }
    .directory-listbox .directory-info {
        padding: 40px 28px 30px;
    }
    .directory-listbox {
        margin: 30px 0;
    }
    .directory-info .defult-btn {
        min-width: 180px;
        padding: 15px 20px 15px 70px;
    }
    .directory-list-wrap {
        margin: 40px 0 80px;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 42px;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 80px 70px 80px 40px;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn {
        min-height: 52px;
        padding: 5px 16px 5px 16px;
        margin-left: 20px;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn svg {
        top: 5px;
    }
    .directory-goback .defult-btn {
        padding: 16px 20px 16px 80px;
        min-width: 200px;
    }
    .directory-goback .defult-btn:after {
        left: 20px;
    }
    .directory-textinfo {
        max-width: 320px;
    }
    .directory-textinfo p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 1.5rem;
    }
    .directory-detailpage .directory-catlist {
        margin-bottom: 50px;
    }
    .videoslide-boxdiv .video-background-controls button i {
        height: 120px;
        width: 120px;
    }
    .videoslide-boxdiv .video-background-controls button i:before {
        width: 42px;
        height: 54px;
    }
    .home-slider .video-background-controls svg {
        width: 100px;
        height: 100px;
    }
    .home-slider .video-background-controls{
        left: 30px;
        height: 100px;
        width: 100px;
        top: -110px;
    }
    .home-slider .slider-title {
        font-size: 28px;
    }
    .home-slider .slider-content {
        width: 430px;
        padding: 45px 45px 60px 30px;
    }
    .campus-block .campus-btn .campus-btn-lable{
        font-size: 21px;
        width: 172px;
    }
    .campus-block .campus-btn {
        width: 200px;
    }
    .campus-block:after{
        height: 75px;
    }
    .campus-block:before,.home-slider .slick-slide:after{
        height: 107px;
    }
    .campus-block {
        left: 430px;
        width: calc(100% - 520px);
    }
    .campus-block .campus-btn .campus-btn-subtxt{
        font-size: 16px
    }
    .custom-fancybox .fancybox-stage{
        height: calc(100% - 180px);
        margin: 140px 0px 40px;
    }
    .custom-fancybox .fancybox-button.fancybox-button--close {
        right: 30px;
    }
    .site-header{
        padding-left: 15px;
    }
    .home-video-divbox .video-background-controls button i{
        height: 90px;
        width: 90px;
    }
    .home-video-divbox .video-background-controls button i:before{
        width: 32px;
        height: 40px;
    }
    .videoslide-boxdiv .videoslide-ifrem {
        padding-bottom: 56.25%;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 200px;
    }
    .showcase-sec {
        margin: 70px 0;
    }
    .twilight-title{
        font-size: 40px;
    }
    .upevent-title{
        font-size: 32px;
    }
    .title-rotate {
        height: 270px;
    }
    .upevent-title-div{
        width: 160px;
    }
    .upevent-sliderwrap{
        width: calc(100% - 160px);
    }
    .videohome-slider .slick-arrow.slick-prev {
        left: -115px;
    }
    .videohome-slider .slick-arrow.slick-next {
        left: -67px;
    }
    .videohome-slider .videoslide-boxdiv {
        min-height: 335px;
    }
    .showcase-sec .container, .welcome-section .container{
        padding-left: 30px;
    }
    .readerview-principle .col-left {
        width: 50%;
    }
    .readerview-principle .newsletter-articel-title {
        width: 50%;
        padding: 50px 30px;
    }
}

@media (max-width: 1024px) {
    .defult-btn {
        padding: 24px 30px;
        min-width: 270px;
        font-size: 14px;
        line-height: 20px;
    }
    .site-header .logo-div {
        margin: 0px auto;
    }
    .quicklink-title-lg {
        font-size: 26px;
    }
    .quicklink-title-lg {
        width: calc(100% - 10px);
    }
    .quicklink-boxdiv:hover .quicklink-title-lg .arrow-btn {
        left: 10px;
    }
    .pillar-content {
        max-width: 680px;
    }
    .pillar-action {
        max-width: 704px;
        padding: 20px 20px 40px 82px;
    }
    .pillar-action a {
        margin: 15px 12px;
        letter-spacing: 0.5px;
    }
    .pillar-slidernav-wrap {
        max-width: 700px;
    }
    .pillar-action {
        bottom: 55px;
    }
    .pillar-slidernav-wrap,
    .twilight-content {
        margin-left: -20px;
    }
    .welcome-imagediv {
        margin-left: 0px;
        float: none;
        width: 60%;
    }
    .welcome-title {
        font-size: 38px;
    }
    .welcome-text {
        float: none;
        width: 100%;
        margin-top: -45px;
        padding-left: 40%;
        padding-bottom: 30px;
    }
    .welcome-section .row:before {
        z-index: -1;
        right: 20px;
        height: calc(100% - 60px);
        bottom: 0;
        top: auto;
        width: 100%;
    }
    .welcome-section {
        padding: 0px 5px 30px;
    }
    .welcome-text p {
        max-width: 470px;
    }
    .defult-btn:after {
        height: 30px;
        width: 30px;
    }
    .calendar-btn .defult-btn {
        padding: 17px 35px;
        min-width: 250px;
        line-height: 22px;
    }
    .upevent-box .defult-btn {
        min-width: 265px;
        padding: 24px 30px 24px 70px;
    }
    .upevent-slider .slick-arrow,
    .videohome-slider .slick-arrow {
        left: -185px;
    }
    .footelogo-div {
        display: none;
    }
    .site-footer {
        padding: 0 20px 0 45px;
    }
    .footelogo-div.tbl-logodiv {
        display: block !important;
        width: 100%;
        float: none;
        text-align: left;
    }
    .footerall-linkwrap {
        width: 100%;
        margin-bottom: 50px;
        float: none;
    }
    .footer-content h5,
    .footer-content ul {
        padding-left: 0;
    }
    .rightpart-footer .footer-content h5 {
        padding-left: 35px;
    }
    .footer-content h5 {
        padding-top: 0px;
    }
    .rightpart-footercontent {
        padding-left: 35px;
        padding-right: 0;
    }
    .leftpart-greyline {
        margin-left: -45px;
    }
    .footer-content h5 {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .navigation-content-wrap {
        padding: 0 15px 0 40px;
    }
    .nav-link-div ul>li>a {
        font-size: 27px;
    }
    .drop-down ul li a {
        font-size: 10px;
    }
    .nav-link-div {
        max-width: 235px;
    }
    .nav-searchbar {
        padding: 60px 0 20px 40px;
        margin-bottom: 70px;
    }
    .drop-down ul {
        padding-left: 20px;
        padding-top: 5px;
    }
    .drop-down ul li {
        margin-top: 12px;
    }
    .quicklink-innerdiv {
        padding-top: 112px;
        height: 100%;
    }
    .navigation-logodiv {
        bottom: 10%;
    }
    .nav-quicklink-list {
        width: 80%;
        height: calc(100% - 90px);
        overflow: auto;
    }
    .nav-quicklink-list ul li {
        width: 50%;
        margin: 15px 0;
    }
    .nav-quicklink-title {
        font-size: 14px;
    }
    .nav-quicklink-list ul li a {}
    .nav-quicklink-list ul li {}
    .nav-social-boxdiv .quicklink-innerdiv {
        padding-top: 80px;
    }
    .nav-social-list {
        margin-top: 35px;
    }
    .site-navbox {
        width: 67%;
    }
    .navquiklink-social-box {
        width: 33%;
    }
    .innerpage-slider .slider-content {
        max-width: 810px;
        left: 90px;
    }
    .innerpage-slider .slider-title {
        font-size: 56px;
    }
    .notification-p {
        display: none;
    }
    .alert-notification-div {
        padding: 10px 50px;
    }
    .notification-alert {
        font-size: 24px;
        max-width: 100%;
        margin-right: 25px;
    }
    .notification-bell {
        margin-right: 35px;
    }
    .notification-infoicon {
        right: 40px;
    }
    .footer-icondiv {
        width: 33.33%;
    }
    .celebration-social-foot {
        width: 66.6%;
    }
    .celebration-logodiv,
    .footer-getsocial {
        width: 50%;
    }
    .footer-getsocial p {
        width: auto;
        display: block;
    }
    .footer-getsocial ul {
        width: auto;
        display: block;
    }
    .celebration-logodiv {
        padding-left: 25px;
    }
    .footer-getsocial p,
    .footer-getsocial ul {
        padding-left: 15px;
    }
    .footer-getsocial p {
        padding-right: 0px;
        margin-bottom: 10px;
    }
    .footer-getsocial p span {
        display: block;
        padding-bottom: 10px;
    }
    .footer-getsocial p span:after {
        width: 100%;
        margin-left: 0;
        top: auto;
        left: 0;
        bottom: 0;
    }
    .calender-date-wrapper {
        padding-bottom: 20px;
        padding-top: 20px;
        position: relative;
        height: auto;
        right: 0;
        width: 100%;
        background-color: rgba(81, 28, 108, 1);
    }
    .calendar-sliderdiv.innerpage-slider,
    .calendar-sliderdiv.innerpage-slider .sliderimg-div {
        height: 55vh;
    }
    .calendar-div {
        max-width: 430px;
    }
    .custom-calendar-wrap {
        left: -32px;
    }
    .calendar-sliderdiv:before {
        display: none;
    }
    .intro-content-wrap p,
    .imagetext-title-div h3 p {
        letter-spacing: 1px;
    }
    .intro-content-wrap {
        left: 16%;
    }
    .intro-module:before {
        width: calc(100% - 90px);
    }
    .imagetextimg-div {
        min-height: 600px;
        width: 57%;
    }
    .imagetext-title-div {
        min-height: 600px;
    }
    .imagetext-module-section {
        padding: 85px 0px 0;
    }
    .imagetextimg-div:after {
        z-index: inherit;
        width: 85%;
    }
    .imagetext-title-div {
        width: 55%;
    }
    .imagetext-title-div p,
    .imagetext-title-div h2 {
        padding-left: 50px;
    }
    .imagetext-title-div {
        padding: 60px;
    }
    .video-outerdiv {
        width: 75%;
        height: auto;
        margin-bottom:0px;
    }
    .video-divbox {
        padding-bottom: 56.25%;
        line-height: 0;
    }
    .video-module-content {
        padding: 80px;
        width: 90%;
        padding-top: 40%;
        padding-bottom: 50px;
        float: right;
        margin-top: -35%;
        height: auto;
        position: relative;
    }
    .video-wrapdiv{
        flex-wrap: wrap;
    }
    .video-module-contentinner {
        padding-left: 0;
    }
    .video-module-content p {
        letter-spacing: 1px;
        font-size: 16px;
        margin-top: 0px;
    }
    .video-module-content:before {
        display: none;
    }
    .photogallery-module:after {
        width: 50%;
        right: 0;
    }
    .photogallery-slider {
        padding-left: 65px;
    }
    .photogallery-slider .slick-list {
        width: 65%;
    }
    .photogallery-slider .photogallery-imgdiv p:after {
        display: none;
    }
    .photogallery-slider .photogallery-imgdiv {
        padding-bottom: 75%;
    }
    .photogallery-thumb .custom-next img,
    .photogallery-thumb .custom-next-next img {
        height: 220px;
    }
    .photogallery-thumb {
        top: 0px;
        width: 65%;
        padding-left: 0px;
        left: calc(67% + 30px);
    }
    .photogallery-slider .slider-image.with-caption {
        padding-bottom: 115px;
    }
    .photogallery-slider .photogallery-imgdiv p {
        max-width: 330px !important;
        left: 40px;
        padding: 20px 0px 15px 20px;
        bottom: -115px;
    }
    .imgDivider-module-section .imgDivider-content:before {
        left: 0;
        top: -45px;
    }
    .imgDivider-module-section .imgDivider-content:after {
        right: 0;
        bottom: -45px;
    }
    .imgDivider-p-author p {
        margin-bottom: 0;
    }
    .imgDivider-module-section {
        padding: 130px 0;
    }
    .imgDivider-module-section .imgDivider-content {
        left: 8%;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 8%;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        left: calc(66% + 40px);
    }
    .pillar-module-section .pillar-content {
        padding: 60px 50px 100px 90px;
    }
    .pillar-module-section .pillar-content p {
        max-height: 176px;
    }
    .pillar-module-section .pillar-action {
        padding: 20px 40px 40px 90px;
    }
    .articel-title {
        font-size: 36px;
    }
    .articel-title-inner {
        margin-left: 30px;
        max-width: 290px;
    }
    .author-picdiv .author-text,
    .author-picdiv .author-cat,
    .author-picdiv .author-coatsub {
        font-size: 16px;
    }
    .author-picdiv .author-img {
        height: 120px;
        width: 120px;
    }
    .twofeature-secrtion {
        padding: 0px 15px 35px;
    }
    .twofeature-eventbox .feaure-texttitle {
        width: 80%;
    }
    .twofeature-eventbox .overlay-bg:before {
        width: 80%;
    }
    .parade-newstitle {
        font-size: 48px;
        margin-bottom: 30px;
    }
    .newsletter-articel-title .twofeature-border h2{
        font-size: 34px;
    }
    .newsletterlist-issues {
        left: 40px;
        bottom: 40px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 50px 25px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt p {
        margin-bottom: 30px;
    }
    .newsletterlist-tiles {
        margin: 0px -10px;
    }
    .newsletterlist-tiles .tiles-grid-item {
        padding: 10px;
    }
    .also-this-section {
        width: 80%;
        right: -80%;
    }
    .also-this-sectioninner {
        padding: 60px 80px;
    }
    .alsotiledi-hlf {
        padding-right: 30px;
    }
    .also-neewslist {
        padding-left: 60px;
    }
    .articel-arrowdiv .left-arrow,
    .articel-arrowdiv .right-arrow {
        top: 35%;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 180px;
    }
}

@media (max-width: 991px) {
    .home-slider .slider-title {
        font-size: 22px;
        line-height: 1.1;
    }
    .home-quicklink {
        padding: 0px;
        margin: 15px 0;
    }
    .home-quicklink .row {
        margin: 0 -7px;
    }
    .home-quicklink .row .quiklink-col {
        padding: 0 7px;
    }
    .quicklink-boxdiv {
        padding-bottom: 85%;
    }
    .quicklink-title {
        padding: 10px 15px 10px 0;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -20px;
        right: -45px;
        height: 220px;
    }
    .quicklink-title-lg {
        width: calc(100% - 5px);
        padding: 10px 10px;
        font-size: 20px;
    }
    .pillar-title {
        margin-bottom: 30px;
        max-width: 520px;
        font-size: 42px;
    }
    .pillar-content p,
    .twilight-content p {
        font-size: 16px;
    }
    .welcome-text p {
        font-size: 13px;
    }
    .welcome-title {
        font-size: 29px;
        margin-bottom: 35px;
    }
    .event-list-content h2,.event-list-content p {
        font-size: 14px;
        min-height: 44px;
        line-height: 22px;
    }
    .footer-content h5,
    .footer-content ul {
        padding-left: 0;
    }
    .footer-content h5 {
        font-size: 11px;
    }
    .footer-content ul li a,
    .footer-content p,
    .copyright-text {
        font-size: 8px;
    }
    .calendar-btn .defult-btn {
        min-width: 220px;
    }
    .pillar-section,
    .twilight-section {
        padding: 0;
    }
    .videoslide-boxdiv .videoslide-ifrem {
        padding-bottom: 72%;
    }
    .pillar-slidernav-wrap {
        margin-left: -15px;
    }
    .pillar-content {
        max-width: 530px;
        padding: 60px 55px 90px 55px;
        min-height: 420px;
    }
    .pillar-slidernav-wrap {
        max-width: 530px;
    }
    .our-pillartitle {
        margin-bottom: 40px;
    }
    .pillar-action a {
        font-size: 0;
        position: relative;
        margin: 10px;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
    }
    .pillar-action a:before {
        height: 14px;
        width: 14px;
        border: 1px solid transparent;
        border-radius: 50%;
        content: "";
        position: absolute;
        top: -3px;
        left: -3px;
    }
    .pillar-action a.active {
        background: #fff;
    }
    .pillar-action a.active:before {
        border-color: #fff;
    }
    .pillar-image-sec {
        min-height: 570px;
    }
    .pillar-action {
        bottom: 45px;
        max-width: 550px;
        margin-left: -15px;
        padding: 15px 15px 35px 55px;
    }
    .welcome-text {
        margin-top: -35px;
        padding-left: 43%;
    }
    .welcome-imagediv {
        width: 55%;
    }
    .welcome-text p {
        max-width: 375px;
    }
    .welcome-text {
        margin-top: -35px;
        padding-left: 38%;
    }
    .welcome-section {
        padding: 0;
    }
    .welcome-section .row:before {
        right: 15px;
    }
    .upevent-slider .slick-slide {
        padding: 0 20px;
    }
    .event-list-date:before {
        top: -18px;
        left: -18px;
    }
    .event-list-date .event-day,
    .event-list-date .event-month {
        font-size: 14px;
    }
    .event-list-date .event-date {
        font-size: 72px;
    }
    .event-list-date:before {
        height: 220px;
    }
    .event-list-date {
        padding: 35px 30px 47px;
    }
    .upevent-box .defult-btn {
        min-width: 240px;
    }
    .calendar-btn {
        margin-top: 202px;
    }
    .upcoming-event-section {
        padding: 30px 0;
    }
    .twilight-image-sec{
        margin-left: 30px;
    }
    .twilight-content {
        max-width: 510px;
        padding: 50px 55px 70px;
    }
    .twilight-title {
        margin-bottom: 35px;
        max-width: 300px;
    }
    .twilight-content .defult-btn {
        margin-top: 10px;
    }
    .twilight-section:after {
        width: 94%;
        bottom: 110px;
    }
    .footer-content ul li {
        line-height: 1;
    }
    .site-footer {
        padding: 0 15px 0 40px;
    }
    .copyright-text a {
        margin-left: 10px;
    }
    .copyright-text a svg {
        height: 8px;
        width: auto;
    }
    .leftpart-greyline:after {
        content: "";
        display: table;
        clear: both;
    }
    .leftpart-greyline {
        padding: 10px 0;
        display: block;
        margin-left: -40px;
    }
    .celebration-logodiv {
        padding-top: 0px;
        padding-left: 30px;
        padding-bottom: 0px;
    }
    .footer-icondiv {
        float: left;
        margin: 13px 0;
    }
    .footer-getsocial {}
    .footer-getsocial p {
        margin: 0 0 15px 0;
        font-size: 11px;
        padding-right: 0;
        display: block;
    }
    .footer-getsocial p:after {
        width: 100%;
        top: auto;
        bottom: 0;
        left: auto;
        right: 0;
    }
    .footer-getsocial ul li:first-child {
        margin-left: 0px;
    }
    .rightpart-footer .footer-content h5,
    .rightpart-footercontent {
        padding-left: 30px;
    }
    .copyright-text {
        padding-top: 40px;
    }
    .innerpage-slider .slider-content {
        left: 80px;
    }
    .innerpage-slider .slider-title {
        font-size: 46px;
    }
    .innerpage-slider .slider-content {
        max-width: 570px;
    }
    .comman-detaildiv blockquote {
        font-size: 18px;
    }
    .comman-detaildiv h1 {
        font-size: 44px;
    }
    .comman-detaildiv h2 {
        font-size: 30px;
    }
    .comman-detaildiv h3 {
        font-size: 24px;
        margin-bottom: 30px;
        padding-top: 25px;
    }
    .comman-detaildiv h4 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .comman-detaildiv h5 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .comman-detaildiv p,
    .comman-detaildiv h6 {
        margin-bottom: 25px;
    }
    .table {
        margin-top: 0px;
        margin-bottom: 40px;
    }
    .comman-detaildiv figure {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .comman-detaildiv figure.no-caption {
        padding-bottom: 0;
        margin-bottom: 70px;
    }
    .cal-filter-title {
        margin-right: 0;
        display: block;
        margin-bottom: 20px;
    }
    .modal .modal-dialog {
        max-width: 680px;
    }
    .eventpopup .event-info-modal .event-list-date:before {
        width: 265px;
        z-index: 0;
        height: 245px;
        top: -23px;
        left: -43px;
    }
    .eventpopup .event-info-modal {
        padding: 40px 20px 20px;
    }
    .eventpopup .event-info-modal:before {
        height: calc(100% - 60px);
        width: calc(100% - 40px);
        top: 40px;
        left: 20px;
    }
    .eventpopup .event-list-content {
        width: calc(100% - 222px);
    }
    .intro-content-wrap p,
    .imagetext-title-div h3 p,
    .imgDivider-content p {
        font-size: 16px;
    }
    .imagetextimg-div {
        min-height: 420px;
        width: 55%;
    }
    .imagetext-title-div {
        min-height: 420px;
    }
    .intro-module:before {
        width: calc(100% - 30px);
    }
    .intro-content-wrap {
        left: 0;
        padding-left: 30px;
    }
    .imagetext-module-section {
        padding: 70px 0px 0;
        margin: 50px auto 30px;
    }
    .imagetext-title-div h2 {
        font-size: 42px;
    }
    .imagetext-title-div {
        padding: 40px;
    }
    .imagetext-title-div p,
    .imagetext-title-div h2 {
        padding-left: 30px;
    }
    .imagetext-title-div .defult-btn {
        margin-left: 30px;
        margin-top: 10px;
    }
    .imagetext-title-div h3,
    .imagetext-title-div h2 {
        margin-bottom: 35px;
    }
    .defultpage-wrapper {
        padding: 40px 15px;
    }
    .comman-detaildiv {
        padding: 40px 0;
    }
    .video-outerdiv {
        width: 82%;
    }
    .video-module-content {
        padding: 50px;
        width: 91%;
        padding-top: 41%;
        padding-bottom: 40px;
        padding-right: 40px;
        float: right;
    }
    .photogallery-module {
        padding: 65px 0px 0;
        margin: 35px 0 70px;
    }
    .photogallery-module:before {
        width: calc(100% - 30px);
        top: 30px;
        bottom: 30px;
        left: 0px;
    }
    .photogallery-slider {
        padding-left: 50px;
    }
    .photogallery-slider .slick-list {
        width: 74%;
    }
    .photogallery-thumb {
        top: 0px;
        width: 75%;
        padding-left: 0px;
        left: calc(74% + 30px);
    }
    .photogallery-module:after {
        height: 100%;
    }
    .photogallery-slider .photogallery-imgdiv p {
        bottom: -115px;
        font-size: 13px;
        max-width: 250px !important;
        left: 40px;
    }
    .photogallery-slider .slider-image.with-caption {
        padding-bottom: 120px;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        /* background: #2c903d; */
        z-index: 2;
        left: 55%;
        bottom: 14%;
    }
    .photogallery-slider .slick-arrow.slick-next {
        bottom: calc(14% - 47px);
    }
    .photogallery-slider .slick-arrow.slick-prev:after,
    .photogallery-slider .slick-arrow.slick-next:after {
        /* background-image: url(../images/button-arrow-white.png); */
    }
    .imgDivider-module-section .imgDivider-content {
        left: 0;
        padding-left: 30px;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 0;
        padding-right: 30px;
    }
    .imgDivider-module-section .imgDivider-content:before {
        left: 30px;
    }
    .imgDivider-module-section.rightside .imgDivider-content:before {
        left: 0px;
    }
    .imgDivider-module-section.rightside .imgDivider-content:after {
        right: 30px;
    }
    .pillar-module-section .pillar-content {
        padding: 40px 40px 90px 55px;
    }
    .pillar-module-section .pillar-content p {
        max-height: 220px;
    }
    .pillar-module-section .pillar-action {
        padding: 20px 40px 40px 50px;
    }
    .imagetext-title-div p {
        padding-left: 0;
    }
    .imagetext-module-section.rightside .imagetext-title-div h2,
    .imagetext-module-section.rightside .imagetext-title-div p {
        padding-left: 0;
        padding-right: 0px;
    }
    .previous-edition-col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .prevedition-boxdiv:before {
        top: -75px;
    }
    .newsletter-articel-banner .innerpage-slider {
        width: 100%;
        height: 50vh;
    }
    .newsletter-articel-banner .innerpage-slider .sliderimg-div {
        height: 50vh;
    }
    .newsletter-articel-banner .newsletter-articel-title {
        display: block;
        padding: 40px 0;
        width: 100%;
        height: 50vh;
    }
    .articel-title-inner {
        margin-left: 60px;
        max-width: 90%;
    }
    .newsletter-articel-banner:before {
        top: 30px;
        bottom: 30px;
        left: 0px;
        height: calc(100% - 60px);
        width: 96%;
    }
    .readerview-principle .newsletter-articel-title{
        background-size: 175px;
    }
    .twofeature-secrtion .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .twofeature-eventbox.right {
        margin-top: 25px;
    }
    .twofeature-eventbox .feaure-texttitle {
        width: 65%;
    }
    .twofeature-eventbox .overlay-bg:before {
        width: 65%;
    }
    .feature-newsletterlist .feature-smallbox {
        margin-top: 20px;
        width: 100%;
    }
    .newsletter-articelist-banner,
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div {
        height: 100vh;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
        height: 100vh;
        width: 360px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div:before {
        width: 360px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 50px 25px;
    }
    .newsletterlist-tiles .tiles-grid-sizer,
    .newsletterlist-tiles .tiles-grid-item {
        width: 50%;
    }
    .feature-newsletterlist{
        margin-bottom: 10px;
    }
    .also-this-section {
        width: 85%;
        right: -85%;
    }
    .also-this-sectioninner {
        padding: 60px 60px;
    }
    .also-neewslist {
        padding-left: 30px;
    }
    .directorypage-wrapper .craftcms-formdiv {
        max-width: 92%;
    }
    .directory-form .form-group {
        width: 100%;
        padding: 0;
        float: none;
    }
    .directory-form {
        margin: 0px;
    }
    .directory-form .defult-btn {
        min-width: 200px;
    }
    .directory-listbox .directory-content {
        margin-right: 0px;
        width: 100%;
    }
    .directory-listbox {
        flex-wrap: wrap;
    }
    .directory-telmail {
        width: 88%;
        margin-top: 5px;
        margin-left: 12%;
    }
    .directory-telmail {
        padding: 30px 25px;
    }
    .directory-listbox.directory-detailpage .directory-bgdiv {
        width: 100%;
        padding-bottom: 56.25%;
    }
    .directory-detailpage .directory-info {
        width: 100%;
    }
    .directory-listbox.directory-detailpage {
        display: block;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 50px;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 80px 90px 80px 40px;
    }
    .directory-goback .defult-btn {
        margin-left: 8%;
    }
    .directory-mapcontact {
        display: block;
    }
    .directorymapdiv {
        width: 100%;
        padding-bottom: 56.25%;
    }
    .directory-contactinfo {
        width: 100%;
    }
    .directory-textinfo {
        max-width: 100%;
        padding: 0 60px;
    }
    .directory-textinfo .directory-telmail {
        margin-left: 0px;
    }
    .directory-listbox.directory-detailpage {
        width: 100%;
    }
    .directory-detailpage .directory-info:before {
        width: 87%;
    }
    .nav-quicklink-list {
        width: 92%;
    }
    .nav-quicklink-list ul li {
        margin: 12px 0;
    }
    .home-slider .slider-content {
        width: 300px;
        padding: 35px 25px 35px 20px;
    }
    .home-slider .slider-content:before{
        margin: 15px 15px 15px 0;
        height: calc(100% - 30px);
        width: calc(100% - 15px);
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 100px;
    }
    .campus-block{
        left: 300px;
        width: calc(100% - 390px);
    }
    .home-slider .slider-content .defult-btn {
        margin-top: 20px;
        min-width: 220px;
    }
    .campus-block .campus-btn:not(:first-child) {
        margin-left: 20px;
        padding-left: 30px;
    }
    .campus-block .campus-btn {
        width: 164px;
    }
    .campus-block .campus-btn .campus-btn-lable {
        font-size: 18px;
        width: auto;
    }
    .campus-block .campus-btn .campus-btn-subtxt {
        font-size: 14px;
    }
    .campus-block:after {
        height: 60px;
    }
    .campus-block:before, .home-slider .slick-slide:after {
        height: 85px;
    }
    .showcase-sec {
        margin: 50px 0;
    }
    .header-social li {
        margin-right: 19px;
    }
    
}

@media (max-width: 767px) {
    .defult-btn {
        padding: 30px 45px;
        min-width: 330px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.5px;
    }
    .defult-btn:after {
        right: 45px;
        height: 36px;
        width: 36px;
    }
    .site-header {
        padding: 5px 15px;
        min-height: 60px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        animation-direction: reverse;
        animation-duration: 300ms;
    }
    .site-header.sticky {
        position: fixed;
        background: #e1e0db;
        -webkit-animation-name: stickySlideDown;
        animation-name: stickySlideDown;
        -webkit-transition: none;
        transition: none;
    }
    @-webkit-keyframes stickySlideDown {
        0% {
            opacity: 0.7;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes stickySlideDown {
        0% {
            opacity: 0.7;
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    .site-header.opened-menu {
        transition: all 0.4s ease-in 0.2s;
        position: fixed;
        background: #e1e0db;
    }
    .site-header .logo-div {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transition: all 0.2s ease 0.7s;
    }
    .site-header.opened-menu .logo-div {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        transition: all 0s ease 0s;
    }
    .site-header.sticky .logo-div {
        display: none !important;
    }
    .header-stickylogo-div {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0s ease 0s;
        text-align: center;
    }
    .site-header.sticky .header-stickylogo-div {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .site-header.opened-menu .header-stickylogo-div {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transition: all 0.2s ease 0.5s;
    }
    .header-stickylogo-div img {
        height: 50px;
    }
    .navquiklink-social-box {
        width: 100%;
    }
    .navquiklink-social-box.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .quicklinkbody-open {
        overflow: hidden;
    }
    .mobilequicklink-div {
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
        transition: visibility 1.1s cubic-bezier(.19, .44, .22, 1);
        visibility: hidden;
        pointer-events: none;
    }
    .navquiklink-social-box .nav-quicklink-boxdiv {
        display: none;
    }
    .mobilequicklink-div.active .nav-quicklink-boxdiv {
        height: 100%;
        display: block;
    }
    .quicklink-innerdiv {
        height: 100%;
        padding-top: 80px;
    }
    .nav-quicklink-list {
        overflow: auto;
        height: calc(100% - 215px);
        width: 76%;
    }
    .nav-social-list {
        margin-top: 25px;
    }
    .nav-quicklink-list ul li {
        width: 50%;
    }
    .mobilequicklink-div .nav-quicklink-boxdiv {
        height: 100%;
    }
    .mobilequicklink-div.active .navigation-dropdown-bg {
        visibility: visible;
        opacity: 1;
        transition: opacity .7s .1s, visibility 0.3s .1s;
    }
    .mobilequicklink-div.active {
        pointer-events: all;
        visibility: visible;
    }
    .mobilequicklink-div .nav-quicklink-boxdiv:before {
        transition: transform 1.2s cubic-bezier(.77, 0, .175, 1) 0s;
    }
    .mobilequicklink-div.active .nav-quicklink-boxdiv:before {
        transform: scaleY(1) translateZ(0);
    }
    .mobilequicklink-div .nav-social-boxdiv .nav-quicklink-title {
        color: #662f8e;
    }
    .mobilequicklink-div .nav-social-boxdiv .nav-quicklink-title:before {
        background: rgba(102, 47, 142, 0.4);
    }
    .mobilequicklink-div.active .nav-quicklink-boxdiv .nav-quicklink-title span {
        transition: transform .9s cubic-bezier(.165, .84, .44, 1) .7s;
        transform: translateY(0) translateZ(0);
    }
    .nav-quicklink-list ul li a {
        font-size: 13px;
    }
    .mobile-quickback-div {
        position: relative;
        overflow: hidden;
        margin-left: 55px;
        margin-bottom: 10px;
        display: block;
    }
    .mobile-quicklink-back {
        display: inline-block;
        font-size: 13px;
        line-height: 16px;
        font-weight: 300;
        color: #662f8e;
        transform: translateY(105%) translateZ(0);
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 0s;
    }
    .mobilequicklink-div.active .mobile-quicklink-back {
        transition: transform .9s cubic-bezier(.165, .84, .44, 1) .7s;
        transform: translateY(0) translateZ(0);
    }
    .mobile-quicklink-back img {
        margin-right: 10px;
        position: relative;
        top: -1px;
        opacity: 0.5;
        transform: rotate(180deg);
    }
    .mobilequicklink-div.active .nav-social-boxdiv {
        visibility: visible;
        opacity: 1;
        right: 0;
        pointer-events: all;
        transition: all 0.3s ease 1.1s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:first-child div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) .8s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(2) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) .9s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(3) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(4) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.1s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(5) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.2s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(6) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.3s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(7) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.4s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(8) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.5s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(9) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.6s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(10) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.7s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(11) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.8s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li:nth-child(12) div {
        transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.9s;
    }
    .mobilequicklink-div.active .nav-quicklink-list ul li div {
        /* transition: transform .9s cubic-bezier(.165,.84,.44,1) .8s; */
        transform: translateY(0) translateZ(0);
    }
    .nav-quicklink-list ul li {
        margin: 15px 0;
    }
    .navigation-dropdown {
        z-index: 4;
    }
    .nav-social-boxdiv {
        opacity: 0;
        height: auto;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        bottom: 30px;
        left: auto;
        width: 135px;
        border: 0;
        right: -135px;
        z-index: 6;
        margin: 0;
        transition: all 0.3s ease 0s;
    }
    .navigation-dropdown.is-active .nav-social-boxdiv {
        visibility: visible;
        opacity: 1;
        right: 0;
        pointer-events: all;
        transition: all 0.3s ease 1.1s;
    }
    .nav-social-boxdiv .quicklink-innerdiv {
        padding: 0;
    }
    .nav-social-boxdiv .nav-quicklink-title {
        color: #fff;
        padding: 0 0 15px 0;
    }
    .nav-social-list ul {
        line-height: inherit;
        font-size: 0;
    }
    .nav-social-boxdiv .nav-quicklink-title span {
        transform: inherit !important;
        transition: inherit !important;
    }
    .nav-social-list li div {
        transform: inherit !important;
        transition: inherit !important;
        padding-bottom: 0px !important;
    }
    .nav-social-boxdiv .nav-quicklink-title:before {
        top: auto;
        bottom: 0;
        width: 100% !important;
        transition: inherit !important;
    }
    .mobilequicklink-div.active .nav-quicklink-boxdiv .nav-quicklink-title:before {
        width: 68%;
        transition: width .9s cubic-bezier(.165, .84, .44, 1) .7s;
    }
    .mobilequicklink-div .nav-quicklink-boxdiv .nav-quicklink-title {
        padding-top: 30px;
        margin-bottom: 15px;
        padding-left: 55px;
    }
    .nav-social-list {
        margin-left: 0px;
    }
    .nav-social-list li:first-child {
        margin-left: 0;
    }
    .nav-social-list li:last-child {
        margin-right: 0;
    }
    .nav-social-boxdiv:before {
        display: none;
    }
    .site-navbox {
        width: 100%;
        height: 100%;
        padding: 145px 0 120px;
    }
    .site-navbox.quicklink-active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .site-navbox:after {
        content: "";
        position: absolute;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        left: 0px;
        top: 110px;
        z-index: 1;
        width: 0;
        transition: width .5s cubic-bezier(.165, .84, .44, 1) 0s;
    }
    .navigation-dropdown.is-active .site-navbox:after {
        width: 68%;
        transition: width .9s cubic-bezier(.165, .84, .44, 1) .7s;
    }
    .nav-searchbar {
        display: none;
    }
    .navigation-logodiv {
        display: none;
    }
    .navigation-content-wrap {
        padding: 0px 45px;
        overflow: auto;
        height: 100%;
    }
    .nav-link-div {
        max-width: 100%;
        border-right: none;
    }
    .navigation-dropdown .nav-link-div:after {
        display: none;
    }
    .nav-link-div ul>li {
        margin-bottom: 18px;
    }
    .nav-link-div ul>li>a {
        font-size: 32px;
    }
    .drop-down ul li a {
        font-size: 18px;
    }
    .drop-down ul {
        width: 100%;
        max-width: 100%;
        height: auto;
        left: 0;
        visibility: hidden;
        top: 100%;
        padding: 18px 0;
        position: relative;
        display: none;
        opacity: 0;
    }
    .nav-link-div ul>li.drop-down.active>ul {
        visibility: visible;
        opacity: 1;
        display: block;
    }
    .menu-logo.active .cube {
        display: none;
    }
    .menu-logo.active .navigation-close {
        width: 44px;
        height: 44px;
        font-size: 26px;
        padding: 9px;
        display: block;
        position: relative;
        top: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .page-rightside-width {
        width: 100%;
    }
    .site-header .logo-div {
        margin: 30px auto 0;
    }
    .quicklink-boxdiv {
        margin-bottom: 20px;
    }
    .enrol-book-prospectus {
        background: transparent;
        height: auto;
        min-height: inherit !important;
        width: 100%;
        position: inherit;
        top: auto;
        right: 0;
        bottom: 0px;
        padding: 0;
        z-index: 9;
    }
    .enrol-book-prospectus .purpel-menudiv {
        background: #662d91;
        height: auto;
        min-height: inherit !important;
        width: 100%;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0px;
        padding: 0;
    }
    .enrol-book-prospectus.open .purpel-menudiv {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv {
        background: #fff;
        position: fixed;
        z-index: 3;
    }
    .calendarpage-banner-section .purpel-menudiv {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        display: none;
    }
    .social-linkdiv,
    .stickylogo-div {
        display: none !important;
    }
    .phone-quiklink-div {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        top: 0;
        right: 70px;
        z-index: 6;
        margin: 19px 0;
        transition: all 0.3s ease 0s;
    }
    .enrol-book-prospectus.open .phone-quiklink-div {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        transition: all 0.3s ease 0.2s;
    }
    .phone-quiklink-div ul li {
        display: inline-block;
        margin: 0 23px 0;
    }
    .phone-quiklink-div ul li svg {
        height: 22px;
        width: 22px;
    }
    .phone-quiklink-div ul {
        line-height: inherit;
        font-size: 0;
    }
    .nav-quicklink-title {
        font-size: 16px;
    }
    .purpel-menudiv {
        background-color: transparent;
        box-shadow: none;
        width: 100%;
        padding: 0px 15px;
        position: inherit;
        top: auto;
        margin-top: 0;
        left: auto;
    }
    .menu-charcter-div {
        position: fixed;
        top: 8px;
        right: 10px;
        z-index: 7;
    }
    .purpel-menudiv ul {
        display: flex;
    }
    .purpel-menudiv ul:after {
        content: "";
        display: table;
        clear: both;
    }
    .purpel-menudiv ul li {
        display: block;
        float: left;
        width: 25%;
        border-bottom: none;
        position: relative;
        padding: 13px 5px;
        min-height: 94px
    }
    .purpel-menudiv ul li:after {
        position: absolute;
        top: 20px;
        right: 0;
        content: "";
        height: calc(100% - 40px);
        width: 1px;
        background-color: #fff;
    }
    .enrol-book-prospectus.fixed-btm ul li:after{
        background-color: #662d91;
    }
    .purpel-menudiv ul li:last-child:after {
        display: none;
    }
    .purpel-menudiv li a {
        padding: 0;
        background-color: transparent;
        position: relative;
        height: 100%;
        min-height: 33px;
    }
    .purpel-menudiv li a span {
        position: static;
        bottom: 0;
        display: block;
        margin: 10px 0 0;
    }
    .purpel-menudiv li a svg {
        margin: 0 auto 0px;
    }
    .purpel-menudiv li a svg.pmobile-icon {
        display: block;
        max-height: 25px;
        min-height: 25px;
    }
    .purpel-menudiv li a svg.pdesktop-icon {
        display: none;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon path {
        fill: #662d91;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li.emp-btn a svg.pmobile-icon path{
        fill: transparent;
        stroke: #662d91;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li.emp-btn a svg.pmobile-icon polyline,
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li.emp-btn a svg.pmobile-icon circle,
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li.emp-btn a svg.pmobile-icon line{
        stroke: #662d91;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon polygon,
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon rect {
        stroke: #662d91;
        fill: none;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon path {
        fill: #662d91;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon polygon,
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon rect {
        stroke: #662d91;
        fill: none;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv ul li a span {
        display: none;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a {
        /* min-height: inherit; */
        padding: 0;
    }
    .home-quicklink {
        padding: 0px 5px;
        margin: 20px 0 0;
    }
    .welcome-imagediv {
        width: calc(100% + 15px);
        margin-left: -15px;
    }
    .welcome-imagediv-inner {
        padding-bottom: 56.25%;
    }
    .welcome-text {
        margin-top: 55px;
        background: #fff;
        padding: 10px 0 10px;
    }
    .title-rotate {
        writing-mode: inherit;
        transform: inherit;
        margin: 0px;
        height: auto;
    }
    .upevent-title-div {
        padding-top: 0px;
        float: none;
        width: 100%;
    }
    .upevent-title-div .calendar-btn {
        display: none;
    }
    .calendar-btn {
        margin-top: 10px;
    }
    .calendar-btn.mobile-calendar-btn {
        display: block;
    }
    .upevent-sliderwrap {
        width: 100%;
        float: none;
        padding-left: 0px;
    }
    .upcoming-event-section {
        padding: 25px 20px;
    }
    .upevent-slider .slick-arrow,
    .videohome-slider .slick-arrow {
        bottom: auto;
        top: -65px;
        left: auto;
        right: 95px;
    }
    .upevent-slider .slick-arrow.slick-prev{
        left: auto;
        right: 95px;
    }
    .upevent-slider .slick-arrow.slick-next,
    .videohome-slider .slick-arrow.slick-next {
        left: auto;
        right: 45px;
    }
    .home-slider .slider-title {
        font-size: 26px;
        line-height: 1;
    }
    .home-slider .slider-content {
        max-width: 100%;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 25px 20px 15px 30px;
    }
    .home-slider .slider-content a{
        max-width: 320px;
        display: block;
    }
    .home-slider .slider-content:before {
        margin: 15px 15px 15px 0;
        height: 1px;
        width: 70%;
        border-width: 1px 0 0;
    }
    .home-slider .video-background-controls svg {
        width: 93px;
        height: 93px;
    }
    .home-slider .video-background-controls {
        right: 15px;
        height: 93px;
        width: 93px;
        bottom: 160px;
        left: auto;
        top: autp;
    }
    @keyframes SlideContentLine {
        from {
            width: 0;
        }
        to {
            width: calc(65% + 30px);
        }
    }
    .home-slider .slider-content .defult-btn:after{
        right: 0;
    }
    .quicklink-title-lg {
        width: calc(100% - 20px);
        padding: 12px 15px;
        font-size: 31px;
    }
    .quicklink-title {
        padding: 15px 15px 15px 0;
    }
    .quicklink-title-lg .arrow-btn {
        margin-left: 5px;
        height: 25px;
        width: 25px;
        background-size: 12px;
    }
    .quicklink-boxdiv {
        padding-bottom: 60%;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -40px;
        right: -65px;
        height: 440px;
    }
    .pillar-section {
        padding: 0 5px;
    }
    .pillar-slider {
        width: calc(100% + 20px);
        margin-right: -20px;
    }
    .pillar-slidernav-wrap {
        max-width: calc(100% + 20px);
        width: calc(100% + 20px);
        top: 45px;
        transform: inherit;
    }
    .pillar-slidernav-wrap,
    .twilight-content {
        margin-left: -20px;
    }
    .pillar-content {
        max-width: 100%;
        padding: 35px 30px 90px 40px;
        min-height: 510px;
    }
    .pillar-content p,
    .twilight-content p {
        letter-spacing: 1px;
        line-height: 1.7;
    }
    .pillar-action {
        bottom: 40px;
        max-width: calc(100% - 10px);
        margin-left: -20px;
        padding: 35px 15px 80px 50px;
    }
    .pillar-image-sec {
        min-height: 650px;
    }
    .pillar-action a {
        margin: 8px;
    }
    .welcome-text p {
        font-size: 16px;
        letter-spacing: 1.5px;
        line-height: 1.6;
        max-width: 100%;
    }
    .welcome-text .defult-btn {
        margin-top: 20px;
        margin-left: -20px;
    }
    .welcome-section .container-fluid {
        padding: 0 20px;
    }
    .welcome-section {
        padding: 30px 0px 35px;
    }
    .welcome-section .row:before {
        left: 18px;
        height: calc(100% + 60px);
        width: calc(100% - 20px);
        border-right: none;
        top: -30px;
    }
    .welcome-section {
        margin: 20px 0 40px;
    }
    .upevent-slider .slick-slide {
        padding: 0 20px;
        height: 100%;
    }
    .event-list-date:before {
        height: 260px;
        top: -20px;
        left: -20px;
    }
    .event-list-date .event-day,
    .event-list-date .event-month {
        font-size: 18px;
    }
    .event-list-date .event-date {
        font-size: 87px;
    }
    .event-list-date {
        padding: 35px 35px 62px;
    }
    .upevent-box {
        /* width: calc(100% + 20px); */
    }
    .upevent-box .defult-btn {
        margin-left: -20px;
        min-width: 250px;
        padding: 30px 45px 30px 70px;
    }
    .event-list-content h2,.event-list-content p {
        font-size: 18px;
        min-height: 56px;
        line-height: 28px;
    }
    .calendar-btn .defult-btn {
        padding: 22px 45px;
        min-width: 285px;
        line-height: 22px;
    }
    .upevent-title {
        max-width: 100%;
        margin: 0 0 80px 0;
    }
    .videohome-slider .slick-slide {
        padding: 0px 10px;
    }
    .videohome-slider.slick-slider .slick-list{
        margin: 0 -10px;
    }
    .twilight-section {
        padding: 0 0 0 5px;
    }
    .twilight-section .container-fluid {
        padding-right: 0px;
    }
    .twilight-content {
        max-width: 100%;
        padding: 90px 30px 30px 50px;
        width: 100%;
    }
    .twilight-title {
        margin-bottom: 35px;
        max-width: 280px;
    }
    .twilight-content .defult-btn {
        margin-top: 20px;
    }
    .twilight-button {
        margin-left: -50px;
    }
    .twilight-image-sec {
        padding: 45px 0 90px;
    }
    .twilight-section:before {
        content: "";
        position: absolute;
        height: 1px;
        width: calc(100% + 20px);
        background: rgba(255, 255, 255, 0.4);
        left: -20px;
        top: 90px;
        z-index: 1;
    }
    .twilight-section:after {
        left: -20px;
        width: calc(100% + 20px);
        bottom: 30px;
    }
    .twilight-section {
        margin: 20px 0 30px;
    }
    .site-footer {
        padding: 0 45px 90px;
    }
    .footer-content {
        width: 100%;
        margin-bottom: 50px;
        float: left;
    }
    .leftpart-footer {
        width: 100%;
        float: none;
    }
    .rightpart-footer {
        float: none;
        width: calc(100% + 90px);
        background: #59595b;
        padding: 45px;
        margin-left: -45px;
    }
    .footelogo-div.tbl-logodiv {
        text-align: center;
    }
    .footer-content h5 {
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    .footer-content ul li a,
    .footer-content p,
    .copyright-text {
        font-size: 13px;
    }
    .logo-linkdiv {
        border-right: none;
    }
    .footer-mobileshow-div {
        display: block;
        width: calc(100% + 90px);
        margin-left: -45px;
    }
    .footer-mobileshow-div .leftpart-greyline {
        display: block;
        padding: 45px;
        margin-left: 0;
        background-color: #2e2925;
    }
    .leftpart-footer .leftpart-greyline {
        display: none;
    }
    .rightpart-footer .copyright-text {
        display: none;
    }
    .footerall-linkwrap {
        margin-bottom: 0;
    }
    .rightpart-footer .footer-content h5,
    .footer-content p {
        color: #fff;
    }
    .footer-content p {
        letter-spacing: 1px;
    }
    .rightpart-footer .footer-content p:last-child {
        margin-bottom: 0;
    }
    .rightpart-footer .footer-content h5,
    .rightpart-footercontent {
        padding-left: 0px;
    }
    .rightpart-footer .footer-content {
        margin-bottom: 0;
    }
    .celebration-logodiv {
        width: 50%;
        float: left;
        padding: 0;
        border-right: 1px solid #fff;
        border-left: none;
    }
    .footer-icondiv {
        width: 50%;
        margin: 13px 0;
    }
    .footer-getsocial {
        float: left;
        width: 100%;
        margin: 40px 0 0 0;
    }
    .footer-getsocial p {
        margin: 0 0 25px 0;
        font-size: 15px;
        padding-right: 0;
        display: block;
        padding-bottom: 0px;
    }
    .footer-getsocial p span {
        padding-bottom: 15px;
    }
    .footer-getsocial ul li {
        margin: 0 25px;
    }
    .footer-getsocial ul li:first-child {
        margin-left: 0px;
    }
    .footer-getsocial p,
    .footer-getsocial ul {
        padding-left: 0px;
    }
    .copyright-text {
        padding-top: 35px;
        text-align: center;
        letter-spacing: 0.5px;
    }
    .copyright-text a svg {
        height: auto;
    }
    .pageloader-bgcolordiv:before {
        width: 297px;
        bottom: 20px;
        background-size: 100%;
        height: 295px;
    }
    .navigation-close {
        display: none;
    }
    .serach-mobile form {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.2s ease;
        position: absolute;
        top: -13px;
    }
    .serach-mobile:hover form {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .serach-mobile form .form-group {
        margin-bottom: 0;
    }
    .serach-mobile form .form-control {
        border-radius: 0px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.7);
        color: #2E2A25;
        background: #e1e0db;
        padding-right: 0;
        padding-top: 6px;
        padding-bottom: 6px;
        height: 44px;
        line-height: 20px;
        padding-left: 0px;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 1px;
    }
    .serach-mobile form .form-control::-webkit-input-placeholder {
        color: #2E2A25;
    }
    .serach-mobile form .form-control::-moz-placeholder {
        color: #2E2A25;
    }
    .serach-mobile form .form-control:-ms-input-placeholder {
        color: #2E2A25;
    }
    .serach-mobile form .form-control:-moz-placeholder {
        color: #2E2A25;
    }
    .comman-detaildiv {
        max-width: 100%;
    }
    .innerpage-slider,
    .innerpage-slider .sliderimg-div {
        height: 100vh;
        height: calc((var(--vh, 1vh) * 100));
    }
    .innerpage-slider .slider-content {
        max-width: calc(100% - 30px);
        bottom: 120px;
        left: 30px;
        padding-right: 20px;
    }
    .defultpage-wrapper {
        padding: 40px 15px;
    }
    .comman-detaildiv {
        padding: 40px 0;
    }
    .comman-detaildiv h1 {
        font-size: 40px;
    }
    .alert-notification-div {
        padding: 0px 30px;
        width: calc(100% + 40px);
        left: -20px;
        top: -5px;
        transition: all 0.4s ease-in;
        min-height: 60px;
    }
    .notification-bell {
        margin-right: 35px;
        height: 36px;
    }
    .notification-alert {
        font-size: 20px;
        max-width: 100%;
        margin-right: 25px;
    }
    .notification-infoicon {
        display: none;
    }
    .site-header.sticky .alert-notification-div {
        display: none;
    }
    .site-header.opened-menu .alert-notification-div {
        display: none;
    }
    .cube {
        transform: inherit !important;
    }
    .pillar-content,
    .twilight-content {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }
    .quicklink-title {
        backdrop-filter: blur(3px);
    }
    .calendar-sliderdiv {
        width: 100%;
    }
    .calendar-sliderdiv.innerpage-slider .slider-content {
        bottom: 60px;
    }
    .calendar-arrow-month {
        margin: 0px auto 30px;
    }
    .calendar-eventlistdiv .calendar-yeararrowdiv {
        display: none;
    }
    .calendar-eventlistdiv .btm-yeararrowdiv .calendar-yeararrowdiv {
        display: block;
    }
    .cal-filter-container {
        width: 100%;
        padding: 0 20px;
        position: relative;
    }
    .calcfilter-searchdiv {
        margin-left: 0px;
        position: absolute;
        top: 0;
        right: 20px;
        width: calc(100% - 40px);
    }
    .calcfilter-searchdiv .search-form {
        padding: 2px 0;
        font-size: 16px;
        background: #e1dfda;
        margin: 0;
        position: absolute;
        right: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .calcfilter-searchdiv .quick-search {
        float: right;
        z-index: 2;
    }
    .calcfilter-searchdiv .quick-search svg {
        height: 20px;
        width: 20px;
    }
    .calcfilter-searchdiv.active .search-form {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .filterselect-box {
        display: block;
        min-width: 100%;
    }
    .calendar-eventbox {
        padding: 30px 20px;
    }
    .btm-yeararrowdiv {
        margin-top: 25px;
    }
    .calendar-eventbox .upevent-box .defult-btn {
        min-width: 250px;
    }
    .eventpopup .event-info-modal:before {
        display: none;
    }
    .eventpopup .event-list-content {
        width: 100%;
        float: none;
        padding: 30px 0;
    }
    .eventpopup .event-info-modal {
        padding: 0 25px 25px;
    }
    .eventpopup .event-info-modal .event-list-date:before {
        width: 260px;
        z-index: 0;
        height: calc(100% + 25px);
        top: -25px;
        left: 0;
    }
    .eventpopup .event-info-modal .event-list-date {
        max-width: 260px;
        margin: 0 auto;
        float: none;
        padding: 40px 35px 45px;
    }
    .cloack-pin-div,
    .eventpopup .event-list-content h2 {
        max-width: 260px;
        margin: 0 auto 30px;
    }
    .modal .close {
        right: calc(50% - 115px);
        top: -20px;
    }
    .modal-dialog .modal-content {
        width: 94%;
        margin: 30px auto;
    }
    .calendar-site-footer {
        padding-bottom: 35px;
    }
    .mobilequicklink-div .nav-social-list li a svg path {
        fill: #662f8e;
    }
    .mobilequicklink-div .nav-social-list li a:hover svg path {
        fill: #2c903d;
    }
    .custom-calendar-wrap {
        left: 0;
    }
    .intro-module:before {
        width: calc(100% - 20px);
        top: 20px;
        bottom: 20px;
        height: calc(100% - 40px);
    }
    .intro-module {
        padding: 70px 0;
    }
    .video-module .container,
    .imgDivider-module-section .container,
    .intro-module .container {
        padding: 0 20px;
    }
    .intro-content-wrap {
        padding-left: 30px;
    }
    .imagetextimg-div {
        min-height: 460px;
        width: 100%;
        position: relative;
    }
    .imagetext-title-div {
        min-height: auto;
        width: calc(100% - 40px);
        padding: 30px;
        float: none;
        margin: -50px auto 0;
    }
    .imagetext-title-div p,
    .imagetext-title-div h2 {
        padding-left: 0;
    }
    .imagetext-title-div .defult-btn {
        margin-left: 0px;
        margin-top: 10px;
        min-width: 270px;
        padding: 30px 30px;
    }
    .imagetext-title-div .defult-btn:after {
        right: 30px;
    }
    .imagetext-module-section {
        padding: 0;
        margin: 30px auto 10px;
    }
    .video-module .container {
        padding: 0;
    }
    .video-outerdiv {
        width: 100%;
        position: relative;
    }
    .video-module-content {
        padding: 30px;
        width: calc(100% - 20px);
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 30px;
        float: none;
        margin-top: 0;
        margin-left: 20px;
    }
    .photogallery-thumb {
        display: none;
    }
    .photogallery-slider {
        padding-left: 20px;
        padding-bottom: 140px;
        padding-right: 20px;
    }
    .photogallery-slider .slick-list {
        width: 100%;
    }
    .photogallery-module:before {
        border-bottom: 1px solid rgba(102, 47, 142, 0.5);
        width: 100%;
        top: 30px;
        bottom: 20px;
        left: 0px;
        height: 99%;
        border-right: none;
    }
    .photogallery-module {
        padding: 80px 0px 0;
        margin: 30px 0 70px;
    }
    .photogallery-slider .slick-arrow.slick-prev,
    .photogallery-slider .slick-arrow.slick-next {
        left: 20px;
        bottom: 0;
    }
    .photogallery-slider .slick-arrow.slick-next {
        bottom: 32px;
        left: 85px;
    }
    .photogallery-slider .slick-arrow.slick-prev {
        left: 85px;
        bottom: 80px;
    }
    .imgDivider-module-section:before {
        width: calc(100% - 20px);
        top: 20px;
        bottom: 20px;
        height: calc(100% - 40px);
    }
    .imagetext-module-section.rightside .imagetextimg-div:after {
        display: none;
    }
    .imgDivider-module-section .imgDivider-content {
        left: 0;
        padding-left: 20px;
    }
    .imgDivider-module-section .imgDivider-content:before {
        left: 20px;
    }
    .imgDivider-module-section {
        padding: 110px 0;
    }
    .imagetext-module-section.rightside .imagetext-title-div h2,
    .imagetext-module-section.rightside .imagetext-title-div p {
        padding-right: 0;
    }
    .imgDivider-module-section.rightside .imgDivider-content {
        right: 0;
        padding-right: 20px;
        padding-left: 0px;
    }
    .imgDivider-module-section.rightside .imgDivider-content:after {
        right: 20px;
    }
    .pillar-module-section .pillar-content {
        padding: 35px 30px 90px 50px;
    }
    .imgDivider-module-section.imgDivider-imgonly {
        height: 240px;
    }
    .imagetext-title-div h3,
    .imagetext-title-div h2 {
        margin-bottom: 30px;
    }
    .photogallery-module:after {
        width: calc(100% - 45px);
    }
    .paralaxScroll {
        background-attachment: inherit;
    }
    .comman-detaildiv {
        max-width: 92%;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar .purpel-menudiv {
        display: none;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv {
        display: block;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        height: auto;
        min-height: inherit !important;
        width: 100%;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0px;
        margin: 0;
        padding: 15px 0;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar.fixed-btm .purpel-menudiv {
        position: fixed;
        padding: 10px 0;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv ul {
        text-align: center;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv ul li {
        float: none;
        display: inline-block;
        width: auto;
        padding: 0;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv li:before {
        position: absolute;
        height: 1px;
        width: 15px;
        background: #fff;
        content: "";
        left: 0;
        z-index: 1;
        margin-left: -1px;
        bottom: 20px;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar.fixed-btm .purpel-menudiv li:before {
        bottom: 17px;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv li a {
        min-height: inherit;
        padding: 12px 25px 10px !important;
        background: #662d91;
        display: inline-block;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar.fixed-btm .purpel-menudiv li a {
        padding: 10px 25px 8px !important;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar .purpel-menudiv li a span {
        margin: 0;
        position: relative;
        writing-mode: inherit;
        transform: inherit;
        display: block;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar {
        position: inherit;
        width: 100%;
        transition: all 0.3s;
        z-index: 9;
        padding: 0;
    }
    .previous-edition-div {
        padding: 20px 0;
    }
    .newsletter-articel-banner {
        width: 100%;
        border-right: none;
    }
    .newsletter-ql.purpel-menudiv ul li{
        width: 33.33%;
    }
    .enrol-book-prospectus.fixed-btm .newsletter-ql.purpel-menudiv ul li svg{
        filter: invert(85%) sepia(68%) saturate(2622%) hue-rotate(266deg) brightness(92%) contrast(96%);
    }
    .newsletter-articel-banner:before {
        top: 20px;
        bottom: 20px;
        left: 0px;
        height: calc(100% - 40px);
        width: calc(100% - 20px);
    }
    .newsletter-articel-banner .newsletter-articel-title {
        display: flex;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar .phone-quiklink-div {
        z-index: 9999;
        visibility: visible;
        opacity: 1;
        right: auto;
        left: 70px;
        margin-top: 19px;
    }
    .fixed-btm.enrol-book-prospectus.newsletter-floating-sidebar .phone-quiklink-div {
        visibility: visible;
        opacity: 1;
    }
    .feature-smallbox .tiles-grid-item .tiles-content {
        max-height: 100%;
        padding: 20px 25px;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .new-btn:after,
    .feature-smallbox .tiles-boxdiv .new-btn:after {
        display: none;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .tiles-title {
        font-size: 18px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 20px 15px;
        width: 100%;
    }
    .feature-newsletterlist .featuretitles-itemlarg>a {
        padding-top: 100%;
        position: relative;
    }
    .feature-newsletterlist .featuretitles-itemlarg .tiles-image{
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .featuretitles-itemlarg:after{
        height: 298px;
        width: 196px;
    }
    .newsletterlist-wrapper {
        margin: 30px 0;
    }
    .feature-newsletterlist {
        margin: 0 0px 20px 0;
    }
    .newsletterlist-issues {
        display: none;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
        height: auto;
        width: 100%;
        top: auto;
        bottom: 0;
        z-index: 1;
        padding: 30px 30px 120px 30px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div:before {
        width: 100%;
        height: 363px;
        top: auto;
        bottom: 0;
    }
    .parade-newstitle small {
        padding-left: 30px;
        margin-bottom: 10px;
        font-size: 18px;
    }
    .parade-newstitle {
        font-size: 44px;
        margin-bottom: 20px;
    }
    .newsletter-articel-title .twofeature-border {
        margin-bottom: 0;
    }
    .newsletterlist-titles-inner {
        margin: 0 auto 0px;
    }
    .parade-newstitle small:before {
        left: -96.5%;
    }
    .also-this-sectioninner {
        display: block;
        padding: 35px;
    }
    .also-this-section {
        width: calc(100% - 30px);
        right: -100%;
        top: 30px;
        height: calc(100vh - 30px);
    }
    .alsotiledi-hlf {
        padding-right: 70px;
        width: 100%;
        float: none;
    }
    .also-neewslist {
        margin-top: 40px;
        width: 100%;
        float: none;
        padding-left: 0px;
    }
    .also-bantl-inner {
        padding: 15px 25px 10px 0;
    }
    .also-bantl-inner span {
        margin-bottom: 0px;
    }
    .also-this-section ul {
        height: calc(100vh - 410px);
    }
    .also-bantl-inner,
    .also-this-section .also-title {
        margin-bottom: 20px;
    }
    .site-header.newsletter-header {
        position: fixed;
        background: #e1e0db;
        -webkit-animation-name: inherit;
        animation-name: inherit;
    }
    .site-header.newsletter-header .header-stickylogo-div {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    .articel-arrowdiv .right-arrow,
    .articel-arrowdiv .left-arrow {
        top: auto;
        bottom: 16px;
        transition: all 0.2s;
    }
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar.fixed-btm .purpel-menudiv .articel-arrowdiv .left-arrow,
    .enrol-book-prospectus.newsletter-floating-sidebar.newsletter-floating-articel-sidebar.fixed-btm .purpel-menudiv .articel-arrowdiv .right-arrow {
        bottom: 9px;
    }
    .newsletter-articel-banner .innerpage-slider,
    .newsletter-articel-banner .innerpage-slider .sliderimg-div {
        height: calc(50vh - 60px);
    }
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider,
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div {
        height: 100vh;
    }
    .imagetextimg-div:after {
        display: none;
    }
    .newsletter-previousedi-banner .innerpage-slider .slider-content {
        bottom: 60px;
    }
    .previousedi-footer {
        padding-bottom: 35px;
    }
    .directorypage-wrapper .craftcms-formdiv {
        max-width: 100%;
    }
    .directory-form .form-group.searchicon:before {
        right: 15px;
    }
    .directory-telmail {
        display: none;
    }
    .directory-listinner {
        max-width: 100%;
        padding: 0 20px;
    }
    .directory-listbox .directory-content:before {
        width: 100%;
        height: calc(100% - 30px);
        bottom: 0;
        top: auto;
    }
    .directory-listbox .directory-bgdiv {
        width: calc(100% - 30px);
        box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
        margin: 0px auto 0;
        float: none;
    }
    .directory-info {
        width: 100%;
        float: none;
    }
    .directory-listbox .directory-bgdivinner {
        padding-bottom: 66.66%;
    }
    .directory-info h3 {
        margin-bottom: 20px;
        font-size: 28px;
    }
    .directory-titlediv p {
        font-size: 17px;
    }
    .directory-listbox .directory-info {
        padding: 25px 15px 55px;
    }
    .directory-listbox {
        display: block;
        margin: 25px 0;
    }
    .directory-text {
        display: none;
    }
    .directory-titlediv:before {
        width: 85%;
    }
    .directory-catlist li {
        font-size: 16px;
    }
    .directory-info .defult-btn span {
        display: none;
    }
    .directory-info .defult-btn {
        position: absolute;
        right: 15px;
        bottom: 15px;
        min-width: inherit;
        padding: 18px;
        border: none;
    }
    .directory-info .defult-btn:after {
        left: 0px;
        border: 1px solid #fff;
    }
    .directory-info .defult-btn:before {
        display: none;
    }
    .directory-catlist {
        margin-bottom: 0;
    }
    .directory-list-wrap {
        margin: 20px 0 50px;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 42px;
    }
    .directory-detailpage .directory-info:before {
        display: none;
    }
    .directory-detailpage.directory-listbox .directory-info {
        padding: 40px 15px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn span {
        display: block;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn {
        position: relative;
        right: auto;
        bottom: auto;
        min-width: inherit;
        padding: 18px 35px 18px 80px;
        border: 1px solid rgba(44, 144, 61, 0.5);
        border-left: none;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn.sharebtn {
        padding: 12px 17px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn:after {
        left: 20px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn:before {
        display: block;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn svg {
        top: 3px;
    }
    .directory-goback .defult-btn {
        margin-left: 25px;
    }
    .directory-detailbanner-section .enrol-book-prospectus .purpel-menudiv {
        position: fixed;
    }
    .directory-textinfo .directory-telmail {
        display: block;
    }
    .directory-contactinfo {
        padding: 50px 0;
    }
    .directory-contactinfo:before {
        top: 15px;
    }
    .directory-contactinfo:after {
        bottom: 15px;
    }
    .directory-textinfo h3 {
        margin-bottom: 30px;
    }
    .directory-textinfo {
        padding: 0 40px;
    }
    .directory-mapcontact .directory-telmail ul li {
        font-size: 14px;
    }
    .site-header.sticky .gtranslate-mobile svg path {
        fill: #662f8e;
    }
    .videoslide-boxdiv .video-background-controls button i {
        height: 80px;
        width: 80px;
    }
    .videoslide-boxdiv .video-background-controls button i:before {
        width: 24px;
        height: 30px;
    }
    .upevent-slider.slick-slider .slick-list{
        margin-right: -20px;
    }
    .custom-fancybox{
        width: 100%;
    }
    body.fancybox-open .site-header{
        width: calc(100% - 60px);
    }
    body.fancybox-open .enrol-book-prospectus,.custom-fancybox::before{
        display: none;
    }
    body.fancybox-open .site-header .logo-div {
        margin: 30px auto 0;
        right: -30px;
        position: relative;
    }
    .custom-fancybox .fancybox-stage {
        height: auto;
        margin: 0;
    }
    .custom-fancybox .fancybox-button.fancybox-button--close {
        right: 15px;
        top: 15px;
    }
    .custom-fancybox .fancybox-slide{
        padding: 30px 0;
    }
    .custom-fancybox .fancybox-bg{
        background-position: 20% 0%;
    }
    .home-slider .video-box .video-wrapper iframe {
        width: 385%;
    }
    .home-banner-section{
        padding-right: 0;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 0;
    }
    .campus-block {
        left: 0;
        width: 100%;
        position: relative;
        padding: 5px 5px 0;
        display: flex;
        flex-wrap: wrap;
        height: 180px;
        margin-bottom: 90px;
    }
    .campus-block .campus-btn:first-child .campus-btn-content {
        padding-left: 0;
    }
    .campus-block .campus-btn:not(:first-child) {
        margin-left: 0;
        padding-left: 20px;
    }
    .campus-block .campus-btn {
        width: 50%;
        text-align: center;
    }
    .campus-block .campus-btn-content {
        right: 0;
        margin: 0 auto;
        min-height: 80px;
        padding: 10px 0 0 0;
        width: 62%;
    }
    .campus-block:after {
        height: 80px;
    }
    .campus-block:before {
        height: 100%;
    }
    .home-slider .slick-slide:after{
        display: none;
    }
    .home-slider .sliderimg-div,.home-slider .video-box{
        height: calc((var(--vh, 1vh)* 100) - 270px);
    }
    .campus-block .campus-btn .campus-btn-lable{
        font-size: 16px;
    }
    .campus-block .campus-btn .campus-btn-subtxt {
        font-size: 13px;
    }
    .showcase-sec .container, .welcome-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .showcase-sec .section-header {
        padding-left: 0;
        margin-bottom: 30px;
    }
    .welcome-title strong, .showcase-sec .section-header h2 strong {
        font-size: 34px;
    }
    .welcome-title, .showcase-sec .section-header h2 {
        font-size: 20px;
    }
    .showcase-sec .slick-slide {
        padding: 0px 7px;
    }
    .showcase-sec .showcase-slider {
        margin-right: -15px;
    }
    .showcase-slider .slick-arrow{
        left: 0;
    }
    .showcase-sec {
        margin: 0 0 70px;
    }
    .showcase-sec .slick-list {
        padding-right: 90px;
        margin: 0 -7px;
    }
    .videohome-slider .slick-arrow.slick-prev {
        left: auto;
    }
    .twilight-image-sec {
        margin-left: 0;
    }
    .readerview-principle .col-left {
        width: 100%;
    }
    .readerview-principle .newsletter-articel-title {
        width: 100%;
        padding: 50px 30px;
        min-height: 250px;
    }
    .comman-detaildiv figure {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .quicklink-boxdiv {
        padding-bottom: 80%;
    }
    .quicklink-boxdiv.college-newsletter img {
        top: -32px;
        right: -65px;
        height: 330px;
    }
    .pillar-title {
        margin-bottom: 35px;
        max-width: 100%;
        font-size: 38px;
    }
    .welcome-title strong,
    .upevent-title,
    .twilight-title {
        font-size: 38px;
    }
    .welcome-title {
        font-size: 27px;
    }
    .upevent-box .defult-btn {
        min-width: 250px;
    }
    .nav-link-div ul>li>a {
        font-size: 30px;
    }
    .drop-down ul li a {
        font-size: 18px;
    }
    .innerpage-slider .slider-title {
        word-break: break-word;
        font-size: 36px;
    }
    .innerpage-slider .subtile-div {
        margin-bottom: 10px;
        font-size: 16px;
        padding-left: 30px;
    }
    .defultpage-wrapper {
        padding: 30px 5px;
    }
    .comman-detaildiv {
        padding: 30px 0;
    }
    .comman-detaildiv blockquote {
        font-size: 16px;
        padding-left: 25px;
        margin-bottom: 35px;
    }
    .comman-detaildiv h1 {
        font-size: 34px;
        padding-top: 15px;
        margin-bottom: 25px;
    }
    .comman-detaildiv h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .comman-detaildiv h3 {
        font-size: 20px;
        margin-bottom: 25px;
        padding-left: 45px;
        padding-top: 15px;
    }
    .comman-detaildiv h3:before {
        width: 30px;
        top: 27px;
    }
    .comman-detaildiv h4 {
        font-size: 18px;
        padding-top: 10px;
        margin-bottom: 20px;
    }
    .comman-detaildiv h5 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .comman-detaildiv p,
    .comman-detaildiv h6 {
        margin-bottom: 20px;
    }
    .table {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .comman-detaildiv figure {
        margin-top: 30px;
        margin-bottom: 90px;
    }
    .comman-detaildiv figure.no-caption {
        padding-bottom: 0;
        margin-bottom: 50px;
    }
    .comman-detaildiv figcaption {
        left: 30px;
        padding: 20px 0px 10px 15px;
    }
    .comman-detaildiv figcaption:before {
        top: -40px;
        height: calc(100% + 40px);
    }
    .file-dwonload-a a {
        margin: 8px 0;
        font-size: 16px;
        padding: 15px 15px 15px 70px;
    }
    .file-dwonload-a a:after {
        left: 15px;
    }
    .table thead th,
    .table td {
        padding: 10px 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .table td p {
        font-size: 14px;
        line-height: 20px;
    }
    .notification-bell {
        margin-right: 25px;
        height: 30px;
    }
    .alert-notification-div {
        padding: 0px 65px 0 20px;
    }
    .notification-alert {
        font-size: 16px;
        max-width: 100%;
        margin-right: 0px;
    }
    .custom-calendar-wrap {
        padding: 20px;
    }
    .calender-date-wrapper {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .fc-calendar .fc-row .fc-future:first-child .content_wrap,
    .fc-calendar .fc-row .fc-future:nth-child(2) .content_wrap,
    .fc-calendar .fc-row .fc-past:first-child .content_wrap,
    .fc-calendar .fc-row .fc-past:nth-child(2) .content_wrap {
        margin-left: -24px;
    }
    .fc-calendar .fc-row .fc-future:first-child .content_wrap:after,
    .fc-calendar .fc-row .fc-future:nth-child(2) .content_wrap:after,
    .fc-calendar .fc-row .fc-past:first-child .content_wrap:after,
    .fc-calendar .fc-row .fc-past:nth-child(2) .content_wrap:after {
        left: 51px;
        margin-left: -35px;
    }
    .fc-calendar .fc-row .fc-future:last-child .content_wrap,
    .fc-calendar .fc-row .fc-future:nth-child(6) .content_wrap,
    .fc-calendar .fc-row .fc-past:last-child .content_wrap,
    .fc-calendar .fc-row .fc-past:nth-child(6) .content_wrap {
        margin-left: 0px;
        margin-right: 0px;
        left: -124px;
    }
    .fc-calendar .fc-row .fc-future:last-child .content_wrap:after,
    .fc-calendar .fc-row .fc-future:nth-child(6) .content_wrap:after,
    .fc-calendar .fc-row .fc-past:last-child .content_wrap:after,
    .fc-calendar .fc-row .fc-past:nth-child(6) .content_wrap:after {
        left: auto;
        right: 18px;
        margin-left: 0;
    }
    .fc-calendar .fc-head>div>span.fc-week,
    .fc-calendar .fc-row>div>span.fc-date {
        margin: -20px 0 0 -20px;
        width: 40px;
        line-height: 38px;
        height: 40px;
    }
    .custom-month {
        font-size: 38px;
    }
    .eventpopup .event-list-content p {
        font-size: 13px;
        line-height: 22px;
    }
    .eventpopup .calendar .defult-btn {
        padding: 30px 30px;
        min-width: 280px;
    }
    .eventpopup .calendar .defult-btn:after {
        right: 30px;
    }
    .eventpopup .event-info-modal .event-list-date,
    .eventpopup .event-info-modal .event-list-date:before {
        width: 100%;
        max-width: 100%;
    }
    .accordion-box>a {
        font-size: 16px;
        padding: 20px 40px 20px 0;
    }
    .video-divbox .video-background-controls button i {
        height: 130px;
        width: 130px;
    }
    .video-divbox .video-background-controls button i:before {
        background-size: 40px;
        width: 40px;
        height: 52px;
    }
    .photogallery-slider .photogallery-imgdiv p {
        padding: 15px 0px 15px 20px;
        bottom: -110px;
        font-size: 13px;
        max-width: 100% !important;
        left: 50px;
    }
    .photogallery-slider .slider-image.with-caption {
        padding-bottom: 110px;
    }
    .pillar-module-section .defult-btn {
        padding: 30px 30px;
        min-width: 275px;
    }
    .pillar-module-section .defult-btn:after {
        right: 30px;
    }
    .video-module-content .defult-btn {
        margin-top: 15px;
        padding: 30px 30px;
        min-width: 290px;
    }
    .video-module-content .defult-btn:after {
        right: 30px;
    }
    .previous-edition-col {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .prevedition-content {
        padding: 35px 35px 45px 45px;
    }
    .prevedition-dateno {
        padding: 35px 35px 25px 0;
        margin-bottom: 45px;
    }
    .prevedition-boxdiv:before {
        top: -105px;
        height: 568px;
        width: 527px;
    }
    .previous-edition-div {
        padding: 0px 0;
    }
    .newsletter-articel-banner:before {
        top: 15px;
        bottom: 15px;
        left: 0px;
        height: calc(100% - 30px);
        width: calc(100% - 15px);
    }
    .twofeature-secrtion {
        padding: 0px 5px 35px;
    }
    .twofeature-eventbox .feaure-texttitle {
        top: auto;
        bottom: 30px;
        transform: inherit;
        width: calc(100% + 40px);
        left: -20px;
        right: -20px;
    }
    .twofeature-eventbox {
        height: 280px;
    }
    .twofeature-eventbox .feaure-texttitle {
        min-height: inherit;
        padding: 20px 70px 25px 60px;
    }
    .twofeature-eventbox.right .twofeature-border {
        padding: 25px 0px 31px 35px;
    }
    .twofeature-eventbox.right .feaure-texttitle {
        right: -20px;
        left: -20px;
        padding: 20px 60px 25px 70px;
    }
    .twofeature-border {
        padding: 10px 35px 15px 0;
        min-height: inherit;
    }
    .twofeature-eventbox .feaure-texttitle p {
        margin-bottom: 15px;
    }
    .twofeature-eventbox .overlay-bg:before {
        min-height: 191px;
        transform: inherit;
        top: auto;
        bottom: 30px;
        width: calc(100% + 40px);
        left: -20px;
    }
    .twofeature-eventbox.right .overlay-bg:before {
        left: auto;
        right: -20px;
    }
    .twofeature-eventbox.right .feaure-texttitle h2 {
        margin: 0;
    }
    .articel-title {
        margin-bottom: 30px;
        font-size: 38px;
        position: relative;
    }
    /* .articel-title:after {
        content: "";
        position: absolute;
        top: 0px;
        left: -25px;
        height: 1px;
        width: 40px;
        background: rgba(102, 47, 102, 0.5);
    } */
    .newsletter-articel-banner .author-picdiv .author-img {
        margin-top: 0px;
        margin-bottom: 15px;
        height: 100px;
        width: 100px;
    }
    .articel-title-inner {
        margin-left: 0;
        max-width: 100%;
        padding: 0 35px 0 25px;
    }
    .newsletter-articel-banner .author-picdiv {
        padding-top: 0px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
    .newsletter-articel-banner .author-picdiv:after {
        display: none;
    }
    .newsletter-articel-banner .author-picdiv .author-text {
        order: 2;
        width: 100%;
        margin-bottom: 8px;
        position: relative;
        padding-top: 15px;
    }
    .newsletter-articel-banner .author-picdiv .author-text:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        height: 1px;
        width: 100px;
        background: rgba(102, 47, 102, 0.5);
    }
    .newsletter-articel-banner .author-picdiv .author-cat {
        order: 3;
        width: 100%;
        margin-bottom: 0;
    }
    .author-picdiv .author-text,
    .author-picdiv .author-cat,
    .author-picdiv .author-coatsub {
        font-size: 15px;
    }
    .newsletter-articel-banner .innerpage-slider,
    .newsletter-articel-banner .innerpage-slider .sliderimg-div {
        height: 42vh;
    }
    .newsletter-articel-banner .newsletter-articel-title {
        height: calc(58vh - 60px);
    }
    .author-picdiv .author-img {
        height: 100px;
        width: 100px;
    }
    .newsletterlist-tiles .tiles-grid-sizer,
    .newsletterlist-tiles .tiles-grid-item {
        width: 100%;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv p {
        margin-bottom: 15px;
    }
    .parade-newstitle small:before {
        left: -92.5%;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 38px;
    }
    .directory-textinfo p {
        font-size: 14px;
        line-height: 24px;
    }
    .purpel-menudiv li a{
        font-size: 12px;
    }
    .videohome-slider.slick-slider .slick-list{
        padding-right: 0;
    }
}

@media (max-width: 375px) {
    .prevedition-boxdiv:before {
        top: -95px;
        height: 508px;
        width: 467px;
        left: 10px;
    }
}

@media (max-width: 360px) {
    .defult-btn {
        min-width: 280px;
    }
    .home-slider .slider-title {
        font-size: 24px;
    }
    .quicklink-title-lg {
        font-size: 26px;
    }
    .quicklink-title-lg .arrow-btn {
        height: 22px;
        width: 22px;
    }
    .pillar-content {
        padding: 35px 15px 90px 40px;
    }
    .event-list-content {
        padding: 35px 20px;
    }
    .event-list-content h2,.event-list-content p {
        font-size: 16px;
    }
    .upevent-box .defult-btn {
        min-width: 230px;
    }
    /* .calendar-btn .defult-btn {
        min-width: 230px;
    } */
    .twilight-content {
        padding: 90px 15px 30px 40px;
    }
    .navigation-content-wrap {
        padding: 0px 30px;
    }
    .nav-link-div ul>li>a {
        font-size: 26px;
    }
    .drop-down ul li a {
        font-size: 14px;
    }
    .nav-link-div ul>li {
        margin-bottom: 13px;
    }
    .phone-quiklink-div ul li {
        margin: 0 16px 0;
    }
    .nav-quicklink-list {
        width: 86%;
    }
    .mobile-quickback-div {
        margin-left: 30px;
    }
    .mobilequicklink-div .nav-quicklink-boxdiv .nav-quicklink-title {
        padding-left: 30px;
    }
    .innerpage-slider .slider-content {
        max-width: calc(100% - 40px);
        left: 20px;
    }
    .innerpage-slider .slider-title {
        font-size: 32px;
    }
    .pillar-title {
        font-size: 30px;
    }
    .pillar-title {
        margin-bottom: 25px;
    }
    .comman-detaildiv figcaption {
        font-size: 12px;
    }
    .notification-bell {
        margin-right: 15px;
        height: 30px;
    }
    .alert-notification-div {
        padding: 0px 65px 0 15px;
    }
    .notification-alert {
        font-size: 14px;
        max-width: 100%;
        margin-right: 0px;
    }
    .fc-calendar .fc-head>div>span.fc-week,
    .fc-calendar .fc-row>div>span.fc-date {
        margin: -18px 0 0 -18px;
        width: 36px;
        line-height: 34px;
        height: 36px;
        font-size: 14px;
    }
    .eventpopup .event-info-modal .event-list-date:before {
        width: 100%;
    }
    .eventpopup .calendar .defult-btn {
        min-width: 240px;
        padding: 20px 20px;
        font-size: 16px;
    }
    .eventpopup .calendar .defult-btn:after {
        right: 15px;
    }
    .modal .close {
        right: calc(50% - 105px);
        top: -20px;
    }
    .imagetext-title-div {
        padding: 20px;
    }
    .imagetext-title-div h2 {
        font-size: 36px;
    }
    .imagetext-title-div .defult-btn,
    .pillar-module-section .defult-btn {
        min-width: 240px;
        padding: 30px 20px;
    }
    .imagetext-title-div .defult-btn:after,
    .pillar-module-section .defult-btn:after {
        right: 20px;
    }
    .photogallery-slider .photogallery-imgdiv p {
        padding: 15px 0px 15px 15px;
        left: 25px;
    }
    .prevedition-content {
        padding: 25px;
    }
    .prevedition-dateno {
        padding: 25px 25px 15px 0;
        margin-bottom: 40px;
    }
    .prevedition-boxdiv:before {
        top: -86px;
        height: 438px;
        width: 397px;
        left: 0px;
    }
    .articel-title {
        padding-top: 10px;
        margin-bottom: 15px;
        font-size: 28px;
    }
    .articel-title-inner {
        margin-left: 0;
        max-width: 100%;
        padding: 0 30px 0 20px;
    }
    .newsletter-articel-banner .author-picdiv .author-img {
        height: 90px;
        width: 90px;
    }
    .author-picdiv .author-text,
    .author-picdiv .author-cat,
    .author-picdiv .author-coatsub {
        font-size: 14px;
    }
    .newsletter-articel-banner .author-picdiv .author-text {
        margin-bottom: 5px;
        padding-top: 10px;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 32px;
    }
    .directory-detailpage .directory-catlist li {
        font-size: 14px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn {
        padding: 16px 15px 16px 60px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn:after {
        left: 10px;
    }
    .directory-detailpage.directory-listbox .directory-info .defult-btn.sharebtn {
        padding: 10px 17px;
        margin-left: 10px;
    }
    .directory-goback {
        padding: 20px 0;
    }
    .directory-textinfo {
        padding: 0 30px;
    }
    .home-slider .video-background-controls{
        bottom: 140px;
    }
}