/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */
:root {
    --blue: #1069A4;
    --dark-blue: #004069;
    --green: #00874F;
    --dark-green: #005532;
    --yellow: #FFC525;
    --light-yellow: #FFDB78;
    --red: #D0001C;
    --orange: #EC6B2E;
    --light-gray: #EFEFEF;
    --gray: #AEAEAE;
    --dark-gray: #858585;
}

/* CSS RESET*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

h1 {
    color: black;
    font-size: 50px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

h2 {
    color: black;
    font-size: 36px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    margin-bottom: 40px;
}

h3 {
    color: black;
    font-size: 24px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}

h4 {
    color: black;
    font-size: 24px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

h5 {
    color: #000;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

p {
    color: black;
    font-size: 20px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    margin-bottom: 1em;
}

p+ul {
    margin-top: -1rem;
}

.center {
    text-align: center;
}

li {
    color: black;
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

a {
    text-decoration: underline;
    color: black;
}

p.small {
    font-size: 16px;
}



strong,
.strong {
    font-weight: 700;
}

.ways-to-watch p,
.library-header p,
.card p {
    font-size: 18px;
}

.container {
    max-width: 1360px;
}

img {
    max-width: 100%;
}

section {
    overflow-x: hidden;
}

button {
    background: transparent;
    border: 0;
    cursor: pointer;
}

@media (max-width: 991px) {

    .col-lg-4 {
        margin-bottom: 1em;
    }
}

@media (max-width: 767px) {

    .col-md-4,
    .col-md-8 {
        margin-bottom: 1em;
    }
}

iframe {
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    display: block !important;
}


button.primary {
    border-radius: 5px;
    background: var(--yellow);
    width: 240px;
    height: 60px;
    padding: 13px 12px;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

button.primary:hover {
    background: var(--light-yellow);
}

button.primary.small {
    font-size: 20px;
}

button.primary:disabled {
    background: var(--light-yellow);
    color: rgba(0, 0, 0, 0.3);
}

button.primary.large {
    width: 440px;
    height: 80px;
    padding: 13px 40px;
    font-size: 30px;
}

.tag {
    display: inline-flex;
    padding: 3px 8px 3px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--dark-blue);
    color: white;
    text-align: center;
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-right: 6px;
}

.text-button {
    text-decoration: underline;
    font-size: 24px;
}

.text-button img {
    display: inline-block;
    margin-right: 6px;
}

.tag.filter {
    background: var(--dark-green);
    gap: 4px;
    padding: 3px 4px 3px 8px;
}

.tag.filter-filmmaker {
    background: var(--blue);
    gap: 4px;
    padding: 3px 4px 3px 8px;
}

.tag.filter img {
    width: 12px;
}

.flex {
    display: flex;
}

header+section {
    margin-top: 40px;
}

@media (max-width: 767px) {

    p,
    li {
        font-size: 14px;
    }

    p.small {
        font-size: 12px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 1em;
    }

    h3,
    h4 {
        font-size: 18px;
    }

    .text-button {
        font-size: 18px;
    }

    header+section {
        margin-top: 20px;
    }
}

.grid {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    gap: 80px;
    align-items: stretch;
}

@media (max-width: 880px) {
    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.gray {
    background: var(--light-gray);
}

.gray.border {
    border: 1px solid var(--gray);
}

.pr-1 {
    padding-right: 8px;
}

.tag.filter.pr-1 {
    padding-right: 8px;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--dark-gray);
}

.checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.about .col-md-8 {
    padding-right: 3em;
}

.sidebar-quote {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
}

.sidebar-quote:first-child {
    border-top: 1px solid #d3d3d3;
    margin-top: 90px;
    padding-top: 20px;
}


@media (max-width: 767px) {
    .sidebar-quote:first-child {
        margin-top: 1em;
    }
}

header {
    padding: 30px 40px;
    border-bottom: 1px solid #d3d3d3;
}

header .logo {
    max-width: 350px;
}

header .mobile {
    display: none;
}

header .col-md-8 {
    text-align: right;
}

header .col-md-8>div {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: right;
    margin-bottom: 12px;
}

header nav a {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

header nav {
    display: flex;
    gap: 20px;
    justify-content: right;
}

header .search {
    position: relative;
}

header .search input {
    height: 40px;
    width: 200px;
    padding: 0 40px 0 12px;
}

header .search img {
    position: absolute;
    right: 6px;
    top: 10px;
}

@media (min-width: 821px) {
	header .nav-dropdown ul {
		display: none;
	}
}

header .nav-dropdown {
    position: relative;
}

header .nav-dropdown:hover ul {
    display: block;
    position: absolute;
    list-style-type: none;
    right: 0;
    z-index: 9;
    width: 290px;
    background: white;
}

header .nav-dropdown ul li {
    padding: 10px;
    display: block;
}

@media (min-width: 821px) {
	header .nav-dropdown ul li:first-child {
		padding-top: 20px;
	}
}


header .nav-dropdown ul a {
    display: block;
}


@media (max-width: 970px) {
    header nav a {
        font-size: 16px;
        text-align: left;
    }

    header .logo {
        max-width: 278px;
    }
}

@media (min-width: 821px) {
    header nav a.current {
        text-decoration: underline;
    }
}

@media (max-width: 820px) {
    header {
        padding: 12px 0;
    }

	header .nav-dropdown > a {
		display: none !important;
	}
	header .nav-dropdown ul,
	header .nav-dropdown ul li {
		margin:0;
		padding:0;
		border:0;
	}


    header .mobile {
        display: block;
    }

    header .col-md-8>div:nth-child(2),
    header .col-md-8>nav {
        display: none;
    }

    header .col-md-8 .mobile.open+div,
    header .col-md-8 .mobile.open+div+nav {
        display: block;
        background: black;
        margin-bottom: 0;
        text-align: left;
        position: relative;
        width: calc(100% + 24px);
        left: -12px;
        top: 10px;
    }

    header .col-md-8 .mobile.open+div a {
        font-size: 20px;
        text-align: left;
        font-weight: 600;
        color: white;
        padding: 10px;
        display: inline-block;
    }

    /*header .col-md-8 .mobile.open+div a:nth-child(2) {*/
    header .mobile.open+div a#shopping-cart-link {
        background: url('../images/cart-white.svg') no-repeat center center;
        background-size: 22px;
        position: relative;
        left: 10px;
        top: 5px;
    }

    /*header .col-md-8 .mobile.open+div a:nth-child(2) img {*/
    header .mobile.open+div a#shopping-cart-link img {
        display: none;
    }

    header .col-md-8 .mobile.open+div .search {
        color: white;
        display: block;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid white;
        border-top: 1px solid white;
    }

    header .col-md-8 .mobile.open+div .search input {
        width: 100%;
    }

    header .search img {
        right: 16px;
        top: 20px;
    }

    header .col-md-8 .mobile.open+div+nav a {
        color: white;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        display: block;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid white;
        background: url('../images/caret-right.svg') no-repeat 96% center;
    }

    .hamburger {
        background: url('../images/burger.svg') no-repeat center center;
        background-size: 20px 20px;
        height: 70px;
        width: 42px;
    }

    .mobile.open .hamburger {
        background-image: url('../images/x-black.svg');
    }

    header .row {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    header .row .col-md-8 {
        position: absolute;
        top: 10px;
        right: 0;
        z-index: 9;
        margin-bottom: 0;
    }

    header .row .col-md-4 {
        width: 278px;
        margin-bottom: 0;
    }
}

footer {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

footer .legal {
    font-size: 20px;
}

footer .gray {
    padding: 60px 0;
    margin-bottom: 20px;
}

footer .social .flex {
    justify-content: center;
    gap: 20px;
}

footer h3 {
    margin-bottom: 20px;
}

footer .logo {
    max-width: 200px;
    margin: 12px auto;
}

footer nav {
    margin-top: 60px;
    padding: 0 30px;
}

footer nav a {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

footer form {
    display: flex;
    gap: 10px;
    height: 40px;
}

footer form button.primary {
    font-size: 16px;
    max-width: 93px;
    padding: 0 13px !important;
    max-height: 40px;
    width: auto;
}

img[src="img/heart-fill.svg"] {
    width: 23px;
}

footer form input {
    padding-left: 12px;
    flex: 1 0 auto;
    width: auto !important;
    height: 40px !important;
}

@media (max-width: 767px) {

    footer .logo {
        max-width: 210px;
    }

    footer .gray {
        padding: 20px 0;
    }

    footer form {
        display: block;
        height: auto;
    }

    footer form input {
        display: block;
        height: 40px;
        margin-bottom: 10px;
        width: 100% !important;
    }

    footer form button.primary {
        display: block;
        width: 100%;
        max-width: none;
    }

    footer .col-md {
        display: block;
    }

    footer div[class*="col"] {
        border-bottom: 1px solid #d3d3d3;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    footer .gray .row>.col-md-8 {
        border: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    footer nav {
        margin-top: 0;
    }

    footer nav a,
    footer p {
        font-size: 14px;
    }
}

.social .flex img {
    max-width: 40px;
    max-height: 40px;
}

@media (min-width: 768px) {
    .mobile {
        display: none;
    }
}

/* carousel overrides */
.swiper-container {
    position: relative;
    margin-bottom: 1em;
}

.swiper-pagination-bullet-active {
    background: var(--yellow) !important;
}

.swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
}

.swiper,
.swiper2 {
    padding-bottom: 50px !important;
    width: 94%;
}


@media (max-width: 1100px) {

    .swiper,
    .swiper2 {
        width: calc(90% - 40px);
    }
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    width: 20px !important;
    height: 60px !important;
    color: transparent !important;
    top: 38% !important;
}

.swiper-button-next {
    background: url('../images/slide-fwd.svg') no-repeat center center;
    right: 0 !important;
}

.swiper-button-prev {
    background: url('../images/slide-back.svg') no-repeat center center;
    left: 0 !important;
}

.toggle-heart-image {
	width: 35px;
}

/* flashdata classes */
.error {
	margin-top: 5px;
	margin-bottom:5px;
}
.message {
	margin-top: 5px;
	margin-bottom:5px;
}

.helptext {
	font-style: italic;
	font-size: 8pt;
	font-weight: normal;
}

.helptext {
	font-style: italic;
	font-size: 8pt;
	font-weight: normal;
}

.helptext_bigger {
	font-style: italic;
	font-weight: normal;
}

.helptext_small {
	font-size: 9pt;
	font-weight: normal;
}
.helptext_small a {
	text-decoration: underline;
	display: inline;
}

.grecaptcha-badge {
  visibility: hidden;
}