/* COLORS */
/* 

#c72f31 red
#426e6d green
#333333 black
#FFFFFF white
#c26610 orange
*/

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Burger menu */
.nav-active-tab {
    color: #c72f31 !important;
}

.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #c72f31;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}

#menu {
    position: fixed;
    top: 0;
    right: -4000px;
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    color: #c72f31;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    border-left: 5px solid #c72f31;
    overflow-y: auto;
}

body.menu-open {
    overflow: hidden;
}

#menu .tab-container {
    margin-top: 50px;
    background-color: #FFF;
    padding: 0px !important;
    transition: 0.2s;
}

#menu .tab {
    background-color: #FFF;
    color: #333333;
    font-size: 20px;
    list-style: none;
    padding: 20px;
    transition: 0.1s;
    text-align: left;
}

body.menu-open {
    overflow: hidden !important;
    /* Disable scroll when menu is open */
}

/* 
#menu .tab:hover {
    background-color: #1C3760;
    color: #FFF !important;
    transition: 0.1s;
} */

.hidden {
    display: none;
}

#menu .closeBtn {
    margin-top: 25px;
    margin-left: 25px;
}

#menu .closeBtn:hover {
    cursor: pointer;
}

#menu .menu-logo {
    margin: 0px auto;
    margin-top: 50px;
    text-align: center;
    padding-bottom: 50px;
}

#burgerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(199, 47, 49, 0.8);
    display: none;
    z-index: 999;
}

@media(max-width:992px) {
    #navbar .logo img {
        width: 150px;
        margin-left: 10px;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Swiper */
.swiperContainer {
    width: 100%;
    height: 500px;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 20px !important;
}

.swiper-pagination-bullet {
    background-color: #FFF !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* popup */
.homepopup {
    position: fixed;
    top: calc(50% - 150px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #426e6d;
    color: white;
}

.homepopup .messageContainer {
    font-size: 25px;
    padding: 30px;
}

.popupClose {
    padding: 10px;
    background-color: #426e6d;
    color: #FFF;
    font-size: 20px;
    outline: none;
    border: none;
    transition: 0.3s;
}


.popupClose:hover {
    text-decoration: underline;
    transition: 0.3s;
}

@media(max-width:992px) {
    .homepopup {
        width: 90%;
        top: calc(50% - 150px);
        /* left: 0; */
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* NAVBAR */

#navbar {
    background-color: white;
}

#navbar .navbar-container {
    width: 100%;
    margin: 0px auto;
    max-width: 1200px;
    position: relative;
    padding-top: 30px;
    padding-bottom: 10px;
}


#navbar .navbar a {
    display: block;
    text-align: center;
    padding: 5px 10px;
    font-size: 18px;
    color: #c72f31;
    text-decoration: none;
    background-color: white;
}

#navbar .right-sidebar {
    padding: 5px 2px !important;
}


.navbar {
    display: flex;
    justify-content: space-between;
}


.navbar-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 1;
}

.navbar span {
    display: block;
    text-align: center;
    padding: 8px 10px;
    font-size: 18px;
    color: #c72f31;
    text-decoration: none;
}

.navbar span:hover {
    cursor: pointer;
}

.dropdown-open:hover .navbar-dropdown {
    display: block;
    background-color: white;
}

navbar-dropdown:hover {
    display: block;
}

.navbar-dropdown a {
    display: block;
    color: #000;
    padding: 10px;
    text-align: left !important;
}

.navbar-dropdown a:hover {
    display: block;
    text-align: left;
    color: #426e6d !important;
}

@media(max-width:992px) {
    #navbar .navbar-container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************coming soon Page */

#landing-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#landing-section .navbar {
    position: absolute;
    top: 20px;
    left: 0px;
    z-index: 1000;
}

#landing-section .navbar .logo {
    max-width: 100%;
    height: auto;
}

#landing-section .video-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

#landing-section .video-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Black shadow effect */
    z-index: 1;
    /* Sits above the video */
    pointer-events: none;
    /* Ensures it's non-interactive */
}

#landing-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#landing-section .image-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

#landing-section .image-overlay img {
    width: 550px;
}

#landing-section .blood-overlay {
    position: absolute;
    bottom: -10px;
    right: 0;
    z-index: 1;
}

#landing-section .blood-overlay img {
    width: 200px;
}


#landing-section .award-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

#landing-section .award {
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 15%;
    opacity: 1;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

#subscribe {
    padding-top: 40px;
    padding-bottom: 50px;
    background-color: #4B7666;
    background-image: url('../images/greenpattern-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#subscribe .main-title {
    text-align: center;
    font-size: 50px;
    padding-bottom: 10px;
}

#subscribe .subscribe-form-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

#subscribe .email {
    width: 40%;
    padding: 3px 20px;
    outline: none;
    border: 2px solid #C84D3E;
    border-radius: 0px;
    font-size: 22px;
}

#subscribe .submit {
    padding: 3px 40px;
    outline: none;
    margin-left: -50px;
    background-color: #C84D3E;
    color: #FFF;
    border: 2px solid #C84D3E;
    border-radius: 30px;
    font-size: 22px;
}

#subscribe .submit:hover {
    background-color: #1C3760;
    color: #FFF;
    border: 2px solid #1C3760;
    border-radius: 2px solid #000;
    transition: 0.3s;
}

@media(max-width:992px) {

    #landing-section {
        width: 100%;
        height: 80vh;
    }

    #landing-section .video-hero {
        height: 100%;
        position: relative;
    }

    #landing-section video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #landing-section .navbar .logo img {
        width: 100px;
    }

    #landing-section .text-overlay {
        font-size: 50px;
    }

    #subscribe .main-title {
        font-size: 30px;
    }

    #subscribe .email {
        width: 80%;
        font-size: 20px;
    }

    #subscribe .submit {
        margin-left: 0px;
        margin-top: 20px;
        font-size: 20px;
    }

    #landing-section .image-overlay {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    #landing-section .image-overlay img {
        width: 100%;
    }

    #landing-section .award-container {
        position: relative;
        width: 100%;
        height: 100vh;
    }

    #landing-section .award {
        position: absolute;
        top: 65%;
        left: 35%;
        width: 30%;
        opacity: 1;
    }

    .questions {
        margin-top: 30px;
    }
}


/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* HOMEPAGE */
#home .impactcampaign {
    padding-top: 100px;
    padding-bottom: 100px;
    /* background-color: #4B7666;
    background-image: url('../images/greenpattern-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: #333333;
}

#home .moreBtn {
    background-color: #c72f31;
    color: white;
    padding: 5px 40px;
    border-radius: 0px;
    border: 1px solid #c72f31;
    transition: 0.3s;
}

#home .moreBtn:hover {
    background-color: #FFF;
    color: #c72f31;
    transition: 0.3s;
}

#home .synopsis {
    background-color: #426e6d;
    padding-top: 100px;
    padding-bottom: 100px;
}

#home .synopsis-top {
    margin-top: 80px;
}

#home .buttons-container {
    text-align: center;
    margin-top: 30px;
}

#home .buttons-container .btn {
    background-color: #c72f31;
    color: #FFF;
    padding: 5px 40px;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 0px;
    border: 1px solid #c72f31;
}

#home .buttons-container .btn:hover {
    background-color: #FFF;
    color: #c72f31;
}

#home #press {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: #FFF;
    padding-top: 100px;
    padding-bottom: 100px;
}

#home #partners {
    background-color: #333333;
    height: 100%;
    padding: 50px;
    position: relative;
    z-index: 9;
}

#partners .content-container {
    margin-top: 15px;
}

#home #reviews {
    padding: 50px;
}

#reviews .image-container {
    display: block;
    margin-top: 10px;
}

#reviews .review-content {
    display: flex;
    flex-direction: column;
}

#reviews .text {
    margin-bottom: 10px;
}

#reviews .swiper-slide img {
    display: block;
    width: 40%;
    object-fit: cover;
}

#reviews .next {
    top: 85% !important;
    color: #FFF;
    width: 25px;
    height: 25px;
    padding: 25px !important;
    background-color: #c72f31;
    border-radius: 50%;
}

#reviews .next::after {
    font-size: 30px;
    padding-left: 5px;
}

#reviews .prev {
    top: 90% !important;
    left: 75% !important;
    color: #FFF;
    width: 25px;
    height: 25px;
    padding: 25px !important;
    background-color: #c72f31;
    border-radius: 50%;
}

#reviews .prev::after {
    font-size: 30px;
    padding-right: 5px;
}

#reviews .mobileBottomPadding {
    padding-bottom: 30px;
    padding-right: 10px;
}

@media(max-width:992px) {
    #home .synopsis {
        padding: 20px;
    }

    #home .buttons-container .btn {
        margin-top: 20px;
        margin-right: 0px;
    }

    #home .impactcampaign {
        padding: 20px;
    }

    .impactcampaign .main-title {
        font-size: 30px;
        margin-top: 20px;
    }

    .impactcampaign .category-image {
        margin-top: 20px;
    }

    .impactcampaign .moreBtn {
        padding: 5px 20px;
    }

    #home #press {
        padding: 20px;
        padding-top: 40px;
    }

    #home .arrow-container {
        text-align: right;
        padding-right: 10px;
    }

    #home .press-arrow {
        margin-top: 10px !important;
        text-align: right !important;
    }

    #home #press img {
        margin-top: 0px;
    }

    #home #partners {
        padding: 20px;
    }

    #home #reviews {
        padding: 20px;
    }

    #reviews .next {
        top: 90% !important;
        right: 5% !important;
    }

    #reviews .prev {
        top: 90% !important;
        left: 60% !important;
    }

    #reviews .mobileBottomPadding {
        padding-bottom: 50px;
        padding-right: 0px;

    }

}



/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Spread the word */
#spreadtheword {
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 100px;
}

#spreadtheword .introduction {
    width: 60%;
    margin-top: 40px;
}

@media(max-width:992px) {
    #spreadtheword {
        padding: 20px;
    }

    #spreadtheword .introduction {
        width: 90%;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Partner Up */
#partnerup {
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 100px;
}

#partnerup .introduction {
    width: 60%;
    margin-top: 40px;
}

@media(max-width:992px) {
    #partnerup {
        padding: 20px;
    }

    #partnerup .introduction {
        width: 90%;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Learn More */
#learnmore {
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 100px;
}

@media(max-width:992px) {
    #learnmore {
        padding: 20px;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* THE STORY */
#thestory .section1 {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 50px;
}

#thestory .section-black {
    /* background-color: #4B7666;
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333333;

}

#thestory .section2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

#thestory .section2 .image-2 {
    position: absolute;
    top: -150px;
    right: 0;
}

#thestory .section2 .second-container {
    /* padding-top: 200px; */
}

#thestory .section2 .third-container {
    padding-top: 50px;
}

#thestory .section3 {
    margin-top: 100px;
    position: relative;
    z-index: 9;
}

#thestory .section4 {
    background-color: #1C3760;
    padding-top: 50px;
    padding-bottom: 100px;
}

#thestory .section4 .text {
    width: 50%;
    text-align: center;
    margin: 0px auto;
    margin-top: 50px;
}

#thestory .flower {
    position: absolute;
    top: -350px;
    right: -100px;
}

@media(max-width:992px) {
    #thestory .section1 {
        padding: 20px;
    }

    #thestory .section2 .image-2 {
        position: relative;
        top: 0px;
        right: 0;
    }

    #thestory .section2 .image-2 img {
        width: 100%;
    }

    #thestory .section2 .second-container {
        padding-top: 20px;
    }

    #thestory .section2 {
        padding: 20px;
    }

    #thestory .section2 .third-container {
        padding-top: 50px;
    }

    #thestory .section2 .third-container img {
        margin-top: 20px;
    }

    #thestory .section4 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #thestory .section4 .text {
        width: 90%;
        margin-top: 30px;
    }

    #thestory .flower {
        position: relative;
        top: 0px;
        right: 0px;
        width: 200px;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Trailer */
#trailer {
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}

#trailer iframe {
    width: 100%;
    height: 600px;
}

@media(max-width:992px) {
    #trailer {
        padding: 20px;
        padding-top: 50px;
    }

    #trailer .title {
        padding-bottom: 20px;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* SCREENINGS */
#screenings {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
}

#screenings .title {
    padding-bottom: 50px;
}

/* #screenings .trailer {
    text-align: center;
    width: 70%;
    margin: 0px auto;
} */

#upcoming {
    background-color: #333333;
    padding-top: 50px;
    padding-bottom: 100px;
}

#upcoming .col-lg-3 {
    padding: 0px;
}

#upcoming .date {
    padding: 5px;
    text-align: center;
    font-size: 80px;
    color: #c72f31;
    background-color: white;
    border: 1px solid white;
    border-bottom: 1px solid #4B7666;
    line-height: 0.8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#upcoming .white-border {
    border: 1px solid white;
    padding: 8px;
    text-align: center;
}

#upcoming .time {
    color: white;
    font-size: 40px;
}

#upcoming .location {
    color: white;
    font-size: 40px;
}

#request {
    background-color: #426e6d;
    padding-top: 100px;
    padding-bottom: 100px;
}

#request .text {
    margin-top: 20px;
}

#request .reserve {
    margin-top: 50px;
    /* background-image: url('../images/reserve-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 50px;
}


#request .screening-form {
    padding: 50px;
    margin: 0px auto;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: white;
    width: 70%;
}

#request input {
    padding: 20px 10px;
    outline: none;
    border: none;
    margin-top: 10px;
    font-size: 18px;
    border-bottom: 1px solid black;
    width: 100%;
}

#request .submitBtn-container {
    text-align: center;
    margin-top: 20px;
}

#request .submitBtn {
    padding: 10px 40px;
    background-color: #c72f31;
    color: #FFF;
    border: 1px solid #c72f31;
    border-radius: 0px;
    width: 50%;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
}

#request .submitBtn:hover {
    background-color: #FFF;
    color: #c72f31;
    transition: 0.3s;
}

#pastScreenings {
    background-color: #333333;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    z-index: 9;
}

#pastScreenings .pastScreenings {
    margin-top: 20px;
    width: 100%;
}

#pastScreenings .pastScreenings tr {
    border-bottom: 1px solid #FFF;
}

#pastScreenings .pastScreenings td {
    padding-top: 20px;
}

#pastScreenings .buttons-container {
    text-align: center;
    margin: 0px auto;
    margin-top: 50px;
    white-space: nowrap;
}

#pastScreenings .buttons {
    display: inline-block;
    padding: 10px 40px;
    background-color: #c72f31;
    color: #FFF;
    border: 1px solid #c72f31;
    border-radius: 0px;
    width: 20%;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
    margin-right: 15px;
}

#pastScreenings .buttons:hover {
    background-color: #FFF;
    color: #c72f31;
    transition: 0.3s;
}

@media(max-width:992px) {
    #screenings {
        padding: 20px;
    }

    #screenings .trailer {
        text-align: center;
        width: 100%;
        margin: 0px auto;
    }

    #upcoming {
        padding: 20px;
    }

    #upcoming .date {
        font-size: 40px;
    }

    #upcoming .time {
        font-size: 30px;
    }

    #upcoming .location {
        font-size: 30px;
    }

    #request {
        padding: 20px;
    }

    #request .reserve {
        margin-top: 50px;
        padding-top: 0px;
        padding-bottom: 50px;
        background-image: none;
    }

    #request .screening-form {
        padding: 10px;
        width: 100%;
        margin-bottom: 0px;
    }

    #pastScreenings {
        padding: 20px;
    }

    #pastScreenings .buttons {
        margin-top: 10px;
        width: 100%;
        display: block;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* GALLERY */
#gallery {
    background-color: #4B7666;
    background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 100px;
}

#gallery .image {
    margin-top: 30px;
}

#gallery .gallery-image:hover {
    cursor: pointer;
}

#galleryOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 55, 96, 1);
    z-index: 9;
    display: block;
}

#popupGallery {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    padding-bottom: 100px;
    width: 100%;
    z-index: 10;
}

#popupGallery .galleryContainer {
    margin-top: 100px;
    z-index: 11;
}

#popupGallery .image {
    width: 100%;
}

#popupGallery .closeBtn {
    padding: 5px 20px;
    outline: none;
    border: none;
    background-color: #c72f31;
    color: white;
    border-radius: 20px;
    position: absolute;
    top: -50px;
    right: -120px;
}

#popupGallery .pagination-container {
    margin-top: 20px;
    text-align: center;
}

#popupGallery .pagination-button {
    margin-right: 10px;
    margin-left: 10px;
    padding: 5px 20px;
    outline: none;
    border: none;
    background-color: #c72f31;
    color: white;
    border-radius: 20px;
}

@media(max-width:992px) {
    #gallery {
        padding: 20px;
    }

    #popupGallery .closeBtn {
        top: -60px;
        right: 20px;
    }

    #popupGallery {
        padding: 20px;
    }
}

/*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************PRESS */
#press {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #FFF;
}

#press .details-container {
    background-color: #426e6d;
    color: white;
    border-radius: 0px;
}

#press .title {
    padding-top: 10px;
    padding-left: 10px;
}

#press .text {
    padding-bottom: 10px;
    padding-left: 10px;
}

@media(max-width:992px) {
    #press {
        padding: 20px;
    }

    #press .arrow-container {
        text-align: right;
        padding-right: 10px;
    }

    #press .press-arrow {
        margin-top: 10px !important;
        text-align: right !important;
    }

}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* IMPACT CATEGORIES */
#impact {
    padding-top: 50px;
}

#impact .categories {
    background-color: #333333;
    padding-top: 100px;
    padding-bottom: 100px;
}

#impact .category-title {
    width: 90%;
}

#impact .btn {
    padding: 10px 20px;
    background-color: #c72f31;
    color: #FFF;
    border: 1px solid #c72f31;
    border-radius: 30px;
    width: 50%;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
}

#impact .btn-container {
    margin-top: 50px;
    text-align: center;
}



.rounded-corners {
    border: 2px solid #c72f31;
    box-shadow: 3px 3px 8px rgba(199, 47, 49, 0.7);
}

.red-border {
    border: 2px solid #c72f31;
    box-shadow: 3px 3px 8px rgba(199, 47, 49, 0.7);
}

.fwd {
    font-family: 'space-semibold' !important;
}

.poster {
    margin-top: -200px;
}


@media(min-width:992px) {
    #impact .minusTop {
        margin-top: -200px !important;
    }

}

@media(max-width:992px) {
    #impact {
        padding: 20px;
    }

    #impact iframe {
        margin-top: 20px;
        padding-bottom: 50px;
    }

    #impact .categories {
        margin-top: 50px;
        padding: 20px;
    }

    #impact img {
        margin-top: 20px;
        /* padding: 10px; */
    }

    #impact .btn {
        width: 90%;
    }

    .poster {
        margin-top: -60px;
        width: 100%;
    }

    #impact .our-mission {
        margin-top: 0px !important;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* ARTICLES */
#articles {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}

#articles .categories-table {
    width: 100%;
    padding-top: 50px;
    text-align: center;
}

#articles .category-span {
    background-color: #007297;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    margin-right: 5px;
    margin-top: 5px;
    display: inline-block;
}

#articles .title {
    padding-top: 50px;
}

#articles .active {
    background-color: #c72f31;
}

#articles .articles-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

#articles .category-title {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: #c72f31;
    padding: 5px 10px;
    border-radius: 0px;
    color: white;
}

@media(max-width:992px) {
    #articles .articles-container {
        padding: 20px;
    }

    #articles .category-title {
        top: 60px;
    }
}

/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* Article */
#article {
    padding-top: 50px;
    padding-bottom: 50px;
}

#article .category {
    background-color: #c72f31;
    color: white;
    padding: 5px 10px;
    border-radius: 0px;
    margin-right: 5px;
    margin-top: 5px;
}

#article .content-container {
    width: 75%;
}

#article .back-container {
    margin-top: 50px;
}

.backBtn {
    background-color: #c72f31;
    color: white;
    padding: 5px 20px;
    border-radius: 0px;
}

#article .video iframe {
    width: 100% !important;
}

#article .swiper-button-next {
    color: #c72f31;
}

#article .swiper-button-prev {
    color: #c72f31;
}

@media(max-width:992px) {
    #article {
        padding: 20px;
    }

    #article .content-container {
        width: 95%;
    }

    #article .text {
        padding-top: 30px;
    }
}


#impact .our-mission {
    margin-top: -350px;
}


/************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************* CONTACT */
#contact {
    /* background-image: url('../images/thestory-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding-top: 50px;
    padding-bottom: 50px;
}

#contact .contact-form {
    margin-top: 50px;
    padding: 30px;
    background-color: #426e6d;
    width: 100%;
}

#contact .contact-form input {
    padding: 0px 10px;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #FFF;
    background-color: #426e6d;
    color: #FFF;
    margin-top: 30px;
    font-size: 18px;
}

#contact .contact-form .message {
    padding: 0px 10px;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #FFF;
    background-color: #426e6d;
    color: #FFF;
    margin-top: 30px;
    font-size: 18px;
    resize: none;
    overflow: auto;
}

#contact .contact-form .submitBtn {
    padding: 10px 40px;
    background-color: #c72f31;
    color: #FFF;
    border: 1px solid #c72f31;
    border-radius: 0px;
    width: 50%;
    text-align: center;
    transition: 0.3s;
    font-size: 20px;
    margin-right: 15px;
}

#contact .contact-form .submitBtn:hover {
    background-color: #FFF;
    color: #c72f31;
}




#contact .contact-form .message::placeholder {
    color: #FFF;
    opacity: 1;
}

#contact .contact-form input::placeholder {
    color: #FFF;
    opacity: 1;
}

@media(max-width:992px) {
    #contact {
        padding: 20px;
        padding-top: 50px;
    }
}


/*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************FOOTER */
#footer {
    background-color: #426e6d;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 10px;
}

#footer .title {
    font-size: 20px;
}

#footer a {
    color: white;
    transition: 0.3s;

}

#footer a:hover {
    color: #c72f31 !important;
    transition: 0.3s;
}

#footer #subscribe-form .email {
    border: 2px solid #c72f31;
    outline: none;
    border-radius: 0px;
    width: 95%;
    padding: 20px;
}

#footer #subscribe-form .submit {
    outline: none;
    background-color: #c72f31;
    border: 2px solid #c72f31;
    color: #FFF;
    border-radius: 0px;
    padding: 8px 10px;
    transition: 0.3s;

}

#footer #subscribe-form .submit:hover {
    background-color: #FFF;
    color: #c72f31;
    transition: 0.3s;
}

#footer .blood-overlay {
    position: absolute;
    top: -55px;
    left: 0;
    z-index: 1;
}

#footer .blood-overlay img {
    width: 150px;
}

@media(max-width:992px) {
    #footer {
        text-align: left;
        padding-left: 20px;
    }

    #footer .title {
        margin-top: 15px;
    }

    #footer .footer-logo-mobile {
        text-align: center;
    }


    #footer .social-icons {
        margin-top: 30px;
        text-align: center;
    }


    #footer .logo-container img {
        width: 150px;
    }

    #footer .blood-overlay {
        display: none;
    }
}


/*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************GENERAL */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.videoWrapper iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    background: transparent !important;
}

.secret {
    background-color: #FFF !important;
    color: #c72f31 !important;
    border-radius: 0px;
}

.submit-loader {
    width: 2em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

.submit-loader circle {
    fill: none;
    stroke: hsl(214, 0%, 100%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

/* Security checks */
.subscribo {
    position: absolute;
    bottom: 50px;
    left: 0;
}

.awards {
    display: block;
}

.awards-mobile {
    display: none;
}

.award-card-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.award-card-2 {
    position: absolute;
    top: 25%;
    left: 0;
}

.award-card-3 {
    position: absolute;
    top: 50%;
    left: 0;
}

.award-card-4 {
    position: absolute;
    top: 75%;
    left: 0;
}

.award-card-5 {
    position: absolute;
    top: 100%;
    left: 0;
}

.award-card-6 {
    position: absolute;
    top: 0;
    right: 0;
}

.award-card-7 {
    position: absolute;
    top: 25%;
    right: 0;
}

.award-card-8 {
    position: absolute;
    top: 50%;
    right: 0;
}

.award-card-9 {
    position: absolute;
    top: 75%;
    right: 0;
}

.award-card-10 {
    position: absolute;
    top: 100%;
    right: 0;
}

@media(max-width:992px) {
    .awards {
        display: none;
    }

    .awards-mobile {
        display: block;
    }

    #home .synopsis-top {
        margin-top: 20px;
    }
}