@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest-Light.ttf) format("truetype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest-Regular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest-Medium.ttf) format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest-SemiBold.ttf) format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Onest", sans-serif;
    font-size: 24px;
    line-height: 140%;
    color: #1F202A;
    letter-spacing: 0%;
}

.stopScroll {
    height: 100vh;
    overflow: hidden;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none !important;
}

.justify-start {
    justify-content: start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: end;
}

.align-start {
    align-items: start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.show {
    display: flex !important;
}

.w-full {
    width: 100%;
}

.m-0 {
    margin: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.relative {
    position: relative !important;
}

button {
    outline: none;
    border: none;
    padding: 0;
    transition: 0.3s all;
}

button:hover {
    cursor: pointer;
}

input, textarea, select, button {
    border: none;
    outline: none;
    transition: 0.3s all;
    font-family: "Onest", sans-serif;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s all;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Onest", sans-serif;
    color: #1f202a;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1452px;
    margin: 0 auto;
    padding: 0 16px;
}

.title-text {
    font-size: 56px;
    line-height: 120%;
    font-weight: 600;
    color: #1f202a;
}

.header {
    padding: 28px 0 13px;
}

.header .container {
    position: relative;
    z-index: 101;
}

.header nav .nav-list li {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
    margin-right: 30px;
    transition: 0.3s all;
}

.header nav .nav-list li:last-child {
    margin-right: 0;
}

.header nav .nav-list li:hover {
    color: #858e9c;
}

.header nav .nav-list .active {
    color: #7d24ff;
}

.header nav .nav-list .active:hover {
    color: #7d24ff;
}

.header .header-lang {
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #5d6674;
    position: relative;
    text-transform: capitalize;
}

.header .header-lang .lang-active {
    cursor: pointer;
    width: 46px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F3F6;
    border-radius: 15px;
    transition: 0.3s all;
}

.header .header-lang .lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #F3F3F6;
    border-radius: 15px;
    border-radius: 0 0 15px 15px;
    animation: animLang 0.3s linear;
    display: none;
    padding-top: 4px;
}

.header .header-lang .lang-list li {
    padding: 0 12px;
    margin-bottom: 10px;
}

.header .header-lang .lang-list li:last-child {
    margin-bottom: 6px;
}

.header .header-lang .lang-list li:hover {
    color: #7d24ff;
}

.header .header-lang .lang-list .active {
    display: none;
}

@keyframes animLang {
    from {
        top: 90%;
    }
    to {
        top: 100%;
    }
}

.header .showLang .lang-active {
    border-radius: 15px 15px 0 0;
}

.header .showLang .lang-list {
    display: block;
}

.header .menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.header .menu-btn img:last-child {
    display: none;
}

.header .clickedBtn img:first-child {
    display: none;
}

.header .clickedBtn img:last-child {
    display: block;
}

.header .mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    text-align: center;
    padding: 150px 50px 50px 50px;
    transition: 0.3s all;
    z-index: 100;
}

.header .mobile-menu .nav li {
    margin: 0 0 20px 0;
    color: #1F202A;
}

.header .mobile-menu .lang-list {
    display: flex;
    justify-content: center;
    margin-top: 75px;
}

.header .mobile-menu .lang-list li {
    margin-right: 20px;
    color: #1F202A;
    text-transform: capitalize;
}

.header .mobile-menu .lang-list li:last-child {
    margin-right: 0;
}

.header .mobile-menu .lang-list .active {
    color: #7D24FF;
}

.header .showMobileMenu {
    left: 0;
}

main {
    overflow: hidden;
}

main .main-ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

main .wrapper {
    padding-bottom: 108px;
    position: relative;
}

main .wrapper .wrapper-ellipse {
    position: absolute;
    bottom: 0;
    right: 0;
}

main .wrapper .container {
    position: relative;
    z-index: 3;
}

main .wrapper .download-list {
    margin: 35px 0;
}

main .wrapper .download-list .download {
    cursor: pointer;
    display: block;
    margin-right: 10px;
}

main .wrapper .download-list .download:last-child {
    margin-right: 0;
}

main .wrapper .download-list .download a {
    width: 110px;
    height: 102px;
    border-radius: 23px;
    background: #858e9c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    color: #fff;
}

main .wrapper .download-list .download a img {
    margin-bottom: 7px;
}

main .wrapper .download-list .active a {
    background: #7d24ff;
}

main .wrapper .search {
    margin-bottom: 100px;
}

main .wrapper .search .search-box {
    position: relative;
    width: 700px;
    margin-right: 10px;
}

main .wrapper .search .search-box input {
    width: 100%;
    height: 78px;
    border-radius: 25px;
    border: 2px solid #858E9C;
    padding: 0 80px 0 30px;
    color: #1f202a;
    font-size: 24px;
    font-weight: 500;
}

main .wrapper .search .search-box input:focus {
    border-color: #1F202A;
}

main .wrapper .search .search-box .info {
    position: absolute;
    top: 23px;
    right: 30px;
    cursor: pointer;
}

main .wrapper .search .search-box .info .info-box {
    width: 160px;
    position: absolute;
    left: 50%;
    bottom: 140%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0px 5px 15px 0px rgba(31, 32, 42, 0.15);
    font-size: 13px;
    line-height: 130%;
    color: #1f202a;
    display: none;
}

main .wrapper .search .search-box .info .info-box::after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
}

main .wrapper .search .search-box .info:hover .info-box {
    display: block;
}

main .wrapper .search .download__btn {
    width: 195px;
    height: 78px;
    border-radius: 25px;
    background: #1f202a;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

main .wrapper .search .download__btn:hover {
    background: #7d24ff;
}

main .usersChoose {
    background: #f7f4ff;
    border-radius: 100px;
    padding: 90px 0 0;
    margin-bottom: 255px;
    position: relative;
    z-index: 3;
}

main .usersChoose .star {
    position: absolute;
    left: -10px;
    top: -140px;
}

main .usersChoose .smile {
    position: absolute;
    top: 0;
    right: -60px;
}

main .usersChoose .bg-ellipse {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

main .usersChoose .usersChoose-item {
    width: 1060px;
    margin: 60px auto 0;
}

main .usersChoose .usersChoose-item .item {
    width: 820px;
    border-radius: 25px;
    background: #fff;
    padding: 20px 30px;
    margin-top: 30px;
    position: relative;
}

main .usersChoose .usersChoose-item .item:first-child {
    margin-top: 0;
}

main .usersChoose .usersChoose-item .item:nth-child(even) {
    margin-left: auto;
}

main .usersChoose .usersChoose-item .item .item-text {
    font-size: 24px;
    line-height: 140%;
}

main .fast-download {
    background: #7d24ff;
    padding: 108px 120px 128px;
    position: relative;
    margin-top: 155px;
    border-radius: 35px;
    transform: translateY(40px);
}

main .fast-download .box-text {
    width: 420px;
}

main .fast-download .title-text {
    color: #fff;
    position: relative;
}

main .fast-download .title-text::before {
    content: url(../images/svg/rocket.svg);
    position: absolute;
    top: -5px;
    left: -30px;
}

main .fast-download .title-subtext {
    font-size: 24px;
    line-height: 140%;
    color: #fff;
    margin-top: 15px;
}

main .fast-download .box-info {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 480px;
    height: 580px;
    transform: translateY(-50%);
}

main .fast-download .box-info .card {
    width: 266px;
    height: 450px;
    border-radius: 35px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0px 10px 35px 0px rgba(65, 0, 195, 0.25);
}

main .fast-download .box-info .card .card-img {
    width: 101%;
    height: 101%;
    object-fit: cover;
    border-radius: 35px;
    margin-left: -0.5%;
    margin-top: -0.5%;
}

main .fast-download .box-info .card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main .fast-download .box-info .card .card-info {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 88px;
    border-radius: 35px;
    background: #7d24ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main .fast-download .box-info .card .card-info .card-text {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    color: #fff;
}

main .fast-download .box-info .card .card-info .card-subtext {
    font-size: 22px;
    line-height: 120%;
    font-weight: 600;
    color: #7d24ff;
    background: #fff;
    border-radius: 15px;
    padding: 5px 20px;
}

main .fast-download .box-info .card:first-child {
    left: 0;
    bottom: 0;
    transform: rotate(7deg);
    z-index: 2;
}

main .fast-download .box-info .card:last-child {
    top: 0;
    right: 0;
    transform: rotate(-9deg);
}

main .fast-download .value-text {
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    position: absolute;
    right: 60px;
    bottom: 30px;
}

main .steps {
    display: flex;
    justify-content: center;
}

main .steps .title-text {
    text-align: center;
}

main .steps .steps-box {
    margin-top: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main .steps .steps-box .steps-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

main .steps .steps-box .steps-item .item {
    width: 32%;
    background: #f3f3f6;
    border-radius: 25px;
    padding: 20px 30px;
}

main .steps .steps-box .steps-item .item:nth-child(2) {
    transform: translateY(-40px);
}

main .steps .steps-box .steps-item .item .item-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #5d6674;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .steps .steps-box .steps-item .item .item-text {
    font-size: 24px;
    line-height: 140%;
    color: #1f202a;
    margin-top: 10px;
}

main .steps .steps-box .notebook {
    margin-top: -200px;
    max-width: 1200px;
}

main .compare {
    margin: 130px 0 159px;
}

main .compare .compare-box {
    margin: 130px auto 0;
    position: relative;
    max-width: 1300px;
}

main .compare .compare-box .fox-img {
    width: 33%;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
}

main .compare .compare-box .compare-item {
    width: 35%;
    position: relative;
    z-index: 3;
}

main .compare .compare-box .compare-item .item-head {
    width: 380px;
    height: 182px;
    border-radius: 25px;
    background: #f3f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .compare .compare-box .compare-item .item-head .head-title {
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
}

main .compare .compare-box .compare-item .item-head .logo-light {
    height: 134px;
    object-fit: contain;
}

main .compare .compare-box .compare-item .item-list li {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

main .compare .compare-box .compare-item .item-list li:first-child {
    margin-top: 40px;
}

main .compare .compare-box .compare-item .item-list li img {
    margin-right: 15px;
}

main .compare .compare-box .compare-item .item-list li p {
    font-size: 24px;
    line-height: 140%;
    color: #1f202a;
}

main .compare .compare-box .compare-item:nth-child(2) .item-head {
    background: #7d24ff;
}

main .reviews {
    padding: 90px 0;
    background: #f7f4ff;
    border-radius: 100px;
    position: relative;
}

main .reviews .reviews-ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main .reviews .reviews-box {
    max-width: 1300px;
    margin: 60px auto 0;
    columns: 2;
    column-gap: 20px;
    position: relative;
    z-index: 3;
}

main .reviews .reviews-box .review {
    break-inside: avoid;
    padding: 20px 30px;
    border-radius: 25px;
    background: #fff;
    position: relative;
    padding-left: 130px;
    margin-bottom: 20px;
}

main .reviews .reviews-box .review-head .review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 30px;
}

main .reviews .reviews-box .review-text {
    font-size: 24px;
    line-height: 140%;
    color: #1f202a;
    margin-top: 10px;
}

main .reviews .reviews-box .review:nth-child(1) {
    width: 662px;
    column-span: all;
    margin: 0 auto 20px;
}

main .reviews .reviews-box .review:nth-child(2) {
    width: 734px;
}

main .reviews .reviews-box .review:nth-child(3) {
    width: 600px;
    margin-left: auto;
    transform: translateX(50px);
}

main .reviews .reviews-box .review:nth-child(4) {
    width: 546px;
    margin-left: auto;
}

main .reviews .reviews-box .review:nth-child(5) {
    width: 518px;
    transform: translateX(50px);
}

main .faqs {
    padding: 129px 0 150px;
    position: relative;
}

main .faqs .faq-ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 1140px;
}

main .faqs .container {
    max-width: 980px;
    position: relative;
}

main .faqs .container .fox-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

main .faqs .title-text {
    padding: 228px 0 265px;
    position: relative;
    z-index: 3;
}

main .faqs .faqs-box {
    position: relative;
    z-index: 3;
}

main .faqs .faq {
    border-radius: 25px;
    background: #f3f3f6;
    margin-bottom: 20px;
}

main .faqs .faq:last-child {
    margin-bottom: 0;
}

main .faqs .faq .faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

main .faqs .faq .faq-head .faq-title {
    width: 90%;
    font-size: 32px;
    line-height: 130%;
    font-weight: 500;
    color: #1f202a;
}

main .faqs .faq .faq-head .faq-btn {
    cursor: pointer;
    overflow: hidden;
}

main .faqs .faq .faq-head .faq-btn svg {
    transition: 0.3s all;
}

main .faqs .faq .faq-body {
    margin-top: -10px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s all;
}

main .faqs .faq .faq-body .faq-text {
    padding: 0 30px 20px;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
}

main .faqs .showFaq {
    background: #7d24ff;
}

main .faqs .showFaq .faq-head .faq-title {
    color: #fff;
}

main .faqs .showFaq .faq-head .faq-btn svg {
    transform: rotate(45deg);
}

main .faqs .showFaq .faq-head .faq-btn svg path {
    fill: #fff;
}

main .faqs .showFaq .faq-body {
    max-height: 1000px;
    transition: 0.8s all;
}

main .blogs {
    margin-bottom: 150px;
}

main .blogs .blogs-box {
    margin: 35px 0;
}

main .blogs .blog {
    width: 32.5%;
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-bottom: 35px;
}

main .blogs .blog .blog-img {
    width: 100%;
    height: 280px;
    border-radius: 25px;
    overflow: hidden;
}

main .blogs .blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all;
}

main .blogs .blog .blog-text {
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
    margin: 20px 0 15px;
}

main .blogs .blog .blog-info {
    display: flex;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #5d6674;
}

main .blogs .blog .blog-info .data {
    margin-right: 20px;
}

main .blogs .blog .blog-info .view {
    display: flex;
    align-items: center;
}

main .blogs .blog .blog-info .view svg {
    margin-right: 5px;
}

main .blogs .blog:hover .blog-img img {
    transform: scale(1.1);
}

main .blogs .blog_big {
    width: 66.25%;
}

main .blogs .blog_big .blog-img {
    height: 572px;
}

main .blogs .blog_middle {
    width: 49.3%;
}

main .blogs .blog_middle .blog-img {
    height: 426px;
}

main .blogs .blog_h .blog-img {
    height: 480px;
}

main .blogs .blog-btns .prev, main .blogs .blog-btns .next {
    width: 160px;
    height: 58px;
    border-radius: 10px;
    background: #f3f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: #1f202a;
    transition: 0.3s all;
}

main .blogs .blog-btns .prev svg, main .blogs .blog-btns .next svg {
    transition: 0.3s all;
}

main .blogs .blog-btns .prev:hover, main .blogs .blog-btns .next:hover {
    background: #7d24ff;
    color: #fff;
}

main .blogs .blog-btns .prev:hover svg path, main .blogs .blog-btns .next:hover svg path {
    fill: #fff;
}

main .blogs .blog-btns .prev {
    margin-right: 20px;
}

main .blogs .blog-btns .prev svg {
    margin-right: 10px;
}

main .blogs .blog-btns .next svg {
    margin-left: 10px;
}

main .blogs .blog-btns .pagination {
    margin: 0 20px 0 0;
}

main .blogs .blog-btns .pagination li {
    margin-right: 5px;
}

main .blogs .blog-btns .pagination li:last-child {
    margin-right: 0;
}

main .blogs .blog-btns .pagination li a {
    width: 64px;
    height: 58px;
    border-radius: 10px;
    background: #f3f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: #1f202a;
    transition: 0.3s all;
}

main .blogs .blog-btns .pagination li a:hover {
    background: #7d24ff;
    color: #fff;
}

main .blogs .blog-btns .pagination .active a {
    background: #858e9c;
    color: #fff;
}

main .blogs .blog-btns .pagination .active a:hover {
    background: #858e9c;
}

main .blog-info {
    display: flex;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #5d6674;
}

main .blog-info .data {
    margin-right: 20px;
}

main .blog-info .view {
    display: flex;
    align-items: center;
}

main .blog-info .view svg {
    margin-top: -2px;
    margin-right: 5px;
}

main .blog-btns .prev, main .blog-btns .next {
    width: 160px;
    height: 58px;
    border-radius: 10px;
    background: #f3f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: #1f202a;
    transition: 0.3s all;
}

main .blog-btns .prev svg, main .blog-btns .next svg {
    transition: 0.3s all;
}

main .blog-btns .prev:hover, main .blog-btns .next:hover {
    background: #7d24ff;
    color: #fff;
}

main .blog-btns .prev:hover svg path, main .blog-btns .next:hover svg path {
    fill: #fff;
}

main .blog-btns .prev {
    margin-right: 20px;
}

main .blog-btns .prev svg {
    margin-right: 10px;
}

main .blog-btns .next svg {
    margin-left: 10px;
}

main .blog-btns .pagination {
    margin: 0 20px 0 0;
}

main .blog-btns .pagination li {
    margin-right: 5px;
}

main .blog-btns .pagination li:last-child {
    margin-right: 0;
}

main .blog-btns .pagination li a {
    width: 64px;
    height: 58px;
    border-radius: 10px;
    background: #f3f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    color: #1f202a;
    transition: 0.3s all;
}

main .blog-btns .pagination li a:hover {
    background: #7d24ff;
    color: #fff;
}

main .blog-btns .pagination .active a {
    background: #858e9c;
    color: #fff;
}

main .blog-btns .pagination .active a:hover {
    background: #858e9c;
}

main .blog-page {
    margin-bottom: 150px;
}

main .blog-page .blog .text-info {
    max-width: 940px;
    margin: 35px auto 0;
}

main .blog-page .blog .blog-title {
    font-size: 42px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
}

main .blog-page .blog .blog-info {
    margin: 20px 0 35px;
}

main .blog-page .blog .blog-img {
    width: 100%;
    height: 520px;
    border-radius: 25px;
    overflow: hidden;
}

main .blog-page .blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main .blog-page .blog .blog-subtitle {
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
}

main .blog-page .blog .blog-text {
    font-size: 24px;
    line-height: 140%;
    color: #1f202a;
    margin-top: 20px;
}

main .blog-page .blog .blog-list li {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
    color: #1f202a;
    margin-top: 15px;
}

main .blog-page .blog .blog-list li:first-child {
    margin-top: 20px;
}

main .blog-page .blog .blog-list li .list-num {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #7d24ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
}

main .blog-page .blog .blog-subtext {
    font-size: 18px;
    line-height: 140%;
    color: #5d6674;
    margin-top: 20px;
}

main .blog-page .blog .blog-card {
    display: flex;
    align-items: center;
    margin: 70px 0;
}

main .blog-page .blog .blog-card .card-img {
    width: 45%;
    height: 480px;
    border-radius: 25px;
    object-fit: cover;
    margin-right: 40px;
}

main .blog-page .blog .blog-card .card-info {
    width: 49.5%;
}

main .blog-page .blog .blog-card .card-info .card-title {
    font-size: 32px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
}

main .blog-page .blog .blog-card .card-info .card-subtitle {
    font-size: 24px;
    line-height: 140%;
    color: #1f202a;
    margin: 20px 0;
}

main .blog-page .blog .blog-card .card-info .card-text {
    background: rgba(125, 36, 255, 0.1);
    border-radius: 25px;
    padding: 20px 30px;
    font-size: 20px;
    line-height: 140%;
    color: #000037;
}

main .contact-ellipse {
    width: 1025px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

main .contact {
    text-align: center;
    margin-bottom: 150px;
}

main .contact .container {
    position: relative;
    z-index: 3;
}

main .contact .container .fox {
    position: absolute;
    top: 33%;
    right: -3.5%;
    z-index: 4;
}

main .contact .title-subtext {
    font-size: 42px;
    line-height: 120%;
    font-weight: 500;
    color: #1f202a;
    margin: 35px 0 30px;
}

main .contact .contact-email {
    border-radius: 25px;
    padding: 18px 30px;
    background: rgba(125, 36, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #000037;
}

main .contact .contact-email img {
    margin-right: 10px;
}

main .contact .contact-form {
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 47px;
    position: relative;
    z-index: 5;
}

main .contact .contact-form .input-box {
    width: 580px;
    margin-bottom: 10px;
}

main .contact .contact-form .input-box .form-inp {
    width: 100%;
    height: 78px;
    border-radius: 25px;
    border: 2px solid #858E9C;
    padding: 0 80px 0 30px;
    color: #1f202a;
    font-size: 24px;
    font-weight: 500;
}

main .contact .contact-form .input-box .form-inp::placeholder {
    color: #858e9c;
}

main .contact .contact-form .input-box .form-inp:focus {
    border-color: #1F202A;
}

main .contact .contact-form .text-box {
    width: 100%;
    margin-bottom: 10px;
}

main .contact .contact-form .text-box .form-text {
    width: 100%;
    height: 258px;
    border-radius: 25px;
    border: 2px solid #858E9C;
    color: #1f202a;
    font-size: 24px;
    font-weight: 500;
    padding: 24px 30px;
    resize: none;
}

main .contact .contact-form .text-box .form-text::placeholder {
    color: #858e9c;
}

main .contact .contact-form .text-box .form-text:focus {
    border-color: #1F202A;
}

main .contact .form-btn {
    width: 100%;
    height: 78px;
    border-radius: 25px;
    background: #1f202a;
    color: #fff;
    transition: 0.3s all;
    font-size: 24px;
    font-weight: 500;
}

main .contact .form-btn:hover {
    background: #7d24ff;
}

main .wrapper_stories {
    padding: 0;
}

main .wrapper_stories .title-text {
    position: relative;
    z-index: 3;
}

main .wrapper_stories .search {
    margin-top: 35px;
    position: relative;
    z-index: 3;
}

main .wrapper_stories .wrapper-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

main .wrapper_stories .wrapper-box .fox-ellipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main .wrapper_stories .wrapper-box .fox-img {
    position: relative;
    z-index: 3;
}

.footer {
    background: #f3f3f6;
    padding: 60px 0;
    border-radius: 100px 100px 0 0;
}

.footer .download-list .download {
    margin: 0 10px 10px 0;
}

.footer .download-list .download a {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    background: #858e9c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    transition: 0.3s all;
}

.footer .download-list .download a:hover {
    background: #7d24ff;
}

.footer .download-list .download:last-child {
    margin-right: 0;
}

.footer .download-list .download img {
    margin-right: 10px;
}

.footer .nav-list {
    margin: 50px 0;
}

.footer .nav-list li {
    font-size: 18px;
    font-weight: 500;
    color: #5d6674;
    margin-right: 30px;
    transition: 0.3s all;
}

.footer .nav-list li:hover {
    color: #7d24ff;
}

.footer .footer-text {
    max-width: 815px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 140%;
    color: #5d6674;
}

.footer .footer-copyright {
    font-size: 16px;
    line-height: 140%;
    color: #5d6674;
    margin-top: 50px;
}

@media (max-width: 1320px) {
    main .reviews {
        padding: 60px 0;
    }

    main .reviews .reviews-box {
        max-width: 980px;
        margin: 50px auto 0;
        columns: 2;
        column-gap: 20px;
    }

    main .reviews .reviews-box .review {
        break-inside: avoid;
        padding: 20px;
        border-radius: 25px;
        margin-bottom: 20px;
    }

    main .reviews .reviews-box .review-head .review-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        position: relative;
        top: 0;
        left: 0;
        margin-right: 10px;
    }

    main .reviews .reviews-box .review-text {
        font-size: 20px;
    }

    main .reviews .reviews-box .review:nth-child(1) {
        width: 600px;
        margin: 0 auto 20px;
    }

    main .reviews .reviews-box .review:nth-child(2) {
        width: 550px;
    }

    main .reviews .reviews-box .review:nth-child(3) {
        width: 450px;
        margin-left: auto;
        transform: translateX(50px);
    }

    main .reviews .reviews-box .review:nth-child(4) {
        width: 400px;
        margin-left: 70px;
    }

    main .reviews .reviews-box .review:nth-child(5) {
        width: 400px;
        transform: translateX(50px);
    }
}

@media (max-width: 1200px) {
    main .usersChoose {
        padding: 60px 0 0;
    }

    main .usersChoose .star {
        position: absolute;
        left: 0;
        top: -140px;
    }

    main .usersChoose .bg-ellipse {
        width: 100%;
    }

    main .usersChoose .usersChoose-item {
        width: 100%;
    }

    main .fast-download {
        padding: 80px 60px;
        margin-top: 100px;
    }

    main .fast-download .box-info {
        left: auto;
        right: 2%;
        width: 360px;
        height: 400px;
    }

    main .fast-download .box-info .card {
        width: 200px;
        height: 350px;
        border-radius: 25px;
    }

    main .fast-download .box-info .card .card-info {
        height: 75px;
        border-radius: 25px;
    }

    main .fast-download .box-info .card .card-info .card-text {
        font-size: 20px;
    }

    main .fast-download .box-info .card .card-info .card-subtext {
        font-size: 18px;
        padding: 5px 15px;
    }

    main .fast-download .value-text {
        left: 40px;
    }

    main .steps .steps-box {
        margin-top: 90px;
    }

    main .steps .steps-box .notebook {
        margin-top: -150px;
        max-width: none;
        width: 100%;
    }

    main .steps .steps-box .steps-item .item {
        padding: 20px;
    }

    main .steps .steps-box .steps-item .item .item-text {
        font-size: 20px;
    }

    main .compare {
        margin: 120px 0;
    }

    main .compare .compare-box {
        margin: 100px auto 0;
        max-width: none;
        width: 100%;
    }

    main .compare .compare-box .fox-img {
        width: 30%;
        top: -30px;
    }

    main .compare .compare-box .compare-item {
        width: 35%;
        position: relative;
        z-index: 3;
    }

    main .compare .compare-box .compare-item .item-head {
        width: 100%;
        height: 150px;
    }

    main .compare .compare-box .compare-item .item-head .head-title {
        font-size: 28px;
        text-align: center;
    }

    main .compare .compare-box .compare-item .item-head .logo-light {
        max-width: 75%;
        height: 75%;
    }

    main .compare .compare-box .compare-item .item-list li {
        margin-top: 20px;
    }

    main .compare .compare-box .compare-item .item-list li:first-child {
        margin-top: 30px;
    }

    main .compare .compare-box .compare-item .item-list li img {
        width: 30px;
        margin-right: 10px;
    }

    main .compare .compare-box .compare-item .item-list li p {
        font-size: 20px;
    }

    main .blogs .blog .blog-text {
        font-size: 24px;
    }

    main .blogs .blog_big .blog-img {
        height: 450px;
    }

    main .blogs .blog_middle .blog-img {
        height: 350px;
    }

    main .blogs .blog_h .blog-img {
        height: 400px;
    }

    main .contact-ellipse {
        width: 75%;
    }

    main .contact .container .fox {
        width: 300px;
        top: 33%;
        right: -3.5%;
    }

    main .contact .title-subtext {
        font-size: 36px;
        margin: 35px 0 30px;
    }

    main .contact .contact-email {
        font-size: 18px;
    }

    main .contact .contact-form {
        width: 500px;
        margin-top: 35px;
    }

    main .contact .contact-form .input-box {
        width: 450px;
    }

    main .contact .contact-form .input-box .form-inp {
        width: 100%;
        height: 70px;
        font-size: 20px;
    }

    main .contact .contact-form .text-box .form-text {
        height: 220px;
        font-size: 20px;
    }

    main .contact .form-btn {
        height: 70px;
    }

    .footer {
        padding: 60px 0;
    }

    .footer .download-list .download {
        margin: 0 10px 10px 0;
    }

    .footer .download-list .download a {
        height: 50px;
        font-size: 16px;
        padding: 10px 15px;
        border-radius: 15px;
    }

    .footer .download-list .download img {
        width: 30px;
        margin-right: 5px;
    }

    .footer .nav-list {
        margin: 30px 0;
    }

    .footer .nav-list li {
        margin-right: 20px;
    }

    .footer .footer-text {
        max-width: 740px;
    }

    .footer .footer-copyright {
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .title-text {
        font-size: 40px;
    }

    main .wrapper {
        padding-bottom: 108px;
    }

    main .wrapper .download-list {
        margin: 30px 0;
    }

    main .wrapper .download-list .download a {
        width: 90px;
        height: 70px;
        border-radius: 20px;
        font-size: 16px;
    }

    main .wrapper .download-list .download a img {
        width: 30px;
        margin-bottom: 5px;
        height: 32px;
    }

    main .wrapper .search {
        margin-bottom: 70px;
    }

    main .wrapper .search .search-box {
        width: 100%;
    }

    main .wrapper .search .search-box input {
        height: 70px;
        border-radius: 20px;
        padding: 0 60px 0 20px;
        font-size: 20px;
    }

    main .wrapper .search .search-box .info {
        top: 18px;
        right: 15px;
    }

    main .wrapper .search .search-box .info .info-box {
        left: auto;
        bottom: 140%;
        transform: none;
        right: -10px;
    }

    main .wrapper .search .search-box .info .info-box::after {
        left: auto;
        right: 10px;
    }

    main .wrapper .search .search-box .info:hover .info-box {
        display: none;
    }

    main .wrapper .search .search-box .showInfo .info-box {
        display: block !important;
    }

    main .wrapper .search .download__btn {
        width: 150px;
        height: 70px;
        border-radius: 20px;
        font-size: 18px;
    }

    main .wrapper .fox-img {
        width: 60%;
        min-height: 110px;
    }

    main .usersChoose {
        border-radius: 50px;
        padding: 60px 0 0;
        margin-bottom: 150px;
    }

    main .usersChoose .usersChoose-item {
        width: 100%;
        margin: 60px auto 0;
        position: relative;
    }

    main .usersChoose .usersChoose-item .item {
        width: 90%;
        border-radius: 25px;
        background: #fff;
        padding: 20px 30px;
        margin-top: 30px;
    }

    main .fast-download .box-text {
        width: 40%;
    }

    main .fast-download .title-subtext {
        font-size: 20px;
        margin-top: 10px;
    }

    main .reviews {
        padding: 60px 0;
        border-radius: 50px;
    }

    main .reviews .reviews-box {
        max-width: none;
        width: 100%;
        margin: 50px auto 0;
        columns: auto;
        column-gap: 0;
    }

    main .reviews .reviews-box .review {
        break-inside: auto;
        width: 90% !important;
        transform: none !important;
        margin-left: 0;
        padding: 20px;
        border-radius: 25px;
        margin-bottom: 20px;
        margin: 0 !important;
        margin-bottom: 20px !important;
    }

    main .reviews .reviews-box .review:nth-child(even) {
        margin-left: auto !important;
    }

    main .reviews .reviews-box .review-head .review-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        position: relative;
        top: 0;
        left: 0;
        margin-right: 10px;
    }

    main .reviews .reviews-box .review-text {
        font-size: 20px;
    }

    main .faqs {
        padding: 100px 0 120px;
    }

    main .faqs .container {
        max-width: none;
        width: 100%;
    }

    main .faqs .container .fox-img {
        width: 300px;
    }

    main .faqs .title-text {
        padding: 160px 0 170px;
        position: relative;
        z-index: 3;
    }

    main .faqs .faq {
        border-radius: 20px;
    }

    main .faqs .faq .faq-head {
        padding: 20px 30px;
    }

    main .faqs .faq .faq-head .faq-title {
        font-size: 28px;
    }

    main .faqs .faq .faq-head .faq-btn svg {
        width: 35px;
    }

    main .faqs .faq .faq-body .faq-text {
        padding: 0 30px 20px;
        font-size: 20px;
    }

    main .blogs .blog .blog-img {
        height: 200px;
        border-radius: 20px;
    }

    main .blogs .blog .blog-text {
        font-size: 18px;
    }

    main .blogs .blog .blog-info {
        font-size: 14px;
    }

    main .blogs .blog_big .blog-img {
        height: 350px;
    }

    main .blogs .blog_middle .blog-img {
        height: 350px;
    }

    main .blogs .blog_h .blog-img {
        height: 250px;
    }

    main .blog-page {
        margin-bottom: 80px;
    }

    main .blog-page .blog .text-info {
        max-width: none;
        width: 100%;
        margin: 30px auto 0;
    }

    main .blog-page .blog .blog-title {
        font-size: 28px;
    }

    main .blog-page .blog .blog-info {
        margin: 20px 0 35px;
    }

    main .blog-page .blog .blog-img {
        height: 400px;
    }

    main .blog-page .blog .blog-subtitle {
        font-size: 24px;
    }

    main .blog-page .blog .blog-text {
        font-size: 20px;
    }

    main .blog-page .blog .blog-list li {
        font-size: 18px;
        margin-top: 10px;
    }

    main .blog-page .blog .blog-subtext {
        font-size: 16px;
    }

    main .blog-page .blog .blog-card {
        justify-content: space-between;
        margin: 50px 0;
    }

    main .blog-page .blog .blog-card .card-img {
        width: 45%;
        height: 400px;
        margin-right: 0;
    }

    main .blog-page .blog .blog-card .card-info {
        width: 53%;
    }

    main .blog-page .blog .blog-card .card-info .card-title {
        font-size: 28px;
    }

    main .blog-page .blog .blog-card .card-info .card-subtitle {
        font-size: 20px;
    }

    main .blog-page .blog .blog-card .card-info .card-text {
        padding: 20px;
        font-size: 18px;
    }

    main .contact .container .fox {
        width: 200px;
        top: 33%;
        right: -3.5%;
    }

    main .contact .title-subtext {
        font-size: 24px;
        margin: 20px 0 30px;
    }

    main .contact .contact-email {
        font-size: 18px;
        padding: 10px 20px;
    }

    main .contact .contact-form {
        width: 320px;
        margin-top: 30px;
    }

    main .contact .contact-form .input-box {
        width: 300px;
    }

    main .contact .contact-form .input-box .form-inp {
        padding: 0 15px;
        font-size: 18px;
        border-radius: 20px;
    }

    main .contact .contact-form .text-box .form-text {
        height: 180px;
        font-size: 18px;
        padding: 15px;
        border-radius: 20px;
    }

    main .contact .form-btn {
        font-size: 18px;
    }

    main .wrapper_stories {
        padding: 0;
    }

    main .wrapper_stories .search {
        margin-bottom: 30px;
    }

    main .wrapper_stories .wrapper-box .fox-img {
        width: 200px;
    }

    .footer {
        border-radius: 50px 50px 0 0;
    }

    .footer .download-list .download {
        margin: 0 10px 10px 0;
    }

    .footer .download-list .download a {
        height: 50px;
        font-size: 16px;
        padding: 10px;
        border-radius: 15px;
    }

    .footer .download-list .download img {
        width: 30px;
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0 10px;
    }

    .header .container {
        align-items: start;
    }

    .header .logo img {
        width: 125px;
    }

    .header nav, .header .header-lang {
        display: none;
    }

    .header .menu-btn {
        display: flex;
    }

    .title-text {
        font-size: 32px;
        text-align: center;
    }

    main .wrapper {
        padding-bottom: 60px;
    }

    main .wrapper .download-list {
        margin: 30px 0;
        flex-wrap: nowrap;
    }

    main .wrapper .download-list .download {
        margin-right: 9px;
    }

    main .wrapper .download-list .download:last-child {
        margin-right: 0;
    }

    main .wrapper .download-list .download a {
        width: 75px;
        height: 65px;
        border-radius: 10px;
        font-size: 14px;
    }

    main .wrapper .download-list .download a img {
        width: 22px;
        height: 31px;
        margin-bottom: 2px;
    }

    main .wrapper .search {
        width: 100%;
        margin-bottom: 70px;
        flex-direction: column;
        align-items: center;
    }

    main .wrapper .search .search-box {
        width: 100%;
        margin: 0;
    }

    main .wrapper .search .search-box input {
        height: 60px;
        border-radius: 20px;
        padding: 0 50px 0 15px;
        font-size: 18px;
        margin: 0;
    }

    .downloader-wrapper {
        width: 100%;
    }

    main .wrapper .search .search-box .info {
        top: 13px;
        right: 10px;
        cursor: pointer;
    }

    main .wrapper .search .download__btn {
        width: 160px;
        height: 60px;
        margin-top: 10px;
    }

    main .wrapper .fox-img {
        width: 70%;
    }

    main .usersChoose {
        border-radius: 50px;
        padding: 40px 0 0;
        margin-bottom: 150px;
    }

    main .usersChoose .star {
        left: -40px;
        top: -110px;
        width: 200px;
    }

    main .usersChoose .smile {
        width: 70px;
        right: -50px;
    }

    main .usersChoose .usersChoose-item .item {
        width: 90%;
        border-radius: 20px;
        padding: 20px;
        margin-top: 20px;
    }

    main .usersChoose .usersChoose-item .item .item-text {
        font-size: 20px;
    }

    main .fast-download {
        padding: 50px 30px 500px;
        margin-top: 50px;
    }

    main .fast-download .box-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    main .fast-download .title-subtext {
        font-size: 20px;
        margin-top: 10px;
    }

    main .fast-download .box-info {
        position: absolute;
        top: 210px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(0);
    }

    main .fast-download .value-text {
        left: auto;
        right: 30px;
        bottom: 30px;
    }

    main .steps .steps-box {
        margin-top: 50px;
    }

    main .steps .steps-box .steps-item {
        flex-direction: column;
    }

    main .steps .steps-box .steps-item .item {
        width: 100%;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 10px;
    }

    main .steps .steps-box .steps-item .item:nth-child(2) {
        transform: none;
    }

    main .steps .steps-box .steps-item .item .item-num {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin: 0 auto;
    }

    main .steps .steps-box .steps-item .item .item-text {
        font-size: 18px;
        text-align: center;
    }

    main .steps .steps-box .notebook {
        margin-top: -50px;
    }

    main .compare {
        margin: 100px 0;
    }

    main .compare .compare-box {
        margin: 40px auto 0;
        flex-direction: column-reverse;
    }

    main .compare .compare-box .fox-img {
        display: none;
    }

    main .compare .compare-box .compare-item {
        width: 100%;
    }

    main .compare .compare-box .compare-item .item-head {
        height: 120px;
    }

    main .compare .compare-box .compare-item .item-head .head-title {
        font-size: 24px;
    }

    main .compare .compare-box .compare-item:first-child {
        margin-top: 40px;
    }

    main .reviews {
        padding: 40px 0;
    }

    main .reviews .reviews-box {
        width: 100%;
        margin: 30px auto 0;
    }

    main .reviews .reviews-box .review {
        border-radius: 20px;
    }

    main .reviews .reviews-box .review-head .review-avatar {
        width: 60px;
        height: 60px;
    }

    main .reviews .reviews-box .review-text {
        font-size: 18px;
    }

    main .faqs {
        padding: 80px 0 60px;
    }

    main .faqs .container {
        max-width: none;
        width: 100%;
    }

    main .faqs .container .fox-img {
        width: 250px;
    }

    main .faqs .title-text {
        font-size: 26px;
        padding: 130px 0 140px;
        position: relative;
        z-index: 3;
    }

    main .faqs .faq {
        border-radius: 15px;
        margin-bottom: 10px;
    }

    main .faqs .faq:last-child {
        margin: 0;
    }

    main .faqs .faq .faq-head {
        padding: 20px 15px;
    }

    main .faqs .faq .faq-head .faq-title {
        font-size: 22px;
    }

    main .faqs .faq .faq-head .faq-btn svg {
        width: 30px;
    }

    main .faqs .faq .faq-body .faq-text {
        padding: 0 15px 20px;
        font-size: 18px;
    }

    main .blogs .blog-btns .prev, main .blogs .blog-btns .next {
        width: 40px;
        height: 35px;
    }

    main .blogs .blog-btns .prev span, main .blogs .blog-btns .next span {
        display: none;
    }

    main .blogs .blog-btns .prev {
        margin-right: 8px;
    }

    main .blogs .blog-btns .prev svg {
        margin-right: 0;
    }

    main .blogs .blog-btns .next svg {
        margin-left: 0;
    }

    main .blogs .blog-btns .pagination {
        margin: 0 8px 0 0;
    }

    main .blogs .blog-btns .pagination li {
        margin-right: 3px;
    }

    main .blogs .blog-btns .pagination li:last-child {
        margin-right: 0;
    }

    main .blogs .blog-btns .pagination li a {
        width: 40px;
        height: 35px;
        font-size: 18px;
    }

    main .wrapper_stories {
        padding: 0;
    }

    main .wrapper_stories .search {
        margin-bottom: 30px;
    }

    .footer {
        padding: 40px 0;
        border-radius: 25px 25px 0 0;
    }

    .footer .container {
        justify-content: space-between;
    }

    .footer nav {
        width: 100%;
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
    }

    .footer .download-list {
        flex-direction: column;
    }

    .footer .download-list .download {
        margin: 0 0 5px 0;
    }

    .footer .nav-list {
        flex-direction: column;
        align-items: end;
        margin: 0;
    }

    .footer .nav-list li {
        margin: 0 0 10px 0;
        text-align: right;
    }

    .footer .footer-text {
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    main .blogs {
        margin-bottom: 60px;
    }

    main .blogs .blog {
        width: 49.5%;
    }

    main .blogs .blog .blog-img {
        height: 140px;
        border-radius: 10px;
    }

    main .blogs .blog .blog-text {
        font-size: 16px;
        margin: 10px 0;
        overflow-wrap: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    main .blogs .blog .blog-info {
        font-size: 14px;
    }

    main .blogs .blog .blog-info .data {
        margin-right: 10px;
    }

    main .blogs .blog_big .blog-img {
        height: 200px;
    }

    main .blogs .blog_middle .blog-img {
        height: 170px;
    }

    main .blogs .blog_h .blog-img {
        height: 160px;
    }

    main .blog-page {
        margin-bottom: 80px;
    }

    main .blog-page .blog .blog-title {
        font-size: 24px;
    }

    main .blog-page .blog .blog-info {
        margin: 15px 0 20px;
    }

    main .blog-page .blog .blog-img {
        height: 200px;
        border-radius: 20px;
    }

    main .blog-page .blog .blog-subtitle {
        font-size: 20px;
    }

    main .blog-page .blog .blog-text {
        font-size: 18px;
    }

    main .blog-page .blog .blog-card {
        flex-direction: column-reverse;
    }

    main .blog-page .blog .blog-card .card-img {
        width: 100%;
        height: 300px;
        margin-top: 20px;
        border-radius: 20px;
    }

    main .blog-page .blog .blog-card .card-info {
        width: 100%;
    }

    main .blog-page .blog .blog-card .card-info .card-title {
        font-size: 24px;
    }

    main .blog-page .blog .blog-card .card-info .card-subtitle {
        font-size: 18px;
    }

    main .blog-page .blog .blog-card .card-info .card-text {
        font-size: 16px;
        border-radius: 20px;
    }

    main .contact {
        margin-bottom: 80px;
    }

    main .contact .container .fox {
        position: relative;
        width: 180px;
        top: 0;
        right: 0;
        margin-top: 15px;
    }

    main .contact .contact-form {
        margin-top: -15px;
    }
}

p.under-headline {
    text-align: center;
    font-size: 16px;
    line-height: 120%;
    color: #1f202a;
    max-width: 860px;
    margin-top: 8px;
}

.main-h1 {
    font-size: 32px;
}

.main-h2 {
    font-size: 40px;
}

.step-title {
    font-size: 26px;
    margin-top: 10px;
}

.speed-title {
    font-size: 40px;
}

.momentsave-description {
    margin-top: 45px;
}

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

.how-to-download-stories-h2 {
    font-size: 32px;
}

.stories-steps-box {
    margin-bottom: 75px;
}

.userChoisesStories {
    margin-bottom: 0px !important;
    padding-bottom: 80px !important;
}

.usersChoosePhotos {
    padding-bottom: 80px !important;
    margin-bottom: 110px !important;
}

.steps-photos {
    padding-bottom: 65px;
}

.fox-img {
    min-height: 225px;
}

div.search {
    min-height: 80px;
}

.download a img {
    width: 38px;
    height: 38px;
}

.alert-danger li {
    color: red;
}

.footer-text {
    margin-top: 20px!important;
}

.footer .download-list {
    margin: 0 auto;
}
