/*
Author: Riard
Description: Theme developed by Riard.
Date: 2025
*/
@font-face {
    font-family: 'HelveticaNeueLTPro-Md';
    src: url('font/HelveticaNeueLTPro-Md.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeueLTPro-Th';
    src: url('font/HelveticaNeueLTPro-Th.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeueLTPro-Lt';
    src: url('font/HelveticaNeueLTPro-Lt.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AthleticCondensed-Regular';
    src: url('font/AthleticCondensed-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'HelveticaNeueLTPro-Lt', serif;
    color: rgb(16, 14, 61);
    margin: 0;
    background-color: #fff;
}
a {
    color: rgb(16, 14, 61);
    text-decoration: none;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    width: calc(100% - 150px);
}
.article-container,
.author-page,
.single-page {
    max-width: 775px;
    margin: 0 auto;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
.navbar .logo img {
    max-width:  140px;
}
.menu {
    margin-right: auto;
    padding-left: 120px;
}
.menu a,
.mobile-menu a {
    margin-right: 30px;
    font-size: 17px;
    text-decoration: none;
    color: rgb(16, 14, 61);
    position: relative;
    line-height: 1;
    transition: .3s all;
}
.mobile-menu a {
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
/*.menu a::before,*/
.read-more-container::before {
    content: attr(data-item);
    transition: 0.5s;
    color: #6d00dd;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
}
.read-more-container::before {
    margin: 20px;
}
.menu a:hover::before,
.read-more-container:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}
/*.menu a:hover,*/
/*.menu a.active:hover,*/
.read-more-container:hover {
    color: #fff;
}
.menu a:hover {
    color: #6d00dd;
}
.menu a.active,
.mobile-menu a.active {
    color: #6d00dd;
}
.right-section {
    display: flex;
    align-items: center;
}
.right-section a {
    color: #6d00dd;
    font-size: 17px;
    margin-right: 30px;
    text-decoration: none;
    cursor: pointer;
}
.menu-burger {
    display: none;
    cursor: pointer;
}
.search-icon {
    width: 25px;
}
.header-container {
    border-bottom: 1px solid #000;
    padding: 25px 0 15px;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #ffffff;
    z-index: 9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}
.header-container.sticky {
    position: fixed;
    transform: translateY(0);
    opacity: 1;
}
.header-container.hidden {
    position: fixed;
    transform: translateY(-100%);
    opacity: 0;
}
.header-container.at-top {
    position: absolute;
    transform: none;
    opacity: 1;
}
.mt-100 {
    margin-top: 92px;
}
.article-container,
.author-page,
.single-page {
    margin-top: 130px;
}
.right-section, .menu {
    padding-top: 25px;
}
.menu-burger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}
.line {
    height: 4px;
    width: 100%;
    background-color: #6d00dd;
    margin: 4px 0;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.menu-burger.show .line1 {
    transform: rotate(45deg) translate(2px, 4px);
}
.menu-burger.show .line3 {
    opacity: 0;
}
.menu-burger.show .line2 {
    transform: rotate(-45deg) translate(2px, -4px);
}
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}
.mobile-menu.show {
    max-height: 500px;
    opacity: 1;
}
.menu-burger {
    display: none;
}
.mobile-menu a {
    display: block;
    margin-top: 20px;
}
.mobile-menu a:first-child {
    margin-top: 35px;
}
.mobile-menu a:last-child {
    margin-bottom: 20px;
}
.mobile-menu .bottom-section {
    margin-top: 30px;
}
.mobile-menu .bottom-section a {
    color: #6d00dd;
}
.row {
    display: flex;
}
.col {
    flex: 1 1 25%;
}
.col-image {
    background-size: cover;
    min-height: 700px;
}
.col-image div.container-title {
    background-color: #fff;
    max-width: 45%;
    padding: 35px 35px 35px 20px;
}
.container-title a {
    font-size: 34px;
    line-height: 1.2;
    text-decoration: none;
    color: rgb(16, 14, 61);
}
p {
    margin: 0;
}
.read-more-container {
    background-color: #fff;
    padding: 20px;
    font-size: 18px;
    text-transform: uppercase;
    max-width: 250px;
    display: block;
    text-decoration: none;
    font-family: 'HelveticaNeueLTPro-Md', serif;
    color: rgb(16, 14, 61);
    position: relative;
    transition: all 1s ease-in-out;
}
.dot {
    transition: transform 0.3s ease-in-out;
    fill: #6d00dd;
}
.dots {
    position: absolute;
    right: 25px;
    top: 28%;
}
.read-more-container:hover .dot:nth-child(1),
.read-more-container:hover .dot:nth-child(2),
.read-more-container:hover .dot:nth-child(3) {
    animation: bounce 0.4s ease-in-out;
}
.read-more-container:hover .dot:nth-child(1) {
    animation-delay: 0s;
}
.read-more-container:hover .dot:nth-child(2) {
    animation-delay: 0.1s;
}
.read-more-container:hover .dot:nth-child(3) {
    animation-delay: 0.2s;
}
@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.powered-by {
    font-size: 24px;
    margin-left: 20px;
    position: relative;
    top: 10px;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-20 {
    margin-top: 20px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-45 {
    margin-top: 45px;
}
.mt-70 {
    margin-top: 70px;
}
.ml-25 {
    margin-left: 25px;
}
.pb-15 {
    padding-bottom: 15px !important;
}
.powered-by-section img {
    margin-left: 50px;
}
.title-with-icon {
    display: flex;
    align-items: center;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'AthleticCondensed-Regular', serif;
}
.icon {
    width: 30px;
    margin-right: 15px;
    position: relative;
}
.col-margin {
    padding: 35px;
}
.bg-blue {
    background-color: #c2d6f3;
}
.block-title {
    font-size: 24px;
    margin-top: 25px;
}
.container-mh:hover .block-title {
    text-decoration: underline;
}
.block-text {
    font-size: 18px;
    margin-top: 15px;
}
.container-mh {
    min-height: 225px;
    display: block;
}
.block-separator,
.block-separator-with-spaces {
    border: none;
    height: 2px;
    background-color: rgb(16, 14, 61)
}
.block-separator-with-spaces {
    margin: 15px 0 20px;
}
.keywords {
    min-height: 50px;
}
.keywords a {
    font-size: 15px;
    font-family: sans-serif;
}
.blocks-with-spaces .col:nth-child(1),
.blocks-with-spaces .col:nth-child(2) {
    background-color: #f6f6f2;
}
.blocks-with-spaces .col:nth-child(3),
.blocks-with-spaces .col:nth-child(4) {
    background-color: #d5d5dc;
}
.blocks-with-spaces .col:nth-child(2) {
    margin: 0 20px;
}
.blocks-with-spaces .col:nth-child(3) {
    margin-right: 20px;
}
.block-img {
    width: 100%;
    margin-top: auto;
}
.article-title {
    font-size: 44px;
    line-height: 1.2;
    font-family: 'HelveticaNeueLTPro-Th', serif;
    margin: 30px 0;
}
.post-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}
.social-icons a {
    margin-left: 10px;
}
.social-icons a img {
    width: 25px;
}
.social-icons a:hover {
    color: #0073e6;
}
.author {
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
.uppercase {
    text-transform: uppercase;
}
.separator {
    display: inline-block;
    margin: 0 5px;
}
.article-content {
    padding-bottom: 80px;
}
.article-content h2,
.single-page-content h2 {
    font-size: 32px;
}
.wp-block-image {
    margin-bottom: 5px;
}
.article-content p,
.single-page-content p{
    font-size: 20px;
}
.single-page-content p {
    min-height: 20px;
}
.single-page-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
.article-content img,
.single-page-content img {
    margin: 30px 0 0;
    max-width: 100%;
}
.article-content .wp-block-separator,
.single-page-content .wp-block-separator {
    margin-top: 30px;
    border-top: 2px solid rgb(16, 14, 61);
}
footer hr.block-separator {
    margin-bottom: 60px;
}
.footer-item-title {
    font-size: 18px;
    font-family: 'HelveticaNeueLTPro-Md', serif;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-item {
    display: block;
    font-size: 18px;
    margin-top: 10px;
}
.footer-item:hover {
    color: #6d00dd;
}
footer {
    background-color: #f6f6f2;
    padding: 60px 0;
}
.footer-logo {
    margin-top: 25px;
    width: 140px;
}
footer .powered-by {
    top: 0;
    margin: 35px 0 0;
}
.footer-powered-by-logo {
    margin-top: 20px;
    display: block;
}
.newsletter-section {
    background-color: #f6f6f2;
}
.newsletter-title,
.contact-title {
    font-size: 48px;
    line-height: 1.2;
    max-width: 480px;
}
.contact-title {
    font-size: 40px;
    font-family: 'AthleticCondensed-Regular', serif;
}
.newsletter-section {
    padding-top: 60px;
    margin-top: 100px
}
.subscribe-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    font-size: 26px;
    padding: 30px;
    text-align: left;
    color: rgb(109, 0, 221);
    text-transform: uppercase;
    transition: .5s all;
    cursor: pointer;
}
.subscribe-button span {
    flex: 1;
    font-family: 'HelveticaNeueLTPro-Md', serif;
    position: relative;
    top: 5px;
}
.subscribe-button svg {
    width: 175px;
    margin-right: 20%;
    height: auto;
}
.subscribe-button svg path {
    fill: #6D00DD;
    transition: .5s all;
}
.subscribe-button:hover svg path {
    fill: #fff;
}
.subscribe-button:hover {
    background: rgb(109, 0, 221);
    color: #fff;
}
.articles-section .col {
    background-color: #f6f6f2 !important;
}
.articles-section .col img {
    max-height: 280px;
    display: block;
    margin: 40px auto 25px;
}
.article-block-title {
    font-size: 46px;
    min-height: 100px;
}
.section-title {
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'AthleticCondensed-Regular', serif;
    margin-top: 40px;
    margin-left: 38px;
    margin-bottom: 30px;
}
.authors-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 15px;
}
.author-col {
    width: calc(33.33% - 10px);
    display: flex;
}
.author-left {
    width: 40%;
}
.author-left img {
    width: 100%;
    height: 100%;
}
.author-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 10px 25px 10px 15px;
}
.author-name {
    font-size: 24px;
}
.author-title {
    margin-top: auto;
    font-size: 16px;
}
.author .author-title,
.author .author-name {
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.become-an-author {
    background-color: #f6f6f2;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: .5s all;
}
.become-an-author .author-left,
.become-an-author .author-right {
    display: flex;
    justify-content: center;
}
.become-an-author svg {
    width: 65px;
    margin: auto;
}
.become-an-author .author-right {
    font-size: 30px;
    line-height: 1.2;
    color: rgb(109, 0, 221);
    text-transform: uppercase;
}
.become-an-author-link {
    width: calc(33.33% - 10px);
    display: block;
}
.other-topics-section .col {
    display: flex;
    flex-direction: column;
}
.other-topics-section .keywords {
    margin-top: 15px;
}
.topic-for-mobile {
    display: none;
}
.topic-4 {
    background-color: #d5d5dc;
}
.topic-3 {
    margin-right: 20px;
}
.innovation-leadership .keywords {
    margin-top: 15px;
}
.become-an-author:hover {
    background: rgb(109, 0, 221);
}
.become-an-author:hover .author-right {
    color: #fff;
}
.become-an-author-link svg g {
    fill: #6D00DD;
    transition: .5s all;
}
.become-an-author-link:hover svg g {
    fill: #fff;
}
.category-hero-container {
    display: flex;
    min-height: 700px;
}
.category-hero-left {
    flex: 7;
}
.category-hero-right {
    flex: 4;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.category-icon-bottom {
    margin-bottom: 50px;
}
.category-icon-bottom {
    max-width: 100%;
}
.category-title {
    font-size: 40px;
    line-height: 1.2;
    font-family: 'AthleticCondensed-Regular', serif;
    margin-top: 35px;
}
.category-description p {
    font-size: 22px;
    line-height: 1.2;
    max-width: 450px;
    margin-top: 40px;
    margin-right: 3px;
}
.article-col .title-with-icon {
    font-size: 28px;
    font-family: 'HelveticaNeueLTPro-Lt', serif;
    text-transform: none;
    position: relative;
    margin-bottom: 30px;
}
.article-col .title-with-icon .icon {
    top: -5px;
}
.article-row .col:nth-child(2) .title-with-icon {
    visibility: hidden;
}
.more-articles-title {
    font-size: 30px;
    margin: 50px 0 30px;
    font-family: 'AthleticCondensed-Regular', serif;
}
.hidden-article {
    display: none;
}
.posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.post-col {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
    box-sizing: border-box;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 35px 35px 15px;
    display: flex;
    flex-direction: column;
}
.hidden-article {
    opacity: 0;
    transform: translateY(20px);
    display: none;
}
.post-col:nth-child(1),
.post-col:nth-child(3),
.post-col:nth-child(6),
.post-col:nth-child(8),
.post-col:nth-child(9),
.post-col:nth-child(11),
.post-col:nth-child(14),
.post-col:nth-child(15),
.post-col:nth-child(17) {
    background-color: #f6f6f2;
}
.post-col:nth-child(2),
.post-col:nth-child(4),
.post-col:nth-child(5),
.post-col:nth-child(7),
.post-col:nth-child(10),
.post-col:nth-child(12),
.post-col:nth-child(14),
.post-col:nth-child(16),
.post-col:nth-child(18) {
    background-color: #d5d5dc;
}
.read-more-container.right {
    max-width: 150px;
    margin-left: auto;
    margin-top: 25px;
    cursor: pointer;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.slider-inner {
    display: flex;
    transition: transform 0.5s ease;
    margin-right: -2px;
}
.slide {
    min-width: calc(33.33% - 20px);
    margin-right: 20px;
    box-sizing: border-box;
    background-color: #fff;
    padding: 35px;
}
.slide img {
    max-height: 280px;
    display: block;
    margin: 40px auto 25px;
}
.arrow {
    cursor: pointer;
    border: none;
    background-color: #fff;
}
.arrow.left {
    transform: rotate(180deg);
    position: relative;
    top: -2px;
}
.arrow img {
    transition: transform 0.3s;
}
.arrow.left:hover img {
    transform: translateX(5px);
}
.arrow.right:hover img {
    transform: translateX(5px);
}
.static-text-column {
    width: 25%;
}
.slider-container {
    width: 75%;
}
.articles-slider {
    display: flex;
    justify-content: space-between;
}
.button-hidden {
    visibility: hidden;
    margin-top: -20px !important;
}
.static-text-column p {
    font-size: 24px;
    max-width: 300px;
    padding-right: 20px;
}
.category-image-background {
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: 0;
}
.slide.main-category-slide {
    padding-left: 0;
    padding-right: 0;
    position: relative;
}
.slide.main-category-slide .article-block-title {
    padding-left: 35px;
    padding-right: 35px;
}
.arrows {
    width: 150px;
    margin-top: 20px;
    margin-left: auto;
    margin-bottom: 50px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.modal-content {
    background: white;
    padding: 20px;
    margin: 10% auto;
    width: 80%;
    max-width: 500px;
    position: relative;
    text-align: center;
    z-index: 9;
    transform: scale(0.8);
    transition: transform .3s ease-in-out;
}
.modal.show {
    opacity: 1;
    visibility: visible;
}
.modal.show .modal-content {
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: rgb(109, 0, 221);
}
body.modal-open {
    overflow: hidden;
}
.modal-content img {
    width: 120px;
    margin: auto;
    display:block
}
.modal-title {
    font-size: 24px;
    text-align: center;
    color: rgb(109, 0, 221);
    margin: 20px 0;
}
.modal-content input {
    border: none;
    padding: 5px;
    border-bottom: 1px solid rgb(185 185 185);
    display: block;
    margin: 20px auto;
    min-width: 250px;
    font-size: 18px;
    color: rgb(16, 14, 61);
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.modal-content button {
    padding: 15px 35px;
    font-size: 28px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    font-family: 'AthleticCondensed-Regular', serif;
    transition: .3s all;
    color: rgb(109, 0, 221);
    background-color: #f6f6f2;
}
.modal-content button:hover {
    color: #f6f6f2;
    background-color: rgb(109, 0, 221);
}
.modal-content input:hover,
.modal-content input:focus,
.modal-content input:focus-visible,
.form-container input:hover,
.form-container input:focus,
.form-container input:focus-visible,
.form-container textarea:hover,
.form-container textarea:focus,
.form-container input:focus-visible {
    outline: none;
}
#error-message {
    color: #d42e2e;
    font-size: 18px;
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
.contact {
    margin-top: 180px;
}
.contact-description-text {
    font-size: 22px;
    font-family: 'HelveticaNeueLTPro-Th', serif;
    max-width: 350px;
    padding-right: 10px;
}
.contact-img {
    display: block;
    margin: 50px;
    width: 100%;
    max-width: 200px;
}
.fill-form {
    font-family: 'AthleticCondensed-Regular', serif;
    font-size: 40px;
}
.form-container {
    margin-top: 85px;
}
.form-container input,
.form-container textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(16, 14, 61);
    margin: 10px 0 10px 0;
    min-height: 30px;
    font-size: 24px;
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
.form-container textarea {
    min-width: 100%;
    max-width: 100%;
    resize: none;
    height: 100px;
}
.contact-label {
    margin-top: 10px;
    display: block;
    font-size: 18px;
}
.address {
    font-family: 'HelveticaNeueLTPro-Md', serif;
    padding-right: 15px;
}
.wpcf7-submit {
    border-bottom: none !important;
    background-color: unset;
    text-align: left;
    margin-top: 30px !important;
    color: #6d00dd;
    font-size: 32px !important;
    width: 140px !important;
    cursor: pointer;
}
.wpcf7-not-valid-tip {
    color: #ad1b1b;
    position: absolute;
    top: 28px;
    font-size: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: snow;
    background-color: #e97f7f;
    margin: 0;
    padding: 20px;
    color: #fff;
    font-size: 20px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    background-color: #6d00dd;
    padding: 25px;
    color: #fff;
    font-size: 22px;
}
.get-involved-section {
    margin-top: 70px;
    background-color: #f6f6f2;
    padding-top: 70px;
}
.get-involved-title {
    font-size: 48px;
}
.get-involved-text {
    font-size: 24px;
    max-width: 350px;
    padding-right: 10px;
}
.start-my {
    font-size: 30px;
    color: rgb(109, 0, 221);
    line-height: 1.2;
}
.subscription-img {
    margin: 70px;
    display: block;
    width: 100%;
    max-width: 200px;
}
.modal-btn {
    cursor: pointer;
}
.get-involved-text.md {
    margin-top: 25px;
    font-family: 'HelveticaNeueLTPro-Md', serif;
    font-size: 18px;
}
.ml-0 {
    margin-left: 0;
}
.author-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.author-col-left {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.author-col-right {
    width: 30%;
}
.author .author-name {
    font-size: 24px;
}
.author-info,
.author-info .bio,
.author-bio-info {
    margin-top: auto;
    font-size: 24px;
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.author-info p {
    max-width: 400px;
}
.author-img {
    width: 100%;
}
.author .social-icons {
    margin-top: 10px;
}
.author .social-icons a {
    margin-left: 0;
    margin-right: 10px;
}
.author .keywords {
    margin-top: 20px;
    font-size: 20px;
}
.author-bio {
    margin-top: 30px;
}
.bio {
    font-size: 36px;
}
.author-bio-info {
    font-size: 22px;
    margin-top: 20px;
    line-height: 1.2;
}
.author .powered-by-section {
    margin-top: 25px;
    background-color: #f6f6f2;
    padding: 25px;
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.author .powered-by {
    display: block;
    margin-left: 0;
    margin-bottom: 35px;
}
.author .powered-by-section img {
    margin-left: 0;
    margin-right: 75px;
}
.articles-list {
    margin-top: 40px;
}
.articles-list-title {
    font-size: 36px;
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.author-article a {
    display: block;
    margin-top: 30px;
    font-size: 24px;
}
.author-article p {
    margin-top: 20px;
    font-size: 20px;
    font-family: 'HelveticaNeueLTPro-Lt', serif;
}
.article-link {
    display: flex;
    align-items: center;
    width: 100%;
}
.author .read-more-container {
    font-family: 'HelveticaNeueLTPro-Lt', serif;
    font-size: 20px;
    max-width: 200px;
    top: -10px;
}
.single-page-content {
    margin-top: 50px;
    padding-bottom: 50px;
}
.custom-page .col img {
    max-width: 250px;
}
.custom-page {
    padding-top: 150px;
    padding-bottom: 65px;
}
.lc {
    text-transform: unset;
}
.fs-38 {
    font-size: 38px;
}
.section-text {
    font-size: 22px;
    max-width: 350px;
    padding-right: 10px;
}
.col-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mh-md-500 {
    min-height: 500px;
}
.column-title {
    font-size: 30px;
    font-family: 'AthleticCondensed-Regular', serif;
    margin-top: 65px;
    margin-bottom: 30px;
}
.column-content {
    max-width: 350px;
    padding-bottom: 25px;
    padding-right: 15px;
}
.column-content p {
    font-size: 18px;
}
.column-content p strong {
    font-weight: unset;
    font-family: 'HelveticaNeueLTPro-Md', serif;
}
.column-content p:first-child {
    font-size: 22px;
    line-height: 1.2;
}
.column-content h6,
.column-content h5,
.column-content h4,
.column-content h3,
.column-content h2,
.column-content h1 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 5px;
}
.our-team-text {
    font-size: 22px;
    max-width: 700px;
    margin-left: 38px;
    margin-bottom: 40px;

}
.font-athletic {
    font-family: 'AthleticCondensed-Regular', serif !important;
}
.post-author .author {
    font-weight: bold;
    font-family: sans-serif;
}

@media (max-width: 1700px) {
    .container,
    .article-container,
    .author-page,
    .single-page {
        padding: 0 10px;
        max-width: calc(100% - 35px);
    }
}
@media (max-width: 1480px) {
    .subscribe-button svg {
        margin-right: 50px;
    }
    .article-block-title {
        font-size: 40px;
    }
    .articles-section .col img {
        max-height: 250px;
    }
    .col-image div.container-title {
        max-width: 55%;
    }
}
@media (max-width: 1200px) {
    .navbar {
        flex-wrap: wrap;
    }
    .menu {
        display: none;
    }
    .right-section {
        display: none;
    }
    .menu li {
        text-align: left;
    }
    .menu-burger {
        display: block;
    }
    .menu.show {
        display: flex;
    }
    .menu-burger {
        display: block;
    }
    .subscribe-button svg {
        margin-right: 0px;
        width: 150px;
    }
    .article-block-title {
        font-size: 36px;
    }
    .articles-section .col img {
        max-height: 200px;
    }
    .author-col {
        width: calc(50% - 10px);
    }
    .become-an-author-link {
        width: calc(50% - 10px);
    }
    .become-an-author-link .become-an-author {
        width: 100%;
    }
    .other-topics-section .col {
        flex: 1 1 calc(50% - 80px);
    }
    .row.other-topics-section {
        flex-wrap: wrap;
    }
    .blocks-with-spaces.other-topics-section .topic-1,
    .blocks-with-spaces.other-topics-section .topic-3 {
        margin-bottom: 20px;
    }
    .topic-2 {
        order: 3;
        margin-left: 0 !important;
        margin-right: 20px;
    }
    .topic-3 {
        order: 2;
        margin-left: 20px;
        margin-right: 0 !important;
    }
    .topic-1 { order: 1; }
    .topic-4 { order: 4; }
    .col-image div.container-title {
        max-width: 65%;
    }
    .post-col {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .slide {
        min-width: calc(50% - 20px);
    }
    .col-md-100 {
        flex: 1 1 100% !important;
    }
    .row-flex {
        flex-wrap: wrap;
    }
    .contact-description-text {
        max-width: 450px;
    }
    .form-container {
        margin-top: 35px;
    }
    .get-involved-text {
        max-width: 400px;
    }
    .container {
        width: calc(100% - 35px);
    }
}
@media (max-width: 1024px) {
    .col {
        flex: 1 1 50%;
    }
    .row {
        flex-wrap: wrap;
    }
    .footer-item-title {
        margin-top: 25px;
    }
    .mt-md-40 {
        margin-top: 40px;
    }
    footer hr.block-separator {
        margin-bottom: 35px;
    }
    .subscribe-button span {
        max-width: 100px;
    }
    .blocks-with-spaces .col:nth-child(1),
    .blocks-with-spaces .col:nth-child(2),
    .blocks-with-spaces .col:nth-child(3),
    .blocks-with-spaces .col:nth-child(4) {
        margin: 0 0 20px;
    }
    .blocks-with-spaces .col:nth-child(1),
    .blocks-with-spaces .col:nth-child(3) {
        margin-right: 20px;
    }
    .articles-section .col-margin {
        padding: 0;
    }
    .articles-section .col {
        flex: 1 1 calc(50% - 20px);
    }
    .article-block-title {
        padding-top: 35px;
        padding-left: 35px;
    }
    .slider .slide:not(.main-category-slide) .article-block-title {
        padding-left: 0;
    }
    .topic-2 {
        margin-right: 20px !important;
    }
    .innovation-leadership .container-mh {
        min-height: unset;
    }
    .innovation-leadership .keywords {
        margin-top: 25px;
    }
}
@media (max-width: 850px) {
    .static-text-column,
    .slider-container {
        width: 100%;
    }
    .articles-slider {
        display: block;
    }
    .slider-container {
        margin-top: 35px;
    }
}
@media (max-width: 768px) {
    /* To only show 3 authors in mobile screen (except author page) */
    body:not(.page-id-261) .author-col:nth-of-type(n+4) {
        display: none;
    }
    .col {
        flex: 1 1 100%;
    }
    .footer-item-title {
        margin-top: 50px;
    }
    .first-item {
        margin-top: 25px;
    }
    .article-title {
        font-size: 36px;
    }
    .post-info-bar {
        display: block;
    }
    .social-icons {
        margin-top: 20px;
    }
    .social-icons a {
        margin-left: 0;
        margin-right: 10px;
    }
    .subscribe-button span {
        max-width: none;
    }
    .subscribe-button {
        margin-top: 25px;
    }
    .newsletter-title {
        font-size: 36px;
    }
    .contact-title {
        font-size: 32px;
    }
    .newsletter-section {
        padding-top: 35px;
    }
    .article-block-title {
        font-size: 36px;
        min-height: 75px;
    }
    .newsletter-section {
        margin-top: 60px;
    }
    .author-col {
        width: 100%;
    }
    .articles-section .col {
        flex: 1 1 100%;
    }
    .blocks-with-spaces .col:nth-child(1),
    .blocks-with-spaces .col:nth-child(3) {
        margin-right: 0;
    }
    .become-an-author-link {
        width: 100%;
    }
    .become-an-author {
        padding: 10px 0;
    }
    .other-topics-section .col {
        flex: 1 1 100%;
    }
    .other-topics-section .container-mh {
        min-height: unset;
    }
    .other-topics-section .keywords {
        margin-top: 25px;
    }
    .other-topics-section .block-img {
        max-width: 300px;
    }
    .mobile-hide {
        display: none;
    }
    .topic-1 {
        order: 1;
    }
    .topic-2 {
        order: 2;
        margin-right: 0 !important;
    }
    .topic-for-mobile {
        display: block;
        order: 3;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    .topic-3 {
        order: 4;
    }
    .topic-4 {
        order: 5;
    }
    .col-image {
        min-height: 500px;
    }
    .col-image div.container-title {
        max-width: 75%;
    }
    .container-title a {
        font-size: 30px;
    }
    .powered-by-section.row {
        display: block;
    }
    .powered-by-section.row img {
        display: block;
        margin-left: 20px;
        margin-top: 25px;
    }
    .category-hero-left {
        flex: 9;
        padding-right: 5px;
    }
    .category-hero-right {
        flex: 3;
    }
    .article-col .container-mh {
        min-height: unset;
        margin-bottom: 15px;
    }
    .article-col.col-margin {
        padding: 30px 0;
    }
    .articles-section .col img {
        max-height: 160px;
        margin: 10px auto 25px;
    }
    .slide img {
        max-height: 190px;
        margin: 20px auto 25px;
    }
    .category-image-background {
        height: 250px;
    }
    .contact {
        margin-top: 140px;
    }
    .address {
        margin-top: 35px;
    }
    .get-involved-text:first-child {
        margin-top: 35px;
    }
    .start-my {
        margin-top: 35px;
    }
    .get-involved-section {
        margin-top: 50px;
        padding-top: 50px;
    }
    .subscription-img {
        margin: 40px;
        margin-bottom: 0;
    }
    .author .author-right .author-name {
        font-size: 24px;
    }
    .author-col-left {
        width: 60%;
        padding-right: 10px;
    }
    .author-col-right {
        width: 40%;
    }
    .author .author-name {
        font-size: 24px;
    }
    .author-info {
        font-size: 20px;
    }
    .author-bio-info {
        font-size: 20px;
    }
    .articles-list-title {
        font-size: 32px;
    }
    .author-article a {
        font-size: 22px;
    }
    .mh-md-500 {
        min-height: unset;
    }
    .mt-s-75 {
        margin-top: 75px;
    }
    .section-text,
    .column-content {
        max-width: 100%;
    }
    .custom-page .col img {
        margin-top: 25px;
    }
    .column-title {
        margin-top: 40px;
    }
    .custom-page {
        padding-top: 110px;
    }
    .our-team-text {
        font-size: 20px;
    }
    .get-involved-text {
        font-size: 22px;
    }
    .single-page-content h3 {
        font-size: 22px;
    }
    .row.other-topics-section {
        display: block;
    }
}
@media (max-width: 690px) {
    .author-left {
    width: 30%;
    }
    .author-left img {
    width: 100%;
    height: auto;
}
    .author-right {
        width: 70%;
    }
    .post-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .slide {
        min-width: 100%;
    }
    .slide {
        margin-right: 0;
    }
}
@media (max-width: 580px) {
    .other-topics-section .block-img {
        max-width: 100%;
    }
    .title-with-icon {
        font-size: 28px;
    }
/* To not display keywords on mobile screen */
    .keywords {
    display: none !important;
    }
}
@media (max-width: 480px) {
    .article-title {
        font-size: 32px;
    }
    .subscribe-button {
        font-size: 22px;
        padding: 18px;
    }
    .subscribe-button svg {
        margin-right: 5px;
        width: 100px;
    }
    .other-topics-section .block-text {
        display: none;
    }
}
@media (max-width: 390px) {
    .subscribe-button {
        font-size: 20px;
    }
}