/* content_builder_blocks */

/*colours*/
:root {
    /* ---- Pastels ---- */
    --second-pastel-blue: #143256;
    --second-pastel-orange: #ff6900;
    --second-pastel-green: #90d5ac;
    --second-pastel-red: #DC001E;
}
.second-pastel-blue{
    color: var(--second-pastel-blue);
}
.second-pastel-orange{
    color: var(--second-pastel-orange);
}
.second-pastel-green{
    color: var(--second-pastel-green);
}
.second-pastel-red{
    color: var(--second-pastel-red);
}

.second-pastel-blue-border{
    border-color: var(--second-pastel-blue);
}
.second-pastel-orange-border{
    border-color: var(--second-pastel-orange);
}
.second-pastel-green-border{
    border-color: var(--second-pastel-green);
}
.second-pastel-red-border{
    border-color: var(--second-pastel-red);
}

/* START : single Article*/

.full-size-header .cpt-header{
    height: 594px;
    width: 100%;
    background-position: center;
    background-size: cover;
}
.full-size-header .cpt-header.banner-heading{
    max-height: 50vh;
}
.content-size-header img{
    height: 475px;
    object-fit: cover;
    width: 100%;
    max-height: 50vh;
}
.content-size-header.has-high-header img{
    height: unset;
    object-position: 50% 25%;
    max-height: 70vh;
}
.content-size-header.has-full-size-header{
    display: none;
}
@media (max-width: 1300px){
    .full-size-header.article-heading .cpt-header{
        display: none;
    }
    .content-size-header.has-full-size-header{
        display: block;
    }
}
/* video header */
.full-size-header.video-heading .cpt-header{
    /*max-height: calc(100vh - 200px);*/
    max-height: 50vh;
    height: calc(100vw / 1.8);
    overflow: hidden;
}
.full-size-header.video-heading .video-header-size{
    /*max-height: calc(100vh - 200px);*/
    max-height: 50vh;
    height: calc(100vw / 1.8);
}
.full-size-header.video-heading .cpt-header .video_position_container {
    position: relative;
}
.full-size-header.video-heading .cpt-header .video_embed_container {
    background-color: #000;
}

.full-size-header.video-heading .cpt-header .video_image_overlay {
    transition: ease all 0.6s;
    background-color: #000;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.full-size-header.video-heading .cpt-header .video_image_overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.full-size-header.video-heading .cpt-header .video_image_overlay .play_the_video {
    transition: ease all 0.3s;
    outline: none;
    border: none;
    height: 116px;
    width: 116px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    opacity: 0.7;
    background-image: url('../image/kih_video_icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.full-size-header.video-heading .cpt-header .video_image_overlay:hover .play_the_video {
    transform: translate(-50%, -50%) scale(0.98);
    outline: none;
    border: none;
    opacity: 1;
}
.full-size-header.video-heading .cpt-header .video_image_overlay:focus .play_the_video {
    transform: translate(-50%, -50%) scale(0.95);
    outline: none;
    border: none;
    opacity: 1;
}
.full-size-header.video-heading .cpt-header .video_image_overlay.progressing,
.full-size-header.video-heading .cpt-header .video_image_overlay.progressing .play_the_video {
    cursor: progress;
}
/* Audio Header */

.full-size-header.audio-heading .cpt-header{
    height: auto;
    background:#143256;
}
.full-size-header.audio-heading .cpt-header .audio-image{
    position: relative;
    cursor:pointer;
}
.full-size-header.audio-heading .cpt-header .audio-image img{
    position: relative;
    z-index: 2;
    min-height: 30px;
    object-fit: cover;
    object-position: left;
    /*border:1px solid #143256;*/
}
.full-size-header.audio-heading .cpt-header .audio-image:before{
    content: "";
    /*background: #5B7089;*/
    background: #fff;
    opacity:0.3;
    position: absolute;
    top:2px;
    bottom:2px;
    left:0;
    width:100%;
    z-index: 0;
}
.full-size-header.audio-heading .cpt-header .audio-image:after{
    content: "";
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right: 0;
    width:100%;
    z-index: 5;
    /*border-left:2px solid #143256;*/
    /*border-right:2px solid #143256;*/
    border:1px solid #143256;
}
.full-size-header.audio-heading .cpt-header .audio-image .progress-bar-image{
    display: block;
    position: absolute;
    top:2px;
    bottom:2px;
    left:0;
    width:0;
    z-index: 1;
    background: #fff;
    /*border-left:1px solid #143256;*/
}
.full-size-header.audio-heading .cpt-header .trackTime #progress-bar{
    width: 100%;
}
.full-size-header.audio-heading .cpt-header .trackTimeProgress{
    color:#fff;
    width: 100%;
}
.full-size-header.audio-heading .cpt-header .trackTime #div-progress-bar{
    width: 100%;
    padding: 4px 0;
    cursor:pointer;
}
.full-size-header.audio-heading .cpt-header .trackTime #div-progress-bar .inner{
    width: 100%;
    background: #5B7089;
    border-radius: 4px;
}
.full-size-header.audio-heading .cpt-header .trackTime #div-progress-bar .value{
    width: 0;
    background: #fff;
    height: 4px;
    display: block;
    border-radius: 4px;
}
.full-size-header.audio-heading .cpt-header #btnPlayPause{
    width:36px;
    min-width: 36px;
    height:36px;
    display: block;
    background: #DC001E;
    position: relative;
    border-radius: 50%;
    border: 2px solid #DC001E;
    outline: unset;
    cursor:pointer;
}
.full-size-header.audio-heading .cpt-header #btnPlayPause .play{
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    opacity:0;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 14px solid #fff;
    border-right: none;
    border-bottom: 8px solid transparent;
    transition: all 0.3s;
}
.full-size-header.audio-heading .cpt-header #btnPlayPause.play .play{
    opacity:1;
}
.full-size-header.audio-heading .cpt-header #btnPlayPause .pause{
    position: absolute;
    top: 50%;
    left: 50%;
    opacity:0;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 16px;
    border-top: none;
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
    border-bottom: none;
    transition: all 0.3s;
}
.full-size-header.audio-heading .cpt-header #btnPlayPause.pause .pause{
    opacity:1;
    transition: all 0.3s;
}
.full-size-header.audio-heading .cpt-header .audio-title{
    margin-bottom:0;
    padding-left:15px;
    color:#fff;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Brown', sans-serif;
}

/* Gallery header */
.full-size-header.gallery-heading .cpt-header {
    height: auto;
}
.full-size-header.gallery-heading .cpt-header .header-gallery-images {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 6px));
    grid-template-rows: repeat(2, 50%);
    grid-column-gap: 8px;
    grid-row-gap: 4px;
}
.full-size-header.gallery-heading .cpt-header .header-gallery-images .item-0 { grid-area: 1 / 1 / 3 / 3; }
.full-size-header.gallery-heading .cpt-header .header-gallery-images .item-1 { grid-area: 1 / 3 / 2 / 4; }
.full-size-header.gallery-heading .cpt-header .header-gallery-images .item-2 { grid-area: 1 / 4 / 2 / 5; }
.full-size-header.gallery-heading .cpt-header .header-gallery-images .item-3 { grid-area: 2 / 3 / 3 / 4; }
.full-size-header.gallery-heading .cpt-header .header-gallery-images .item-4 { grid-area: 2 / 4 / 3 / 5; }

.full-size-header.gallery-heading .cpt-header .gallery-item a{
    display: flex;
    aspect-ratio: 1;
    filter: brightness(1);
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}

@media (min-aspect-ratio: 3/2) and (max-height: 850px ) {
    .full-size-header.gallery-heading .cpt-header .gallery-item a{
        aspect-ratio: 1.5/1;
    }
}
.full-size-header.gallery-heading .cpt-header .gallery-item a:hover{
    filter: brightness(75%);
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header .gallery-item img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.full-size-header.gallery-heading .cpt-header button.gallery-button{
    position: absolute;
    bottom: 16px;
    left: 16px;
    margin-bottom: 0;
    background: #fff;
    font-family: 'Brown', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.938rem;
    line-height: 1rem;
    padding: 0.75rem 1.625rem;
    border-width: 0.125rem;
    border-style: solid;
    border-color: var(--primary-blue);
    border-radius: var(--standard-border-radius);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    color: var(--primary-blue) !important;
    text-align: center;
    outline:unset;
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header button.gallery-button:hover{
    background-color: var(--primary-blue);
    color: var(--white) !important;;
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}
/*full gallery popup*/
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper .full-gallery-images{
    width: calc(100% + 8px);
    margin-left: -4px;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper .full-gallery-images .full-gallery-item{
    padding-left:4px;
    padding-right:4px;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-images .col-12,
.full-size-header.gallery-heading .cpt-header .full-gallery-images .col-12 a{
    max-height: 480px;
}

.full-size-header.gallery-heading .cpt-header .full-gallery-images .col-6,
.full-size-header.gallery-heading .cpt-header .full-gallery-images .col-6 a{
    max-height: 320px;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-images a{
    width:100%;
    display: flex;
    padding-bottom:8px;
    filter: brightness(1);
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-images a:hover{
    filter: brightness(75%);
    transition: all .20s ease-in-out;
    -moz-transition: all .20s ease-in-out;
    -webkit-transition: all .20s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-images a img {
    width: 100%;
    min-height: 312px;
    object-fit: cover;
    object-position: center;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper{
    position: fixed;
    width:100%;
    top:100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    background: #fff;
    z-index: -1;
    opacity:0;
    display: block;
    transition: all .30s ease-in-out;
    -moz-transition: all .30s ease-in-out;
    -webkit-transition: all .30s ease-in-out;
}
/*fix scroll problem*/
body.hide-scroll-bar{
    overflow-y: scroll;
    max-height: 90vh;
}
body.hide-scroll-bar .navigationUpdate.fancyNavigation#fancyNavigation_desktop{
    padding-right: 17px;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper.open-gallery{
    display: block;
    top: 0;
    opacity:1;
    scrollbar-gutter: unset;
    z-index: 100;
    transition: all .30s ease-in-out;
    -moz-transition: all .30s ease-in-out;
    -webkit-transition: all .30s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper .full-gallery-inner{
    position: absolute;
    padding-top:130px;
    max-width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper .button-section{
    opacity:0;
    transition: all .30s ease-in-out;
    -moz-transition: all .30s ease-in-out;
    -webkit-transition: all .30s ease-in-out;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper.open-gallery .button-section{
    opacity:1;
    transition: all .30s ease-in-out 0.2s;
    -moz-transition: all .30s ease-in-out 0.2s;
    -webkit-transition: all .30s ease-in-out 0.2s;
}
.full-size-header.gallery-heading .cpt-header .full-gallery-wrapper .close-button{
    position: fixed;
    top:130px;
    margin-left:16px !important;
    margin-top:16px !important;
    bottom:unset;
    left:unset;
}

/* old style header */
.full-size-header.old-style-heading .cpt-header{
    height: auto;
}
@media (max-width: 1300px){
    .full-size-header.old-style-heading .cpt-header{
        display: block;
    }
    .full-size-header.old-style-heading{
        display: block;
    }
}
.full-size-header.old-style-heading .sb_background {
    background-color: var(--blue-tint-one);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.full-size-header.old-style-heading .sb_background::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: var(--blue-tint-one);
    background: -moz-linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 75%);
    background: -webkit-linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 75%);
    background: linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b4767",endColorstr="#2b4767",GradientType=1);

}

.full-size-header.old-style-heading  .sb_mobile_background {
    display: none;
    padding-bottom: 70%;
    background-color: var(--white);
    position: relative;
    margin-top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.full-size-header.old-style-heading  h1,
.full-size-header.old-style-heading  h3 {
    margin-bottom: 1rem;
}

.full-size-header.old-style-heading  h1,
.full-size-header.old-style-heading  h3,
.full-size-header.old-style-heading  p.banner-accent {
    color: var(--white);
}
@media (min-width: 768px){
    .full-size-header.old-style-heading h1.eyebrow:after, .full-size-header.old-style-heading .eyebrow-large, .full-size-header.old-style-heading .eyebrow.large {
        background-color: #fff;
    }
}
.full-size-header.old-style-heading .sb_background.with_background_image::before {
    background: -moz-linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 100%);
    background: linear-gradient(90deg, rgba(43,71,103,1) 0%, rgba(43,71,103,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b4767",endColorstr="#2b4767",GradientType=1);
}
.full-size-header.old-style-heading .sb_background.without_background_image::before {
    background: -moz-linear-gradient(90deg, rgba(43,71,103,1) 50%, rgba(43,71,103,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(43,71,103,1) 50%, rgba(43,71,103,0) 100%);
    background: linear-gradient(90deg, rgba(43,71,103,1) 50%, rgba(43,71,103,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b4767",endColorstr="#2b4767",GradientType=1);
}
@media(max-width: 767.98px) {
    .full-size-header.old-style-heading .sb_background.with_background_image::before {
        display: none;
    }
    .full-size-header.old-style-heading .sb_mobile_background {
        display: block;
    }
    .full-size-header.old-style-heading .sb_background.with_background_image h1,
    .full-size-header.old-style-heading .sb_background.with_background_image h3,
    .full-size-header.old-style-heading .sb_background.with_background_image p.banner-accent {
        color: var(--primary-blue);
    }
    .full-size-header.old-style-heading .sb_background.with_background_image {
        background-color: var(--grey-lightest);
    }
    .full-size-header.old-style-heading .sb_mobile_background::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 95px;
        background: rgb(245, 245, 245);
        background: -moz-linear-gradient(180deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 75%);
        background: -webkit-linear-gradient(180deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 75%);
        background: linear-gradient(180deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0) 75%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f5f5",endColorstr="#f5f5f5",GradientType=1);
    }
    .full-size-header.old-style-heading .sb_background {
        background-image: none !important;
    }
    /*** sb_background without_background_image ***/
    .full-size-header.old-style-heading .sb_background.without_background_image .sb_mobile_background {
        display: none;
    }
    .full-size-header.old-style-heading .sb_background::before {
        background: -moz-linear-gradient(90deg, rgba(43,71,103,1) 30%, rgba(43,71,103,0) 100%);
        background: -webkit-linear-gradient(90deg, rgba(43,71,103,1) 30%, rgba(43,71,103,0) 100%);
        background: linear-gradient(90deg, rgba(43,71,103,1) 30%, rgba(43,71,103,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b4767",endColorstr="#2b4767",GradientType=1);
    }
}
@media(max-width: 575px) {
    .full-size-header.old-style-heading .sb_mobile_background {
        padding-bottom: 90%;
    }
}
/*** white_banner_background ***/
.full-size-header.old-style-heading.white_banner_background .sb_background {
    background-color: #FFFFFF;
}
.full-size-header.old-style-heading.white_banner_background .sb_background::before {
    width: 100%;
}
.full-size-header.old-style-heading.white_banner_background .sb_background.without_background_image::before {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(86deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 62%, rgba(255,255,255,0.6727975369835435) 77%, rgba(255,255,255,0.4991280691964286) 88%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(86deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 62%, rgba(255,255,255,0.6727975369835435) 77%, rgba(255,255,255,0.4991280691964286) 88%, rgba(255,255,255,1) 100%);
    background: linear-gradient(86deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 62%, rgba(255,255,255,0.6727975369835435) 77%, rgba(255,255,255,0.4991280691964286) 88%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.full-size-header.old-style-heading.white_banner_background .sb_background.without_background_image::after {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(3deg, rgba(255,255,255,1) 29%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(3deg, rgba(255,255,255,1) 29%, rgba(255,255,255,0) 100%);
    background: linear-gradient(3deg, rgba(255,255,255,1) 29%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.full-size-header.old-style-heading.white_banner_background h1,
.full-size-header.old-style-heading.white_banner_background h3,
.full-size-header.old-style-heading.white_banner_background p.banner-accent {
    color: var(--primary-blue);
}
.full-size-header.old-style-heading.white_banner_background h1.eyebrow:after,
.full-size-header.old-style-heading.white_banner_background .eyebrow-large,
.full-size-header.old-style-heading.white_banner_background .eyebrow.large {
    background-color: var(--primary-red);
}
@media(max-width: 767.98px) {
    .full-size-header.old-style-heading.white_banner_background .sb_background.without_background_image::before {
        background: rgb(255,255,255);
        background: -moz-linear-gradient(3deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 100%);
        background: -webkit-linear-gradient(3deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 100%);
        background: linear-gradient(3deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    }
}

.cpt-content .content-type{
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
    color:#DC001E;
    text-transform: uppercase;
}
.cpt-content .separator{
    width: 1px;
    display: inline-block;
    height: 16px;
    background: #707070;
    margin: 0 10px -3px;
}
.cpt-content .cpt-date{
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
}
.cpt-content .author{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.cpt-content .author .author-photo,
.cpt-content .author .author-photo img{
    max-height: 38px;
    min-height: 38px;
    border-radius: 50%;
    width: auto;
    object-fit: contain;
}
.cpt-content .author .author-name{
    font-family: adobe-garamond-pro, serif;
    font-size: 24px;
    font-style: italic;
    line-height: 28px;
    color:#4D4D4D;
    margin-bottom: 0;
    margin-left: 10px;
    text-transform: capitalize;
}
.cpt-content{

}


/* END: single Article*/
/* START: single Article side block */

.side-column .side-block-title h3{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
    font-size: 30px;
    line-height: 33px;
}
.side-column .box-container{
    border-bottom:2px solid #143256;
}
.side-column .side-block-list ul{

}
.side-column .side-block-list ul li{
    margin-bottom: 17px;
}

/* Side Block - "in this article" */
.article-heading-list ul{
    list-style: decimal;
}
.article-heading-list ul li a.heading-anchor span{
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.2s;
}
/* Side Block - "Recent .latest-posts" */
.side-column .latest-posts .side-block-title h3{
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: none;
}
.side-column .latest-posts ul{
    list-style: none;
    margin-left: 0;
}
.side-column .latest-posts ul li{
    padding-top: 20px;
    border-top: 1px solid #DBDBDB;
}
.side-column .latest-posts ul .content-type{
    margin-bottom: 4px;
}
.side-column .latest-posts ul a,
.side-column .latest-posts .featured-post-heading {
   text-decoration: none !important;
    font-family: adobe-garamond-pro, serif;
    font-size: 20px;
    line-height: 24px;
    color:#143256;
}

.side-column .latest-posts .featured-post-heading:hover {
    text-decoration: none !important;
}

.side-column .image-square {
    padding-bottom: 85%;
}

@media(max-width: 991.98px) {
    .side-column .image-square {
        padding-bottom: 60%;
    }
}


.side-column .image-square::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--primary-blue);
    z-index: -1;
    top: 7px;
    left: 7px;
}

@media(max-width: 575px) {
    .side-column .image-square {
        width: calc(100% - 7px);
    }
}

/* END: single Article side block */

/* START: Intro Block */
.content-builder-intro-block .intro h5{
    font-size: 21px;
    line-height: 29px;
    font-weight: 400;
    font-family: 'Brown', sans-serif;
    color: initial;
    margin-bottom: 0;
}
/* END: Intro Block */


/* START : Wysiwyg Content */
.content-builder-wysiwyg-block .content p:last-of-type{
    margin-bottom: 0;
}
/* END : Wysiwyg Content */


/* START : Full Image Block */
.content-builder-full-image-block .full-image img{
    max-width: 100%;
}
.content-builder-full-image-block .full-image figure{
    text-align: center;
}
.content-builder-full-image-block .full-image figcaption{
    font-style: italic;
    font-size:15px;
    line-height: 19px;
    font-weight: 400;
    text-align: left;
}
/* END : Full Image Block */

/* START : Pullquote Block */
.content-builder-pullquote-block .pullquote{
    border-top-style:solid;
    border-top-width: 3px;
    border-bottom-style:solid;
    border-bottom-width: 3px;
}
.content-builder-pullquote-block .pullquote p{
    font-size: 20px;
    line-height: 29px;
    font-style: italic;
    font-weight: 600;
}
.content-builder-pullquote-block .pullquote p:last-of-type{
    margin-bottom: 0;
}
/* END : Pullquote Block */

/* START : Quote Block */
.content-builder-quote-block .quote p{
    font-weight: 400;
}
.content-builder-quote-block .quote-content{
    position:relative;
    font-family: adobe-garamond-pro, serif;
    font-size: 30px;
    line-height: 38px;
    color:#143256;
}
.content-builder-quote-block .author-name{
    font-size: 22px;
    line-height: 26px;
    color:#143256;
    margin-bottom: 5px;
    font-weight: 600 !important;
}

.content-builder-quote-block .author-name:before{
    content:'';
    width: 30px;
    background:#143256;
    height: 1px;
    display: block;
    margin-bottom: 1.6rem;
}
.content-builder-quote-block .role{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 500 !important;
    text-transform: uppercase;
}
@media (max-width: 767.98px){
    .content-builder-quote-block .quote-content{
        font-size: 22px;
        line-height: 31px;
    }
    .content-builder-quote-block .author-name{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .content-builder-quote-block .role{
        font-size: 13px;
        line-height: 20px;
    }
}
/* END : Quote Block */

/* START : Gallery Block */
.content-builder-gallery-block .gallery-container{
    width:calc(100% + 20px);
    margin-left: -10px;
}
.content-builder-gallery-block .gallery-container .gallery-item.hide{
    display: none;
}
.content-builder-gallery-block .gallery-container .gallery-image{
    position: relative;
    display: block;
    padding:0 10px 20px 10px;
}
.content-builder-gallery-block .gallery-container .gallery-image .image-description{
    position: absolute;
    top: 10px;
    bottom: 20px;
    right: 10px;
    left: 10px;
    padding:20px;
    background: rgba(0,0,0,0.2);
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    opacity:1;
    transition: all 0.2s;
}
.content-builder-gallery-block .gallery-container .gallery-image:hover .image-description{
    opacity:0;
    transition: all 0.2s;
}
.content-builder-gallery-block .gallery-container .gallery-image .image-description span{
    color:#fff;
    position: absolute;
    bottom:13px;
    font-family: adobe-garamond-pro, serif;
    font-size: 20px;
    line-height: 24px;
    padding-right: 10px;
}
.content-builder-gallery-block .show-full-gallery{
    display: block;
    width: 100%;
    z-index: 10;
    text-align: center;
}
.featherlight.nw-nav .featherlight-previous,
.featherlight.nw-nav .featherlight-next{
    opacity:0;
    transition: opacity 0.2s;
}
.featherlight.nw-nav .featherlight-previous:hover,
.featherlight.nw-nav .featherlight-next:hover{
    background:none;
    opacity:1;
    transition: opacity 0.2s;
}
.featherlight.nw-nav .featherlight-previous:hover{
    right:80%;
}
.featherlight.nw-nav .featherlight-next:hover{
    left:80%;
}
.featherlight.nw-nav .featherlight-previous span:before{
    content:'';
    width: 0;
    height: 0;
    display: block;
    margin: 0 auto 0 6px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right:30px solid rgba(255,255,255,1);
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.4));
}
.featherlight.nw-nav .featherlight-next span:before{
    content:'';
    width: 0;
    height: 0;
    display: block;
    margin: 0 6px 0 auto;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left:30px solid rgba(255,255,255,1);
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.4));
}

@media (max-width: 767px){
    .content-builder-gallery-block .gallery-container{
        width:calc(100% + 16px);
        margin-left: -8px;
    }
    .content-builder-gallery-block .gallery-container .gallery-image{
        padding:0 8px 16px 8px;
    }
    .content-builder-gallery-block .gallery-container .gallery-image .image-description{
        position: absolute;
        top: 8px;
        bottom: 16px;
        right: 8px;
        left: 8px;
        padding:16px;
    }

    .featherlight.nw-nav .featherlight-previous,
    .featherlight.nw-nav .featherlight-previous:hover,
    .featherlight.nw-nav .featherlight-next,
    .featherlight.nw-nav .featherlight-next:hover{
        background: none;
        opacity:1;
    }
    .featherlight.nw-nav .featherlight-previous span,
    .featherlight.nw-nav .featherlight-next span{
        display: block;
    }
    .featherlight-next, .featherlight-next:hover{

    }
    .featherlight-previous, .featherlight-previous:hover{

    }
}
/* END : Gallery Block */

/* START : Tip Box Block */
.content-builder-tip-block .tip-block{
    border-style:solid;
    border-width: 3px;
}
.content-builder-tip-block .svg-content > svg{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.content-builder-tip-block .tip-content{
    margin-bottom: 0;
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    font-style: italic;
}
@media (max-width: 767px){
    .content-builder-tip-block .svg-content > svg{
        max-width:48px;
        height: auto;
    }
}
/* END : Tip Box Block */


/* START : Tip Box Block */
.content-builder-cta-block .cta-block .cta-content,
.content-builder-cta-block .cta-block .cta-button{
   text-align: center;
}
.content-builder-cta-block .cta-block .cta-button a{
    margin-bottom: 0;
}
.content-builder-cta-block .cta-block .cta-content p{
    font-size: 22px;
    line-height: 29px;
}
/* END : Tip Box Block */


/* START : Q & A Block */


.content-builder-q-and-a-block .the-question {
    margin-left: 10px;
}

.content-builder-q-and-a-block .the-question::before {
    content: '';
    height: calc(100% + 6px);
    width: 10px;
    background-color: red;
    display: block;
    position: absolute;
    z-index: 2;
    top: -6px;
    left: -10px;
}


.content-builder-q-and-a-block .the-question div.question-text {
    z-index: 1;
    position: relative;
    margin-left: 10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}




.content-builder-q-and-a-block .the-question span.question-text span.word,
.content-builder-q-and-a-block .the-question span.question-text span.space {
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: -10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}

.content-builder-q-and-a-block .the-question span.question-text span.space:first-of-type {
    display: none;
}

.content-builder-q-and-a-block .the-question span.question-text span.word:last-of-type {
    padding-right: 10px;
}


.content-builder-q-and-a-block .the-question.pastel-orange_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.pastel-orange_background_color span.question-text span.space {
    color: var(--second-pastel-orange);
    background-color: var(--pastel-orange);
}
.content-builder-q-and-a-block .the-question.pastel-orange_background_color::before {
    background-color: var(--pastel-orange);
}


.content-builder-q-and-a-block .the-question.pastel-red_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.pastel-red_background_color span.question-text span.space {
    color: var(--second-pastel-red);
    background-color: var(--pastel-red);
}
.content-builder-q-and-a-block .the-question.pastel-red_background_color::before {
    background-color: var(--pastel-red);
}


.content-builder-q-and-a-block .the-question.pastel-blue_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.pastel-blue_background_color span.question-text span.space {
    color: var(--second-pastel-blue);
    background-color: var(--pastel-blue);
}
.content-builder-q-and-a-block .the-question.pastel-blue_background_color::before {
    background-color: var(--pastel-blue);
}


.content-builder-q-and-a-block .the-question.pastel-green_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.pastel-green_background_color span.question-text span.space {
    color: #5D8A6F;
    background-color: var(--pastel-green);
}
.content-builder-q-and-a-block .the-question.pastel-green_background_color::before {
    background-color: var(--pastel-green);
}


.content-builder-q-and-a-block .the-question.white_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.white_background_color span.question-text span.space {
    color: #1d1d1b;
}
.content-builder-q-and-a-block .the-question.white_background_color::before {
    background-color: var(--white);
}

.content-builder-q-and-a-block .the-question.grey-lightest_background_color span.question-text span.word,
.content-builder-q-and-a-block .the-question.grey-lightest_background_color span.question-text span.space {
    color: #1d1d1b;
    background-color: var(--grey-lightest);
}
.content-builder-q-and-a-block .the-question.grey-lightest_background_color::before {
    background-color: var(--grey-lightest);
}





.content-builder-q-and-a-block .answer-container .answer-content p:last-of-type{
    margin-bottom: 0;
}
.content-builder-q-and-a-block .answer-container .answer-author{
    font-weight: 800;
    color: var(--second-pastel-blue);
}
/* END : Q & A Block */



/**** Sharing Section ****/

body.single .nw-social-icons.sharing-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

body.single .nw-social-icons.sharing-section h4 {
    font-weight: 500;
}

body.single .nw-social-icons.sharing-section {
    border-top: 1px solid var(--grey-light);
}

body.single .nw-social-icons.sharing-section img {
    transition: ease all .2s;
}

body.single .nw-social-icons.sharing-section img:hover {
    opacity: 0.8;
}

/*** Breadcrumbs ****/
.content_hub_breadcrumbs .pt2 {
    padding-top: 0 !important;
}

/**** Authors Section ****/

body.single .author_bottom_section {
    padding: 25px;
    border: 1px solid #BFBFBF;
    border-radius: 4px;
    margin-bottom: 50px;
}

body.single .author_bottom_section .author_photo img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

body.single .author_bottom_section .author_details {
    padding-left: 20px;
}

body.single .author_bottom_section .author_details .author-name {
    margin-top: 15px;
    margin-bottom: 13px;
    font-size: 24px;
    line-height: 28px;
    text-transform: capitalize;
}

body.single .author_bottom_section .author_details .bio {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 19px;
}

body.single .author_bottom_section .author_details .linkedin {
    transition: ease all .3s;
    width: 30px;
    height: 30px;
    display: block;
}

body.single .author_bottom_section .author_details .linkedin img {
    width: 100%;
    height: 100%;
}

body.single .author_bottom_section .author_details .linkedin:hover {
    opacity: 0.8;
}

@media(max-width: 1366px) {
    body.single .author_bottom_section .author_details .author-name {
        margin-top: 10px;
        margin-bottom: 8px;
    }

    body.single .author_bottom_section .author_details .bio {
        margin-bottom: 10px;
    }

    body.single .author_bottom_section .author_details .linkedin {
        width: 23px;
        height: 23px;
    }
}

@media(max-width: 575px) {
    body.single .author_bottom_section {
        padding: 15px;
    }

    body.single .author_bottom_section .author_details .bio {
        font-size: 15px;
        line-height: 21px;
    }

    body.single .author_bottom_section .author_details .author-name {
        font-size: 21px;
        line-height: 24px;
    }
}