@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 {}

.page-wrapper,
.navigation-open,
.page-loader {
    overflow: hidden;
}

.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;
}
button#check-bzdir-form:hover{
	color:#FFF !important;
}

.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/navmenu-logo.svg) no-repeat;
    position: absolute;
    bottom: 10px;
    left: 0px;
    content: "";
    width: 335px;
    height: 408px;
    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;
}

.site-header .logo-div {
    width: 110px;
    margin: 30px auto 0 80px !important;
}

.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;
}


/* Mennu CSS */

.navigation-close {
    font-weight: 700;
    cursor: pointer;
    color: #023770;
    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: #023770;
    background-color: #023770;
}

.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(2, 55, 112, 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: 0px;
    z-index: 1;
    left: 0px;
    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: 10px;
    overflow: hidden;
}

.nav-link-div ul>li:last-child {
    margin-bottom: 0px;
}

.nav-link-div ul>li>a {
    font-size: 46px;
    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: 40px;
    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: 25px 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: #023770;
    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 svg path,
.nav-quicklink-list ul li a svg polygon,
.nav-quicklink-list ul li a svg rect {
    fill: #023770;
}

.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:nth-child(4) div {
    transition: transform .5s cubic-bezier(.165, .84, .44, 1) 1.4s;
}
.is-active .nav-social-list li div {
    transform: translateY(0) translateZ(0);
}


/* Home Slider CSS */

.home-banner-section {
    position: relative;
}

.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.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a3000000', endColorstr='#00000000', GradientType=0);
}

.home-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.3) 100%);background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);*/
    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.3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a3000000', GradientType=0);
}

.home-slider .slick-slide.whiteBG:before {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#a3000000', endColorstr='#00000000', GradientType=0);
}

.home-slider .slick-slide.whiteBG:after {
    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(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a3000000', 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: 90px;
    padding-top: 15px;
    left: 80px;
    right: 0;
    margin: 0;
    z-index: 1;
    width: 100%;
    max-width: 1170px;
}

.home-slider .slider-title {
    opacity: 0;
    position: relative;
    font-weight: 700;
    font-size: 70px;
    line-height: 1;
    color: #fff;
    margin-bottom: 0px;
}

.home-slider .slider-title strong {
    color: #662d91;
    font-weight: 700;
    display: block;
}

.home-slider .slider-content:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 0px;
    background: rgba(255, 255, 255, 0.4);
    left: -80px;
    top: 0px;
}

.home-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);
    }
}

.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 .slick-slide:nth-child(odd) .slider-title strong {
    /* color: #fff; */
}

.home-slider .slick-slide:nth-child(odd) .slider-content:before {
    /* background: rgba(102, 47, 142, 0.4); */
}


/* 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: 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: #023770;
    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: #023770;
    border-color: #023770;
    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: 40px;
}

.phone-quiklink-div ul li a:hover svg path {
    fill: #023770;
}

.enrol-book-prospectus.ebp-sticky .phone-quiklink-div ul li {
    margin-bottom: 15px;
}

.social-linkdiv {
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
}

.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: 140px;
}

.enrol-book-prospectus.ebp-sticky .social-linkdiv ul li {
    margin-bottom: 20px;
}

.social-linkdiv ul li a:hover svg path {
    fill: #023770;
}

.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: #023770;
    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: -210px;
    left: -20px;
}

.purpel-menudiv li {
    border-bottom: 1px solid #fff;
    text-align: center;
    display: block;
}

.purpel-menudiv li:last-child {
    border-bottom: none;
    text-align: center;
}

.purpel-menudiv li a {
    background-color: #023770;
    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;
	max-height:22px;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv {
    width: 80px;
    margin-top: -295px;
    left: 0;
    padding: 0 10px;
}

.enrol-book-prospectus.ebp-sticky .purpel-menudiv li a {
    display: block;
    padding: 15px 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: rgba(81, 28, 108, 0.85);
    background-blend-mode: multiply;
    backdrop-filter: blur(4px);
}

.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;
}

.home-quicklink .row .quiklink-col:last-child .quicklink-title-lg .animation-element {
    transition-delay: .24s;
}

.quicklink-boxdiv.college-newsletter {
    background: #4c934f;
}

.quicklink-boxdiv.college-newsletter img {
    position: absolute;
    top: 0px;
    opacity: 0.9;
    right: -70px;
    height: 430px;
    transition: all 0.2s ease;
}

.quicklink-boxdiv.college-newsletter .quicklink-title {
    background: transparent;
    backdrop-filter: inherit;
}

.quicklink-boxdiv.college-newsletter .quicklink-title-lg {
    color: #662d90;
}

.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 {
    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);
}

.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 15px 30px;
    margin: 35px 0 70px;
}

.welcome-section:before {
    position: absolute;
    top: 0;
    right: 30px;
    content: "";
    height: 100%;
    width: 90%;
    border: 1px solid rgba(102, 47, 142, 0.5);
    z-index: 1;
    pointer-events: none;
}

.welcome-imagediv {
    width: 57%;
    position: relative;
    margin-left: -30px;
    float: left;
    transition-delay: .08s;
}

.welcome-imagediv-inner {
    padding-bottom: 66.66%;
    position: relative;
    height: auto;
    display: block;
}

.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%);
    margin-top: 105px;
    padding-left: 35px;
}

.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: 51px;
    line-height: 1;
    font-weight: 300;
    color: #662f8e;
    transition-delay: .08s;
}

.welcome-title strong {
    font-weight: 700;
    font-size: 70px;
    color: #2c903d;
    display: block;
}

.welcome-text .defult-btn {
    margin-top: 40px;
}

.welcome-content {
    transition-delay: .16s;
}

.welcome-button {
    transition-delay: .24s;
}


/* Upcoming Event CSS */

.upcoming-event-section {
    position: relative;
    padding: 70px 0;
}

.upevent-title-div {
    width: 290px;
    float: left;
    position: relative;
}

.upevent-title {
    color: #2e2925;
    position: relative;
    font-weight: 700;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 260px;
    transition-delay: .8s
}

.title-rotate {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0px auto;
}

.calendar-btn {
    margin-top: 111px;
}

.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% - 290px);
    padding-left: 15px;
    float: left;
    position: relative;
}

.upevent-box {
    position: relative;
    border: 1px solid #662f8e;
}

.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: #662f8e;
    font-size: 87px;
    line-height: 1;
}

.event-list-content {
    text-align: center;
    padding: 40px 35px;
}

.upevent-box .defult-btn {
    min-width: 300px;
    margin-left: -23px;
    padding: 32px 47px 32px 70px;
    margin-bottom: 22px;
}

.upevent-box .defult-btn:before {
    background-color: rgb(44, 144, 61, 0.9);
}

.event-list-content h2 {
    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: 25px 30px;
}

.upevent-slider.slick-slider .slick-list {
    padding-left: 0 !important;
}

.upevent-slider .slick-arrow {
    position: absolute;
    bottom: 28%;
    left: -225px;
    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 {
    background-color: #2c903d;
    background-image: url(../images/button-arrow-white.png);
}

.upevent-slider .slick-arrow.slick-prev {
    transform: rotate(180deg);
}

.upevent-slider .slick-arrow.slick-next {
    left: -170px;
}

.upevent-slider .slick-slide:focus {
    outline: 0;
}

.calendar-btn.mobile-calendar-btn {
    display: none;
}


/* twilight Section */

.twilight-section {
    position: relative;
    padding: 0px 15px;
    margin: 50px 0 35px;
}

.twilight-section:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1170px;
    background: rgba(255, 255, 255, 0.4);
    left: -30px;
    bottom: 190px;
    z-index: 1;
}

.twilight-image-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 110px;
}

.twilight-content {
    background-color: rgba(81, 28, 108, 0.85);
    margin-left: -30px;
    max-width: 930px;
    padding: 100px 145px 135px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.twilight-title {
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 500px;
    font-size: 70px;
    line-height: 1;
    color: #fff;
    transition-delay: .08s;
}

.twilight-title span {
    color: #a47cce;
    display: block;
}

.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;
}

.twilight-button {
    transition-delay: .24s;
}


/* 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;
}

.comman-detaildiv h1 {
    text-transform: uppercase;
    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;
}

.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: 50px;
    padding-bottom: 100px;
    margin-bottom: 50px;
}

.comman-detaildiv figcaption {
    padding: 25px 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: 80px;
}

.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 input[type="password"],
.craftcms-formdiv form textarea,
.freeform-row .freeform-column .freeform-input.StripeElement {
    font-size: 14px;
    color: #808083;
    border: 1px solid rgba(102, 47, 141, 0.5) !important;
    border-radius: 0px;
    height: 42px !important;
    background-color: transparent;
    padding: 8px 20px !important;
}

.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"]:not(.note-btn):not(.close),
.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: 40px; 
}
.craftcms-formdiv button[type="submit"]:disabled{
	border-color:#CCC;
	color:#CCC;
	opacity:0.2;
}
.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(108, 172, 221, 0.5);
}
.craftcms-formdiv button[type="submit"]:disabled:after{
	background-color:#CCC;
}
.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-green.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;
}
.accordion-box .content .halloffame-section{
    padding-bottom: 0;
    margin-bottom: 0;
}
.accordion-box .content .halloffame-section .container{
    padding: 0;
}

.comman-detaildiv .accordion-box .content p {
    opacity: 1;
    margin-bottom: 20px;
}

.imgDivider-module-section {
    padding: 130px 0;
    background: #023770;
    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(2, 55, 112, 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 {
    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;
    min-height: 840px;
}

.imagetext-innerdiv {
    max-width: 732px;
    margin: 0 auto;
}

.imagetext-title-div h2 {
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0px;
    font-weight: 700;
    color: #2e2925;
    margin-bottom: 70px;
    max-width: 630px;
    padding-left: 65px;
}

.imagetext-title-div h2 a {
    color: #2e2925;
}

.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 h2 a,
.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;
}

.video-outerdiv {
    max-width: 57%;
    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: 66.66%;
}

.video-divbox .youtube-background {
    background-size: 125% !important;
}

.video-divbox iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100% !important;
    width: 120% !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%;
}

.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: relative;
    float: right;
    margin-top: 72px;
    opacity: 0;
    transition-property: opacity, transform;
    transform: translate3d(100px, 0, 0);
    transition-timing-function: ease;
    transition-duration: 0.8s;
}

.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;
}

.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);
    border-bottom: none;
    border-left: none;
    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 !important;
    padding-bottom: 15px !important;
}

.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: 65px;
    max-width: 480px;
    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: 1px;
    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;
}

.newsletter-articel-banner .innerpage-slider .slick-slide:before,
.newsletter-previousedi-banner .innerpage-slider .slick-slide:before {
    display: none;
}

.newsletter-articel-banner .innerpage-slider .slick-slide:after,
.newsletter-previousedi-banner .innerpage-slider .slick-slide:after {
    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: #511C6C;
    mix-blend-mode: multiply;
    opacity: 0.93;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
    width: 460px;
    padding: 90px 40px 40px 70px;
    height: 90vh;
    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: 70px;
    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 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

.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: #a47cce;
}

.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;
    padding-left: 30px;
    position: relative;
}

.newsletterlist-issues ul li:after {
    position: absolute;
    bottom: 0px;
    width: 70px;
    background: #fff;
    height: 1px;
    left: 0;
    content: "";
    opacity: 0.5;
}

.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 -30px;
}

.newsletterlist-tiles .tiles-grid-sizer {
    width: 33.33%;
    padding: 30px;
}

.newsletterlist-tiles .tiles-grid-item {
    width: 33.33%;
    position: relative;
    padding: 30px;
}

.newsletterlist-tiles .tiles-grid-item.tiles-half {
    width: 66.66%;
}

.newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv {
    height: 980px;
}

.newsletterlist-tiles .tiles-boxdiv {
    height: 460px;
    padding: 0px;
    overflow: hidden;
    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;
}

.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;
    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);
}

.newsletterlist-tiles .tiles-grid-item.green-bg .tiles-content {
    background: rgba(44, 144, 61, 1);
}

.newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-content {
    background: rgba(0, 36, 71, 1);
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-content {
    background: rgba(225, 223, 218, 1);
}

.newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-content {
    background: rgba(164, 124, 206, 1);
}

.newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-content {
    background: rgba(81, 28, 108, 1);
}

.newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .tiles-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-height: 50px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.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.8);
}

.newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-boxdiv:hover .tiles-content {
    background: rgba(81, 28, 108, 0.8);
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv .tiles-title {
    color: #662f8e
}

.newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv p,
.newsletterlist-tiles .tiles-grid-item.lightpurpel-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-tiles .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .new-btn {
    color: #2f9045
}

.newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .new-btn:after {
    background: #2f9045;
}

.newsletterlist-tiles .tiles-grid-item.green-bg .tiles-boxdiv .new-btn {
    color: #67308c;
}

.newsletterlist-tiles .tiles-grid-item.green-bg .tiles-boxdiv .new-btn:after {
    background: #67308c;
}

.newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .new-btn {
    color: #67308c
}

.newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .new-btn:after {
    background: #67308c;
}

.feature-newsletterlist {
    margin: 0 -15px 30px;
    position: relative;
    max-width: 1490px;
}

.feature-newsletterlist:after {
    content: "";
    clear: both;
    display: table;
}

.feature-newsletterlist .feature-widebox {
    width: 75%;
    padding: 40px 15px 80px;
    position: relative;
    float: left;
}

.feature-newsletterlist .feature-widebox:before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 55px;
    width: 89%;
    border: 1px solid rgba(81, 28, 108, 0.5);
    border-right: none;
}

.feature-newsletterlist .feature-widebox:after {
    background: #e1dfda;
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0;
    width: 65%;
    height: 100%;
    top: 0;
    right: 15px;
    z-index: -1;
}

.featuretitles-itemlarg {
    position: relative;
}

.featuretitles-itemlarg:after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 0;
    background-image: url(../images/navigation-bg-logo.svg);
    background-repeat: no-repeat;
    height: 398px;
    width: 296px;
    background-size: cover;
}

.featuretitles-itemlarg .tiles-image {
    display: block;
    float: left;
    height: 600px;
    width: calc(65% + 15px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: -15px;
}

.featuretitles-itemlarg .featuretitlesl-contemt {
    background: #e1dfda;
    position: relative;
    float: left;
    padding: 85px 45px;
    width: 35%;
}

.featuretitles-itemlarg .featuretitlesl-contemt h3 {
    font-size: 26px;
    margin-bottom: 35px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    color: #662f8e;
}

.featuretitles-itemlarg .featuretitlesl-contemt p {
    color: #2e2925;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-weight: 300;
    margin-bottom: 40px;
}

.featuretitles-itemlarg .featuretitlesl-contemt a {
    text-transform: uppercase;
    position: relative;
    color: #2c903d;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;
    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%;*/
	width:25%;
    float: left;
}

.directory-form .form-group.searchicon:before {
    content: "";
    position: absolute;
    background: url(../images/search-icon.svg) no-repeat;
    height: 18px;
    width: 16px;
    bottom: 11px;
    margin-top: 0;
    right: 30px;
}

.directory-form .form-group.serach-btn {
    width: 100%;
    text-align: center;
}

.directory-form .defult-btn {
    padding: 19px 30px 19px 60px;
    margin-top: 20px;
    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: 38px 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 a{
	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-telmail ul li a:hover{
    color: #2c8e3d;
}
.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;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.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); */
    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;
}


/* Directory List Page CSS End */


/* Event page */

.mobile-carticon-div {
    display: none;
}

.alumin-eventsection {
    margin-bottom: 60px;
}

.alumin-eventsection .container {
    max-width: 1570px;
}

.event-listwrap {}

.eventlist-boxdiv {
    position: relative;
    margin-bottom: 60px;
}

.eventlist-boxdiv:after {
    content: "";
    display: table;
    clear: both;
}

.eventlist-bgdiv {
    width: 49%;
    position: absolute;
    z-index: 1;
    top: 110px;
    left: 0;
}

.eventlist-bginner {
    padding-bottom: 66.66%;
    position: relative;
}

.eventlist-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.event-contentinfo {
    width: 60%;
    float: right;
    padding-left: 18%;
    padding-right: 100px;
    padding-top: 90px;
    padding-bottom: 20px;
    position: relative;
}

.event-contentinfo:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 79%;
    width: calc(100% - 20px);
    background-color: #e0ded9;
    content: "";
}

.event-contentinfo:after {
    position: absolute;
    top: 60px;
    left: 25%;
    height: calc(100% - 60px);
    width: calc(100% - 25%);
    border: 1px solid rgba(2, 55, 112, 0.5);
    content: "";
    pointer-events: none;
}

.event-contentinner {
    position: relative;
    min-height: 435px;
}

.event-datetext {
    display: inline-block;
    margin-bottom: 40px;
    text-align: center;
}

.event-datetext span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    color: #023770;
    text-transform: uppercase;
    font-weight: 300;
}

.event-datetext .date-t {
    font-size: 87px;
    line-height: 1.1;
    color: #023770;
    font-weight: 700;
}

.event-datetext span.month-t {
    font-weight: 700;
}

.event-contentinfo h2 {
    font-size: 48px;
    max-width: 510px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #023770;
    text-transform: uppercase;
    margin-bottom: 45px;
    min-height: 144px;
}

.event-contentinfo h2 span {
    color: #2d2a26;
    display: block;
}

.event-contentinfo p {
    font-size: 20px;
    max-width: 510px;
    margin-bottom: 70px;
    line-height: 1.2;
    font-weight: 300;
    color: #2d2a26;
    letter-spacing: 0.7px;
}

.event-contentinfo .defult-btn {
    margin-left: -45px;
}

.event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
    float: none;
    padding-left: 100px;
    padding-right: 18%;
}

.event-listwrap .eventlist-boxdiv:nth-child(even) .eventlist-bgdiv {
    left: auto;
    right: 0;
}

.event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:after {
    left: 0;
}

.event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:before {
    left: 20px;
}

.event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
    margin-left: -100px;
}

.events-detailpage {
    min-height: 650px;
}

.events-detailpage .event-contentinner h2 {
    font-size: 48px;
    max-width: 510px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #023770;
    text-transform: uppercase;
    margin-bottom: 0px;
    min-height: 144px;
}

.events-detailpage .event-contentinner h2 span {
    color: #2d2a26;
    display: block;
}

.events-detailpage.directory-listbox .directory-bgdiv {
    width: 45%;
}

.events-detailpage .directory-info {
    width: 55%;
}

.events-detailpage:before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0px;
    content: "";
    height: calc(100% - 60px);
    width: calc(100% - 30px);
    border: 1px solid rgba(2, 55, 112, 0.5);
    border-left: none;
    z-index: 1;
    pointer-events: none;
}

.events-detailpage .directory-info:before {
    display: none;
}

.events-detailpage.directory-listbox .directory-info {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 70px;
}

.events-detailpage .event-contentinner {
    min-height: auto;
}

.event-gallery-section {
    margin-bottom: 150px;
}

.event-gallery-wrapper {
    max-width: 85%;
    margin: 0 auto;
}

.event-gallery-wrapper:after {
    display: table;
    content: "";
    clear: both;
}

.event-gallery-wrapper .row {
    margin-left: -10px;
    margin-right: -10px;
}

.event-gallery-boxdiv {
    width: 33.33%;
    float: left;
    position: relative;
    padding: 10px;
}

.event-gallery-wrapper .event-gallery-boxdiv:nth-child(3n + 1) {
    clear: both;
}

.event-gallery-bgdiv {
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.event-gallery-bgdiv:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 80%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}

.event-gallery-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
    z-index: 1;
}

.event-gallery-content span {
    font-size: 18px;
    text-transform: uppercase;
    padding-left: 50px;
    position: relative;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 5px;
}

.event-gallery-content span:before {
    opacity: 0.5;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: -92%;
    height: 1px;
    width: 100%;
    content: "";
    background: #fff;
}

.event-gallery-content h3 {
    font-size: 28px;
    text-transform: uppercase;
    max-width: 86%;
    line-height: 32px;
    min-height: 64px;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.26px;
}

.event-gallery-content h3 a {
    color: #fff;
}

.event-gallery-content .arrow-btn {
    height: 36px;
    width: 36px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 1;
}

.event-gallery-content .arrow-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;
    transition: all 0.2s ease;
}

.latestnews-section .event-list-date {
    height: 236px;
}

.latestnews-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -1;
    top: -23px;
    left: -23px;
    height: 260px;
    width: 100%;
}

.latestnews-section .event-list-content {
    padding: 25px 30px 30px;
}

.latestnews-section .event-list-content span {
    font-size: 18px;
    font-weight: 300;
    color: #511c6c;
    line-height: 1.2;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.latestnews-section .event-list-content h2 {
    min-height: 48px;
    margin-bottom: 20px;
    line-height: 24px;
}

.latestnews-section .event-list-content p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    height: 78px;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.latestnews-section {
    display: flex;
    padding: 50px 0 0;
}

.latestnews-section .upevent-title-div {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    justify-content: flex-end;
}

.home-photgallery-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px 0 100px;
}

.home-photgallery-section .upevent-title {
    position: relative;
    top: 60px;
    margin-top: 10px;
}

.home-photgallery-sliderwrap .photogallery-module:before,
.home-photgallery-sliderwrap .photogallery-module:after {
    display: none;
}

.home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p:after {
    display: none;
}

.home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p {
    max-width: 100% !important;
    padding: 20px 0px 20px 20px;
    left: 50px;
    bottom: -60px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #2c903d;
}

.home-photgallery-sliderwrap .photogallery-module {
    padding: 0 !important;
    margin: 0 !important;
}

.home-photgallery-sliderwrap .photogallery-slider {
    padding-left: 190px;
}

.home-photgallery-sliderwrap .photogallery-slider .slick-list {
    width: 64%;
}

.home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv {
    padding-bottom: 63%;
}

.home-photgallery-sliderwrap .photogallery-thumb {
    top: 30px;
    left: calc(66% + 40px);
    width: 67%;
    padding-left: 40px;
}

.home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
.home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
    height: 390px;
}

.home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev,
.home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
    left: calc(66% + 80px);
    bottom: 11%;
    background: #e0ded9;
    border-color: #e0ded9;
}

.home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev {
    left: calc(66% + 135px);
}

.home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev:hover,
.home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next:hover {
    background: #2c903d;
}

.home-photgallery-sliderwrap .photogallery-slider .slider-image.with-caption {
    padding-bottom: 60px;
}

.home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p:before {
    top: -30px;
    height: calc(100% + 30px);
}

.home-photgallery-section .upevent-title-div {
    margin-bottom: 60px;
}

.photogallery-module .slider__counter {
    position: absolute;
    left: 65%;
    font-size: 14px;
    letter-spacing: 1px;
    color: #2c903d;
    font-weight: 300;
    padding-top: 20px;
    bottom: 15px;
    padding-left: 24px;
}

.photogallery-module .slider__counter i {
    position: absolute;
    left: 18px;
    top: 12px;
}

.photogallery-module .slider__counter span {
    position: absolute;
    top: 3px;
    left: 0;
}

.eventdeatil-innerwrap {
    max-width: 70%;
    margin: 70px auto;
    position: relative;
}

.eventdeatil-innerwrap:after {
    content: "";
    display: table;
    clear: both;
}

.eventdeatil-lefside {
    width: 30%;
    padding-right: 30px;
    float: left;
}

.eventdeatil-lefside ul {}

.eventdeatil-lefside ul li {
    margin-bottom: 12px;
    padding-left: 40px;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.7px;
    font-weight: 300;
    color: #2e2925;
    position: relative;
}

.eventdeatil-lefside ul li svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.ticket-costdiv {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 35px;
    font-weight: 700;
    color: #2e2925;
    letter-spacing: 1px;
}

.ticket-costdiv span {
    color: #e1dfda;
}

.eventdeatil-rightside {
    width: 70%;
    float: left;
}

.eventdeatil-rightside .comman-detaildiv {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.eventdeatil-rightside .comman-detaildiv p,
.eventdeatil-rightside .comman-detaildiv h6 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #2e2925;
    letter-spacing: 0.7px;
}

.eventdeatil-rightside .craftcms-formdiv {
    margin: 50px 0 0 0;
}

.backevent-linkbox {
    max-width: 880px;
    margin: 0 auto;
}

.backevent-linkbox .twofeature-eventbox .feaure-texttitle h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.65px;
    color: #fff;
}

.backevent-linkbox .twofeature-border {
    padding: 35px 35px 35px 0;
    min-height: auto;
}

.backevent-linkbox .twofeature-eventbox .feaure-texttitle {
    min-height: 250px;
    padding: 45px 80px 45px 90px;
}

.twofeature-eventbox .feaure-texttitle p {
    margin-bottom: 25px;
}

.backevent-linkbox .twofeature-eventbox .overlay-bg:before {
    width: 55% !important;
    min-height: 250px;
    left: 0px;
}

.backevent-linkbox .twofeature-eventbox {
    height: 320px;
}

.backevent-linkbox .twofeature-eventbox .feaure-texttitle p:before {
    opacity: 0.5;
}


/*halloffame css*/

.spacing-100 {
    height: 100px;
}

.halloffame-block {
    position: relative;
    margin: 0 0 30px;
    overflow: hidden;
    display: block;
}

.halloffame-block .halloffame-content {
    background-color: #023770;
    padding: 20px 30px;
    position: absolute;
    bottom: -45px;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.halloffame-block .halloffame-title {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 15px;
    line-height: 1.3;
    min-height: 69px;
    display: flex;
    align-items: center;
}

.halloffame-block .year {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    margin: 0 0 18%;
}

.halloffame-block .read-more {
    font-size: 14px;
    color: #FFF;
    font-weight: 300;
    padding-bottom: 5px;
    position: relative;
    letter-spacing: 1px;
    display: inline-block;
}

.halloffame-block .read-more:before {
    content: '';
    position: absolute;
    height: 1px;
    background: #fff;
    width: 35px;
    display: block;
    left: 0;
    bottom: 0;
}

.halloffame-block .img-wrapper img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    object-fit: cover;
}

.halloffame-block .img-wrapper {
    position: relative;
    padding-top: 136%;
}

.halloffame-block:hover .halloffame-content {
    background-color: rgb(2 55 112 / 90%);
    bottom: 0;
}

.halloffame-section {
    margin-bottom: -30px;
    padding: 0 0 80px;
}


/*halloffame-detail*/

.halloffame-detail-header {
    background-color: #E0DED9;
}

.halloffame-detail-header .img-wrapper {
    position: relative;
    padding-top: 100%;
    height: 100%;
}

.halloffame-detail-header .img-wrapper img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.halloffame-detail-header .desc {
    height: calc(100% - 120px);
    border: 1px solid rgba(102, 47, 142, 0.5);
    margin: 60px 170px 60px 0;
    border-left: 0;
    padding: 8%;
}

.halloffame-detail-header .title {
    font-size: 70px;
    line-height: 1.1;
    color: #511C6C;
    margin: 0 0 20px;
}

.halloffame-detail-header .year {
    color: #2C8F3D;
    font-weight: 300;
    margin: 0;
}

.halloffame-back-btn.defult-btn {
    padding: 32px 47px 32px 110px;
}

.halloffame-back-btn:after {
    left: 47px;
    transform: rotate(180deg);
}


/*news page */

.latestnewsblog-section {
    padding-bottom: 120px;
}

.blog-nav li a {
    font-size: 14px;
    font-weight: 300;
    padding: 14px 30px;
    display: block;
    border: 1px solid;
    min-width: 105px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-nav li {
    display: inline-block;
    margin: 5px 10px;
}

.blog-nav li.awards a {
    border-color: #DDB308;
}

.blog-nav li.all a {
    border-color: #2D2A26;
    color: #fff;
    background-color: #2D2A26;
}

.blog-nav li.news a {
    border-color: #2C8F3D;
}

.blog-nav li.events a {
    border-color: #5F2167;
}

.blog-nav li.news a:hover {
    background-color: #2C8F3D;
    color: #fff;
}

.blog-nav li.awards a:hover {
    background-color: #DDB308;
    color: #fff;
}

.blog-nav li.events a:hover {
    background-color: #5F2167;
    color: #fff;
}

.blog .halloffame-block .img-wrapper {
    padding-top: 100%;
}

.blog .halloffame-block.news .halloffame-content {
    background-color: #2c8f3d;
}

.blog .halloffame-block.news:hover .halloffame-content {
    background-color: rgb(44 143 61 / 90%);
}

.blog .halloffame-block.events .halloffame-content {
    background-color: #5F2167;
}

.blog .halloffame-block.events:hover .halloffame-content {
    background-color: rgb(95 33 103 / 90%);
}

.blog .halloffame-block.awards .halloffame-content {
    background-color: #DDB308;
}

.blog .halloffame-block.awards:hover .halloffame-content {
    background-color: rgb(221 179 8 / 90%);
}

.blog .halloffame-block .halloffame-content {
    bottom: -115px;
    width: calc(100% - 25px);
}

.blog .halloffame-block:hover .halloffame-content {
    bottom: 0;
}

.blog-paggination ul li {
    display: inline-block;
}

.blog-paggination ul li a,
.blog-paggination ul li span {
    background-color: #E0DFDA;
    height: 56px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    color: #2D2A26;
    display: block;
    font-size: 18px;
    font-weight: 300;
}

.blog-paggination ul li a:hover,
.blog-paggination ul li a.active {
    background-color: #2d2a26;
    color: #fff;
}

.blog-paggination a.blog-show-more {
    font-size: 18px;
    color: #fff;
    background-color: #2d2a26;
    min-width: 230px;
    text-align: center;
    padding: 14px 20px;
    transition: all 0.2s ease;
}

.blog-paggination a.blog-show-more:hover {
    background: #511C6C;
}

.news-img-with-text .container {
    max-width: 1600px;
    padding: 0 50px;
}

.news-img-with-text .left-img-block {
    width: 39%;
    z-index: 1;
    padding: 0 0 35px;
}

.news-img-with-text .right-content-block {
    padding: 65px 65px 35px;
    width: calc(61% + 140px);
    background-color: #511C6C;
    margin-left: -140px;
    margin-top: 50px;
}

.news-img-with-text .news-content-wrp {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 60px 60px 160px 120px;
}

.news-img-with-text .left-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-img-with-text {
    padding: 75px 0 100px;
}

.news-img-with-text p {
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
    font-size: 20px;
}

.news-img-with-text p:last-child {
    margin-bottom: 0;
}

.news-img-with-text .news-btn-wrap {
    position: absolute;
    bottom: 35px;
    z-index: 1;
    width: 65%;
    /* background-color: rgba(102, 47, 142, 0.8);  */
    padding: 15px 35px 15px 0;
}

.news-btn-bg {
    position: absolute;
    bottom: 35px;
    left: 0;
    height: 124px;
    width: 64%;
    background: #511C6C;
    mix-blend-mode: multiply;
    opacity: 0.93;
    z-index: 1;
}

.news-img-with-text .news-btn-wrap .defult-btn {
    border-color: rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    color: #A07DB7;
    width: 100%;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
    padding: 15px;
}

.news-img-with-text .news-btn-wrap .defult-btn:hover {
    color: #A07DB7;
}

.news-img-with-text .news-btn-wrap .defult-btn>span {
    display: block;
    margin-left: 63%;
    padding-left: 40px;
}

.news-img-with-text .news-btn-wrap .defult-btn strong {
    color: #fff;
    display: block;
}

.news-img-with-text .news-btn-wrap .defult-btn:after {
    display: none;
}

.news-img-with-text .news-btn-wrap .defult-btn .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: 12px;
    background-position: center;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
    left: 0;
    margin-left: 10px;
}

.news-img-with-text .news-btn-wrap .defult-btn:hover .arrow-btn {
    left: 20px;
}

.blog-nav .blog-nav-toogle-icon {
    background-color: #e0dfda;
    display: none;
}

.blog-nav .blog-nav-toogle-icon a {
    border-color: #e0dfda;
    padding: 7px 12px;
    min-width: auto;
}

.blog-nav .blog-nav-toogle-icon a img {
    vertical-align: top;
}

.latestnews-articel-banner.newsletter-articel-banner .newsletter-articel-title {
    align-items: inherit;
}

.latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
    margin-top: 90px;
}

.latestnews-articel-banner.newsletter-articel-banner .logo-div {
    margin-bottom: 70px;
}

.latestnews-articel-banner.newsletter-articel-banner .articel-category {
    font-size: 18px;
    font-weight: 300;
    color: #2e2925;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-left: 100px;
    position: relative;
}

.latestnews-articel-banner.newsletter-articel-banner .articel-category:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 220px;
    background: rgba(30, 58, 109, 0.4);
    line-height: 1;
    left: -135px;
    top: 50%;
    margin-top: -1px;
}

.latestnews-articel-banner.newsletter-articel-banner .articel-title {
    color: #1e3a6d;
    margin-bottom: 40px;
}

.latestnews-articel-banner.newsletter-articel-banner p {
    font-size: 18px;
    font-weight: 300;
    color: #2e2925;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1.2;
}

.twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle h2 {
    color: #fff;
    line-height: 1.4;
    font-size: 17px;
}

.twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle span {
    margin-top: 16px;
}

.twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .feaure-texttitle h2 {
    margin: 0;
    text-align: left;
}

.product-section {
    margin-bottom: 150px;
    padding: 0 10px;
    position: relative;
}

.product-section .container {
    max-width: 70%;
}

.product-boxdiv {
    position: relative;
    padding: 30px 0;
}

.product-imagediv {
    padding-bottom: 100%;
    margin-bottom: 15px;
    position: relative;
}

.product-bg {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.product-boxdiv h4 {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.68px;
    font-weight: 700;
    color: #511c6c;
    margin-bottom: 15px;
}

.product-boxdiv p {
    margin-bottom: 0;
    color: #2d2a26;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
}

.snipcart-cart-summary-side .snipcart-cart__secondary-header,
.snipcart-cart__secondary-header {
    background-color: #662f8d;
}

.snipcart-cart__secondary-header-title {
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.snipcart-cart-summary-side .snipcart-cart__secondary-header button,
.snipcart-cart__secondary-header button {
    background-color: #e0ded9;
    color: #662f8d;
    opacity: 1;
}

.snipcart-item-line__header .snipcart-item-line__media--small {
    width: 32px;
}

.snipcart-item-line--cart-edit .snipcart-item-line__image {
    max-width: 100%;
    height: 32px;
    object-position: center;
    object-fit: cover;
}

.snipcart-item-line--cart-edit .snipcart-item-line__title {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.68px;
    font-weight: 700;
    color: #511c6c;
}

.snipcart__font--secondary,
.snipcart__font--subtitle,
.snipcart__font--subtitle-small,
.snipcart-item-quantity__label,
.snipcart__font--secondary,
.snipcart__font--subtitle,
.snipcart__font--subtitle-small,
.snipcart-base-button__label {
    font-family: 'Rubik', sans-serif !important;
}

.snipcart-button-icon.is-danger {
    background-color: #e0ded9;
}

.snipcart-button-icon.is-danger svg path,
.snipcart-button-icon.is-secondary svg path,
.snipcart-cart-header__close-button svg path {
    fill: #66318c;
}

.snipcart__box--badge svg path {
    stroke: #66318c;
}

.snipcart-item-quantity__label {
    text-transform: uppercase;
    color: #66318c;
    letter-spacing: 1px;
}

.snipcart-item-quantity__quantity {
    border-color: #66318c;
}

.snipcart__font--secondary,
.snipcart__font--subtitle,
.snipcart__font--subtitle-small {
    font-weight: 700;
}

.snipcart-button-icon.is-secondary {
    background-color: #e0ded9;
}

.snipcart__font--subtitle-small,
.snipcart__font--tiny {
    color: #2d2a26;
    font-size: 13px;
}

.snipcart-checkbox+label {
    color: #2d2a26;
}

.snipcart-button-primary,
.snipcart-button-primary:hover {
    background-color: #66318c;
}

.snipcart-base-button__label {
    text-transform: uppercase;
}

.snipcart-button-link {
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #66318c;
}

.snipcart-button-link:hover {
    color: #66318c;
}

.snipcart__box--badge-highlight {
    color: #fff !important;
    background-color: #511c6c !important;
}

.snipcart__box .snipcart__font--subtitle {
    text-transform: uppercase;
    color: #66318c;
    letter-spacing: 0.5px;
}

.snipcart__box {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.snipcart-modal__container {
    background-color: #fff;
}

.snipcart-cart-header__close-button,
.snipcart-billing-completed .snipcart-checkout-step__icon,
.snipcart-billing-completed__title .snipcart__icon--left,
.snipcart-item-line__header h2,
.snipcart-cart-header .snipcart-modal__close-icon,
.snipcart-cart-header__icon {
    color: #66318c;
}

.snipcart-input,
.snipcart-form__select,
.snipcart-checkbox+label:before,
.snipcart-payment-form--desktop {
    border-color: #66318c;
}

.snipcart-payment-form--desktop.snipcart-payment-form {
    border-color: #66318c !important;
}

.snipcart-cart-summary--edit.snipcart-modal__container {
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}

.snipcart-cart-summary {
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    background: #fff;
}

.snipcart-cart-summary__content {
    border-bottom: 1px solid #e3e6e8;
}

.snipcart-cart-summary__content .snipcart__font--subtitle {
    text-transform: uppercase;
    color: #66318c;
}

.snipcart-cart-summary-item {
    color: #2d2a26;
}

.snipcart * {
    letter-spacing: 0.5px;
}

.snipcart-featured-payment-methods__link {
    font-weight: 400;
    color: #66318c;
}

.snipcart-featured-payment-methods__link svg {
    position: relative;
    top: -2px;
}

.snipcart-featured-payment-methods--no-background .snipcart-featured-payment-methods__title {
    background: #fff;
}

.snipcart-featured-payment-methods--no-background .snipcart-featured-payment-methods__title:before {
    position: absolute;
    top: 50%;
    height: 1px;
    background: #e3e6e8;
    content: "";
    width: 160%;
    left: -30%;
}

.snipcart-featured-payment-methods__link {
    background: #fff;
    padding: 0 15px;
    position: relative;
}

.snipcart-modal,
.snipcart-cart__content,
.snipcart-cart-header,
.snipcart-featured-payment-methods__title {
    background: #fff;
}

.snipcart-item-line--cart-edit {
    margin: 0;
}

.snipcart-item-line__image {
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.snipcart-cart-header__title {
    text-transform: uppercase;
    font-weight: 300;
    color: #66318c;
    letter-spacing: 1px;
    font-size: 16px;
}

.snipcart-item-line {
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.snipcart-item-list {
    padding: 20px;
}

.snipcart-cart__footer {
    padding: 0 20px;
}

.snipcart-layout__content.snipcart-layout__content--side.snipcart-cart--edit .snipcart-item-line {
    box-shadow: none;
}

.snipcart__box--badge {
    background-color: #e0ded9;
}

.snipcart__box--title .snipcart__box--badge {
    font-weight: 400;
    color: #66318c;
}

.snipcart-payment-form {
    border-color: #66318c;
}

.productdetail-section {
    margin: 120px 0;
    position: relative;
}

.product-slider .product-mainimage {
    position: relative;
    padding-bottom: 100%;
    height: auto;
}

.product-slider .product-mainimage img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.product-thumbslider {
    margin-top: 20px;
}

.product-thumbslider .slick-slide {
    padding: 0 8px;
}

.product-thumbslider .slick-slide img {
    border: 1px solid transparent;
}

.product-thumbslider .slick-slide.slick-current.slick-center img {
    border-color: #000;
}

.product-thumbslider .product-thumimag {
    position: relative;
    padding-bottom: 100%;
    height: auto;
}

.product-thumbslider .product-thumimag img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.productslider-content {
    padding-left: 50px;
    position: relative;
}

.productslider-content h3 {
    font-size: 28px;
    color: #511c6c;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

.price-span {
    font-size: 24px;
    display: block;
    font-weight: 300;
    letter-spacing: 1px;
    color: #2d2a26;
    margin-bottom: 65px;
}

.qty-divbox {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.qty-divbox .snipcart-item-quantity__quantity {}

.qty-divbox span.qty-text {
    font-size: 18px;
    margin-left: 30px;
    letter-spacing: 1px;
    color: #511c6c;
    font-weight: 300;
    margin-right: 20px;
}

.productslider-content .defult-btn.purpel-btn.addtocart-btn {
    text-align: left;
}

.productslider-content .defult-btn.purpel-btn.addtocart-btn:after {
    background-image: url(../alumni/images/card-bg-icon.svg);
    background-color: #662f8d;
}

.productshort-content {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgb(46 41 37 / 50%);
}

.productshort-content p {
    color: #2d2a26;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.7px;
    font-weight: 300;
    max-width: 430px;
}

.paroduct-backevent {
    margin-bottom: 40px;
    margin-top: 40px;
}

.pageNotFound-div .comman-detaildiv {
    padding-bottom: 70px;
    text-align: center;
    padding-top: 70px;
}

.pageNotFound-div .pageNotFound-text {
    font-size: 10em;
    color: #e1dfda;
    font-weight: 700;
    line-height: 0.8;
}

.pageNotFound-div .comman-detaildiv .defult-btn {
    margin-top: 30px;
}

.pageNotFound-div .comman-detaildiv h1 {
    margin-bottom: 10px;
}

.pageNotFound-div .comman-detaildiv .defult-btn:hover {
    text-decoration: none;
}

.bdl-share-box {
    height: 64px;
    position: absolute;
    right: 25px;
    bottom: 30px;
    z-index: 1;
    font-size: 22px;
    color: #fff;
}

.bdl-share-box a {
    color: #fff;
    text-decoration: none;
}

.bdl-share-box .bdl-share-trigger {
    background-color: #511c6c;
    position: absolute;
    top: 0;
    right: 0;
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdl-share-social {
    overflow: hidden;
    background-color: #511c6c;
    height: 64px;
    display: flex;
    align-items: center;
    width: 0;
    margin-right: 64px;
    transition: width .2s ease-in-out;
}

.bdl-share-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.bdl-share-social ul li {
    font-size: 0;
    line-height: inherit;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdl-share-social ul li a {
    display: block;
}

.bdl-share-box.active .bdl-share-social,
.bdl-share-social ul {
    width: 250px;
}

.bdl-share-box.bdl-share-boxdetail {
    height: 64px;
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    vertical-align: top;
}

.bdl-share-box.bdl-share-boxdetail .bdl-share-trigger {
    background-color: transparent;
    left: 0;
}

.bdl-share-box.bdl-share-boxdetail .bdl-share-social {
    margin-right: 0;
    margin-left: 64px;
    background: #2c903d;
}

.bdl-share-box.bdl-share-boxdetail .bdl-share-social ul {
    justify-content: inherit;
}

.bdl-share-box.bdl-share-boxdetail.active .defult-btn: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;
}

.bdl-share-box.bdl-share-boxdetail.active .defult-btn {
    border-color: #2c903d;
    color: #fff;
}

.bdl-share-box.bdl-share-boxdetail.active .sharebtn.defult-btn svg path {
    fill: #fff;
}

.defult-btn.visitwebsite-btn {
    margin-right: 15px;
}
.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%;
}

/* 2023 css new pages  */
.file-btn-div.file-dwonload-a a{
    max-width: 100%;
    width: auto;
    min-width: 310px;
}
.file-btn-div.file-dwonload-a .col-left{
    background-color: #511c6c;
    padding-top: 45px;
    padding-bottom: 45px;
}
.file-btn-div.file-dwonload-a .col-right{
    background-color: #dfddd8;
    padding-top: 45px;
    padding-bottom: 45px;
}
.file-btn-div::before,.file-btn-div::after{
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.file-btn-div::before{
    bottom: 15px;
    top: auto;
}
.bottom-top-btn {
    position: absolute;
    right: 30px;
    min-width: auto;
    min-height: 60px;
    bottom: -65px;
}
.bottom-top-btn:hover{
    color: #2c903d;
}
.bottom-top-btn:after{
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(-90deg);
}
.bottom-top-btn:before{
    display: none;
}
.bottom-top-btn span{
    margin-top: 38px;
    display: block;
}
.account-detail .nav-tabs .nav-link {
    color: #511c6c;
    font-size: 17px;
    font-weight: 300;
    padding: 10px 22px;
}
.account-detail .container {
    max-width: 1640px;
}
.defultpage-wrapper {
    padding: 60px 0;
}
.account-detail .nav-tabs .nav-link.active{
    background-color: #dfddd8;
}
.account-detail .nav {
    max-width: 250px;
}
.account-detail .col-left{
    max-width: 22%;
    flex: 0 0 22%;
    -ms-flex: 0 0 22%;
}
.account-detail .col-right{
    max-width: 78%;
    flex: 0 0 78%;
    -ms-flex: 0 0 78%;
}
.account-detail .col-right .title, .advertise-modal .title{
    font-weight: 700;
    font-size: 70px;
    line-height: 1;
    color: #511c6c;
}
.account-detail .comman-detaildiv{
    max-width: 620px;
    margin-left: 80px;
}
.account-detail .craftcms-formdiv{
    max-width: 100%;
}
.account-detail .col-left .desc p{
    color: #2e2925;
    font-size: 15px;
    font-style: italic;
    line-height: 1.54;
    font-weight: 300;
}
.account-detail .craftcms-formdiv h3{
    margin-left: -60px;
}
.account-detail .directory-listbox .directory-bgdiv{
    width: 280px;
    margin-top: 20px;
}
.account-detail .directory-listbox .directory-info {
    padding: 20px;
    width: calc(100% - 280px);
}
.account-detail .directory-telmail{
    padding: 30px 20px;
}
.account-detail .directory-telmail ul li,
.account-detail .directory-address,
.account-detail .directory-text p,
.account-detail .directory-titlediv p{
    font-size: 16px;
}
.account-detail .directory-catlist li{
    font-size: 14px;
}
.account-detail .directory-info h3{
    font-size: 24px;
}
.account-detail .directory-info .defult-btn:after, .advertise-modal .directory-info .defult-btn:after{
    height: 22px;
    width: 22px;
    background-size: 12px;
    margin-top: -12px;
}
.account-detail .directory-info .defult-btn,.advertise-modal .directory-info .defult-btn{
    font-size: 14px;
    padding: 10px 30px 10px 80px;
    min-width: 200px;
}
.account-detail .directory-listbox{
    /*max-width: 940px;*/
}
.account-detail .directory-listbox .directory-bgdivinner{
    padding-bottom: 61%;
}
.freeform-row .freeform-column .freeform-label.freeform-required:after{
    color: #000;
}
.account-detail .custom-checkbox{
    color: #606060;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    cursor: pointer;
}
.account-detail .comman-detaildiv textarea:not(.note-codable) {
    height: 120px;
    resize: none;
}
body .custom-checkbox input[type="checkbox"] {
    appearance: none;
    height: 20px;
    width: 20px !important;
    min-width: 20px;
    display: inline-block !important;
    border: 1px solid rgba(102, 47, 141, 0.5);
    vertical-align: middle;
    margin-right: 15px !important;
    box-shadow: inset 0 0 0 2px #fff;
    cursor: pointer;
}
body .custom-checkbox input[type="checkbox"]:checked{
    background-color: #2c8e3d !important;
}
body .comman-detaildiv form select {
    appearance: none;
    background-image: url(images/select.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
}
input[type="checkbox"]#sn-checkbox-open-in-new-window{
	position:relative;
	z-index:1;
	opacity:1;
}
.advertise-modal{
    background: rgba(46, 41, 37, 0.75);
}
.advertise-modal .modal-dialog{
    max-width: 1395px;
    padding: 10px;
}
.advertise-modal .modal-dialog .modal-content{
    background-color: #e0ded9;
}
.advertise-modal.modal .close {
    font-size: 28px;
    height: 40px;
    width: 40px;
    border: 1px solid #000000;
    position: absolute;
    top: 40px;
    right: 40px;
}
.advertise-modal .modal-body {
    padding: 160px 170px;
    overflow: hidden;
}
.advertise-modal .subtite {
    font-size: 17px;
    font-weight: 300;
    color: #511c6c;
    position: relative;
    text-transform: uppercase;
    display: block;
    padding-left: 40px;
    letter-spacing: 0.5px;
}
.advertise-modal .subtite::after{
    content: "";
    position: absolute;
    background-color: rgba(81, 28, 108, 0.4);
    height: 1px;
    width: 100%;
    right: calc(100% - 25px);
    top: 9px;
}
.advertise-modal .content p{
    color: #2e2925;
    font-weight: 300;
    letter-spacing: 0.4px;
}
.advertise-modal .directory-listbox {
    background-color: #fff;
    padding: 20px;
    margin: 0 0 40px;
}
.advertise-modal .directory-listbox .directory-bgdiv{
    margin-top: 20px;
    width: 300px;
}
.advertise-modal .directory-listbox .directory-bgdivinner{
    padding-bottom: 61%;
    background: #666666;
}
.advertise-modal .directory-listbox .directory-info {
    padding: 20px;
    width: calc(100% - 300px);
}
.advertise-modal .directory-info h3{
    text-transform: uppercase;
    font-size: 24px;
}
b, strong {
    font-weight: 700;
}
.advertise-modal .directory-telmail ul li,
.advertise-modal .directory-address,
.advertise-modal .directory-text p{
    font-size: 13px;
    font-weight: 400;
}
.advertise-modal .directory-catlist li,
.advertise-modal .directory-titlediv p{
    font-size: 12px;
}
.advertise-modal .directory-catlist{
    padding-top: 2px;
}
.advertise-modal .listing-txt {
    color: #2e2925;
    font-size: 15px;
    font-style: italic;
    padding-left: 5px;
    font-weight: 300;
    margin-top: -40px;
}
.setup-divwrp {
    background-color: #511c6c;
    height: 100%;
    padding: 20px 0;
}
.setup-divwrp h5{
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 10px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.6px;
    line-height: 1.4;
}
.setup-divwrp .btn-wrp{
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}
.setup-divwrp .btn-wrp .defult-btn {
    min-width: auto;
    width: 100%;
    padding: 20px 30px 20px 75px;
}
.setup-divwrp .defult-btn:after{
    left: 30px;
    border: 1px solid #fff;
    right: auto;
}
.service{
    background-color: #e0ded9;
}
.service p{
    color: #2e2925;
    font-weight: 300;
}
.service li{
    color: #606060;
    font-size: 14px;
}
.descsec .comman-detaildiv {
    background-color: #e0ded9;
    padding: 100px;
    max-width: 1120px;
}
.descsec .comman-detaildiv :first-child{
    margin-top: 0;
    padding-top: 0;
}

#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif;  width:600px;}
.craftcms-formdiv #mc_embed_signup{
    width: 100%;
    margin-top: 50px;
}
.craftcms-formdiv #mc_embed_signup form {
    margin: 0;
}
.craftcms-formdiv #mc_embed_signup .mc-field-group label{
    color: #0F1843;
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
}
.craftcms-formdiv #mc_embed_signup .asterisk{
    top: 0;
    color: red;
    font-size: 16px;
    font-weight: bold;
}
.craftcms-formdiv #mc_embed_signup input{
    border-radius: 0;
}
.craftcms-formdiv #mc_embed_signup .mc-field-group select{
    margin-bottom: 0;
    width: 100%;
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn{
    position: relative;
    min-width: 230px;
    border: 1px solid rgba(44, 144, 61, 0.5);
    border-left: 0;
    margin-top: 40px;
    min-height: 66px;
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn input {
    height: 100%;
    margin: 0;
    border: 0;
    padding: 0;
    position: absolute;
    top: 0;
    background: transparent;
    width: 100%;
    left: 0;
    color: #2c903d;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    font-family: 'Rubik', sans-serif;
    padding-left: 50px;
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn:after{
    right: auto;
    left: 35px;
    background-image: url(../images/button-arrow-white.png);
    background-color: #2c903d;
    border: 1px solid rgba(108, 172, 221, 0.5);
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn:before{
    background-color: #2c903d;
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn:hover:after{
    background-image: url(../images/button-arrow-green.png);
    background-color: #fff;
    border-color: #fff;
}
.craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn:hover input{
    color: #fff;
}
.craftcms-formdiv #mc_embed_signup .size1of2{
    width: 47%;
    margin-right: 15px;
}
.craftcms-formdiv #mc_embed_signup .helper_text{
    margin: 0 0 5px;
    font-size: 13px;
    color: #aba7a7;
    font-family: 'Rubik', sans-serif;
    padding: 0;
}
.craftcms-formdiv #mc_embed_signup .helper_text:empty {
    display: none;
}
body .comman-detaildiv .craftcms-formdiv #mc_embed_signup select{
    background-position: 98% center;
}
.craftcms-formdiv #mc_embed_signup{
    margin-bottom: 50px;
}

.directory-listbox.standard .directory-bgdiv{
    width: 690px;
    position: relative;
    z-index: 1;
}
.directory-listbox.standard .directory-info{
    width: calc(100% - 690px);
    padding: 0;
    position: relative;
    z-index: 1;
}
.directory-listbox.standard .directory-telmail{
    width: 100%;
    padding: 25px 35px;
}
.directory-listbox.standard .directory-content{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-right: 0;
    align-items: self-start;
}
.directory-listbox.standard .directory-content:before{
    width: 91.8%;
}
.directory-listbox.standard .directory-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 355px;
    background-color: #511c6c;
    width: 91.8%;
}
.directory-listbox.standard .directory-topinfo {
    padding: 30px 35px;
}
.directory-listbox.standard .directory-topinfo h3{
    color: #2c8f3d;
    font-size: 38px;
}
.directory-listbox.standard .directory-topinfo h3 a{
    color: #2c8f3d;
}
.directory-listbox.standard .directory-titlediv p,
.directory-listbox.standard .directory-text p{
    color: #fff;
}
.directory-listbox.standard .directory-text{
    position: relative;
}
.advertise-modal .directory-listbox.standard .directory-bgdiv{
    width: 456px;
}
.advertise-modal .directory-listbox.standard .directory-info{
    width: calc(100% - 456px);
}
.advertise-modal .directory-listbox.standard .directory-topinfo {
    padding: 20px 30px;
}
.advertise-modal .directory-listbox.standard .directory-telmail {
    padding: 20px 30px;
}
.advertise-modal .directory-listbox.standard .directory-content:after{
    height: 275px;
}
.advertise-modal .directory-listbox.standard .directory-topinfo h3{
    font-size: 25px;
}
.advertise-modal .form-check-label {
    color: #2e2925;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
}
.advertise-modal .form-check {
    padding-left: 35px;
    margin-bottom: 20px;
}
.advertise-modal .form-check-input {
    border: 1px solid #511c6c;
    height: 19px;
    width: 19px;
    appearance: none;
    border-radius: 100%;
    margin-left: -35px;
    cursor: pointer;
}
.advertise-modal .form-check-input:checked {
    box-shadow: inset 0 0 0 3px #e0ded9;
    background-color: #511c6c;
}

.nav-quicklink-list ul li div a > img{max-width:37px;}

.menutxt{color:#023770;}
/* 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 (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;
    }
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
        height: 550px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb {
        top: 40px;
    }
}

@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: 38px 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;
    }
    .feature-newsletterlist .feature-widebox {
        padding: 60px 30px 100px;
    }
    .featuretitles-itemlarg .tiles-image {
        width: calc(66% + 30px);
        margin-left: -30px;
        height: 640px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 90px 50px;
        width: 34%;
    }
    .feature-newsletterlist .feature-smallbox {
        padding: 0 30px;
    }
    .feature-newsletterlist {
        margin: 0 -30px 30px;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 800px;
    }
    .feature-newsletterlist .feature-widebox:after {
        right: 30px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
        height: 550px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb {
        top: 40px;
    }
}

@media (max-width: 1680px) {
    .defult-btn {
        padding: 27px 40px;
        min-width: 310px;
    }
    .defult-btn:after {
        right: 40px;
    }
    .site-header .logo-div {
        margin: 20px auto 0;
    }
    .enrol-book-prospectus {
        padding: 20px 0;
    }
    .phone-quiklink-div {
        margin-top: 50px;
    }
    .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: 15px 0;
    }
    .purpel-menudiv {
        margin-top: -190px;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv {
        margin-top: -139px;
    }
	.purpel-menudiv{
		top:45%;		
	}
    .enrol-book-prospectus.ebp-sticky .stickylogo-div {
        bottom: 10px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 120px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv ul li {
        margin-bottom: 10px;
    }
    .home-slider .slider-content {
        bottom: 70px;
    }
    .home-slider .slider-title {
        font-size: 62px;
    }
    .home-slider .slider-content {
        max-width: 890px;
    }
    .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-title strong,
    .upevent-title,
    .twilight-title {
        font-size: 64px;
    }
    .welcome-title {
        margin-bottom: 35px;
        font-size: 46px;
    }
    .welcome-text .defult-btn {
        margin-top: 20px;
    }
    .welcome-text {
        padding-left: 25px;
        margin-top: 40px;
        padding-right: 15px;
    }
    .event-list-content {
        padding: 35px 30px;
    }
    .event-list-content h2 {
        margin-bottom: 30px;
    }
    .upevent-box .defult-btn {
        min-width: 270px;
        margin-left: -23px;
        padding: 27px 40px 27px 70px;
        margin-bottom: 25px;
    }
    .calendar-btn .defult-btn {
        padding: 19px 40px;
    }
    .calendar-btn {
        margin-top: 128px;
    }
    .upcoming-event-section {
        padding: 50px 0;
    }
    .upevent-slider .slick-arrow {
        bottom: 30%;
    }
    .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-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: 40px 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-widebox {
        width: 73%;
    }
    .feature-newsletterlist .feature-smallbox {
        width: 27%;
    }
    .articel-arrowdiv .left-arrow,
    .articel-arrowdiv .right-arrow {
        top: 33%;
    }
    .featuretitles-itemlarg .tiles-image {
        height: 500px;
    }
    .newsletterlist-titles-inner {
        max-width: 1280px;
    }
    .newsletterlist-tiles .tiles-grid-sizer,
    .newsletterlist-tiles .tiles-grid-item {
        padding: 20px;
    }
    .newsletterlist-tiles .tiles-boxdiv {
        height: 340px;
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv {
        height: 720px;
    }
    .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;
    }
    .alumin-eventsection .container {
        max-width: 1320px;
    }
    .event-contentinfo h2 {
        font-size: 44px;
        min-height: 132px;
        margin-bottom: 35px;
    }
    .event-datetext .date-t {
        font-size: 84px;
    }
    .event-datetext {
        margin-bottom: 35px;
    }
    .event-contentinfo p {
        font-size: 18px;
    }
    .eventlist-bgdiv {
        top: 90px;
    }
    .event-contentinfo {
        padding-right: 80px;
        padding-top: 80px;
        padding-left: 16%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
        padding-left: 80px;
        padding-right: 16%;
    }
    .event-contentinfo:after {
        top: 50px;
        left: 21%;
        height: calc(100% - 50px);
        width: calc(100% - 21%);
    }
    .event-contentinner {
        min-height: 405px;
    }
    .eventlist-bginner {
        padding-bottom: 75%;
    }
    .event-contentinfo .defult-btn {
        margin-left: -43px;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        margin-left: -80px;
    }
    .home-photgallery-sliderwrap .photogallery-slider {
        padding-left: 140px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
        height: 280px;
    }
    .home-photgallery-section .upevent-title {
        position: relative;
        top: 0;
        margin-top: 0px;
    }
    .home-photgallery-section .calendar-btn {
        margin-top: 35px;
    }
    .home-photgallery-section {
        padding: 50px 0 80px;
    }
    .eventdeatil-innerwrap {
        max-width: 80%;
    }
    .event-gallery-wrapper {
        max-width: 90%;
    }
    .event-gallery-content h3 {
        font-size: 26px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle {
        padding: 35px 40px 45px 70px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .feaure-texttitle {
        padding: 35px 70px 45px 40px;
    }
    .product-section .container {
        max-width: 90%;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
        margin-top: 80px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div {
        margin-bottom: 60px;
    }
    .directory-listbox.standard .directory-bgdiv{
        width: 570px;
    }
    .directory-listbox.standard .directory-info {
        width: calc(100% - 570px);
    }
    .directory-listbox.standard .directory-content:before,.directory-listbox.standard .directory-content:after {
        width: 91%;
    }
}
@media (max-width: 1530px) {
    .directory-list-wrap .bottom-top-btn{
        bottom: -80px;
    }
}
@media (max-width: 1440px) {
    .home-slider .slider-title {
        font-size: 56px;
    }
    .home-slider .slider-content {
        max-width: 810px;
    }
    .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-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 .tiles-image {
        height: 480px;
        width: calc(63% + 15px);
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        width: 37%;
    }
    .feature-smallbox .tiles-boxdiv {
        height: 600px;
    }
    .twofeature-eventbox {
        height: 340px;
    }
    .alumin-eventsection .container {
        max-width: 1280px;
    }
    .latestnews-section .event-list-content {
        padding: 25px 20px 30px;
    }
    .latestnews-section .upevent-title-div {
        margin-bottom: 52px;
    }
    .home-photgallery-sliderwrap .photogallery-slider {
        padding-left: 100px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
        height: 260px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-list {
        width: 67%;
    }
    .halloffame-detail-header .title {
        font-size: 60px;
    }
    .eventdeatil-innerwrap {
        max-width: 85%;
    }
    .event-gallery-wrapper {
        max-width: 95%;
    }
    .event-gallery-bgdiv {
        padding-bottom: 66.66%;
    }
    .account-detail .col-left {
        max-width: 25%;
        flex: 0 0 25%;
        -ms-flex: 0 0 25%;
    }
    .account-detail .col-right {
        max-width: 75%;
        flex: 0 0 75%;
        -ms-flex: 0 0 75%;
    }
}

@media (max-width: 1366px) {
    .defult-btn {
        padding: 22px 30px;
        min-width: 280px;
    }
    .defult-btn:after {
        right: 30px;
    }
    .site-header .logo-div {
        margin: 15px auto 0;
    }
    .home-slider .slider-title {
        font-size: 50px;
    }
    .home-slider .slider-content {
        max-width: 720px;
        bottom: 50px;
    }
    .purpel-menudiv {
        margin-top: -130px;
    }
    .enrol-book-prospectus.ebp-sticky .purpel-menudiv {
        margin-top: -111px;
    }
    .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: 40px;
    }
    .enrol-book-prospectus.ebp-sticky .stickylogo-div {
        bottom: 10px;
    }
    .stickylogo-div img {
        max-width: 50px;
    }
    .enrol-book-prospectus.ebp-sticky .social-linkdiv {
        bottom: 85px;
    }
    .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: 18px;
    }
    .welcome-text {
        padding-left: 15px;
    }
    .welcome-title strong,
    .upevent-title,
    .twilight-title {
        font-size: 54px;
    }
    .welcome-title {
        margin-bottom: 30px;
        font-size: 38px;
    }
    .welcome-section {
        padding: 40px 10px 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-imagediv {
        margin-left: -25px;
    }
    .welcome-section:before {
        right: 25px;
    }
    .welcome-text .defult-btn {
        margin-top: 15px;
    }
    .footer-content p {
        margin-bottom: 15px;
    }
    .pageloader-logodiv img {
        height: 140px;
    }
    .pageloader-bgcolordiv:before {
        background-size: cover;
        width: 285px;
        height: 358px;
    }
    .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-title {
        margin-bottom: 10px;
    }
    .nav-social-boxdiv .nav-quicklink-title {
        margin-bottom: 20px;
    }
    .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-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 {
        width: 55%;
    }
    .imagetext-title-div h2 {
        font-size: 54px;
    }
    .imagetext-title-div {
        min-height: 680px;
        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 {
        max-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: 30px 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 0;
        min-height: inherit;
    }
    .feature-newsletterlist .feature-widebox {
        width: 70%;
    }
    .feature-newsletterlist .feature-smallbox {
        width: 30%;
    }
    .featuretitles-itemlarg .tiles-image {
        height: 420px;
        width: calc(60% + 15px);
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        width: 40%;
        padding: 60px 30px;
    }
    .feature-newsletterlist .feature-widebox:after {
        width: 70%;
    }
    .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;
    }
    .newsletterlist-tiles .tiles-boxdiv {
        height: 330px;
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv {
        height: 700px;
    }
    .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: 84%;
    }
    .directory-detailpage .directory-info h3 {
        font-size: 58px;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn {
        min-height: 56px;
        padding: 9px 18px 9px 18px;
    }
    .alumin-eventsection .container {
        max-width: 1160px;
    }
    .eventlist-boxdiv {
        margin-bottom: 50px;
    }
    .event-contentinfo h2 {
        font-size: 40px;
        min-height: 120px;
        margin-bottom: 30px;
    }
    .event-datetext .date-t {
        font-size: 76px;
    }
    .event-contentinfo p {
        margin-bottom: 50px;
        font-size: 16px;
    }
    .event-datetext {
        margin-bottom: 25px;
    }
    .eventlist-bgdiv {
        top: 80px;
    }
    .event-contentinfo {
        padding-right: 70px;
        padding-top: 70px;
        padding-left: 16%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
        padding-left: 70px;
        padding-right: 16%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        margin-left: -70px;
    }
    .event-contentinfo:after {
        top: 45px;
        left: 21%;
        height: calc(100% - 45px);
        width: calc(100% - 21%);
    }
    .event-contentinner {
        min-height: 352px;
    }
    .event-contentinfo .defult-btn {
        margin-left: -38px;
    }
    .event-contentinfo:before {
        height: 80%;
    }
    .event-datetext span {
        font-size: 16px;
    }
    .event-datetext .date-t {
        font-size: 72px;
        line-height: 1;
    }
    .home-photgallery-sliderwrap .photogallery-slider {
        padding-left: 80px;
    }
    .home-photgallery-section {
        padding: 40px 0 60px;
    }
    .eventdeatil-innerwrap {
        max-width: 90%;
    }
    .events-detailpage {
        min-height: 610px;
    }
    .event-gallery-content h3 {
        font-size: 24px;
        line-height: 30px;
        min-height: 60px;
    }
    .event-gallery-section {
        margin-bottom: 100px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-border {
        padding: 15px 25px 15px 0;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .twofeature-border {
        padding: 15px 0px 15px 25px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle span {
        margin-top: 10px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle {
        padding: 30px 40px 30px 70px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .feaure-texttitle {
        padding: 30px 70px 30px 40px;
    }
    .product-section {
        margin-bottom: 120px;
    }
    .productdetail-section .container {
        max-width: 85%;
    }
    .productslider-content {
        padding-left: 20px;
    }
    .bdl-share-box {
        height: 56px;
    }
    .bdl-share-box .bdl-share-trigger {
        height: 56px;
        width: 56px;
    }
    .bdl-share-social {
        height: 56px;
        margin-right: 56px;
    }
    .bdl-share-social ul li {
        width: 45px;
    }
    .bdl-share-box.active .bdl-share-social,
    .bdl-share-social ul {
        width: 240px;
    }
    .bdl-share-box.bdl-share-boxdetail {
        height: 56px;
    }
    .bdl-share-box.bdl-share-boxdetail .bdl-share-social {
        margin-right: 0;
        margin-left: 56px;
    }
    .bdl-share-box.bdl-share-boxdetail .sharebtn.defult-btn svg {
        height: 24px;
        width: 24px;
    }
    .account-detail .col-right .title, .advertise-modal .title{
        font-size: 60px;
    }
    .advertise-modal .modal-body{
        padding: 100px 80px;
    }
    .directory-listbox.standard .directory-bgdiv {
        width: 530px;
    }
    .directory-listbox.standard .directory-info {
        width: calc(100% - 530px);
    }
    .directory-listbox.standard .directory-topinfo h3{
        font-size: 36px;
    }
}

@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;
    }
    .latestnews-section .event-list-content h2 {
        min-height: 72px;
    }
    .latestnews-section .event-list-content p {
        height: 104px;
    }
    .home-photgallery-sliderwrap .photogallery-slider {
        padding-left: 60px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next img,
    .home-photgallery-sliderwrap .photogallery-thumb .custom-next-next img {
        height: 240px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-list {
        width: 68%;
    }
    .home-photgallery-sliderwrap .photogallery-thumb {
        padding-left: 30px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev,
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        bottom: 15%;
    }
    .bdl-share-box.bdl-share-boxdetail {
        display: block;
        margin-top: 15px;
    }
    
    .directory-listbox.standard .directory-bgdiv {
        width: 480px;
    }
    .directory-listbox.standard .directory-info {
        width: calc(100% - 480px);
    }
    .directory-listbox.standard .directory-content:after{
        height: 329px;
    }
}

@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-text {
        padding-left: 0;
    }
    .welcome-title {
        font-size: 36px;
    }
    .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;
    }
    .newsletterlist-tiles .tiles-boxdiv {
        height: 300px;
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv {
        height: 630px;
    }
    .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 100px;
    }
    .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;
    }
    .alumin-eventsection .container {
        max-width: 900px;
    }
    .eventlist-bgdiv {
        top: 70px;
        width: 40%;
    }
    .event-contentinfo {
        padding-right: 60px;
        padding-top: 60px;
        padding-left: 15%;
        width: 70%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
        padding-right: 15%;
        padding-left: 60px;
    }
    .event-contentinfo:after {
        top: 40px;
        left: 18%;
        height: calc(100% - 45px);
        width: calc(100% - 18%);
    }
    .event-contentinfo h2 {
        font-size: 36px;
        min-height: 108px;
        margin-bottom: 25px;
    }
    .event-datetext {
        margin-bottom: 20px;
    }
    .event-contentinner {
        min-height: 330px;
    }
    .event-contentinfo .defult-btn {
        margin-left: -20px;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        margin-left: -60px;
    }
    .event-contentinfo:before {
        height: 79%;
    }
    .upevent-sliderwrap.home-photgallery-sliderwrap {
        padding-left: 30px;
        padding-right: 30px;
    }
    .home-photgallery-sliderwrap .photogallery-thumb {
        display: none;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-list {
        width: 100%;
    }
    .home-photgallery-sliderwrap .photogallery-slider {
        padding: 0;
    }
    .home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv {
        padding-bottom: 56.25%;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev,
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        bottom: 22%;
        left: -150px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        left: -205px;
    }
    .home-photgallery-section .upevent-title-div {
        margin-bottom: 0px;
    }
    .photogallery-module .slider__counter {
        left: auto;
        right: 0;
    }
    .home-photgallery-section .calendar-btn {
        margin-top: 110px;
    }
    .spacing-100 {
        height: 70px;
    }
    .halloffame-section {
        padding: 0 0 70px;
    }
    .halloffame-detail-header .title {
        font-size: 50px;
    }
    .halloffame-detail-header .desc {
        padding: 40px;
        height: calc(100% - 80px);
        margin: 40px 180px 40px 0
    }
    .news-img-with-text .news-content-wrp {
        padding: 20px 0px 160px 120px;
    }
    .news-img-with-text .right-content-block {
        padding: 40px 45px 35px;
    }
    .news-img-with-text .news-btn-wrap,
    .news-btn-bg {
        width: 78%;
    }
    .news-img-with-text .news-btn-wrap .defult-btn>span {
        margin-left: 52%;
    }
    .news-img-with-text p {
        font-size: 18px;
    }
    .news-img-with-text {
        padding: 65px 0;
    }
    .eventdeatil-innerwrap {
        max-width: 100%;
        margin: 50px auto 70px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
        margin-top: 60px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div {
        margin-bottom: 50px;
    }
    .product-section .container {
        max-width: 95%;
    }
    .product-section {
        margin-bottom: 100px;
    }    
    .account-detail .directory-listbox .directory-bgdiv{
        width: 230px;
    }
    .account-detail .directory-listbox .directory-info {
        padding: 20px;
        width: calc(100% - 230px);
    }
    .account-detail .directory-telmail ul li{
        font-size: 12px;
    } 
    .account-detail .directory-address, .account-detail .directory-text p, .account-detail .directory-titlediv p {
        font-size: 14px;
    }
    .account-detail .nav-tabs .nav-link{
        padding: 10px 20px;
        font-size: 15px;
    }
    .account-detail .directory-info .defult-btn, .advertise-modal .directory-info .defult-btn {
        padding: 10px 30px 10px 60px;
        min-width: 130px;
    }
    .account-detail .directory-telmail {
        padding: 30px 10px;
    }
    .directory-telmail ul li strong{
        min-width: 15px;
    }
    .advertise-modal .modal-body{
        padding: 80px 50px 50px;
    }
    .advertise-modal.modal .close{
        top: 25px;
        right: 25px;
    }
    .descsec .comman-detaildiv{
        padding: 40px;
    }
    .directory-listbox.standard .directory-bgdiv {
        width: 420px;
    }
    .directory-listbox.standard .directory-info {
        width: calc(100% - 420px);
    }
    .directory-listbox.standard .directory-topinfo h3 {
        font-size: 34px;
    }
    .directory-listbox.standard .directory-topinfo {
        padding: 40px 30px;
    }
    .directory-listbox.standard .directory-telmail{
        padding: 25px 30px;
        margin: 0;
    }
    .directory-listbox.standard .directory-content:after {
        height: 343px;
    }
    .advertise-modal .directory-listbox.standard .directory-bgdiv {
        width: 420px;
    }
    .advertise-modal .directory-listbox.standard .directory-info {
        width: calc(100% - 420px);
    }
    .advertise-modal .directory-listbox.standard .directory-content:after {
        height: 268px;
    }
}

@media (max-width: 1024px) {
    .defult-btn {
        padding: 24px 30px;
        min-width: 270px;
        font-size: 14px;
        line-height: 20px;
    }
    .site-header .logo-div {
        margin: 30px auto 0;
    }
    .home-slider .slider-content {
        max-width: 420px;
        bottom: 80px;
    }
    .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%;
    }
    .welcome-section: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;
        margin-top: -15px;
        width: 30px;
    }
    .upevent-title-div {
        width: 250px;
    }
    .upevent-sliderwrap {
        width: calc(100% - 250px);
    }
    .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 {
        left: -185px;
    }
    .upevent-slider .slick-arrow.slick-next {
        left: -130px;
    }
    .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 {
        height: 100%;
        padding-top: 112px;
    }
    .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-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 {
        min-height: 560px;
        padding: 60px;
    }
    .video-outerdiv {
        max-width: 75%;
        height: auto;
    }
    .video-divbox {
        padding-bottom: 56.25%;
    }
    .video-module-content {
        padding: 80px;
        width: 90%;
        padding-top: 40%;
        padding-bottom: 50px;
        float: right;
        margin-top: 80px;
    }
    .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: 60px;
        margin-bottom: 60px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .newsletter-articel-title {
        padding: 60px 40px 40px 40px;
    }
    .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;
    }
    .feature-newsletterlist .feature-widebox:before {
        left: 50px;
        width: 85%;
    }
    .newsletterlist-tiles .tiles-boxdiv {
        height: 280px;
    }
    .newsletterlist-tiles {
        margin: 0px -10px;
    }
    .newsletterlist-tiles .tiles-grid-item {
        padding: 10px;
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv {
        height: 580px;
    }
    .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%;
    }
    .home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv {
        padding-bottom: 66.66%;
    }
    .home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p {
        left: 30px;
    }
    .halloffame-back-btn.defult-btn {
        padding: 24px 30px 24px 80px;
    }
    .halloffame-back-btn:after {
        left: 30px;
    }
    .eventdeatil-lefside {
        width: 100%;
        margin-bottom: 40px;
        padding-right: 0px;
        float: none;
    }
    .eventdeatil-rightside {
        float: none;
        width: 100%;
    }
    .eventdeatil-innerwrap {
        max-width: 80%;
    }
    .backevent-linkbox {
        max-width: 800px;
    }
    .event-gallery-boxdiv {
        width: 50%;
    }
    .event-gallery-wrapper .event-gallery-boxdiv:nth-child(3n + 1) {
        clear: inherit;
    }
    .event-gallery-wrapper .event-gallery-boxdiv:nth-child(2n + 1) {
        clear: both;
    }
    .halloffame-section.latestnewsblog-section {
        padding-left: 5px;
        padding-right: 5px;
    }
    .product-boxdiv {
        padding: 20px 0;
    }
    .paroduct-backevent {
        padding: 0 30px;
    }
    .bdl-share-box {
        height: 52px;
    }
    .bdl-share-box .bdl-share-trigger {
        height: 52px;
        width: 52px;
    }
    .bdl-share-social {
        height: 52px;
        margin-right: 52px;
    }
    .bdl-share-social ul li {
        width: 42px;
    }
    .bdl-share-box.active .bdl-share-social,
    .bdl-share-social ul {
        width: 225px;
    }
    .bdl-share-box.bdl-share-boxdetail .sharebtn.defult-btn svg {
        top: 3px;
    }
    .bdl-share-box.bdl-share-boxdetail .bdl-share-social {
        margin-right: 0;
        margin-left: 52px;
    }
    .account-detail .col-right .title, .advertise-modal .title{
        font-size: 56px
    }
}

@media (max-width: 991px) {
    .home-slider .slider-title {
        font-size: 47px;
    }
    .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;
    }
    .welcome-title strong,
    .upevent-title,
    .twilight-title {
        font-size: 42px;
    }
    .event-list-content h2 {
        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;
    }
    .upevent-title-div {
        padding-top: 60px;
        width: 220px;
    }
    .upevent-sliderwrap {
        width: calc(100% - 220px);
    }
    .calendar-btn .defult-btn {
        min-width: 220px;
    }
    .pillar-section,
    .twilight-section {
        padding: 0;
    }
    .pillar-slidernav-wrap,
    .twilight-content {
        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: 0px 0px 30px;
    }
    .welcome-section:before {
        right: 15px;
    }
    .upevent-slider .slick-slide {
        padding: 25px 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: 129px;
    }
    .upevent-slider .slick-arrow {
        bottom: 32%;
    }
    .upcoming-event-section {
        padding: 30px 0;
    }
    .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;
    }
    .home-slider .slider-content {
        max-width: 390px;
    }
    .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%;
    }
    .intro-module:before {
        width: calc(100% - 30px);
    }
    .intro-content-wrap {
        left: 0;
        padding-left: 30px;
    }
    .imagetext-module-section {
        padding: 70px 0px 0;
    }
    .imagetext-title-div h2 {
        font-size: 42px;
    }
    .imagetext-title-div {
        min-height: 400px;
        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: 30px 15px;
    }
    .comman-detaildiv {
        padding: 30px 0;
    }
    .video-outerdiv {
        max-width: 82%;
    }
    .video-module-content {
        padding: 50px;
        width: 91%;
        padding-top: 41%;
        padding-bottom: 40px;
        padding-right: 40px;
        float: right;
        margin-top: 70px;
    }
    .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%;
    }
    .articel-title {
        font-size: 40px;
    }
    .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;
    }
    .feature-newsletterlist .feature-widebox {
        width: 100%;
    }
    .featuretitles-itemlarg .tiles-image {
        width: calc(60% + 30px);
        margin-left: -30px;
        height: 360px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 50px 25px;
    }
    .feature-newsletterlist {
        margin: 0 -15px 20px 0;
    }
    .newsletterlist-tiles .tiles-grid-sizer,
    .newsletterlist-tiles .tiles-grid-item {
        width: 50%;
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall,
    .newsletterlist-tiles .tiles-grid-item.tiles-half {
        width: 100%;
    }
    .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%;
    }
    .alumin-eventsection .container {
        max-width: 88%;
    }
    .eventlist-bgdiv {
        top: 0px;
        width: 100%;
        position: relative;
    }
    .event-contentinfo:before {
        min-height: 535px;
        height: 103%;
        top: -25%;
        width: calc(100% + 12%);
    }
    .event-contentinfo:after {
        top: 20px;
        left: 20px;
        height: calc(100% - 20px);
        width: calc(100% + 12%);
    }
    .event-contentinfo {
        padding-right: 60px;
        padding-top: 50px;
        padding-left: 60px;
        width: 100%;
    }
    .event-contentinfo .defult-btn,
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        padding-left: 50px;
        margin-left: -60px;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:before {
        left: 0;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:after {
        left: 20px;
    }
    .event-contentinfo p {
        min-height: 57px;
    }
    .latestnews-section .calendar-btn .defult-btn span {
        max-width: 100px;
    }
    .latestnews-section .event-list-content p {
        height: 130px;
    }
    .latestnews-section .event-list-content span {
        font-size: 16px;
    }
    .latestnews-section .upevent-slider .slick-arrow {
        bottom: 24%;
    }
    .latestnews-section .upevent-title-div {
        padding: 0;
    }
    .spacing-100 {
        height: 60px;
    }
    .halloffame-section {
        padding: 0 0 60px;
    }
    .halloffame-detail-header .title {
        font-size: 36px;
    }
    .halloffame-detail-header .desc {
        height: calc(100% - 40px);
        margin: 20px 140px 20px 0;
    }
    .news-img-with-text .left-img-block {
        width: 100%;
        padding: 0;
    }
    .news-img-with-text .right-content-block {
        padding: 35px 20px;
        margin: 0;
        width: 100%;
    }
    .news-img-with-text .news-content-wrp {
        padding: 0;
        border: 0;
    }
    .news-img-with-text .news-btn-wrap {
        width: 100%;
        position: relative;
        bottom: auto;
        /* background-color: rgba(102, 47, 142, 1);  */
    }
    .news-btn-bg {
        width: 100%;
        opacity: 0.5;
        bottom: 0;
    }
    .news-img-with-text .position-relative {
        background: #511c6c;
    }
    .news-img-with-text .news-btn-wrap .defult-btn>span {
        margin-left: 0;
        padding-left: 25px;
    }
    .news-img-with-text {
        padding: 0 0 65px;
    }
    .news-img-with-text .container {
        max-width: 100%;
        padding: 0;
    }
    .halloffame-block .halloffame-title {
        font-size: 16px;
    }
    .halloffame-block .halloffame-content {
        padding: 20px 25px;
    }
    .halloffame-detail-header {
        height: 80vh;
    }
    .halloffame-detail-header .row {
        height: 100%;
    }
    .halloffame-detail-header .col-md-4 {
        height: 50vh;
        overflow: hidden;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .halloffame-detail-header .col-md-8 {
        height: 30vh;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .eventdeatil-innerwrap {
        max-width: 100%;
    }
    .backevent-linkbox {
        max-width: 800px;
    }
    .events-detailpage.directory-listbox .directory-info {
        padding: 60px 90px 80px 40px;
    }
    .news-img-with-text p {
        font-size: 19px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div {
        margin-bottom: 30px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div img {
        width: 80px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
        margin-top: 0px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .newsletter-articel-title {
        display: flex;
        align-items: center;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
        max-width: 86%;
    }
    .backevent-linkbox .twofeature-eventbox .feaure-texttitle h2 {
        font-size: 24px;
    }
    .productslider-content {
        margin-top: 30px;
    }
    .productslider-content {
        padding-left: 0px;
    }
    .backevent-linkbox .twofeature-eventbox .overlay-bg:before {
        width: 75% !important;
    }
    .backevent-linkbox .twofeature-eventbox .feaure-texttitle {
        width: 80%;
    }
    .home-photgallery-section .calendar-btn {
        margin-top: 90px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev,
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        bottom: 29%;
        left: -135px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        left: -185px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slider-image.with-caption {
        padding-bottom: 80px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p {
        bottom: -80px;
    }
    .nav-quicklink-list {
        width: 92%;
    }
    .bdl-share-box.bdl-share-boxdetail {
        display: inline-block;
        margin-top: 0px;
    }
    .file-btn-div.file-dwonload-a .col-right{
        padding-top: 20px;
        padding-bottom: 35px;
    }
    .file-btn-div.file-dwonload-a .col-left{
        padding-top: 35px;
        padding-bottom: 20px;
    }
    .account-detail .col-right .title, .advertise-modal .title{
        font-size: 46px;
    }
    .account-detail .col-left,.account-detail .col-right {
        max-width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }
    .account-detail .comman-detaildiv {
        max-width: 100%;
        margin-left: 0;
    }
    .account-detail .craftcms-formdiv h3 {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .account-detail .nav {
        max-width: 100%;
    }
    .directory-listbox.standard .directory-bgdiv {
        width: 300px;
    }
    .directory-listbox.standard .directory-info {
        width: calc(100% - 300px);
    }
    .directory-listbox.standard .directory-content:before {
        width: 88%;
    }
    .directory-listbox.standard .directory-telmail {
        width: calc(100% + 198px);
        margin-left: -198px;
    }
    .directory-listbox.standard .directory-content:after {
        width: 88%;
    }
    .advertise-modal .directory-listbox.standard .directory-bgdiv {
        width: 300px;
    }
    .advertise-modal .directory-listbox.standard .directory-info {
        width: calc(100% - 300px);
    }
    .advertise-modal .directory-listbox.standard .directory-topinfo {
        padding: 20px;
    }
    .advertise-modal .directory-listbox.standard .directory-telmail {
        padding: 20px 20px;
        width: calc(100% + 238px);
        margin-left: -238px;
    }
    .advertise-modal .directory-listbox.standard .directory-content:after {
        height: 328px;
    }
}

@media (max-width: 767px) {
	.menutxt{color:#FFF;}
    .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;
        margin-top: -18px;
        width: 36px;
    }
    .site-header {
        padding: 5px 20px;
        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;
    }
    .header-stickylogo-div {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0s ease 0s;
    }
    .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);
    }
    .navigation-dropdown {
        z-index: 4;
    }
    .nav-social-boxdiv {
        opacity: 0;
        height: auto;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        bottom: 30px;
        left: auto;
        width: 165px;
        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,
	.menu-logo.active .menutxt{
        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: 40px auto 0 !important;
    }
    .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: #023770;
        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 16px 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: block;
    }
    .purpel-menudiv ul:after {
        content: "";
        display: table;
        clear: both;
    }
    .purpel-menudiv ul li {
        display: block;
        float: left;
        width: 33.33%;
        border-bottom: none;
        position: relative;
        padding: 13px 0;
    }
    .purpel-menudiv ul li:after {
        position: absolute;
        top: 25%;
        right: 0;
        content: "";
        height: 50%;
        width: 1px;
        background-color: #fff;
    }
    .purpel-menudiv ul li:last-child:after {
        display: none;
    }
    .purpel-menudiv li a {
        padding: 0 0 20px 0;
        background-color: transparent;
        position: relative;
        min-height: 65px;
    }
    .purpel-menudiv li a span {
        position: absolute;
        bottom: 0;
    }
    .purpel-menudiv li a svg {
        margin: 0 auto 0px;
    }
    .purpel-menudiv li a svg.pmobile-icon {
        display: block;
		max-height:22px;
    }
    .purpel-menudiv li a svg.pdesktop-icon {
        display: none;
    }
    .enrol-book-prospectus.fixed-btm .purpel-menudiv li a svg.pmobile-icon path {
        fill: #023770;
    }
    .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% + 20px);
        margin-left: -20px;
    }
    .welcome-imagediv-inner {
        padding-bottom: 56.25%;
    }
    .welcome-text {
        padding-right: 0px;
        margin-top: 25px;
        padding-left: 0;
        background: #fff;
        padding: 10px 0 10px;
    }
    .title-rotate {
        writing-mode: inherit;
        transform: inherit;
        margin: 0px;
    }
    .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 {
        bottom: auto;
        top: -65px;
        left: auto;
        right: 95px;
    }
    .upevent-slider .slick-arrow.slick-next {
        left: auto;
        right: 45px;
    }
    .home-slider .slider-title {
        font-size: 42px;
        line-height: 1;
    }
    .home-slider .slider-content {
        max-width: 100%;
        bottom: 120px;
        left: 0;
        padding: 12px 30px 0 30px;
    }
    .home-slider .slider-content:before {
        left: -30px;
    }
    @keyframes SlideContentLine {
        from {
            width: 0;
        }
        to {
            width: calc(65% + 30px);
        }
    }
    .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 50px;
        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:before {
        right: 0px;
        height: 100%;
        width: calc(100% - 20px);
        border-right: none;
    }
    .welcome-section {
        margin: 20px 0 40px;
    }
    .upevent-slider .slick-slide {
        padding: 20px;
    }
    .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 {
        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-bottom: 80px;
    }
    .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;
    }
    .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: 255px;
        height: 328px;
    }
    .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: 92%;
    }
    .accordion-module-wrapper .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 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: inherit;
        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 {
        max-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;
    }
    .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;
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
    .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;
    }
    .newsletterlist-tiles .tiles-content,
    .feature-smallbox .tiles-grid-item .tiles-content {
        max-height: 100%;
        padding: 20px 25px;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .tiles-title,
    .feature-smallbox .tiles-boxdiv .tiles-title {
        min-height: inherit;
        margin-bottom: 15px;
        display: block;
    }
    .newsletterlist-tiles .tiles-grid-item .tiles-boxdiv .new-btn:after,
    .feature-smallbox .tiles-boxdiv .new-btn:after {
        display: none;
    }
    .newsletterlist-tiles .tiles-grid-item.green-bg .tiles-boxdiv .tiles-content {
        background: rgba(44, 144, 61, 0.8);
    }
    .newsletterlist-tiles .tiles-grid-item.blue-bg .tiles-boxdiv .tiles-content {
        background: rgba(0, 36, 71, 0.8);
    }
    .newsletterlist-tiles .tiles-grid-item.offwhite-bg .tiles-boxdiv .tiles-content {
        background: rgba(225, 223, 218, 0.8);
    }
    .newsletterlist-tiles .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .tiles-content {
        background: rgba(164, 124, 206, 0.8);
    }
    .newsletterlist-tiles .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .tiles-content {
        background: rgba(81, 28, 108, 0.8);
    }
    .feature-smallbox .tiles-grid-item.green-bg .tiles-boxdiv .tiles-content {
        background: rgba(44, 144, 61, 0.8);
    }
    .feature-smallbox .tiles-grid-item.blue-bg .tiles-boxdiv .tiles-content {
        background: rgba(0, 36, 71, 0.8);
    }
    .feature-smallbox .tiles-grid-item.offwhite-bg .tiles-boxdiv .tiles-content {
        background: rgba(225, 223, 218, 0.8);
    }
    .feature-smallbox .tiles-grid-item.lightpurpel-bg .tiles-boxdiv .tiles-content {
        background: rgba(164, 124, 206, 0.8);
    }
    .feature-smallbox .tiles-grid-item.darkpurpel-bg .tiles-boxdiv .tiles-content {
        background: rgba(81, 28, 108, 0.8);
    }
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv,
    .newsletterlist-tiles .tiles-boxdiv,
    .feature-smallbox .tiles-boxdiv {
        height: 300px;
    }
    .feature-newsletterlist .feature-widebox {
        width: calc(100% + 10px);
        padding: 20px 0;
        margin-left: -5px
    }
    .featuretitles-itemlarg .tiles-image {
        width: 100%;
        margin-left: 0px;
        height: 360px;
    }
    .featuretitles-itemlarg .featuretitlesl-contemt {
        padding: 35px 25px 35px 45px;
        width: 100%;
    }
    .feature-newsletterlist {
        margin: 0 0px 20px 0;
        max-width: 100% !important;
    }
    .feature-newsletterlist .feature-widebox:after {
        background: url(../images/navigation-bg-logo.svg);
        background-repeat: no-repeat;
        height: 338px;
        width: 317px;
        background-size: cover;
        bottom: -55px;
        right: -85px;
        z-index: 1;
        top: auto;
    }
    .feature-newsletterlist .feature-widebox:before {
        left: 20px;
        width: 100%;
        top: 0;
        height: 100%;
        z-index: 1;
    }
    .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 20px 30px;
    }
    .newsletter-articelist-banner.newsletter-articel-banner .innerpage-slider .sliderimg-div:before {
        width: 100%;
        height: 273px;
        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: calc(100vh - 60px);
    }
    .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, .directory-listbox.standard .directory-content:after {
        width: 100%;
        height: calc(100% - 30px);
        bottom: 0;
        top: auto;
    }
    .directory-listbox .directory-bgdiv,.directory-listbox.standard .directory-bgdiv {
        width: calc(100% - 30px);
        box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
        margin: 0px auto 0;
        float: none;
    }
    .directory-listbox.standard .directory-topinfo h3 {
        font-size: 30px;
    }
    .directory-listbox.standard .directory-info {
        width: 100%;
    }
    .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,.directory-listbox.standard .directory-topinfo {
        padding: 25px 15px 65px;
    }
    .directory-listbox {
        display: block;
        margin: 25px 0 90px;
    }
    .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;
    }
    .event-contentinfo h2 {
        font-size: 40px;
        min-height: 120px;
    }
    .event-datetext .date-t {
        font-size: 66px;
    }
    .alumin-eventsection .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .event-datetext {
        margin-bottom: 25px;
    }
    .event-datetext span {
        font-size: 18px;
    }
    .event-contentinfo:after {
        top: 20px;
        left: -30px;
        height: calc(100% - 20px);
        width: calc(100% + 12%);
        border-left: none;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:after {
        left: -30px;
    }
    .event-contentinfo {
        padding-right: 50px;
        padding-top: 50px;
        padding-left: 50px;
        width: 100%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
        padding-left: 50px;
        padding-right: 50px;
    }
    .event-contentinfo .defult-btn,
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        padding-left: 45px;
        margin-left: -50px;
    }
    .event-contentinfo:before {
        height: calc(100% - 45px);
        top: -15%;
        min-height: auto;
    }
    .event-contentinfo p {
        margin-bottom: 60px;
    }
    .event-contentinner {
        min-height: auto;
    }
    .mobile-carticon-div {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1;
    }
    .site-header.opened-menu .mobile-carticon-div {
        display: none;
    }
    .mobile-carticon-div svg path {
        fill: #fff;
    }
    #snipcart-cart-link img {
        filter: brightness(0) invert(1);
    }
    .site-header.sticky .mobile-carticon-div {
        display: none;
    }
    .home-photgallery-section,
    .latestnews-section {
        display: block;
    }
    .home-photgallery-section {
        padding: 30px 20px 50px;
    }
    .upevent-sliderwrap.home-photgallery-sliderwrap {
        padding-left: 0px;
        padding-right: 0px;
    }
    .latestnews-section .upevent-title {
        margin-bottom: 10px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-prev,
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        display: block !important;
        bottom: auto;
        top: -60px;
        left: auto;
        right: 40px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .slick-arrow.slick-next {
        right: 90px;
    }
    .home-photgallery-sliderwrap .photogallery-slider .photogallery-imgdiv p {
        left: 20px;
        padding: 10px 0px 10px 10px;
        bottom: -60px;
        font-size: 14px;
        letter-spacing: 0;
    }
    .latestnews-bg {
        top: -20px;
        left: -20px;
    }
    .home-photgallery-section .upevent-title {
        margin-bottom: 60px;
    }
    .spacing-100 {
        height: 40px;
    }
    .halloffame-section {
        padding: 0 5px 50px;
    }
    .halloffame-detail-header .desc {
        height: auto;
        margin: 15px 0;
        padding: 30px 15px;
        min-height: 300px;
        border-right: 0;
    }
    .halloffame-detail-header .title {
        font-size: 38px;
    }
    .news-img-with-text {
        padding: 0 0 35px;
    }
    .blog-nav li a {
        padding: 7px 30px;
    }
    .blog-nav li {
        margin: 0;
    }
    .blog-paggination ul li a,
    .blog-paggination ul li span {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .blog-paggination a.blog-show-more {
        min-width: auto;
        padding: 13px 15px;
        font-size: 16px;
        margin-left: 2px;
    }
    .halloffame-block .img-wrapper {
        padding-top: 100%;
    }
    .halloffame-block .halloffame-title {
        font-size: 16px;
        line-height: 22px;
        min-height: 44px;
    }
    .halloffame-block .halloffame-content {
        bottom: -50px;
    }
    .halloffame-detail-header {
        height: 100vh;
        height: calc((var(--vh, 1vh) * 100));
    }
    .halloffame-detail-header .col-md-4 {
        height: calc(100vh - 330px);
        overflow: hidden;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .halloffame-detail-header .col-md-8 {
        height: auto;
        min-height: 50vh;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .events-detailpage {
        height: 100vh;
        height: calc((var(--vh, 1vh) * 100));
    }
    .events-detailpage .directory-content {
        height: 100%;
    }
    .events-detailpage.directory-listbox.directory-detailpage .directory-bgdiv {
        height: 50vh;
        padding-bottom: 0;
    }
    .events-detailpage.directory-listbox .directory-info {
        height: 50vh;
    }
    .events-detailpage:before {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(2, 55, 112, 0.5);
    }
    .event-gallery-wrapper {
        padding: 0 20px;
        max-width: 100%;
    }
    .event-gallery-content {
        padding: 15px;
    }
    .halloffame-section.latestnewsblog-section .container {
        max-width: 100%;
    }
    .blog .halloffame-block .halloffame-content {
        bottom: 0;
        width: calc(100% - 25px);
        max-height: 85px;
        padding: 10px 25px !important;
    }
    .blog .halloffame-block .halloffame-title {
        min-height: 66px;
    }
    .blog .halloffame-block:hover .halloffame-content {
        bottom: 0;
        max-height: 100%;
    }
    .blog-nav .blog-nav-toogle-icon {
        display: inline-block;
        height: 37px;
        vertical-align: top;
    }
    .blog-nav li {
        display: block;
        margin-bottom: 4px;
    }
    .blog-nav li a {
        min-width: 150px;
    }
    .blog-nav ul {
        height: 37px;
        display: inline-block;
        vertical-align: middle;
        overflow: hidden;
        transition: all 0.2s ease;
    }
    .blog-nav ul.blog-nav-active {
        height: auto;
    }
    .blog-nav .blog-nav-toogle-icon a {
        padding: 9px 12px;
        position: relative;
        top: 5px;
    }
    .blog-nav .blog-nav-toogle-icon a img {
        vertical-align: middle;
    }
    .latestnews-articel-banner.newsletter-articel-banner {
        margin-top: 0px;
        height: 100vh;
        height: calc((var(--vh, 1vh) * 100));
    }
    .newsletter-articel-banner.newsletter-articel-banner:before {
        display: none;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div img {
        width: 60px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-category {
        font-size: 16px;
        margin-bottom: 0;
        padding-left: 40px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title-inner {
        max-width: 100%;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title:after {
        display: none;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .articel-category:before {
        width: 160px;
    }
    .product-section .container {
        max-width: 100%;
    }
    .product-section {
        margin-bottom: 70px;
    }
    .productdetail-section {
        padding: 0 5px;
        margin: 60px 0;
    }
    .productdetail-section .container {
        max-width: 100%;
    }
    .productslider-content {
        padding-left: 0px;
    }
    .snipcart-item-line__container {
        padding: 20px;
        display: flex;
        margin: 0 0px 24px 0px;
    }
    .defultpage-wrapper.halloffame-cotentsec .comman-detaildiv {
        max-width: 100%;
    }
    .photogallery-module .slider__counter {
        left: 0;
        right: auto;
        top: -55px;
        bottom: auto;
    }
    .home-photgallery-section .calendar-btn {
        margin-top: 10px;
    }
    .bdl-share-box {
        height: 36px;
        bottom: 15px;
        left: 15px;
        right: auto;
    }
    .bdl-share-box .bdl-share-trigger {
        left: 0;
        right: auto;
        height: 36px;
        width: 36px;
    }
    .bdl-share-social {
        height: 36px;
        margin-left: 36px;
        margin-right: 0;
    }
    .bdl-share-social ul li {
        width: 34px;
    }
    .bdl-share-social ul {
        justify-content: inherit;
    }
    .bdl-share-box.active .bdl-share-social,
    .bdl-share-social ul {
        width: 180px;
    }
    .bdl-share-box img {
        height: 18px;
    }
    .directory-detailpage .directory-info .sharebtn.defult-btn {
        height: 36px;
        border: 1px solid rgb(44 144 61);
        border-left: none;
        min-height: inherit;
        width: 36px;
        position: absolute;
    }
    .bdl-share-box.bdl-share-boxdetail .bdl-share-social {
        margin-left: 36px;
    }
    .bdl-share-box.bdl-share-boxdetail .sharebtn.defult-btn svg {
        top: 2px;
        height: 16px;
        width: 16px;
    }
    .bdl-share-box.bdl-share-boxdetail {
        left: auto;
    }    
    .file-btn-div.file-dwonload-a a{
        min-width: auto;
        width: 100%;
    }
    .freeform-row .freeform-column{
        flex: unset !important;
        width: 100% !important;
    }
    .craftcms-formdiv button[type="button"], .craftcms-formdiv button[type="submit"], .craftcms-formdiv input[type="submit"]{
        margin-top: 20px;
    }
    .account-detail .directory-listbox{
        margin-bottom: 20px;
    }
    .account-detail .directory-listbox .directory-info{
        width: 100%;
    }
    .account-detail .directory-info .defult-btn, .advertise-modal .directory-info .defult-btn{
        padding: 0;
        min-width: auto;
        width: 22px;
        margin-bottom: 5px;
    }
    .freeform-row{
        flex-wrap: wrap;
    }
    .freeform-row.col-md-6.pr-md-0 {
        margin: 0;
        padding: 0;
    }
    .advertise-modal.modal .close {
        top: 15px;
        right: 15px;
    }
    .advertise-modal .modal-body {
        padding: 70px 20px 10px;
    }
    .advertise-modal .modal-dialog{
        padding: 0;
    }
    .advertise-modal .subtite{
        padding-left: 20px;
    }
    .advertise-modal .subtite::after{
        right: calc(100% - 10px);
    }
    .advertise-modal .content p{
        font-size: 16px;
        line-height: 1.45;
    }
    .advertise-modal .directory-listbox .directory-bgdiv,.advertise-modal .directory-listbox.standard .directory-bgdiv{
        width: 100%;
        margin-top: 0;
    }
    .advertise-modal .directory-listbox .directory-info {
        padding: 15px 15px 40px;
        width: 100%;
    }
    .advertise-modal .directory-listbox.standard .directory-info {
        width: 100%;
        padding: 0;
    }
    .advertise-modal .directory-listbox.standard .directory-topinfo{
        padding: 15px 15px 40px;
    }
    .advertise-modal .directory-listbox{
        padding: 10px;
    }
    .setup-divwrp .btn-wrp{
        padding: 15px;
    }
    .descsec .comman-detaildiv {
        padding: 20px;
    }
    .craftcms-formdiv #mc_embed_signup .size1of2 {
        width: 100%;
        margin-right: 0;
    }
    .craftcms-formdiv #mc_embed_signup .mc-address-fields-group{
        width: 100%;
        display: block;
    }
    .craftcms-formdiv #mc_embed_signup .mc-field-group{
        width: 100%;
        padding-bottom: 20px;
    }
    .craftcms-formdiv #mc_embed_signup .defult-btn.purpel-btn{
        margin-top: 30px;
    }
    .advertise-modal .form-check-label{
        font-size: 16px;
    }
    .advertise-modal .form-check-input{
        margin-top: 2px;
        margin-left: -25px;
        height: 16px;
        width: 16px;
    }
    .advertise-modal .form-check{
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .home-slider .slider-title {
        font-size: 38px;
    }
    .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: 40px;
    }
    .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;
        padding-top: 15px;
    }
    .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-boxdiv,
    .newsletterlist-tiles .tiles-grid-item.tiles-tall .tiles-boxdiv,
    .feature-smallbox .tiles-boxdiv {
        height: 340px;
    }
    .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;
    }
    .event-contentinfo h2 {
        font-size: 38px;
        min-height: 114px;
    }
    .event-datetext .date-t {
        font-size: 62px;
    }
    .alumin-eventsection .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .event-contentinfo:after {
        top: 15px;
        left: -20px;
        height: calc(100% - 15px);
        width: calc(100% + 40px);
        border-left: none;
        border-right: none;
    }
    .event-contentinfo {
        padding-right: 10px;
        padding-bottom: 20px;
        padding-top: 40px;
        padding-left: 35px;
        width: 100%;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo {
        padding-right: 10px;
        padding-left: 35px;
    }
    .event-contentinfo .defult-btn,
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        min-width: 300px;
        padding-left: 45px;
        margin-left: -35px;
    }
    .event-contentinfo h2 {
        min-height: auto;
    }
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo:after {
        left: -20px;
    }
    .halloffame-section {
        margin-bottom: -18px;
    }
    .halloffame-block .halloffame-content {
        margin-right: 75px;
        width: calc(100% - 75px);
        background-color: rgb(2 55 112 / 90%);
    }
    .halloffame-block {
        margin: 0 0 18px;
    }
    .events-detailpage .event-contentinner h2 {
        font-size: 36px;
        min-height: 108px;
    }
    .events-detailpage:before {
        top: 20px;
        bottom: 20px;
        height: calc(100% - 40px);
    }
    .eventdeatil-rightside .comman-detaildiv p,
    .eventdeatil-rightside .comman-detaildiv h6 {
        font-size: 16px;
        line-height: 24px;
    }
    .backevent-linkbox .twofeature-eventbox .overlay-bg:before {
        width: calc(100% + 40px) !important;
        min-height: 191px;
        left: -20px;
    }
    .backevent-linkbox .twofeature-eventbox .feaure-texttitle {
        min-height: inherit;
        width: calc(100% + 40px);
        padding: 33px 60px 35px 50px;
    }
    .backevent-linkbox .twofeature-border {
        padding: 10px 25px 15px 0;
        min-height: auto;
    }
    .backevent-linkbox .twofeature-eventbox {
        height: 280px;
    }
    .event-gallery-boxdiv {
        width: 100%;
    }
    .event-gallery-content span {
        font-size: 16px;
    }
    .event-gallery-content h3 {
        max-width: 100%;
        font-size: 22px;
        line-height: 28px;
        min-height: 56px;
        margin-bottom: 28px;
    }
    .event-gallery-content .arrow-btn {
        bottom: 10px;
        right: 10px;
    }
    .event-gallery-content span:before {
        left: -88%;
    }
    .halloffame-section.latestnewsblog-section {
        padding-left: 0;
        padding-right: 0;
    }
    .news-img-with-text p {
        font-size: 16px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle {
        padding: 25px 40px 25px 40px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .feaure-texttitle {
        padding: 25px 40px 25px 40px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .newsletter-articel-title {
        padding: 30px 0;
        display: block;
        height: 58vh;
    }
    .product-section {
        padding: 0 5px;
    }
    .paroduct-backevent {
        padding: 0 20px;
    }
    .productslider-content h3 {
        font-size: 24px;
    }
    .price-span {
        font-size: 20px;
    }
    .qty-divbox span.qty-text {
        margin-left: 0;
    }
    .productslider-content {
        margin-top: 30px;
    }
    .productshort-content p {
        font-size: 18px;
    }
    .product-thumbslider .slick-slide {
        padding: 0 5px;
    }
    .pageNotFound-div .pageNotFound-text {
        font-size: 7em;
    }
    .pageNotFound-div .comman-detaildiv .defult-btn {
        text-align: left;
        padding-left: 30px;
        padding-right: 30px;
    }
    .pageNotFound-div .comman-detaildiv .defult-btn:after {
        right: 30px;
    }
    .bdl-share-box.bdl-share-boxdetail {
        display: block;
        margin-top: 15px;
    }
    .account-detail .col-right .title, .advertise-modal .title{
        font-size: 32px;
    }
}

@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: 32px;
    }
    .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 {
        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 11px 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: 34px;
    }
    .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;
    }
    .event-contentinfo h2 {
        font-size: 34px;
    }
    .event-contentinfo .defult-btn,
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn {
        min-width: 270px;
        padding-left: 30px;
        margin-left: -35px;
        padding-right: 30px;
    }
    .event-contentinfo .defult-btn:after,
    .event-listwrap .eventlist-boxdiv:nth-child(even) .event-contentinfo .defult-btn:after {
        right: 25px;
    }
    .blog-paggination ul li a,
    .blog-paggination ul li span {
        height: 43px;
        width: 43px;
        line-height: 43px;
    }
    .blog-paggination a.blog-show-more {
        padding: 10px 15px;
        font-size: 15px;
        margin-left: 3px;
    }
    .events-detailpage .event-contentinner h2 {
        font-size: 34px;
        min-height: 102px;
    }
    .halloffame-section.latestnewsblog-section .halloffame-block .halloffame-title {
        font-size: 15px;
    }
    .halloffame-section.latestnewsblog-section .halloffame-block .halloffame-content {
        padding: 20px 15px;
    }
    .blog .halloffame-block .halloffame-title {
        min-height: 60px;
        line-height: 20px;
    }
    .blog .halloffame-block .halloffame-content {
        max-height: 80px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox .feaure-texttitle {
        padding: 25px;
    }
    .twofeature-secrtion.latestnews-twofeature-section .twofeature-eventbox.right .feaure-texttitle {
        padding: 25px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div {
        margin-bottom: 30px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .logo-div img {
        width: 50px;
    }
    .latestnews-articel-banner.newsletter-articel-banner .newsletter-articel-title {
        padding: 20px 0;
    }
}