* {
    box-sizing: border-box;
}

:root {
    --primary: #FFFFFF;
    --secondary: #000000;
    --white: #ffffff;
    --black: #000000;
    --primaryText: #000000;
    --font: 'EB Garamond';
    --container: 1200px;
    --containerMd: 1450px;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    float: left;
    background: var(--white);
    letter-spacing: 1px;
}
.wrapper:after {
    content: '';
    display: table;
    clear: both;
}
.sectionWrap {
    width: 100%;
    float: left;
}
.responsive {
    width: 100%;
}
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0px 15px;
}
.container:after {
    content: '';
    display: table;
    clear: both;
}
.italic {
    font-style: italic;
}
.inBlock {
    display: block;
}
.slick-slide {
    height: auto;
}
.greySection {
    background: #E6E5E4;
}
.pageSection {
    padding: 40px 0px;
}
.mT50 {
    margin-top: 50px;
}
.m30 {
    margin: 30px 0px;
}
.mT20 {
    margin: 20px 0px;
}
.m10 {
    margin: 10px 0px;
}
.mNone {
    margin: 0 !important;
}
.flexCC {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-D-C {
    flex-direction: column;
}
.f14 {
    font-size: 14px;
    letter-spacing: 2px;
}
.font25 p, li{
    font-size: 25px !important;
}
.incLink {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
.textLink {
    text-decoration: none;
    color: inherit;
}
.icon.icon--fb {
    width: 36px;
    height: 36px;
    position: relative;
    top: 12px;
}
.p30 {
    padding: 30px;
}
.h1 {
    font-size: 50px;
    line-height: 60px;
    display: inline-block;
    letter-spacing: 3px;
    font-weight: 400;
}
.h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 0px 0px 40px 0px;
    letter-spacing: 1px;
    display: inline-block;
}
.h3 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin: 0px 0px 20px 0px;
    letter-spacing: 1px;
    display: inline-block;
}
.csInput {
    width: 100%;
    height: 40px;
    padding: 5px 15px;
    font-family: var(--font);
    font-size: 18px;
    letter-spacing: 1px;
    border: 1px solid var(--black)
}
.csInput:focus {
    outline: 0;
}
.textRight {
    text-align: right;
}
.h2--uLine, .h1--uLine {
    padding-bottom: 30px;
    position: relative;
}
.h2--uLine:after, .h1--uLine:after {
    content: '';
    width: 90px;
    height: 1px;
    background: var(--black);
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.inBlock {
    width: 100%;
    float: left;
}
.imageWrap {
    margin: 20px 0px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 15px 40px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
}
.btn.outlineBtn {
    color: var(--black);
    border: 1px solid var(--black);
    transition: 0.3s linear;
    background: var(--white);
}
.btn.outlineBtn:hover {
    background: var(--black);
    color: var(--white);
    transition: 0.3s linear;
}
.btn.btn--sm {
    padding: 8px 30px;
    font-weight: 400;
}

/* BUTTONS END*/

/* HEADER */

.pageHeader {
    padding: 20px 0px;
    background: var(--white);
}
.pageNav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.hamburger {
    width: 44px;
    height: 29px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 30px;
}
.hamburger * {
    cursor: pointer !important;
}
.hamburger:before, .hamburger:after {
    content: '';
    width: 44px;
    height: 5px;
    background: var(--black);
    position: absolute;
    left: calc(50% - 22px);
    transition: 0.3s linear;
    transform-origin: center;
}
.hamburger:before {
    top: 0px;
}
.hamburger:after {
    bottom: 0px;
}
.hamburger.active:before, .hamburger.active:after {
    bottom: auto;
    top: calc(50% - 2.5px);
}
.hamburger.active:before {
    transform: rotate(45deg);
}
.hamburger.active:after {
    transform: rotate(-45deg);
}
.hamburger label {
    width: 44px;
    height: 5px;
    background: var(--black);
    display: inline-block;
    opacity: 1;
    transition: 0.3s linear;
}
.hamburger.active label {
    opacity: 0;
    transition: 0.3s linear;
}
.pageNav__link {
    font-size: 18px;
    text-decoration: none;
    padding: 0px 0px 5px 0px;
    position: relative;
    color: #484848;
    letter-spacing: 1px;
}
.pageNav__link:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #484848;
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.pageNav__contents {
    width: 100%;
    max-width: 1040px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.pageLogo {
    width: 100%;
    max-width: 180px;
}
.pageLogo__image {
    width: 100%;
}
.navList {
    display: none;
}
.navList, .navInnerList {
    padding: 0;
    list-style-type: none;
    max-width: 500px;
    position: relative;
    left: -10px;
    float: left;
}
.navList:after, .navInnerList:after {
    content: '';
    display: table;
    clear: both;
}
.navList__items, .navInnerList__items {
    width: 100%;
    float: left;
}
.navList__items__link, .navInnerList__items__link {
    padding: 10px;
    width: 100%;
    float: left;
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
    /* transition: 0.3s linear; */
}
.navList__items__link.disabled, .navInnerList__items__link.disabled {
    /* opacity: 0.5;
    background: #00000047; */
    pointer-events: none;
    color: #4848488c;
}
.navList__items__link:hover, .navInnerList__items__link:hover {
    background: var(--black);
    color: var(--white);
}
.navInnerList {
    display: none;
    left: 0px;
}
.navInnerList__items__link {
    padding: 10px 40px;
}

/* HEADER END */

/* BANNER SECTION */

.bannerSection {
    width: 100%;
    padding: 30px 0px;
    display: inline-block;
    position: relative;
}
.bannerSection.bannerSection--inner {
    padding: 0;
    float: left;
}
.bannerSection--white {
    padding: 200px 0px;
}
.bannerCaption {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.bannerSection--inner img {
    float: left;
}
.bannerCaption h1 {
    color: var(--white);
    font-size: 60px;
    letter-spacing: 3px;
    margin: 0px;
}
.bannerCaption.bannerCaption--center h1 {
    text-align: center;
}
.bannerSection--white h1 {
    color: var(--black);
    letter-spacing: 2px;
}
.bannerTitle {
    width: 100%;
    font-size: 80px;
    font-weight: 400;
    line-height: 86px;
    max-width: 700px;
    margin: 0px 0px 20px 0px;
}
.bannerTitle .inBlock {
    font-weight: 500;
}
.bannerText {
    font-size: 26px;
    font-weight: 500;
}
.bannerCarousal {
    padding: 80px 0px 60px 0px;
}
.bannerCarousal__item {
    padding: 0px 5px;
    display: flex !important;
    align-items: end;
}
.bannerCarousal .slick-arrow {
    position: absolute;
    bottom: 16px;
    right: 0px;
    font-size: 0px;
    margin: 0;
    border: 0;
    padding: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
.bannerCarousal .slick-prev {
    right: 50px;
    background: url('../images/arrow-prev.png') no-repeat center;
    background-size: 20px 20px;
}
.bannerCarousal .slick-next {
    right: 0px;
    background: url('../images/arrow-next.png') no-repeat center;
    background-size: 20px 20px;
}
.bannerCarousal .slick-next:before {
    content: '';
    width: 1px;
    height: 100%;
    background: black;
    position: absolute;
    left: -12px;
    top: 0px;
}

/* BANNER SECTION END */

/* CONTENT AREA */

.flexWrapper {
    width: 100%;
}
.flexWrapper:after {
    content: '';
    display: table;
    clear: both;
}
.sideTile {
    display: flex;
    align-items: flex-start;
    margin: 20px 0px;
    float: left;
    height: 575px;
}
.sideTile__image {
    width: 50%;
    height: 100%;
    /*padding-bottom: 30px;*/
}
.sideTile:nth-child(odd) .sideTile__image {
    order: 2;
}
.sideTile__image__in {
    width: 100%;
    height: 100%;
    object-fit: cover;
    float: left;
}
.sideTile__content {
    width: 50%;
    padding: 5% 7%;
    text-align: center;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sideTile__content__title {
    font-size: 28px;
    margin: 0px 0px 30px 0px;
    padding-bottom: 15px;
    display: inline-block;
    position: relative;
    letter-spacing: 3px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}
.sideTile__content__title:after {
    content: '';
    width: 100px;
    height: 1px;
    background: var(--black);
    position: absolute;
    bottom: 0px;
    left: calc(50% - 50px);
}
.sideTile__content__text {
    font-size: 24px;
    font-weight: 400;
    margin: 0px 0px 30px 0px;
    color: var(--black);
    text-decoration: none;
}
.sideTile__content .btn {
    width: 170px;
    padding: 10px;
}
.sideTile.sideTile--infull .sideTile__image {
    padding-bottom: 0;
}
.sideTile--infull {
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
}
.sideTile--infull .sideTile__content {
    height: 100%;
    min-height: 100%;
}
.sideTile--infull .sideTile__content__title {
    padding-bottom: 0;
    margin-bottom: 10px;
}
.sideTile--infull .sideTile__content__title:after {
    content: none;
}
.sideTile--infull .sideTile__content__text {
    margin-bottom: 0px;
}
.teamMember .sideTile__content {
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 70px 20px;
}
.teamMember .sideTile__content__title {
    margin: 0px;
}
.teamMember .sideTile__image {
    width: 100%;
    height: auto;
}
.gridWrapper {
    display: grid;
    margin: 20px 0px;
    width: 100%;
}
.gridWrapper.grid-2 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.gridWrapper.grid-auto-250 {
    grid-template-columns: auto 250px;
}
.gridWrapper.grid-G-80 {
    grid-column-gap: 80px;
}
.gridWrapper.grid-G-10 {
    grid-gap: 10px;
}
.midLine {
    position: relative;
}
.midLine:after {
    content: '';
    width: 1px;
    height: calc(100% - 60px);
    background: var(--black);
    position: absolute;
    top: 30px;
    left: calc(50% - 0.5px);
}
.imageTile__img {
    width: 100%;
}
.imageTile {
    position: relative;
}
.imageTile_title {
    margin: 0px;
    color: var(--white);
    font-size: 28px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}
.imageTile__content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10%;
}
.imageTile_title:after {
    content: '';
    width: 100px;
    height: 1px;
    background: var(--white);
    position: absolute;
    bottom: 0px;
    left: calc(50% - 50px);
}
.imageTile__content.imageTile__content--center {
    justify-content: center;
}
.scheduleSection {
    text-align: center;
    background: url('../images/upcoming.jpg') no-repeat center;
    background-size: cover;
    position: relative;
}
.scheduleSection:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(255 255 255 / 10%);
    z-index: 0;
}
.scheduleSection  * {
    position: relative;
}
.scheduleBlock {
    background: var(--white);
    padding: 20px;
    max-width: 450px;
    margin: 30px auto;
}
.scheduleBlock p {
    font-size: 20px;
    margin: 10px 0px;
}
.memberDetail .h3 {
    margin: 15px 0px;
}
.memberDetail p {
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    width: 100%;
    display: inline-block;
    margin: 10px 0px;
}
.mxW500 {
    width: 100%;
    max-width: 500px;
}
.calendarSection .h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
}
.gridWrapper.grid-250-auto {
    grid-template-columns: 250px auto;
}
.gridWrapper .gridWrapper {
    margin: 0px 0px 30px 0px;
    border-bottom: 1px solid var(--black);
}
.calendarSection .gridWrapper h6 {
    margin-top: 8px;
    color: var(--black);
}

/* CONTENT AREA END */

/* CARD */

.card {
    width: 100%;
    background: var(--white);
    padding: 50px;
    /* margin: 30px 0px; */
    float: left;
}
.card.card--tCentered {
    text-align: center;
}
.card h4 {
    margin: 0px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: 1px;
}
.card h2 {
    font-size: 50px;
    font-weight: 400;
    margin: 0px 0px 40px 0px;
    letter-spacing: 1px;
}
.card p {
    font-size: 20px;
    line-height: 28px;
    max-width: 800px;
    margin: 30px auto;
    text-align: justify;
}
.card h6 {
    font-size: 22px;
    font-weight: 400;
    margin: 20px 0px 10px 0px;
    letter-spacing: 2px;
}
.card h6 + p {
    margin-top: 15px;
}
.circleList, .card ul {
    padding-left: 20px;
    list-style-type: circle;
    text-align: left;
}
.circleList li, .card ul li {
    letter-spacing: 0px;
    font-size: 20px;
    line-height: 24px;
    margin: 10px 0px;
    width: 100%;
}

/* CARD END */

.eventDetails {
    margin-bottom: 20px;
}
.eventDetails p {
    margin: 8px 0px;
}

/* FOOTER */

.pageFooter {
    width: 100%;
    background: #484848;
    float: left;
    padding: 40px 0px;
}
.gridWrapper.grid-2-offset {
    grid-template-columns: 1fr auto;
    grid-column-gap: 30px;
}
.footerBlock__nmText {
    color: var(--white);
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 1px;
    margin: 8px 0px;
    position: relative;
}
.footerBlock__smText {
    font-size: 14px;
    color: var(--white);
    margin: 4px 0px;
    letter-spacing: 1px;
}
.footerBlock__smText a {
    text-decoration: underline;
}
.footerBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.forgotLink {
    text-decoration: none;
    font-size: 14px;
    color: var(--black);
}
.formBlock {
    margin: 10px 0px;
    width: 100%;
    display: inline-block;
}
.formLabel {
    display: block;
    letter-spacing: 1px;
    margin: 0px 0px 5px 0px;
}
.formIn p a {
    text-decoration: underline;
}
.formIn p {
    letter-spacing: 1px;
    line-height: 24px;
}

.blogDetail :is(h6, p) {
    margin: 0px 0px 15px 0px;
    font-size: 1.2em;
}
.blogDetail {
    padding: 60px 10px;
}
.blogDetail p:not(.dateLine) {
    font-weight: 600;
}

/* FOOTER END */

.radioBox {
    padding-left: 30px;
    margin: 5px 0px;
    width: 100%;
    display: inline-block;
}
.radioEach {
    position: relative;
    padding-left: 30px;
    margin: 8px 0px;
    display: inline-block;
    width: 100%;
}
.csRadio {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0px;
    margin: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}
.csRadio + span {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid #d2d2d2;
    position: absolute;
    background: #f2f2f2;
    left: 0;
    top: 0px;
    margin: 0;
    z-index: 1;
}
.csRadio + span:before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--black);
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    border-radius: 8px;
    transform: scale(0);
    transition: 0.3s;
}
.csRadio:checked + span {
    background: var(--white)
}
.csRadio:checked + span:before {
    content: '';
    transform: scale(1);
    transition: 0.3s;
}
.sideTile__image__in.imgSquare {
    min-height: 540px;
    object-fit: cover;
}

.categoryList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.categoryList li {
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px 0;
    margin: 5px 0px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--black);
}
[tab-open] {
    cursor: pointer;
}
.categoryToggle h3 {
    margin: 0px 0px 20px 0px;
}
.tabContent :is(h4, p) {
    font-size: 18px;
    margin: 0 0 21px 0;
    line-height: 26px;
}
.tabContent {
    display: none;
}
.tabContent.active {
    display: block;
}

section.bannerSection.bannerSection--white.article {
    padding: 0px;
}
section.bannerSection.bannerSection--white.article .bannerCaption.bannerCaption--center {
    position: relative;
}
.chooseArticle ul {
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.chooseArticle ul li {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}
.chooseArticle ul li a {
    text-decoration: none;
    color: var(--black);
    padding: 0px 20px 10px;
    transition: 0.3s linear;
}
.chooseArticle ul li a:hover {
    border-bottom: 1px solid var(--black);
    transition: 0.2s linear;
}
.signature {
    width: 100%;
    float: left;
    height: 96px;
    margin: 79px 0px;
    margin-top: 39px;
}
figure.signature img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gridWrapper.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}
.gridWrapper.grid-3.t30 {
    padding-top: 30px;
}
.articleItem {
    width: 100%;
    height: auto;
    float: left;
}
.articleItem a {
    text-decoration: none;
    color: var(--black);
    width: 100%;
    float: left;
    padding: 33px 22px 50px 20px;
    background: var(--white);
    transition: 0.2s linear;
}
.articleItem a:hover {
    background: var(--grey);
    transition: 0.3s linear;
}
.articleItem  h3 {
    min-height: 113px;
    letter-spacing: 0px;
    font-size: 32px;
    line-height: 38px;
} 
.articleItem  p {
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}
.articleItem  h6 {
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    text-transform: uppercase;
}
.chooseArticle--subhead {
    margin: 68px 0px;
    width: 100%;
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 500;
}

.chooseArticle.video ul li {
    text-transform: capitalize;
}
.pageSection.greySection.video .card h2 {
    margin: 0px;
    font-size: 45px;
}
.pageSection.greySection.video .card h4 {
    font-size: 20px;
}
.videoItem {
    width: 100%;
    height: auto;
    float: left;
}
.videoItem a {
    text-decoration: none;
    color: var(--black);
    width: 100%;
    float: left;
    background: var(--white);
    transition: 0.2s linear;
}
.videoItem figure {
    margin: 0px;
    width: 100%;
    height: 158px;
}
.videoItem figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.videoItem p, .videoItem h6 {
    padding: 0px 22px;
    margin-top: 27px;
}
.videoItem h6 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
}
.videoItem p {    
    font-size: 24px;
    font-weight: 400;
    padding-top: 20px;
}
.pageSection.greySection.video .card.card--tCentered {
    padding: 79px 0px;
}


/* TABS */
.tabLinks {
    width: 100%;
    float: left;
    margin-top: 40px;
}

.tabLinks .tabs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0px;
    padding: 0px;
    color: var(--black);
}
ul.tabs li {
    display: inline-block;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    padding: 0px 17px 7px;
    color: var(--black);
    letter-spacing: 2px;
}
ul.tabs li:hover { 
    border-bottom: 1px solid var(--black);
}
ul.tabs li.current{
    border-bottom: 1px solid var(--black);
}
.tab-content{
    display: none;
}
.tab-content.current{
    display: inherit;
}
/* TABS END */

/* CASH PAGE */
section.bannerSection.bannerSection--white.cash {
    padding: 150px 0px;
    background: #ffffff;
    display: inline-block;
    height: auto;
}
.cash .bannerCaption.bannerCaption--center h1 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
}
.cash .bannerCaption.bannerCaption--center p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0px;
    margin-top: 45px;
    padding: 0px 100px;
}
.pinTile {
    padding: 0px;
    margin: 0px;
    text-decoration: none;
}
.pinTile a {
    width: 100%;
    height: auto;
    float: left;
    background: var(--white);
    text-decoration: none;
    color: var(--black);
}
.pinTile figure {
    height: 180px;
    width: auto;
    object-fit: cover;
    margin: 0px;
    padding: 0px;
}
.pinTile figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.pinTile .pintileDesc {
    padding: 22px;
}
.pinTile .pintileDesc h4 {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0px;
    margin-bottom: 25px;
}
.pinTile .pintileDesc h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0px;
    margin-top: 20px;
    color:#484848;
}
.pinTile .pintileDesc p {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
    float: left;
}
.pinTile a:hover .pintileDesc h6 {
    color: var(--black);
}
/* OPTIONAL CSS */
.pinTile a {
    min-height: 382px;
}
/* CASH PAGE END*/

.preperation h6 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin: 0 0 40px 0;
}
.preperation h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    margin: 0 0 20px 0;
}
.preperation p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400; 
}

.articleDetail h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    margin: 0 0 20px 0;
}

.ingredients h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    margin: 0 0 20px 0;
}

.ingredients ol li {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

    .publicationBox {
    width: 100%;
    height: 100%;
    min-height:500px;
    background: white;    
    position: relative;
}


.dlIconholder {
    width: 50px;
    height: 50px !important;
    bottom: 5px;
    right: 2px;
    position: absolute;
    float: right;
    margin: 10px;
    cursor: pointer;
}

.dlIcon {
    width: 100%;
    object-fit: cover;
}
.thacBook{
    display: flow-root;
    width: 100%;
}

.booksHolder {
    width: 100%;
    height: 100%;
    display: flow-root;
}
.bookImgholder__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card h5 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 0 0;
    text-transform: uppercase;
    line-height: 25px;
    letter-spacing: 4px;
}
.netLinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: var(--primary);
}
img.netLinks__image__in {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.netLinks__image {
    width: 100%;
    height: 300px;
}
.netLinks__text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.netLinks__text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
}
.gridWrapper.grid-G-20 {
    grid-gap: 20px;
}
.radioInput {
    width: 100%;
    display: block;
}
.radioInput label span {
    font-size: 18px;
    color: #000000;
    letter-spacing: 1px;
    line-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
}
.radioInput label input[type="radio"] {
    width: 20px;
    height: 20px;
    outline: 0;
}
.radioInput span {
    width: 100%;
    margin: 0 0 10px 0;
}

.radioInput label {
    width: 100% !important;
    display: flow-root;
    font-size: 18px;
    margin: 0 0 5px 0;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 16px;
}
.input {
    display: flow-root;
    width: 100%;
    height: 100%;
    min-height: 40px;
    padding: 5px 15px !important;
    font-family: var(--font);
    font-size: 18px !important;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    font-weight: 600;
}
.input:focus-visible {
    outline: 0;
}
.button-primary {
    padding: 10px 40px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--black);
    outline: 0;
    transition: .3s linear;
}
.button-primary:hover {
    background: var(--black);
    color: var(--white);
    transition: .3s linear;
}
.sideBorder{
    width: 100%;
    height: 100%;
    display: flow-root;
    border-right: 1px solid #000000;
}
.text-input {
    display: flow-root;
    width: 100%;
    height: 100%;
    min-height: 40px;
    padding: 5px 15px !important;
    font-family: var(--font);
    font-size: 18px !important;
    border: 1px solid var(--black) !important;
    border-radius: 0 !important;
    font-weight: 600;
}
.text-input:focus-visible {
    outline: 0;
}
.submit.button{
    padding: 10px 40px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--black);
    outline: 0;
    transition: .3s linear;
}
.submit.button:hover {
    background: var(--black);
    color: var(--white);
    transition: .3s linear;
}
.formRadioHead{
    font-size: 18px;
    font-weight: 500;

}

.wppb-logout-url {
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none !important;
    color: var(--black);
    border-bottom: 1px solid #000000;
    padding: 0 0 5px 0;
}


/* MEDIA QUERIES */

@media (min-width: 1250px) {
    .sideTile__content {
        min-height: 575px;
    }
}

@media (max-width: 767px) {
    html, body {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden;
    }
    .wrapper {
        width: 100%;
        height: 100%;
        overflow: auto;
    }
    .container {
        padding: 0px 20px;
    }
    .pageLogo {
        max-width: 160px;
    }
    .bannerSection--white {
        padding: 100px 0px;
    }
    .bannerTitle {
        font-size: 40px;
        line-height: 48px;
    }
    .bannerCarousal {
        padding: 60px 0px;
    }
    .sideTile {
        flex-direction: column;
    }
    .sideTile:nth-child(odd) .sideTile__image {
        order: 0;
    }
    .sideTile__image {
        padding: 0;
        width: 100%;
    }
    .sideTile__content {
        width: 100%;
        padding: 40px 20px;
    }
    .sideTile__content__text {
        font-size: 18px;
        font-weight: 400;
    }
    .gridWrapper.grid-2 {
        grid-template-columns: 1fr;
    }
    .gridWrapper.grid-2.midLine {
        grid-row-gap: 100px;
    }
    .gridWrapper.grid-2-offset {
        grid-template-columns: 1fr;
    }
    .gridWrapper.grid-G-10 {
        grid-row-gap: 50px;
    }
    .footerBlock {
        margin: 20px 0px;
        text-align: center;
    }
    .pageFooter {
        padding: 0px;
    }
    .midLine:after {
        content: none;
    }
    .grid-G-80 .p30 {
        padding: 0px;
    }
    .gridWrapper.grid-auto-250 {
        grid-template-columns: 1fr;
    }
    .bannerCaption h1 {
        font-size: 24px;
    }
    .bannerCaption {
        padding: 0;
    }
    .card h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .card {
        padding: 30px;
    }
    .card h4 {
        font-size: 21px;
        line-height: 28px;
    }
    .circleList, .card ul {
        margin: 0px;
    }
    .teamMember .sideTile__content {
        padding: 40px 10px;
    }
    .teamMember .sideTile__content__title {
        font-size: 21px;
    }
    .sideTile--infull .sideTile__content__title {
        font-size: 21px;
    }
    .gridWrapper.grid-250-auto {
        grid-template-columns: 1fr;
    }
    .gridWrapper .gridWrapper {
        padding-left: 20px;
    }
    .eventDetails {
        padding-left: 40px;
    }
    .calendarSection .gridWrapper h6 {
        margin-bottom: 20px;
    }
    .sideTile__image__in.imgSquare {
        min-height: auto;
        object-fit: cover;
    }
    .categoryContent {
        margin-top: 40px;
    }
     .article .gridWrapper.grid-3.t30 {
        grid-template-columns: 1fr 1fr;
    }
}
/* MEDIA QUERIES END */