@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #e7a847;
    --secondary-color: #f0e2b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(/img/bg-2.jpeg);
    background-size: cover;
    background-attachment: fixed;
}

.index-background {
    background: transparent;
}

.text-primary {
    color: var(--primary-color);
}
.text-secondary {
    color: var(--secondary-color);
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 30px 60px;
    /* background-color: #000000; */
    width: 100%;
    gap: 20px;

    background-color: rgba(0,0,0,0.5);
    border-bottom: 1px rgba(255,255,255,0.3) solid;
}

.header-navigation {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.nav-links {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.4s ease-in-out;

    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-navigation .nav-links::after {
    content: " \27A4";
    font-size: 18px;
    color: var(--primary-color);
  }

.nav-links:hover {
    /* text-decoration: underline; */
    color: var(--primary-color);
    transition: 0.4s ease-in-out;
}

.nav-links.active {
    color: var(--primary-color);
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.header-logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo img {
    width: 200px;
    /* height: 68px; */
    /* border-radius: 4905.89px; */
}

.header-logo-name {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.header-logo-name h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0em;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.subscribe-now-button,
.cta-button {
    background: var(--primary-color);
    padding: 20px 45px;
    border-radius: 10px;
    color: #FAFAFA;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease-in-out;

    min-width: 250px;
}

.subscribe-now-button:hover,
.cta-button:hover {
    background: #FAFAFA;
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.be-a-guest-button {
    background: #000;
    color: #e7a847;
    text-transform: uppercase;
    box-shadow: 0 2px 16px rgba(210, 150, 6, 0.8);
    padding: 20px 15px;
}

.top-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    /* background: #000000; */
}

.top-banner a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.top-banner a img {
    width: 70%;
    border-radius: 10px;
}

.home-banner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: url(../img/logo-2.png) no-repeat center center/cover; */
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 0.6s ease-out forwards;

    mix-blend-mode: plus-lighter;
    background-size: 461px;
    background-position-y: -8px;
}

.home-banner {
    display: flex;
    width: 100%;
    padding: 53px 200px 0;

    flex-direction: row;
    justify-content: center;
    min-height: 450px;
    align-items: center;
}

.home-banner-top-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.home-banner-top-right h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 80px;
    letter-spacing: -0.96px;
    text-align: right;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 0.6s ease-out forwards;
}

.home-banner-center {
    img {
        max-width: 100%;
        width: 650px;
    }
}

.home-banner-btm-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.home-banner-btm-left h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 80px;
    letter-spacing: -0.96px;
    text-align: left;
    color: #FFFFFF;
}

.home-banner-linear-gradient {
    /* display: flex; */
    display: none;
    flex-direction: column;
    height: 130px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
}

.home-recent-episodes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 200px;
    gap: 80px;
}

.home-recent-episodes-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 50px;
    color: #FAFAFAF2;
}

.home-recent-episodes {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.home-recent-episodes a {
    text-decoration: none;
}

.home-recent-episode {
    width: 320px;
    height: 200px;
}

.home-recent-episode img {
    width: 100%;
}

.more-episodes-button {
    padding: 20px 45px;
    background: var(--primary-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    color: #FAFAFA;
}
.more-episodes-button:hover {
    background: #FAFAFA;
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.available-platforms-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 200px;
    /* background: linear-gradient(180deg, var(--primary-color) 0%, #943815 100%); */
    background: rgba(0,0,0,0.5);
}

.available-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.available-platforms h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 57.5px;
    color: #FFFFFF;
}

.platforms-lists-container {
    display: flex;
    flex-direction: column;
    gap: 102px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.platforms-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 100px;
    width: 96%;
    justify-items: start;
}

.platform {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.platform a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-decoration: none;
}

.platform-img {
    width: 56px;
    height: 56px;
}

.platform-img.youtube {
    width: 72px;
    height: 52px;
}

.platform h5 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #FFFFFF;
}

.feedback-form h3 {
    font-size: 48px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
    font-weight: 600;
}

.feedback-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 120px 200px;
    width: 100%;
    gap: 90px;
}

.feedback-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 35%;
}

.feedback-texts h1 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    color: #EEEEEE;
}

.feedback-texts h1 span {
    color: var(--primary-color);
}

.feedback-contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.contact-details svg {
    min-width: 32px;
}

.contact-details.phone {
    /* background: var(--primary-color)80; */
    background: #6a400091;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
}

.contact-details-img {
    width: 24px;
    height: 25px;
}

.contact-details-img.location {
    width: 24px;
    height: 29px;
}

.contact-details a {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    word-break: break-word;
    text-decoration: none;
}

.contact-details h5 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    word-break: break-word;
    text-decoration: none;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #EEEEEE;
    border-radius: 20px;
    width: 65%;
}

.feedback-form form{
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.feedback-form-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.feedback-form-inputs input,
.feedback-form-inputs textarea {
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.2em;
    padding: 12px;
    color: #000000;
    outline: none;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    background: none;
}

.feedback-form-inputs input:focus,
.feedback-form-inputs textarea:focus {
    border-bottom: 3px solid #FA6023;
}

.feedback-submit-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 45px;
    background: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #FAFAFA;
    width: 30%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.feedback-submit-button img {
    width: 16px;
    height: 16px;
}

.feedback-submit-button:hover {
    border: 3px solid #963914;
    transition: 0.3s ease-in-out;
}

.home-page-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background: #000000; */
    overflow: hidden;

}

.home-page-design img {
    width: 110%;
    height: 114px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 60px 60px 60px;
    width: 100%;
    /* background: #000000; */
}

.footer-copyright {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-copyright h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2em;
    color: #FFFFFF;
}

.footer-legal-terms {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.footer-legal-terms a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2em;
    color: #7B7E86;
}

.about-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    gap: 50px;
    /* background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 500%); */
    width: 100%;
    perspective: 1000px;
}

.about-us-container img {
    width: 100%;
    /* height: 675px;
    object-fit: cover; */
    border-radius: 20px;

    transform-style: preserve-3d;
    animation: flipIn 1.2s ease forwards;
    backface-visibility: hidden;

    width: 1024px;
    max-width: 100%;
    margin: 0 auto;
}

@keyframes flipIn {
    0% {
        transform: rotateX(40deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.about-us-container:hover img {
    transform: rotateX(-180deg);
    transition: 2s;
}

.about-us-team-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.about-us-team-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us-team-description h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    text-align: left;
}

.about-us-team-description h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 24px;
    text-align: justify;
    text-justify: inter-word;
}

.about-us-team-description h2 strong {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 24px;
    text-align: justify;
    text-justify: inter-word;
}

.about-us-team-description h2 span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 24px;
    text-align: justify;
    text-justify: inter-word;
    font-style: italic;
}

.about-us-team-socials {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: end;
    gap: 30px;
    width: 100%;
}

.about-us-team-socials a {
    display: flex;
}

.about-us-team-socials a img {
    width: 45px;
    height: 45px;
}

.about-us-hr {
    width: 100%;
    height: 1px;
    background: #FFFFFF;
}

.office-studio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 200px 120px 200px;
    gap: 70px;
    /* background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 500%); */
    /* background-color: rgba(0, 0, 0, 0.5); */
    
    height: 100%;
}

.our-office-container,
.our-studio-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.our-office-container img,
.our-studio-container img {
    width: 45%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    min-width: 45%;
}

.our-office-description,
.our-studio-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our-office-description h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2.1px;
    color: #FFFFFF;
}

.our-office-description h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.our-studio-description h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2.1px;
    color: #FFFFFF;
    text-align: right;
}

.our-studio-description h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-align: right;
}

.episodes-list-container {
    /* background: #000000; */
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 30px 30px;

    max-width: 1024px;
    margin: 0 auto;
    border-radius: 15px;
}

.episodes-list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 20px;
}

.episodes-list-header h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 50px;
    text-align: center;
    color: #FAFAFA;
    
    margin-bottom: 15px;
}

.episodes-list-header h1 span {
    color: var(--primary-color);
}

.podcast-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px 0;
}

.podcast-list h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}
.podcast-list h5 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    
}
.podcast-list h5 a:hover {
    background-color: rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
}
.podcast-list h5 a span {
    word-break: break-word;
}
.episodes-lists {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 200px;
    gap: 40px;
}

.episodes-content a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 671px;
    text-decoration: none;
}

.episodes-content a img {
    width: 320px;
    height: 200px;
}

.episodes-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.episodes-description h3 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.32px;
    text-align: left;
    color: #FFFFFF;
    
    color: #e3e3e3;
    font-weight: 300;
}

.episode-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.episode-title h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FAFAFACC;

    color: #fff;
    font-weight: 600;
}

.episode-title h2 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.32px;
    color: #FFFFFF;

    color: #bbb;
    font-weight: 300;
}

.load-more-button {
    border: none;
    padding: 15px 45px;
    background: #FA60232E;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 16.8px;
    text-align: center;
    color: #FFFFFF;
}

.episodes-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 200px;
    background: #000000;
}

.episode-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 60px 90px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    gap: 60px;
}

.episode-card-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.episode-card-title h1 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: #FFFFFF;
}

.episode-card-title h5 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.32px;
    color: var(--primary-color);
}

.episode-card-contents {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.episode-card-contents iframe {
    border-radius: 20px;
    width: 100%;
    height: 564px;
}

.episode-card-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.episode-card-description h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFFCC;
}

.episode-card-description p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.32px;
    color: #FFFFFF;
}

.episodes-image {
    display: flex;
    flex-direction: column;
    /*background: url(../img/podcast-ep-bg.jpg) no-repeat center center/cover;*/
    width: 320px;
    height: 200px;
    border-radius: 15px;
    position: relative; /* Required for overlay */

    background-color: #e7a847 !important;
    background-blend-mode: luminosity;

    width: 100%;
}

/* Dark overlay */
.episodes-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Black overlay at 40% opacity */
    border-radius: 15px;
    z-index: 1;
}

.episodes-image-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 320px;
    height: 200px;
    padding: 10px 15px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.episodes-image-content h1 {
    color: #FFFFFF;
    font-size: 35px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 35.6px;
    letter-spacing: -0.01px;
    color: #FFFFFF;
}

.episodes-image-content h2 {
    color: #FFFFFF;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01px;
    color: #FFFFFF;
    text-align: right;
    width: 60%;
}


.feedback-form {
    background-color: #00000096;
    padding-top: 30px;
}
.feedback-form-inputs input, .feedback-form-inputs textarea {
    color: #FFFFFF;
}



.slide-up {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
}

@media (min-width: 1200px) {
    .top-banner a img {
        /* width: 50%; */
        width: 700px;
    }
}

@media (max-width: 1199px) {
    .top-banner a img {
        width: 80%;
    }
}

@media (max-width: 809px) {
    .top-banner a img {
        width: 90%;
        height: auto;
    }

    .header-container {
        padding: 30px 20px 40px !important;
        flex-direction: column;
        gap: 20px;
    }

    .header-navigation {
        flex-wrap: wrap;
        flex-direction: column;

        gap: 24px !important;
        margin-bottom: 20px;
    }
    .header-navigation .header-logo {
        width: 100%;
        justify-content: center;
    }
    .header-navigation .nav-links {
        font-size: 24px;
        /* text-decoration: underline; */
    }
    /* .header-navigation .nav-links::before {
        content: "\27A4 ";
    } */
    .header-navigation .nav-links::after {
        content: " \27A4";
    }

    .home-banner-container {
        background-size: 300px;
        background-position-y: 0;
        margin-top: 30px;
    }

    .header-cta {
        order: 3;
    }

    .top-banner.md {
        display: none;
    }
    .top-banner.sm {
        background-color: rgba(0,0,0,0.5);
    }
}

@media (min-width: 810px) {
    .top-banner.sm {
        display: none;
    }
}