@font-face {
    font-family: Circe;
    src: url("../fonts/Circe-Regular.ttf");
}

@font-face {
    font-family: Circe;
    font-weight: bold;
    src: url("../fonts/Circe-Bold.ttf");
}

@font-face {
    font-family: Circe;
    font-weight: 800;
    src: url("../fonts/Circe-ExtraBold.ttf");
}

body{
    margin: 0;
    font-family: Circe;
}

.landing{
    min-height: 100vh;
}

@keyframes bg-zoom-anim {
    from{
        transform: scale(1.1);
    }
    to{
        transform: scale(1);
    }
}

.part-1{
    padding: 5%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.part-1-bg{
    animation: 2s bg-zoom-anim;
    background: url("../images/Hospital-Gradient.jpg");
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.thankyou{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: 100%;
}

@keyframes thankyou-anim {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.thankyou-small{
    font-weight: 800;
    font-size: 2.5rem;
    animation: .5s ease-in-out thankyou-anim;
    -webkit-animation-delay: 250ms;
    -moz-animation-delay: 250ms;
    -o-animation-delay: 250ms;
    animation-delay: 250ms;
    animation-fill-mode: both;
}

.thankyou-big{
    font-weight: 800;
    font-size: 5.5rem;
    margin-top: 7vh;
    color: #00ff72;
    animation: 2s ease-in-out thankyou-anim;
    -webkit-animation-delay: 500ms;
    -moz-animation-delay: 500ms;
    -o-animation-delay: 500ms;
    animation-delay: 500ms;
    animation-fill-mode: both;
}

.part-2{
    position: relative;
    background: url("../images/Plane.jpg");
    background-size: cover;
    background-position: center;
}

.country-flag{
    position: absolute;
    left: 7vw;
    top: 7vh;
    box-shadow: 0px 10px 20px #00000075;
    border-radius: 10px;
}

.transition-gradient{
    position: absolute;
    width: 100%;
    height: 800px;
    top: -400px;
    background: url("../images/transition-gradient.png");
    background-size: contain;
}

.part-2 .content{
    padding: 10px;
}

.stats{
    margin-top: 25vh;
    display: flex;
    justify-content: space-around;
    color: white;
    font-size: 2rem;
    text-align: center;
}

.recovered{
    color: #00fe72;
}

.deaths{
    color: #ff5169;
}

.part-3{
    background-color: #011228;
    position: relative;
}

.part-3 .content{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donation-block{
    flex: 1;
    padding: 30px;
    color: white;
    z-index: 1;
    background: #ffffff0d;
    border-radius: 10px;
}

.btn-donate{
    background: #00f770;
    padding: 15px;
    border: transparent;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: .25s ease-in-out;
}

.btn-donate:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.slider-btn{
    background: white;
    width: 50px;
    height: 50px;
    border: transparent;
    font-weight: bold;
    margin: 20px;
    transition: .25s ease-in-out;
    border-radius: 5px;
}

.slider-btn:hover{
    transform: scale(1.05);
    cursor: pointer;
}


.slider{
    flex: 3;
    margin-top: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes donation-img-slide {
    from{
        opacity: 1;
        transform: translateY(0px);
    }
    to{
        opacity: 0;
        transform: translateY(10px);
    }
}

#donationImg{
    border-radius: 5px;
}

.donation-img-anim-fadeout{
    animation: .25s ease-in-out donation-img-slide !important;
}

.donation-img-anim-fadeout-reverse{
    animation: .25s ease-in-out donation-img-slide reverse !important;
}