@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@-webkit-keyframes animateGradient {
    0% {
        background-position: left bottom
    }

    50% {
        background-position: right top
    }

    100% {
        background-position: left bottom
    }
}

@keyframes animateGradient {
    0% {
        background-position: left bottom
    }

    50% {
        background-position: right top
    }

    100% {
        background-position: left bottom
    }
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

html {
    font-size: 62.5%;
    overflow-x: hidden !important;
    letter-spacing: -.2px
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden !important
}

a {
    text-decoration: none !important
}

ul {
    list-style: none
}

.section-heading {
    font-weight: 600;
    font-size: 6rem;
    width: 68%;
    line-height: -4rem
}

@media (max-width: 991.98px) {
    .section-heading {
        font-size: 5rem;
        text-align: center;
        margin: 0 auto 5rem auto;
        width: 85%
    }
}

@media (max-width: 575.98px) {
    .section-heading {
        font-size: 4rem;
        width: 90%
    }
}

.color-black {
    color: rgba(31, 27, 27, 0.733)
}

.paragraph {
    font-size: 1.6rem;
    line-height: 3rem
}

.paragraph.dark {
    color: #484a4b
}

.paragraph.white {
    color: white
}

.container {
    padding: 0
}

.fad.fa-lightbulb-on::before, .fad.fa-search::before, .fad.fa-angle-double-down::before {
    opacity: var(--fa-primary-opacity, 0.5)
}

.fad.fa-lightbulb-on::after, .fad.fa-search::after, .fad.fa-angle-double-down::after {
    opacity: var(--fa-secondary-opacity, 1)
}

.button {
    width: 27.1rem;
    height: 6.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 4px solid #c7dffa;
    border-radius: 10rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #666b6d;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    letter-spacing: .1rem
}

.button i {
    margin-left: 1rem;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.button:focus, .button:hover {
    background-color: #c7dffa;
    color: white;
    outline: 0
}

.button:focus i, .button:hover i {
    color: white
}

.button__wrapper {
    margin: 0 auto
}

.button__wrapper .button:nth-child(n+2) {
    margin-left: 1.8rem
}

@media (max-width: 650px) {
    .button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 auto
    }

    .button__wrapper {
        width: 100%
    }

    .button__wrapper .button:nth-child(n+2) {
        margin: 1rem auto 0 auto
    }
}

.download-buttons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24.4rem;
    height: 8.1rem;
    background-color: grey;
    border-radius: 5rem;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    background-size: 200% 200% !important;
    background-position: center bottom !important
}

.download-buttons a i {
    font-size: 3.4rem;
    color: white
}

.download-buttons a .button-content {
    margin-left: 1.3rem;
    letter-spacing: .1rem
}

.download-buttons a .button-content h6 {
    font-size: 1.2rem;
    color: #ffd4e3
}

.download-buttons a .button-content span {
    display: block;
    font-size: 2rem;
    color: white;
    margin-top: .2rem;
    letter-spacing: initial
}

.download-buttons a:last-child .button-content h6 {
    color: #bbdef9
}

.download-buttons a.google-play {
    background: #C88050;
    filter: drop-shadow(0px 10px 10px rgba(245, 69, 144, 0.4));
    -webkit-filter: drop-shadow(0px 10px 10px rgba(245, 69, 144, 0.4));
    -moz-filter: drop-shadow(0px 10px 10px rgba(245, 69, 144, 0.4))
}

.download-buttons a.apple-store {
    background: #023D69;
    filter: drop-shadow(0px 10px 10px rgba(33, 120, 237, 0.4));
    -webkit-filter: drop-shadow(0px 10px 10px rgba(33, 120, 237, 0.4));
    -moz-filter: drop-shadow(0px 10px 10px rgba(33, 120, 237, 0.4))
}

.download-buttons a:hover {
    background-position: center top !important
}

.preloader {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    background: #0a35c2ab;
    /* background: linear-gradient(45deg, #ff00ae 0%, #9100ff 50%, #ff00ae 100%); */
    background-size: 200% 200%;
    background-position: left bottom;
    -webkit-animation-name: animateGradient;
    animation-name: animateGradient;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.preloader img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

body.loaded .preloader {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header {
    position: absolute;
    top: 5rem;
    z-index: 100;
    background-color: transparent;
    padding: 3.6rem 0 5rem 0;
    width: 100%
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.header__nav-primary {
    margin-bottom: 0
}

.header__nav-primary>li {
    list-style: none;
    display: inline-block
}

.header__nav-primary>li:first-child a {
    color: #f41976
}

.header__nav-primary>li:first-child i::before {
    opacity: var(--var-primary-opacity, 0.5)
}

.header__nav-primary>li:first-child i::after {
    opacity: var(--var-secondary-opacity, 1)
}

.header__nav-primary>li:nth-child(n+2) {
    margin-left: 3rem
}

.header__nav-primary>li>a {
    font-size: 1.6rem;
    color: #666b6d;
    font-weight: 500 !important
}

@media (min-width: 991.98px) {
    .header__nav-primary>li>a {
        position: relative
    }

    .header__nav-primary>li>a::before {
        content: "";
        display: block;
        width: 0;
        height: .15rem;
        background-color: #666b6d;
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%, 0);
        transform: translate(-50%, 0);
        -webkit-transition: all .25s ease;
        transition: all .25s ease
    }

    .header__nav-primary>li>a:hover::before {
        width: calc(100% - 2rem)
    }
}

.header__nav .nav__dropdown {
    width: auto;
    z-index: 100
}

.header__nav .nav__dropdown-info {
    border: 0;
    width: auto;
    height: auto;
    border-radius: initial;
    padding-left: 0;
    margin: 0;
    z-index: 100;
    position: relative
}

@media (min-width: 991.98px) {
    .header__nav .nav__dropdown-info::after {
        content: "";
        position: absolute;
        bottom: -2rem;
        width: 100%;
        height: 2rem;
        background-color: transparent;
        display: block
    }
}

.header__nav .nav__dropdown-box {
    width: 25rem;
    display: block;
    right: 0
}

.header__nav .nav__dropdown-box li a {
    font-size: 1.6rem;
    color: #666b6d;
    border-radius: 2rem;
    position: relative;
    padding: 1rem 0 1rem 2rem;
    cursor: pointer;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    display: block
}

.header__nav .nav__dropdown-box li:hover a {
    color: #000;
    background-color: #f0f7fc;
    font-weight: 600
}

.header__nav .nav__dropdown-box.shown {
    top: 0
}

@media (min-width: 991.98px) {
    .header__nav .nav__dropdown-box.shown {
        top: 0rem !important;
        visibility: visible !important;
        opacity: 1 !important
    }
}

@media (min-width: 991.98px) {
    .header__nav .nav__dropdown:hover .nav__dropdown-box {
        top: 0rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: translateY(5rem);
        transform: translateY(5rem)
    }
}

.header__nav span {
    display: none;
    position: absolute;
    top: 8%;
    right: 5%;
    font-size: 3rem;
    color: white;
    font-weight: 900 !important;
    cursor: pointer
}

@media (min-width: 991.98px) and (max-width: 1126px) {
    .header__nav {
        margin-left: 0
    }

    .header__nav li a {
        padding: 0 2rem/2
    }
}

.header__bars {
    width: 5rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: none;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid transparent
}

.header__bars::after {
    display: table;
    clear: both
}

.header__bars:hover {
    border: 1px solid white
}

.header__bars-bar {
    height: .2rem;
    display: block;
    background-color: #000;
    margin: .3rem 0;
    float: right
}

.header__bars-bar-1 {
    width: 100%
}

.header__bars-bar-2 {
    width: 70%
}

.header__bars-bar-3 {
    width: 40%
}

@media (min-width: 991.98px) and (max-width: 1270px) {
    .header .container {
        padding: 0 2rem
    }

    .header__nav-primary li:first-child {
        margin-right: 2rem
    }

    .header__nav-primary li:nth-child(n+3) {
        margin-left: 1.5rem
    }
}

@media (min-width: 991.98px) and (max-width: 1060px) {
    .header .container {
        padding: 0 4rem
    }
}

.header.fixed {
    position: fixed;
    top: 0;
    background-color: white
}

@media (max-width: 991.98px) {
    .header__wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 5rem
    }

    .header__nav {
        width: 100vw;
        height: 130vh;
        width: 100%;
        position: absolute;
        top: -5rem;
        right: 100%;
        overflow: hidden !important;
        background: #9341d4;
        background: linear-gradient(45deg, #9341d4 0%, #d98efb 100%);
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
        padding-top: 15%
    }

    .header__nav ul {
        display: block;
        width: 100%;
        margin-top: 5rem
    }

    .header__nav li {
        display: block;
        width: 100%;
        -webkit-transition: all .25s ease;
        transition: all .25s ease
    }

    .header__nav li a {
        font-size: 2rem;
        padding: 2.1rem 4.4rem;
        display: block;
        width: 100%;
        -webkit-transition: all .25s ease;
        transition: all .25s ease;
        color: white
    }

    .header__nav li i {
        color: white
    }

    .header__nav li:nth-child(n+2) {
        margin-left: 0
    }

    .header__nav li:hover {
        background-color: white
    }

    .header__nav li:hover a, .header__nav li:hover i {
        color: #9341d4
    }

    .header__nav .nav__dropdown-info {
        padding-left: 4.4rem
    }

    .header__nav .nav__dropdown-box {
        position: absolute;
        width: 100%;
        border-radius: initial;
        border: 0
    }

    .header__nav .nav__dropdown-box::before {
        display: none
    }

    .header__nav .nav__dropdown-box li a {
        font-size: 1.8rem
    }

    .header__nav .nav__dropdown-box.shown {
        top: 2rem
    }

    .header__nav span {
        display: block
    }

    .header__nav-primary {
        margin-left: 0
    }

    .header__nav .social {
        display: none
    }

    .header__bars {
        display: block
    }
}

@media (max-width: 640px) {
    .header__wrapper {
        padding: 0 5rem
    }
}

.header-2 {
    top: 0;
    padding: 4rem 0 4rem 0;
    background-color: white
}

@media (max-width: 991.98px) {
    .header-2 .header__nav {
        top: 0
    }
}

.header-2.fixed {
    position: fixed;
    top: 0;
    background-color: white
}

.customize-support .header {
    top: 8rem
}

.customize-support .header-2 {
    top: 3rem
}

.hero {
    width: 100vw;
    margin-top: 5rem
}

.hero__wrapper {
    width: calc(100% - 10rem);
    margin: 0 auto;
    border-radius: 3rem;
    background-color: #f0f7fc;
    padding: 18.4rem 0 9.9rem 0
}

.hero .main-heading {
    font-size: 8rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.4rem;
    width: 100%
}

.hero .paragraph {
    font-size: 2.4rem;
    line-height: 4rem;
    color: #474b4c;
    margin: 3.6rem 0 3.5rem 0
}

.hero .paragraph span {
    font-weight: 700
}

.hero .download-buttons a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.hero .download-buttons a:last-child {
    margin-left: 2rem
}

.hero .hero-img::before {
    content: "";
    display: block;
    position: absolute;
    width: 75.3rem;
    height: 75.3rem;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #C88050;
    background: linear-gradient(45deg, #FCCE6A 0%, #C88050 50%, #023D69 100%);
    background-size: 200% 200%;
    background-position: left bottom;
    filter: drop-shadow(0px 30px 20px rgba(147, 65, 212, 0.4));
    -webkit-filter: drop-shadow(0px 30px 20px rgba(147, 65, 212, 0.4));
    -moz-filter: drop-shadow(0px 30px 20px rgba(147, 65, 212, 0.4));
    -webkit-animation-name: animateGradient;
    animation-name: animateGradient;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@media (min-width: 991.98px) and (max-width: 1200px) {
    .hero__wrapper {
        padding: 18.4rem 1rem 9.9rem 1rem
    }

    .hero .main-heading {
        font-size: 6rem
    }

    .hero .paragraph {
        font-size: 2rem;
        line-height: 3.6rem
    }

    .hero .hero-img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    .hero .hero-img::before {
        -webkit-transform: scale(0.7) translateX(-50%);
        transform: scale(0.7) translateX(-50%);
        top: 0;
        left: 30%
    }

    .hero .download-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .hero .download-buttons a:last-child {
        margin-left: .5rem
    }
}

@media (max-width: 991.98px) {
    .hero__wrapper {
        width: calc(100% - 5rem)
    }

    .hero .main-heading {
        font-size: 5.5rem;
        text-align: center;
        margin-top: 3rem
    }

    .hero .paragraph {
        font-size: 2rem;
        line-height: 3.6rem;
        text-align: center
    }

    .hero .download-buttons {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin: 0 auto
    }

    .hero .hero-img {
        width: 100%;
        margin-top: 5rem
    }

    .hero .hero-img::before {
        -webkit-transform: scale(0.8) translate(-50%, 0);
        transform: scale(0.8) translate(-50%, 0);
        top: 0;
        left: 40%
    }
}

@media (max-width: 767.98px) {
    .hero .main-heading {
        font-size: 5rem
    }

    .hero .paragraph {
        font-size: 1.8rem;
        line-height: 3.4rem
    }

    .hero .download-buttons a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .hero .download-buttons a:last-child {
        margin-left: 0rem;
        margin-top: 1rem
    }

    .hero .hero-img {
        width: 100%
    }

    .hero .hero-img::before {
        -webkit-transform: scale(0.6) translate(-50%, 0);
        transform: scale(0.6) translate(-50%, 0);
        top: 0;
        left: 22.5%
    }
}

@media (max-width: 575.98px) {
    .hero .col-lg-6 {
        height: auto
    }

    .hero__wrapper {
        padding: 10rem 0
    }

    .hero .hero-img {
        width: 100% !important
    }

    .hero .hero-img img {
        width: 50% !important;
        height: 50% !important;
        -o-object-fit: cover !important;
        object-fit: cover !important
    }

    .hero .hero-img::before {
        -webkit-transform: scale(1) translate(-50%, 0) !important;
        transform: scale(1) translate(-50%, 0) !important;
        left: 50% !important;
        top: 10% !important;
        width: 40rem;
        height: 40rem
    }
}

.hero-2 {
    margin-top: 11.3rem
}

.hero-2 .hero__wrapper {
    padding: 10rem 0
}

.feature {
    width: 100vw;
    padding: 15rem 0
}

.feature .section-heading {
    margin-bottom: 5rem
}

.feature__box {
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.feature__box--2, .feature__box--4 {
    margin-top: 10rem
}

.feature__box--2:hover, .feature__box--4:hover {
    margin-top: 0
}

.feature__box--1:hover, .feature__box--3:hover {
    margin-top: 10rem
}

.feature__box--1 .feature__box__wrapper {
    background-color: #efdff7
}

.feature__box--2 .feature__box__wrapper {
    background-color: #ffe8c6
}

.feature__box--3 .feature__box__wrapper {
    background-color: #d0f3f2
}

.feature__box--4 .feature__box__wrapper {
    background-color: #ffdae8
}

.feature__box .icon {
    width: 24.2rem;
    height: 24.2rem;
    margin: 0 auto;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.feature__box .icon-1 {
    background: #9341d4;
    background: linear-gradient(45deg, #9341d4 0%, #d98efb 100%);
    filter: drop-shadow(0px 40px 15px rgba(147, 65, 212, 0.4));
    -webkit-filter: drop-shadow(0px 40px 15px rgba(147, 65, 212, 0.4));
    -moz-filter: drop-shadow(0px 40px 15px rgba(147, 65, 212, 0.4))
}

.feature__box .icon-2 {
    background: #ffdb8d;
    background: linear-gradient(45deg, #ffb16b 0%, #ffdb8d 100%);
    filter: drop-shadow(0px 40px 15px rgba(255, 186, 114, 0.4));
    -webkit-filter: drop-shadow(0px 40px 15px rgba(255, 186, 114, 0.4));
    -moz-filter: drop-shadow(0px 40px 15px rgba(255, 186, 114, 0.4))
}

.feature__box .icon-3 {
    background: #63e8e4;
    background: linear-gradient(45deg, #19a5a1 0%, #63e8e4 100%);
    filter: drop-shadow(0px 40px 15px rgba(79, 188, 186, 0.4));
    -webkit-filter: drop-shadow(0px 40px 15px rgba(79, 188, 186, 0.4));
    -moz-filter: drop-shadow(0px 40px 15px rgba(79, 188, 186, 0.4))
}

.feature__box .icon-4 {
    background: #ff8aaf;
    background: linear-gradient(45deg, #f2026b 0%, #ff8aaf 100%);
    filter: drop-shadow(0px 40px 15px rgba(245, 69, 144, 0.4));
    -webkit-filter: drop-shadow(0px 40px 15px rgba(245, 69, 144, 0.4));
    -moz-filter: drop-shadow(0px 40px 15px rgba(245, 69, 144, 0.4))
}

.feature__box .icon i {
    font-size: 8rem;
    color: white
}

.feature__box__wrapper {
    width: 100%;
    padding: 5.7rem .5rem .5rem .5rem;
    border-radius: 2.5rem;
    margin-top: 5rem
}

.feature__box--content {
    background-color: white;
    position: relative;
    padding: 3.7rem 2rem 2.1rem 2rem;
    border-radius: 2rem;
    text-align: center
}

.feature__box--content::before {
    content: "";
    width: 4.8rem;
    height: 2.2rem;
    background: url(../images/arrow.png) no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.feature__box--content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    width: 80%;
    margin: 0 auto 3.4rem auto
}

@media (max-width: 991.98px) {
    .feature__box {
        margin-top: 5rem !important
    }
}

@media (max-width: 575.98px) {
    .feature {
        padding: 10rem 2rem
    }
}


.step {
    width: 100vw;
    margin-top: 3rem
}

.step__wrapper {
    margin: 5rem 0;
    background-color: #fff6e9;
    padding: 15rem 0;
    width: calc(100% - 10rem);
    margin: 0 auto;
    border-radius: 3rem
}

.step .section-heading {
    text-align: center;
    margin: 0 auto 5rem auto
}

.step__box {
    text-align: center
}

.step__box .image {
    width: 100%;
    filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4));
    -webkit-filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4));
    -moz-filter: drop-shadow(0px 40px 20px rgba(255, 186, 114, 0.4))
}

.step__box .image img {
    width: 100%
}

.step__box .content {
    margin-top: 4.5rem
}

.step__box .content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f41675;
    margin-bottom: 2.5rem;
    line-height: -4rem;
    letter-spacing: .1rem
}

.step__box .content h3 span {
    display: block;
    font-size: 4rem;
    color: #000;
    letter-spacing: initial
}

.step__box .content .paragraph {
    width: 94%
}

.step .button {
    border: 4px solid #ffd588
}

.step .button:focus, .step .button:hover {
    background-color: #ffd588
}

.step .button__wrapper {
    margin-top: 3.4rem
}

.step .button__wrapper {
    margin-top: 5rem
}

.step .button__wrapper a {
    background: #1369ec;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(19, 105, 236, 0)), color-stop(50%, rgba(255, 177, 107, 0)), color-stop(51%, #ffb16b), to(#ffdb8d));
    background: linear-gradient(0deg, rgba(19, 105, 236, 0) 0%, rgba(255, 177, 107, 0) 50%, #ffb16b 51%, #ffdb8d 100%);
    background-size: 200% 200%;
    background-position: center bottom
}

.step .button__wrapper a:hover {
    background-position: center top;
    border: none;
    filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.4));
    -webkit-filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.4));
    -moz-filter: drop-shadow(0px 10px 20px rgba(255, 186, 114, 0.4))
}

@media (max-width: 991.98px) {
    .step__wrapper {
        padding: 5rem 0
    }

    .step__box .image img {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        width: auto;
        margin: 0 auto
    }

    .step__box .content {
        margin: 0
    }

    .step__box .content .paragraph {
        width: 60%;
        margin: 0 auto
    }
}

@media (max-width: 768px) {
    .step__wrapper {
        width: calc(100% - 5rem);
        padding: 5rem 2rem
    }
}

.questions-img {
    text-align: right;
    position: relative
}

.questions-img img {
    z-index: 10;
    position: relative;
    filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
    -webkit-filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2));
    -moz-filter: drop-shadow(0px 20px 10px rgba(75, 80, 84, 0.2))
}

.footer {
    width: 100vw;
    margin-top: 3rem;
    margin-bottom: 5rem
}

.footer__wrapper {
    padding: 15rem 0;
    width: calc(100% - 10rem);
    margin: 0 auto;
    border-radius: 3rem;
    background-color: #f0f7fc
}

.footer__info--logo {
    margin-bottom: 5.6rem
}

.footer__info--content .paragraph {
    width: 76%;
    margin-bottom: 3rem
}

.footer__list ul li:first-child {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5.6rem
}

.footer__list ul li:nth-child(n+2) {
    margin-bottom: 1.7rem
}

.footer__list ul li a {
    font-size: 1.6rem;
    color: #707577;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

.footer__list ul li a:hover {
    color: #000
}

.footer__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer .download-buttons {
    margin-right: 5.7rem
}

.footer .download-buttons h5 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5.9rem
}

.footer .download-buttons a:last-child {
    margin-top: 1rem
}

.footer__copy {
    margin-top: 1.8rem
}

.footer__copy h6 {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 4rem;
    letter-spacing: .1rem;
    color: #707577
}

@media (max-width: 991.98px) {
    .footer__content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer__wrapper {
        width: calc(100% - 5rem);
        text-align: center;
        padding: 10rem 0 5rem 0
    }

    .footer__info--content .paragraph {
        margin: 0 auto 3rem auto
    }

    .footer__list {
        margin-top: 3rem
    }

    .footer__list ul li:first-child {
        margin-bottom: 3rem
    }

    .footer .download-buttons {
        margin-right: 0
    }

    .footer .download-buttons h5 {
        margin-bottom: 3rem
    }

    .footer .download-buttons a {
        margin: 0 auto;
        text-align: left
    }

    .footer__copy {
        width: 100%;
        text-align: center;
        margin-top: 4rem
    }
}

/*# sourceMappingURL=style.css.map */