@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,500&amp;display=swap";

body {
    scroll-behavior: smooth;
    background-color: #f8f8f8;
    background-image: url(https://dwq3yv87q1b43.cloudfront.net/public/static/mobile-app/backgroundSvg.svg);
    background-attachment: fixed
}

.appTop {
    height: 82vh;
    overflow: none;
    background: #ff416c;
    background: -webkit-linear-gradient(to right, #FF416C, #FF4B2B);
    background: linear-gradient(to right, #FF416C, #FF4B2B)
}

.appTop .navbar {
    background: 0 0
}

.appTop .appTopText {
    height: 20vw;
    font-family: playfair display, serif;
    display: flex;
    justify-content: center;
    align-items: center
}

.appTop .appTopText button {
    font-weight: 700
}

.appTop .appTopText h2 {
    font-size: 6vw;
    color: #f5f5f5;
    font-weight: 700
}

.appTop .row p {
    color: azure;
    font-size: 20px
}

.appTop .mobileimg {
    background: rgba(0, 0, 0, .15);
    text-align: center;
    height: 400px;
    width: 100%;
    position: relative;
    display: block;
    border-radius: 50%;
    animation: MoveUpDown 3s linear infinite
}

@keyframes MoveUpDown {

    0%,
    100% {
        bottom: 10px
    }

    50% {
        bottom: 20px
    }
}

.appTop .img1 {
    object-fit: contain;
    object-position: center;
    max-height: 100%
}

.appDescription .row .appText {
    font-family: playfair display, serif;
    display: inline-grid;
    align-items: center;
    align-content: center
}

.appDescription .row .appText h3 {
    font-size: 2.5rem;
    font-weight: 700
}

.appDescription .row .appText p {
    font-size: 20px;
    font-family: playfair display, serif
}

.appDescription .row .appImg {
    height: 400px
}

.appDescription .row .appImg1 {
    background: url(https://dwq3yv87q1b43.cloudfront.net/public/static/mobile-app/android-mobile-app-screenshot/fit-in/860x1458/1.svg) no-repeat;
    background-position: center;
    background-size: contain
}

.appDescription .row .appImg2 {
    background: url(https://dwq3yv87q1b43.cloudfront.net/public/static/mobile-app/android-mobile-app-screenshot/fit-in/860x1458/2.svg) no-repeat;
    background-position: center;
    background-size: contain
}

.appDescription .row .appImg3 {
    background: url(https://dwq3yv87q1b43.cloudfront.net/public/static/mobile-app/android-mobile-app-screenshot/fit-in/860x1458/3.svg) no-repeat;
    background-position: center;
    background-size: contain
}

.appDescription .row .appImg4 {
    background: url(https://dwq3yv87q1b43.cloudfront.net/public/static/mobile-app/android-mobile-app-screenshot/fit-in/860x1458/4.svg) no-repeat;
    background-position: center;
    background-size: contain
}

.appDescription .row .appImg6 {
    background: url(../png/securityicon.png) no-repeat;
    background-position: center;
    background-size: contain
}

.footer {
    background: url(../jpg/cheap_flights.jpg) no-repeat;
    background-position: bottom left;
    background-size: initial;
    height: 300px;
    background-color: #fff
}

@media only screen and (max-width:800px) {
    .appTop {
        height: 100vh
    }

    .appTop .appTopText {
        margin-bottom: 100px
    }

    .appDescription .row .appImg {
        height: 200px
    }

    .appDescription .row .appText h3 {
        font-size: 22px
    }

    .appDescription .row .appText p {
        font-size: 16px
    }
}

.animation-element {
    opacity: 0
}

.animation-element.slide-left {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(-100px, 0px, 0px)
}

.animation-element.slide-left.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px)
}

.animation-element.slide-right {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(100px, 0, 0)
}

.animation-element.slide-right.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px)
}

.animation-element.slide-up {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(0, 100px, 0)
}

.animation-element.slide-up.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px)
}

.modal-content {
    background: -webkit-linear-gradient(to right, #FF416C, #FF4B2B) !important;
    background: linear-gradient(to right, #FF416C, #FF4B2B) !important
}

.modal-body {
    width: 90%;
    margin: 0 auto;
    background: rgba(255, 255, 255, .2);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border: 10px solid rgba(255, 255, 255, .2);
    border-bottom: none;
    padding: 30px;
    color: #fff;
    font-size: 20px;
    text-align: center
}

.modal-body h1 {
    font-weight: 700
}

.modal-body .img1 {
    animation: MoveUpDown 3s linear infinite;
    position: relative
}