*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
}
a,
a::before,
a::after {
    font-family: inherit;
    text-decoration: none;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.6rem;
    background-color: #f9f9f9;
    font-family: "Poppins", sans-serif;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.dir-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dir-col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}
.dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.dir-row-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.align-items-around {
    -webkit-box-align: space-around;
    -ms-flex-align: space-around;
    align-items: space-around;
}
.align-items-between {
    -webkit-box-align: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
}
.align-items-evenly {
    -webkit-box-align: space-evenly;
    -ms-flex-align: space-evenly;
    align-items: space-evenly;
}
.navDrop {
    -webkit-transform: scaleY(1) !important;
    transform: scaleY(1) !important;
    opacity: 1 !important;
}
@-webkit-keyframes homeImageFloat {
    0% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
    }
    50% {
        -webkit-transform: translateY(-3.5rem);
        transform: translateY(-3.5rem);
    }
    100% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
    }
}
@keyframes homeImageFloat {
    0% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
    }
    50% {
        -webkit-transform: translateY(-3.5rem);
        transform: translateY(-3.5rem);
    }
    100% {
        -webkit-transform: translateY(0rem);
        transform: translateY(0rem);
    }
}
#backToTop {
    display: block;
    opacity: 0;
    background: #814096;
    border: 0.3rem solid rgba(255, 255, 255, 0.5);
    z-index: 10000;
    width: 5.7rem;
    height: 5.7rem;
    cursor: pointer;
    font-size: 2.3rem;
    color: #fff;
    border-radius: 50rem;
    position: fixed;
    right: 3%;
    bottom: 3%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#backToTop:hover {
    background: #f83292;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    padding-left: 5% !important;
    padding-right: 5% !important;
    z-index: 1;
}
@media (max-width: 991px) {
    .header {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.header button {
    font-size: 2.3rem;
    color: #814096;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    background: none;
}
.header button:hover {
    color: #f83292;
}
.header__logo {
    font-size: 2.3rem;
    color: #814096;
    z-index: 1001;
}
.header__logo > span {
    color: #f83292;
}
.header__navbar {
    gap: 1rem;
}
.header__navbar > ul {
    list-style-type: none;
}
.header__navbar-link {
    padding: 1rem 1.5rem;
    border-radius: 150rem;
    font-size: 1.7rem;
    color: #814096;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header__navbar-link:hover,
.header__navbar-link:active {
    color: #f83292;
    background-color: rgba(129, 64, 150, 0.1);
}
.header__cta {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.header__cta:hover,
.header__cta:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.header__cta:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.home {
    height: 100vh;
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-top: 67px;
    background: url("../images/home-bg-img.png") no-repeat;
    background-size: cover;
    background-position: top;
}
@media (max-width: 991px) {
    .home {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.home__content {
    gap: 3rem;
}
.home__content-title {
    font-size: 5.5rem;
    color: #333;
    text-transform: uppercase;
    line-height: 1.1;
}
.home__content-title > span {
    color: #f83292;
    text-transform: inherit;
}
.home__content-description {
    font-size: 2.3rem;
    color: #666;
    text-transform: lowercase;
}
.home__content-cta {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.home__content-cta:hover,
.home__content-cta:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.home__content-cta:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.home__image > img {
    width: 40vw;
    -webkit-animation: homeImageFloat 1.2s linear infinite;
    animation: homeImageFloat 1.2s linear infinite;
}
.features {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
}
@media (max-width: 991px) {
    .features {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.features__heading {
    text-align: center;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding-bottom: 3rem;
}
.features__container {
    gap: 2.5rem;
}
.features__container-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
    flex: 1 1 30rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
.features__container-box .image {
    height: 15rem;
}
.features__container-box .title {
    font-size: 2.3rem;
    color: #333;
    padding-top: 1rem;
}
.features__container-box .description {
    font-size: 1.5rem;
    color: #666;
    padding: 2rem 0;
}
.features__container-box .cta {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.features__container-box .cta:hover,
.features__container-box .cta:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.features__container-box .cta:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.about {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
    background: url("../images/about-bg.png") no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 991px) {
    .about {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.about__heading {
    text-align: center;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding-bottom: 3rem;
}
.about__container-image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}
.about__container-image > img {
    width: 100%;
}
.about__container-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}
.about__container-content .title {
    font-size: 2.3rem;
    color: #333;
}
.about__container-content .description {
    font-size: 1.7rem;
    color: #666;
    padding: 1rem 0;
}
.about__container-content .buttons {
    padding-top: 2rem;
    gap: 2rem;
}
.about__container-content .buttons .downloadApp {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.about__container-content .buttons .downloadApp:hover,
.about__container-content .buttons .downloadApp:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.about__container-content .buttons .downloadApp:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.newsletter {
    padding: 4rem;
    background: url(../images/subscribe-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.newsletter__heading {
    color: #fff;
    font-size: 3.5rem;
    text-transform: uppercase;
}
.newsletter__description {
    color: #fff;
    font-size: 1.7rem;
    margin: 2rem auto;
}
.newsletter__subForm {
    max-width: 70rem;
    border: 0.2rem solid #fff;
    padding: 0.5rem;
    border-radius: 5rem;
    margin: 2rem auto;
    height: 5.5rem;
}
.newsletter__subForm .email {
    padding: 0 2rem;
    font-size: 1.7rem;
    background: none;
    width: 100%;
    color: #fff;
    text-transform: none;
    background: none;
}
.newsletter__subForm .email::-webkit-input-placeholder {
    color: #f9f9f9;
    text-transform: capitalize;
}
.newsletter__subForm .email:-ms-input-placeholder {
    color: #f9f9f9;
    text-transform: capitalize;
}
.newsletter__subForm .email::-ms-input-placeholder {
    color: #f9f9f9;
    text-transform: capitalize;
}
.newsletter__subForm .email::placeholder {
    color: #f9f9f9;
    text-transform: capitalize;
}
.newsletter__subForm .Subscribe {
    background: #fff;
    width: 20rem;
    font-size: 1.7rem;
    border-radius: 5rem;
    cursor: pointer;
}
.newsletter__subForm .Subscribe:hover {
    color: #f83292;
}
.review {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
}
@media (max-width: 991px) {
    .review {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.review__heading {
    text-align: center;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding-bottom: 3rem;
}
.review__container {
    gap: 2.5rem;
}
.review__container-box {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
    flex: 1 1 30rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
.review__container-box .fa-quote-right {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    color: #f83292;
    opacity: 0.3;
}
.review__container-box .user img {
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 7rem;
    width: 7rem;
    margin-top: 2rem;
}
.review__container-box .user h3 {
    color: #f83292;
    font-size: 1.7rem;
}
.review__container-box .user .stars i {
    color: #814096;
    font-size: 1.5rem;
    padding: 1rem 0;
}
.review__container-box .comment {
    color: #666;
    font-size: 1.5rem;
    padding: 1rem;
}
.pricing {
    background: #fff;
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
}
@media (max-width: 991px) {
    .pricing {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.pricing__heading {
    text-align: center;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding-bottom: 3rem;
}
.pricing__container {
    gap: 2.5rem;
}
.pricing__container-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 27rem;
    flex: 1 1 27rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
.pricing__container-box:nth-child(2),
.pricing__container-box:hover {
    border: 0.2rem solid #f83292;
}
.pricing__container-box .title {
    color: #f83292;
    font-size: 2.3rem;
    padding-top: 1rem;
}
.pricing__container-box .price {
    font-size: 3.5rem;
    color: #f83292;
    padding: 1rem 0;
}
.pricing__container-box .price > span {
    font-size: 1.7rem;
}
.pricing__container-box > ul {
    padding: 1rem 0;
    list-style: none;
}
.pricing__container-box > ul > li {
    font-size: 1.7rem;
    color: #666;
    padding: 0.5rem 0;
}
.pricing__container-box > ul > li .fa-check {
    color: lightgreen;
}
.pricing__container-box > ul > li .fa-times {
    color: tomato;
}
.pricing__container-box .btn {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.pricing__container-box .btn:hover,
.pricing__container-box .btn:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.pricing__container-box .btn:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.contact {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
}
@media (max-width: 991px) {
    .contact {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.contact__background {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}
.contact__background > img {
    width: 100%;
    padding: 2rem;
}
.contact__form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
.contact__form .heading {
    text-align: left;
    padding: 0;
    padding-bottom: 2rem;
}
.contact__form .inputBox {
    position: relative;
}
.contact__form .inputBox input,
.contact__form .inputBox textarea {
    width: 100%;
    background: none;
    color: #666;
    margin: 1.5rem 0;
    padding: 0.5rem 0;
    font-size: 1.7rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
    text-transform: none;
}
.contact__form .inputBox textarea {
    resize: none;
    height: 13rem;
}
.contact__form .inputBox label {
    position: absolute;
    top: 1.7rem;
    left: 0;
    font-size: 1.7rem;
    color: #666;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}
.contact__form .inputBox input:focus ~ label,
.contact__form .inputBox input:valid ~ label,
.contact__form .inputBox textarea:focus ~ label,
.contact__form .inputBox textarea:valid ~ label {
    top: -0.5rem;
    font-size: 1.5rem;
    color: #f83292;
}
.contact__form .btn {
    display: inline-block;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f83292),
        to(#814096)
    );
    background: linear-gradient(to right, #f83292, #814096);
    padding: 1rem 2.5rem;
    border-radius: 10rem;
    color: #fff;
    font-size: 1.7rem;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.contact__form .btn:hover,
.contact__form .btn:focus {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.contact__form .btn:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.footer {
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding: 4rem;
    background: url(../images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}
@media (max-width: 991px) {
    .footer {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }
}
.footer__container {
    margin-bottom: 3rem;
    gap: 3rem;
}
.footer__container-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
    flex: 1 1 25rem;
}
.footer__container-box h3 {
    font-size: 2.3rem;
    padding: 1rem 0;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 1rem;
}
.footer__container-box p {
    font-size: 1.7rem;
    padding: 0.5rem 0;
    color: #f9f9f9;
}
.footer__container-box a {
    display: block;
    font-size: 1.7rem;
    padding: 0.5rem 0;
    color: #f9f9f9;
}
.footer__container-box a:hover {
    text-decoration: underline;
}
.footer__container-box .info i {
    margin: 0.5rem 0;
    margin-right: 1rem;
    border-radius: 50%;
    background: #fff;
    color: #f83292;
    font-size: 1.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
}
.footer__credit {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.1rem;
    color: #fff;
    border-top: 0.1rem solid #fff5;
    padding: 3rem 0;
    padding-bottom: 0;
    text-align: center;
}
.footer__credit > a {
    color: inherit;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 1rem;
    border-radius: 50rem;
}
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}
@media (max-width: 768px) {
    .header__navbar {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 3rem 2rem;
        border-top: 0.1rem solid rgba(51, 51, 51, 0.2);
        -webkit-box-shadow: 0 0.5rem 1rem rgba(51, 51, 51, 0.1);
        box-shadow: 0 0.5rem 1rem rgba(51, 51, 51, 0.1);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity: 0;
        gap: 2.5rem;
        -webkit-transition: 0.2s linear;
        transition: 0.2s linear;
    }
    .header__navbar > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2.5rem;
    }
    .header__navbar-link {
        font-size: 2.3rem;
    }
    .header button {
        visibility: visible;
        opacity: 1;
        z-index: 10;
    }
    .home__content-title {
        font-size: 2.3rem;
    }
    .home__content-description {
        font-size: 1.7rem;
    }
    .home__image > img {
        width: 90%;
    }
    .about {
        background-position: right;
    }
}
@media (max-width: 480px) {
    .home {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }
    .home__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .home__content-description {
        text-align: center;
    }
    .home__image {
        text-align: center;
    }
    .home__image > img {
        width: 60vw;
    }
    .about__container-content .buttons {
        gap: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .about__container-content .buttons .downloadApp {
        display: inline-block;
        background: -webkit-gradient(
            linear,
            left top,
            right top,
            from(#f83292),
            to(#814096)
        );
        background: linear-gradient(to right, #f83292, #814096);
        padding: 1rem 2.5rem;
        border-radius: 10rem;
        color: #fff;
        font-size: 1.7rem;
        -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .about__container-content .buttons .downloadApp:hover,
    .about__container-content .buttons .downloadApp:focus {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    .about__container-content .buttons .downloadApp:active {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
}
