@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');

:root {
    --modal-btn-color: #4ECCA3;
}

body {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #393e46;
    background-color: #EEEEEE;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;
    border: 0;
    background-color: #e5e5e5;
}

/* Page */
.page {
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: 820px;
    position: relative;
    background-color: #232931;
}

.intro__inner {
    padding-top: 100px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro__title {
    color: #eee;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: 1px;
    font-family: "Lalezar", "Open Sans";
    margin-bottom: 20px;
}

.text-green {
    color: #4ECCA3;
}
.text-white{
    color: #ffffffa8;
}
.m-t-20{
    margin-top: 20px;
}
.m-t-50{
    margin-top: 50px;
}

.bg-dark{
    background-color: #393e46;
    padding: 3px 3px 1px 3px;
    width: fit-content;
}

.intro__suptitle {
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 2;
    color: #ffffffa8;
}

.info-text{
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 1.3;
    color: #71eac3;
    max-width: 400px;
    padding-bottom: 10px;
}

.info-text:after{
    content: "";
    width: 90px;
    height: 90px;
    position: absolute;
    top: 10px;
    right: 30px;
    background-image: url(/assets/images/try.png);
    background-size: cover;
}

/* Header */
.header {
    width: 100%;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.fixed {
    padding: 10px 0;
    background-color: #393e46;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
}

.header.active {
    background-color: #4ecca3;
}

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

.header__logo {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

/* Nav */
.nav {
    font-size: 14px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #4ecca3;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .1s linear;
}

.nav__link:hover {
    color: #4ecca3;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #4ecca3;
}

/* Nav toggle */
.nav-toggle {
    width: 30px;
    padding: 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -2px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

/* Button */
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 15px 30px;
    border: 3px solid #4ECCA3;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: background .1s linear, color .1s linear;
    letter-spacing: 2px;
    font-family: "Lalezar", "Open Sans";
}

.btn:hover {
    background-color: #4ECCA3;
    color: #393e46;
}

.btn-dark{
    border: 3px solid #393e46;
    background-color: #393e46;
    color: #4ECCA3;
}

/* Section */
.section {
    padding: 120px 0;
}

.section--devices {
    padding: 0!important;
    background: url("../images/devices-bg.jpg") center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.section--gray {
    background-color: #f8f8f8;
}

.section__header {
    width: 100%;
    max-width: 50%;
    margin-bottom: 70px;
    position: relative;
}

.section__suptitle {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: 2px;
    font-family: "Lalezar", "Open Sans";
    margin-bottom: 30px;
}

.section__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
}

.section__text {
    font-size: 15px;
    color: #999;
}

/* Statistics */
.statistics {
    background-color: #393e46;
    padding: 20px 0 50px 0;
}

/* Devices */
.devices {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    max-width: 750px!important;
}

.devices__item--iphone {
    max-width: 100%;
    height: auto;
}

/*laptop-section*/
.laptop-section{
    position: relative;
    min-height: 900px;
}

/* We do */
.wedo {
    display: flex;
    flex-wrap: wrap;
    background-color: #393E46;
    padding: 50px;
    border-radius: 50px;
}

.wedo__item {
    width: 50%;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wedo__item h2{
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: 2px;
    font-family: "Lalezar", "Open Sans";
    margin-bottom: 15px;
    max-width: 80%;
    color: #4ecca3;
}

.wedo__item h3{
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.5;
    max-width: 80%;
    font-weight: normal;
}

.my-ul{
    margin: 0 0 20px 0;
    font-size: 16px;
}

.my-ul li{
    color: #ffffff;
    font-weight: bold;
}

.wedo__img {
    max-width: 100%;
    height: auto;
}

/* Statistics */
.stat {
    display: flex;
    flex-wrap: wrap;
    background-color: #464b52;
    border-radius: 50px;
}

.stat__item {
    flex: 1 1 0;
    padding: 70px 25px;
    text-align: center;
    color: #fff;
}

.stat__count {
    width: 100px;
    margin: 0 auto;
}

.stat__count img {
    max-width: 100%;
}

.stat__text {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffffa8;
    font-weight: 700;
    margin-top: 15px;
}

/*.abs_img_righ*/
.abs_img_righ{
    position: absolute;
    width: 150%;
    bottom: -50px;
    left: -150px;
}

.all_img_righ{
    position: absolute;
    width: 150%;
    bottom: 0;
    left: -90px;
}

/* Footer */
.footer {
    padding-top: 65px;
    background-color: #f8f8f8;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
    padding-bottom: 65px;
}

.footer__col {
    padding: 0 15px;
}

.footer__col--first {
    width: 33%;
}

.footer__col--second {
    width: 29%;
}

.footer__col--third {
    width: 15%;
}

.footer__col--fourth {
    width: 22%;
}

.footer__logo {
    margin-bottom: 10px;
    font-size: 46px;
    font-weight: 700;
    color: #393e46;
}

.footer__text {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 15px;
    color: #393e46;
}

.footer__title {
    margin: 30px 0;
    font-size: 14px;
    color: #393e46;
    font-weight: bold;
    text-transform: uppercase;
}

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

.link__item {
	color: #4ecca3;
	text-decoration: none;
	transition: 0.5s;
}

.link__item:hover {
	color: #000000;
	text-decoration: none;
	transition: 0.5s;
}

/* Copyright */
.copyright {
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    color: #333;
    text-align: center;
}
.copyright span {
    color: #f38181;
}

.text-center{
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    padding-top: 150px;
    padding-bottom: 70px;
}

.text-center .section__suptitle{
    margin-bottom: 0;
}

.bg_text {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.bg_strock_text-white {
    font-size: 220px;
    font-weight: 700;
    color: #eeeeee;
    text-shadow: 0px 10px 40px rgb(218 218 218);
    letter-spacing: 3px;
    line-height: 220px;
    font-family: "Lalezar", "Open Sans";
}

.how-it-works{
    z-index: 2;
    position: relative;
    padding: 0 100px 0 0;
}

.how-it-works p {
    margin-left: 50px;
    color: #ffffff;
    font-size: 16px;
}

.how-it-works img {
    width: 30px;
    height: 30px;
    float: left;
    margin-top: 22px;
}

.bg-abs-dark{
    position: absolute;
    width: 150%;
    height: 120%;
    top: -10%;
    left: -50%;
    background-color: #4ECCA3;
    z-index: 0;
    border-radius: 50px;
}

.funlel{
    max-width: 800px;
    width: 100%;
    margin-bottom: 100px
}

.drag-drop{
    max-width: 100%;
    margin-bottom: 100px
}

@media (max-width: 1366px) {
    .section__suptitle {
        font-size: 50px;
        margin-bottom: 30px;
    }
    .intro__suptitle {
        font-size: 19px;
    }
    .intro__title {
        font-size: 70px;
    }
    .bg_strock_text-white {
        font-size: 170px;
    }
    .text-center {
        max-width: 90%;
        padding-top: 100px;
        padding-bottom: 0;
    }
    .how-it-works p {
        font-size: 15px;
    }
    .laptop-section {
        min-height: 1000px;
    }
    .how-it-works {
        padding: 0 50px 0 0;
    }
    .all_img_righ {
        left: -90px;
    }
    .abs_img_righ {
        width: 200%;
        bottom: -50px;
        left: -70px;
    }
    .devices {
        max-width: 650px!important;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 100px 0;
    }
    .intro__inner {
        padding-top: 20px;
        max-width: 900px;
    }
    .intro__title {
        font-size: 60px;
    }
    .section__title {
        font-size: 20px;
    }
    .section__suptitle {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .section__header {
        max-width: 60%;
        margin-bottom: 50px;
        position: relative;
    }
    .bg_text {
        right: -100px;
    }
    .bg_strock_text-white {
        font-size: 140px;
    }
    .abs_img_righ {
        width: 200%;
        bottom: -50px;
        left: -30px;
    }
    .devices {
        max-width: 460px!important;
    }
    .statistics {
        padding: 80px 0 50px 0;
    }
    .all_img_righ {
        left: -20px;
        bottom: -20px;
    }
    .wedo__item {
        width: 50%;
        position: relative;
        min-height: 340px;
    }
    .wedo__item h2 {
        font-size: 35px;
        max-width: 100%;
    }
    .wedo__item h3 {
        font-size: 20px;
        max-width: 100%;
    }
    .stat__item {
        padding: 20px 25px;
    }
    .footer__col--first {
        width: 100%;
    }
	.footer__col--third {
		width: 50%;
	}
    .footer__col--second,
    .footer__col--fourth {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    .intro__inner {
        padding-top: 40px;
        max-width: 700px;
    }
    .intro__title {
        font-size: 50px;
    }
    .intro {
        height: 60vh;
        min-height: 650px;
    }
    .header {
        padding: 10px 0;
    }
    .bg_text {
        display: none;
    }
    .section__header {
        max-width: 90%;
    }

    .abs_img_righ {
        position: relative;
        width: 100%;
        bottom: -30px;
        left: 0;
    }
    .all_img_righ {
        position: relative;
        width: 100%;
        bottom: -20px;
        left: 0;
    }
    .laptop-section {
        min-height: 1150px;
    }
    .devices {
        max-width: 550px;
        bottom: -100px;
    }
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #4ECCA3;
        padding: 20px 0;
    }
    .nav.active {
        display: block;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 8px 20px;
    }
    .nav-toggle {
        display: block;
    }
    .section {
        padding: 80px 0;
    }
    .section--devices {
        padding-bottom: 0;
    }
    .wedo__item {
        width: 100%;
    }
    .footer__col--second,
    .footer__col--third,
	.footer__col--fourth {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .devices {
        max-width: 400px;
    }
}


@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    .section__header {
        margin-bottom: 40px;
        max-width: 95%;
    }
    .intro__suptitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .wedo__item h2 {
        font-size: 25px;
        max-width: 100%;
    }
    .wedo {
        padding: 30px;
        border-radius: 20px;
    }
    .intro__title {
        font-size: 30px;
    }
    .section__header {
        margin-bottom: 30px;
    }
    .wedo__item h3 {
        font-size: 17px;
    }
    .my-ul {
        font-size: 14px;
        padding-left: 16px;
    }
    .info-text:after {
        width: 70px;
        height: 70px;
        top: 10px;
        right: -10px;
    }
    .text-center {
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .how-it-works p {
        font-size: 14px;
        margin-left: 45px;
    }
    .laptop-section {
        min-height: 1250px;
    }
    .wedo__item {
        min-height: 170px;
    }
    .section__suptitle {
        font-size: 25px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .section__title {
        font-size: 17px;
    }
    .devices {
        max-width: 300px;
    }
    .devices__item--iphone {
        bottom: -50px;
        right: -80px;
    }
    .bg-abs-dark {
        position: absolute;
        width: 150%;
        height: 110%;
        top: -5%;
        border-radius: 20px;
    }
    .statistics {
        padding: 80px 0 30px 0;
    }
    .section {
        padding: 50px 0;
    }
    .stat__item {
        padding: 15px 25px;
    }
    .abs_img_righ {
        bottom: -20px;
    }
    .how-it-works {
        padding: 0 30px 0 0;
    }
    .btn {
        font-size: 16px;
    }
    .info-text {
        font-size: 14px;
    }
    .stat__count {
        width: 70px;
    }
    .stat__text {
        font-size: 14px;
        margin-top: 0;
    }
    .stat {
        border-radius: 20px;
        padding: 15px;
    }
}


/*price*/
.background {
    padding: 25px 0;
    position: relative;
    width: 100%;
}

.price-title{
    text-align: center;
    padding: 70px 0 20px 0;
}

.background::after {
    content: '';
    background: #393e46;
    height: 500px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.panel {
    background-color: #eee;
    border-radius: 50px;
    padding: 15px 25px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.pricing-table {
    box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .pricing-table {
        flex-direction: row;
    }
}

.pricing-table * {
    text-align: center;
    text-transform: uppercase;
}

.pricing-plan {
    border-bottom: 1px solid #e1f1ff;
    padding: 25px;
}

.pricing-plan:last-child {
    border-bottom: none;
}

.pricing-img {
    margin-bottom: 25px;
    max-width: 90px;
    width: 100%;
}

.pricing-header {
    color: #393e46;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Lalezar", "Open Sans";
}

.pricing-features {
    color: #393e46;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 50px 0 25px;
    list-style: none;
    padding: 0;
}

.pricing-features-item {
    border-top: 1px solid #4ecca357;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
}

.pricing-features-item:last-child {
    border-bottom: 1px solid #e1f1ff;
}

.pricing-price {
    color: #000000;
    display: block;
    font-size: 50px;
    font-weight: 700;
    font-family: "Lalezar", "Open Sans";
}

.pricing-button {
    border: 2px solid #4ecca3;
    border-radius: 30px;
    color: #4ecca3;
    display: inline-block;
    margin: 25px 0;
    padding: 15px 35px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
    background-color: #4ecca3;
    color: white;
}

.pricing-button.is-featured {
    background-color: #4ecca3;
    color: #fff;
}

.pricing-button.is-featured:hover,
.pricing-button.is-featured:active {
    background-color: #4ecca3;
    color: black;
}

.peruser{
    color: black;
    font-size: 16px;
    text-transform: none;
    font-weight: normal;
}

.s {
    text-decoration: line-through;
}

@media (min-width: 900px) {
    .pricing-plan {
        border-bottom: none;
        border-right: 1px solid #4ecca357;
        flex-basis: 100%;
        padding: 25px 50px;
    }

    .pricing-plan:last-child {
        border-right: none;
    }
}

@media (max-width: 600px){
    .background {
        padding: 0;
    }
    .pricing-plan {
        padding: 15px;
    }
    .pricing-features {
        margin: 30px 0 20px 0;
        padding: 0;
    }
    .pricing-button {
        margin: 10px 0 50px 0;
    }
    .no-m-b {
        margin: 0;
    }
    .panel {
        border-radius: 20px;
    }
}