/**
************************************
* General
************************************
*/
html {
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}
html,
body {
    overflow-x: hidden !important;
}
section {
    scroll-snap-align: start;
    position: relative;
}
.green-txt {
    color: #009900;
}
.bg-custom-dark {
    background-color: #080808;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
    font-family: "Open Sans", sans-serif;
    font-weight: 400 !important;
}
h3 {
    font-size: 50px !important;
}
/**
************************************
* Homepage hero
************************************
*/
.hp-header {
    height: 100vh;
}
.header-title-container {
    position: inherit;
    z-index: 2;
    top: 54%;
}
.header-title-container h1 {
    font-size: 80px;
    font-weight: 800 !important;
}
.header-image-container {
    position: absolute;
    right: 50%;
    top: 20px;
    transform: translate(50%, 0%);
    z-index: 1;
}
.header-image-container img {
    animation: float 12s ease-in-out infinite;
    box-shadow: none !important;
    width: 115%;
}
/**
************************************
* Homepage second page
************************************
*/
.donald-bg {
    background-image: url('../images/donald-duck.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    margin-top: -200px;
    z-index: -1;
}
.donald-bg .section-info-container {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.donald-bg h3 {
    font-weight: 300 !important;
}
.donald-bg h3.donald-virtual-title {
    font-weight: 800 !important;
}
#systems .card {
    background-color:#080808;
    color: #fff;
}
/**
************************************
* Homepage third page
************************************
*/
.systems-title {
    padding-bottom: 30px !important;
}
.systems-info-container h4 {
    font-size: 30px;
    font-weight: 300 !important;
}
.systems-info-container h5 {
    font-size: 28px;
}
/**
************************************
* Homepage forth page
************************************
*/
.happy-children-bg {
    background-image: url('../images/happy-v2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.happy-children-bg h3 {
    font-size: 70px !important;
}
.happy-children-bg h4 {
    font-size: 30px;
}
.platform-txt {
    font-size: 30px !important;
}
.happy-text {
    font-weight: 800 !important;
}
/**
************************************
* Keyframe animation
************************************
*/
@keyframes float {
    0% {
        transform: translatey(0px) translatex(0px);
    }
    25% {
        transform: translatey(-30px) translatex(-50px) rotate(5deg);
    }
    50% {
        transform: translatey(20px) rotate(-5deg) translatex(90px);
    }
    75% {
        transform: translatey(30px) rotate(5deg) translatex(50px);
    }
    100% {
        transform: translatey(0px) translatex(0px);
    }
}

/**
************************************
* Media quries
************************************
*/
@media screen and (max-width:768px) {
    h3,
    .happy-children-bg h3 {
        font-size: 7vw !important;
    }
    .donald-bg h3.donald-virtual-title {
        font-size: 8vw !important;
    }
    .hp-header {
        height: 500px !important;
    }
    .header-image-container img {
        width: 300px;
    }
    .header-image-container {
        top: 2.5%;
    }
    .header-title-container h1 {
        font-size: 10vw;
    }
    .header-title-container h3 {
        padding: 0px 20px;
    }
    .donald-bg {
        background-image: url('../images/donald-duck-gif-mobile.gif');
        background-position: center left -50px;
        margin-top: 0px !important;
    }
    .donald-bg .section-info-container {
        position: initial;
        transform: none;
        padding-top: 50px;
    }
    .donald-bg .section-info-container h3 {
        text-align:center !important;
    }
    .systems-title {
        padding-bottom: 2rem !important;
    }
    #systems {
        height: auto !important;
    }
    .systems-info-container h4 {
        font-size: 5vw !important;
    }
    .systems-info-container h5 {
        font-size: 24px !important;
    }
    .happy-children-bg {
        background-image: url('../images/happy-mobile.jpg');
        height: auto !important;
        padding-top: 50px;
    }
    .happy-children-bg h4 {
        font-size: 5vw !important;
    }
}