@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-BoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-Light.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-LightItalic.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: italic;
}

@font-face {
    font-family: 'LEMONMILK';
    src: url('../fonts/LEMONMILK-Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
}


/* Colors */

.red {
    color: #EF3D3D;
}

.green {
    color: #3D993D;
}

.orange {
    color: #FDAB01;
}

.blue {
    color: #346BB3;
}

.bg-violet {
    background: #642F86;
}

.bg-green {
    background: #3D993D;
}


/* Structure */

.flex {
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

section {
    width: 100%;
    overflow: hidden;
}

section .container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}


.title {
    font-family: 'LEMONMILK', Sans-Serif;
    font-size: 70px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1em;
}


.hero {
    display: flex;
    height: calc(80vh);
    width: 100%;
    position: relative;
}

section.hero .container {
    justify-content: center;
}

.hero video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero .title {
    text-align: left;
    position: relative;
    display: inline-block;
    align-items: center;
    flex-wrap: wrap;
    width: auto;
}

.hero .title .missing-reviews {
    text-align: right;
    width: 100%;
    font-size: 40px;
    display: block;
    font-weight: 500;
}


/* MISSING KIDS */

.missing-kids {
    padding: 100px 0;
    background: #242424;
    width: 100%;
    position: relative;
}

.missing-kids h1 {
    text-align: center;
    margin-bottom: 80px;
}
.swiper-main {
    position: relative;
}
.swiper-main .swiper-slide {
    background: transparent;
    padding: 0 20px;
}

.missing-kid {
    display: flex;
    border-radius: 10px;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: stretch;
    margin-bottom: 80px;
    height: 500px;
}

@media (min-width: 768px) {
    .missing-kid {
        flex-wrap: nowrap;
    }

}

.missing-kid-photo {
    width: 40%;
    height: 100%;
    position: relative;
}

.missing-kid-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.missing-kid-info {
    width: 60%;
    background: #ffffff;
    padding: 70px;
    font-family: Montserrat, sans-serif;
}

@media (max-width: 767px) {
    .missing-kid-info {
        width: 100%;
    }

    .missing-kid-photo {
        width: 100%;
    }

    .missing-kid {
        height: auto;
    }
}

.missing-kid-info .name {
    font-size: 30px;
    font-family: 'LEMONMILK';
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3em;
}

.missing-kid-state {
    display: block;
    margin: 0 auto;
    width: calc(40vw);
}


/* SCROLLING LOGOS */

.logos-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 100px;
}

.logos-slider .slide {
    min-width: 26%; /* Adjust based on the number of images and desired size */
    animation: scroll 5s linear infinite;
    padding: 20px 0;
}

.logos-slider img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.button-next, .button-prev {
    text-align: center;
    width: 40px;
    margin: 0 auto;
}

.button-prev {
    transform: translateX(-25px);
}

.button-next {
    margin-top: -20px;
    transform: translateX(25px);
}

.triangle {
    width: 0;
    height: 0;
    border: 25px solid transparent;
    border-top: 0;
    border-bottom: 20px solid #346BB3;
    margin: 0 auto;
    transform: scale(1.5);
}

.button-next .triangle {
    transform: rotate(90deg) scale(1.5);
}
.button-next {
    transform: translateX(47.5vw);
}
.button-prev {
    transform: translateX(-48vw);
}
.button-prev .triangle {
    transform: rotate(-90deg) scale(1.5);
}


.help-us .container {
    display: block;
}

.help-us {
    padding: 80px 0;
}

.help-us h1 {
    text-align: center;
    margin-bottom: 30px;
}

.help-us h2 {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.4em;
}

.how-to-help {
    align-items: center;
}

@media (max-width: 767px) {
    .how-to-help {
        flex-wrap: wrap;
    }
}

.how-to-help-video {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.how-to-help-video video {
    width: 100%;
    height: auto;
}

.how-to-help-instructions {
    width: 50%;
    font-family: Montserrat, sans-serif;
}

@media (max-width: 767px) {
    .how-to-help-instructions,
    .how-to-help-video {
        width: 100%;
    }
}


.how-to-help-instructions ul {
    list-style: none;
}

.how-to-help-instructions li {
    margin-bottom: 40px;
    color: #ffffff;
    align-items: center;
    padding-left: 60px;
    display: flex;
    font-size: 22px;
}

.how-to-help-instructions li span {
    text-indent: -45px;
}

.how-to-help-instructions li span,
.how-to-help-instructions li div {
    /*display: inline-block;*/
    /*vertical-align: middle;*/

}

.how-to-help-instructions li div,
.how-to-help-instructions li img {
    display: inline;
}
.how-to-help-instructions li div {
    font-size: 14px;
    line-height: 18px;
}
.how-to-help-instructions li .number {
    font-size: 50px;
    font-family: 'LEMONMILK';
    margin-right: 20px;
}

.how-to-help-instructions li img {
    height: 15px;
}

.be-the-difference p {
    color: #ffffff;
    font-size: 20px;

    font-family: Montserrat, sans-serif;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, -0px);
    }
}

.second-photo {
    position: absolute;
    z-index: 10;
    left: 0;
    animation-name: fade-in;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0;
}

@keyframes fade-in {
    0% {
        opacity: 0
    }
    1% {
        opacity: 1
    }
    50% {
        opacity: 1
    }
    51% {
        opacity: 0
    }
}

.hero {
    background: #000000;
}

.hero-slider {
    display: flex;
    width: 500%;
    animation: bannermove 30s linear infinite;
    position: absolute;
    z-index: 100;
    height: 100%;
}

.hero-slider div {
    width: 100%;
}

.hero-slider ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    height: 100%;
}

.hero-slider li {
    position: relative;
    width: 100%;
    background: blue;
}

.hero-slider li {
    width: calc(40vw);
    background: blue;
    height: 100%;
    min-width: 380px;
}

.hero-slider li img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    opacity: 1;
    filter: grayscale(1) brightness(1.5) contrast(1.3) !important;
}

.hero-slider li:after {
    background-image: url(../img/noise.svg);
    background-repeat: repeat;
    background-size: 150%;
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8 !important;
}

.hero-slider li:nth-of-type(n+1):after {
    background-color: green;
}

.hero-slider li:nth-of-type(2n+1):after {
    background-color: yellow;

}

.hero-slider li:nth-of-type(3n+1):after {
    background-color: violet;
    opacity: 0.4;
}

.hero-slider li:nth-of-type(4n+1):after {
    background-color: blue;
}

.hero-slider li:nth-of-type(5n+1):after {
    background-color: red;
}

@keyframes bannermove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

p {

    font-family: Montserrat, sans-serif;
}

.swiper-arrow {
    height: 50px;
    top: calc(50% - 50px);
    z-index: 292929;
    position: absolute;
    width: 100%;
}
header {
    z-index: 999999 !important;
}