* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.navbar__logo {
    color: #787878;
}
.navbar__bars {
    display: none;
}
.navbar__select {
    border: none;
}
.navbar__logo {
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 22px;
}
.navbar__logo:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background-color: #8F7AFF;
    margin-top: 20px;
}
.navbar__menu {
    margin-left: 60px;
}
.navbar__select {
    margin: 0 10px;
    color: #787878;
    font-size: 15px;
    outline: none;
}
.navbar__link {
    margin: 0 10px;
    text-decoration: none;
    color: #787878;
    font-size: 15px;
}
.navbar__link:hover {
    color: black;
    font-weight: 600;
}
.navbar__btn1 {
    border: none;
    background-color: white;
    color: #8F7AFF;
    font-weight: 500;
    font-size: 15px;
    margin-right: 20px;
}
.navbar__btn1:hover {
    color: blue;
}
.navbar__btn2 {
    background-color: white;
    padding: 11px 18px;
    border: 1px solid #8F7AFF;
    border-radius: 20px;
    color: #8F7AFF;
    outline: none;
    transition: all 0.3s;
    cursor: pointer;
}
.navbar__btn2:hover {
    background-color: #5536FF;
    color: white;
    transition: all 0.3s ease;
}
.navbar__left {
    display: flex;
    align-items: center;
}

.header__left {
    width: 42%;
}

.header {
    background-color: #EAF2FF;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__img {
    width: 600px;
}

.fa-truck {
    background-color: #A0A8E6;
    color: white;
    padding: 5px;
    border-radius: 20px;
    margin-right: 10px;
}

.header__topContent {
    color: #C6CCE8;
    padding: 12px 20px 12px 10px;
    background-color: white;
    border-radius: 40px;
    display: inline-block;
    cursor: pointer;
    transition: box-shadow 0.3s;
}
.header__topContent:hover {
    box-shadow: 0 0 10px white;
}

.header__title {
    font-size: 40px;
    line-height: 1.1;
    margin: 30px 0 40px 0;
}

.header__titleSpan {
    color: #5536FF;
}

.header__text {
    color: #A6A9B2;
    font-size: 15px;
    line-height: 1.9;
}

.group__link {
    margin-top: 50px;
}

.first__link {
    text-decoration: none;
    background-color: #5536FF;
    padding: 17px 40px;
    color: #E7DEFD;
    border-radius: 30px;
    transition: background-color 0.3s;
}
.first__link:hover {
    background-color: white;
    border: 1px solid #5536FF;
    color: black;
}

.second__link {
    text-decoration: none;
    background-color: white;
    padding: 17px 80px;
    color: #5536FF;
    border-radius: 30px;
    border: 1px solid #D9DFF3;
    margin-left: 30px;
    transition: background-color 0.3s, color 0.3s;
}
.second__link:hover {
    background-color: #5536FF;
    color: white;
}

.fa-chevron-right {
    margin-left: 10px;
    transition: transform 0.5s;
}

.fa-chevron-right:hover {
    transform: translate(20px);
}

.header__lastSlog {
    color: #C6CBEA;
    margin: 50px 0 10px 0;
    display: inline-block;
}

.header__appstore, .header__googlestore, .header__microsoft {
    width: 120px;
    background-color: #EAF2FF;
    margin: 0 15px 0 0;
    cursor: pointer;
    transition: transform 0.3s;
}

.header__appstore:hover {
    transform: scale(1.2);
}

.header__googlestore:hover {
    transform: scale(1.2);
}

.header__microsoft:hover {
    transform: scale(1.2);
}

.header__social {
    display: flex;
}

.main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.main__left {
    width: 49%;
}
.main__left__title {
    font-size: 40px;
}
.main__left__text {
    color: #ACACAC;
    line-height: 1.5;
    margin: 30px 0 30px 0;
}
.main__left__line {
    border: 1px solid #F5F4F8;
}

.main__right {
    width: 50%;
}

.main__right__img {
    width: 600px;
}

.main__bottom {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.main__bottom__img {
    width: 100px;
    transition: transform 0.3s;
    cursor: pointer;
}
.main__bottom__img:hover {
    transform: scale(1.3);
}

.main__bottom__text {
    color: #656565;
    font-size: 17px;
    line-height: 1.5;
    margin-left: 25px;
}

.main__bottom__span {
    color: #6953E7;
    text-decoration: none;
    font-weight: 700;
}

.aside .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aside__left {
    width: 50%;
}

.aside__right {
    width: 47%;
}
.aside__right__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}
.aside__right__text {
    color: #8A8A8A;
    line-height: 1.7;
    margin: 30px 0 4px 0;
}
.aside__right__line {
    border: 1px solid #F5F4F8;
}
.aside__right__last {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.aside__right__lastImg {
    width: 100px;
    transition: transform 0.3s;
}
.aside__right__lastImg:hover {
    transform: scale(1.3);
}
.aside__right__last__text {
    margin-left: 20px;
    font-size: 16px;
    color: #8A8A8A;
}

.aside__left__img {
    width: 500px;
}

.aside__right__bold {
    color: black;
    font-weight: 700;
}

.aside__right__social {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aside__right__img1, .aside__right__img2, .aside__right__img3, .aside__right__img4 {
    width: 90px;
    transition: transform 0.3s;
}

.aside__right__img3 {
    width: 150px;
}
.aside__right__img3:hover {
    transform: scale(1.3);
}

.aside__right__img1:hover {
    transform: scale(1.3);
}

.aside__right__img2:hover {
    transform: scale(1.3);
}

.aside__right__img4:hover {
    transform: scale(1.3);
}

.widget__bottom__span {
    color: black;
    font-weight: 700;
}

.widget {
    background-color: #F9FAFF;
}

.widget__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px 0;
}

.widget__header__title {
    font-size: 40px;
    width: 57%;
}

.page {
    padding: 100px 0 10px 0;
    background-image: linear-gradient(#F5F8FE, #F3F3F3);
}

.page__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page__item {
    width: 30%;
    background-color: white;
    border-radius: 20px;
    list-style: none;
    padding-left: 40px;
    padding-bottom: 75px;
    margin-bottom: 20px;
    z-index: 10;
    transition: transform 0.3s;
}
.page__item:hover {
    transform: translate(10px, 20px);
}

.page__item__img {
    width: 150px;
    margin-top: 10px;
    transition: transform 0.4s;
    cursor: pointer;
}
.page__item__img:hover {
    transform: scale(1.1);
}

.page__item__title {
    font-weight: 700;
    font-size: 20px;
}

.page__item__text {
    color: #A3A3A3;
    line-height: 1.8;
    margin: 14px 10px 30px 0;
}

.page__item__link {
    color: #6953E7;
    font-weight: 700;
    text-decoration: none;
}
/*.page__item__link::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 140px;*/
/*  height: 2px;*/
/*  background-color: #B4A6DC;*/
/*  margin-top: 22px;*/
/*}*/

.page__item__last {
    width: 200px;
    position: relative;
    left: 1034px;
    bottom: 108px;
}

.section__title {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}

.section__imgs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section__img1 {
    width: 49%;
}

.section__img2 {
    width: 49%;
}

.section {
    padding: 100px 0;
    background-color: #EBF0FE;
}

.section__imgs {
    margin-top: 80px;
}

.sidebar {
    background-color: #EBF2FF;
    padding-bottom: 40px;
}

.sidebar .container {
    border-radius: 20px;
    padding: 100px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar__title {
    font-size: 40px;
}

.sidebar__text {
    color: #D0D0D0;
    line-height: 1.7;
    margin-top: 10px;
}

.sidebar__content {
    width: 45%;
}

.footer {
    padding: 40px 0;
    background-color: #F4F6FA;
}

.footer__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.footer__item1 {
    width: 32%;
}

.footer__line {
    margin-top: 50px;
    border: 1px solid #dedfe2;
}

.footer__last__text {
    text-align: center;
    margin-top: 20px;
    color: #bbbcbe;
}

.footer__title::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background-color: #8F7AFF;
    margin-top: 30px;
}

.footer__text {
    color: #8B8B8B;
    line-height: 1.8;
    margin-top: 30px;
}

.footer__small__title {
    font-size: 22px;
}

.footer__small__list {
    list-style: none;
}

.footer__small__link {
    text-decoration: none;
    color: #9E9E9E;
}
.footer__small__link:hover {
    text-decoration: underline;
}

.footer__small__item {
    margin: 10px 0;
}

@media (max-width: 1120px) {
    .container {
        max-width: 970px;
    }

    .page__item__last {
        display: none;
    }

    .main__right__img {
        width: 95%;
    }

    .header__img {
        width: 95%;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }

    .header .container {
        flex-direction: column-reverse;
    }

    .header__right {
        display: flex;
        justify-content: center;
    }

    .header__left {
        width: 95%;
        text-align: center;
    }

    .header__social {
        justify-content: center;
    }

    .header__topContent {
        margin-top: 20px;
    }

    .navbar__menu {
        display: none;
    }

    .navbar__bars {
        display: block;
        margin-right: 10px;
    }

    .navbar__btn {
        display: flex;
        align-items: center;
    }

    .main .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .main__left {
        width: 95%;
        text-align: center;
    }

    .main__right {
        width: 95%;
        text-align: center;
    }

    .main__bottom {
        flex-direction: column;
    }

    .aside .container {
        flex-direction: column;
    }

    .aside__left {
        width: 95%;
        display: flex;
        justify-content: center;
    }

    .aside__right {
        text-align: center;
        width: 95%;
    }

    .widget__header {
        flex-direction: column;
        width: 95%;
        text-align: center;
    }

    .widget__header__title {
        width: 95%;
    }

    .main__bottom__span {
        width: 95%;
        margin-top: 20px;
    }

    .page__list {
        flex-direction: column;
    }

    .page__item {
        width: 95%;
    }

    .section__imgs {
        flex-direction: column;
    }

    .section__img1 {
        width: 95%;
    }

    .section__img2 {
        width: 95%;
        margin-top: 20px;
    }

    .sidebar .container {
        flex-direction: column;
    }

    .sidebar__content {
        text-align: center;
        width: 95%;
    }

    .footer__list {
        flex-wrap: wrap;
    }

    .footer__item {
        width: 45%;
    }

    body {
        overflow-x: hidden;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        right: 0;
        height: 92vh;
        top: 10vh;
        background-color: #2c2c3d;
        flex-direction: column;
        align-items: center;
        width: 50%;
        border-radius: 20px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .navbar__select {
        margin: 20px 0;
        border-radius: 5px;
        padding: 10px;
    }

    .navbar__link {
        margin: 20px;
        color: #787878;
    }
}
@media (max-width: 767px) {
    .container {
        max-width: 500px;
    }
    .navbar{
        padding: 2px !important;
    }
    .aside__left__img {
        width: 95%;
    }

    .sidebar__content {
        width: 95%;
    }

    .main__bottom__span::before {
        display: none;
    }

    .footer__item1 {
        width: 95%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer__item {
        width: 95%;
        margin: 0 auto;
        text-align: center;
    }

    .aside__right__last {
        flex-direction: column;
        justify-content: center;
        width: 95%;
    }

    .sidebar .container {
        padding: 40px 0;
    }
}
@media (max-width: 520px) {
    .container {
        width: 90%;
    }

    .navbar__btn1 {
        display: none;
    }

    .navbar__btn2 {
        display: none;
    }

    .aside__right__social {
        flex-direction: column;
    }

    .aside__right__social img {
        margin: 10px 0;
    }

    .group__link {
        flex-direction: column;
        display: flex;
        justify-content: center;
    }

    .first__link {
        margin-bottom: 20px;
    }

    .second__link {
        display: inline-block;
        margin: 0 auto;
        margin-right: 30px;
    }

    .header__social {
        flex-direction: column;
    }
    .header__social img {
        margin: 10px auto;
    }
}
.nav-active {
    transform: translateX(0);
}/*# sourceMappingURL=main.css.map */

/*any style*/
.url_link {
    text-decoration: underline;
    text-decoration-style: double;
}
