*, input, textarea {
    font-family: 'Montserrat', sans-serif;
}


.animation-bounceUp {
    opacity: 0;
    transition: all .7s ease-out;
    transform: translate3d(0, 200px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

@media only screen and (max-width: 1040px) {
    .animation-bounceUp {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animation-bounceUp.inView {
    opacity: 1;
    transform: translateZ(0)
}

.animation-fadeInLeft {
    animation-duration: 1s;
    animation-name: a;
    animation-fill-mode: both
}

@media only screen and (max-width: 768px) {
    .animation-fadeInLeft {
        animation-duration: 0
    }
}

.animation-fadeOutRightBig {
    animation-duration: 1s;
    animation-name: b;
    animation-fill-mode: both
}

@media only screen and (max-width: 768px) {
    .animation-fadeOutRightBig {
        animation-duration: 0
    }
}

.color--blue {
    color: rgb(0, 137, 250);
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    color: rgb(0, 137, 250);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease-in-out !important;
    box-sizing: border-box;
}

.btn--primary {
    background-color: var(--color-primary, #0089FA);
    color: #FFF;
    font-weight: 700;
}

.btn--primary::before {
    z-index: -1;
    position: absolute;
    border-radius: 30px;
    content: "";
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border: 1px solid transparent;
}

.btn--primary:hover::before {
    border-color: var(--color-primary, #0089FA);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.btn--primary:hover {
    background-color: #FFF;
    color: var(--color-primary, #0089FA);
}


.btn--secondary {
    border: 1px solid var(--color-primary, #0089FA);
    background-color: #FFF;
    color: var(--color-primary, #0089FA);
}

.btn--secondary:hover {
    background-color: var(--color-primary, #0089FA);
    color: #FFF;
}

.list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.list .item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
}

#promo-header {
    padding: 150px 0 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: linear-gradient(180.00deg, rgb(239, 247, 253), rgba(255, 255, 255, 0) 100%);
    color: rgb(0, 0, 0);
}

#promo-header .heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
}

#promo-header .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    max-width: 600px;
}

#promo-header .btn {
    text-transform: uppercase;
}

@media only screen and (max-width: 790px) {
    #promo-header {
        padding: 150px 20px 100px 20px;
    }
}

@media only screen and (max-width: 490px) {
   #promo-header {
        padding: 80px 30px 60px 30px;
    }
}

@media only screen and (max-width: 390px) {
    #promo-header .heading {
        font-size: 22px;
        line-height: 28px;
    }

    .btn,
    #promo-header .description {
        font-size:12px;
        line-height: 15px;
    }

    #promo-header .btn{
        font-size: 12px;
    }
}

#create-demo {
    display: none;
    position: relative;
}

#create-demo .modal-overlay {
    background: none repeat scroll 0 0 #1c1c1c87;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

#create-demo .modal {
    background: none repeat scroll 0 0 #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 30px;
    max-width: 330px;
    width: 90%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal input {
    border: 1px solid var(--color-primary, #0089FA);
    display: block;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    margin: 20px 0 10px;
    padding: 10px;
    font-size: 14px;
}

.modal input:focus {
    outline: none;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    opacity: 0.6;
    cursor: pointer;
}

.modal-close:hover {
    opacity: 1
}

.modal-close:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: 8px;
    background: #000;
}

.modal-close:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    left: 8px;
    top: 0;
    background: #000;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.modal .title {
    font-weight: bold;
}

.modal .description {
    font-size: 14px;
}

.modal .btn {
    margin-top: 10px;
}

#welcome .btn {
    text-transform: uppercase;
}

#welcome {
    padding: 60px 20px 120px 102px;
}

#welcome .content {
    display: flex;
    gap: 123px;
    padding-bottom: 30px;
}

#welcome .gallery-wrapper .arr {
    width: 40px;
    height: 40px;
    top: 0;
    bottom: 0;
    position: absolute;
}

#welcome .gallery-wrapper .arr--next {
    right: -70px;
}

#welcome .gallery-wrapper .arr--prev {
    left: -70px;
}

#welcome .gallery-wrapper .owl-nav {
    position: absolute;
    top:45%;
    width:100%;
}

#welcome .gallery-wrapper .owl-dots{
    position: absolute;
    margin: 10px 0;
    width: 100%;
    display: none;
}

#welcome .gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 495px;
    box-shadow: 0px 10px 50px 5px rgba(53, 96, 132, 0.1);
}

#welcome .description-wrapper {
    display: flex;
    gap: 30px;
    flex-direction: column;
    color: rgb(0, 0, 0);
    flex-basis: 45%;
    max-width: 505px;
}

#welcome .description-wrapper p {
    margin: 10px 0;
}

#welcome .heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
}

#welcome .description {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

#welcome .btn {
    align-self: flex-start;
}

#welcome .list {
    color: rgb(44, 47, 71);
}

#welcome .list .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

#functionality {
    padding: 0 22px;
}

#functionality .heading {
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}

#functionality .list {
    padding: 60px 0 190px 0;
    color: rgb(44, 47, 71);
    flex-direction: row;
}

#functionality .item {
    border-radius: 10px;
    background: rgb(242, 246, 249);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 20px 30px 20px;
    flex-basis: 20.4%;
}

#functionality .item .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

#functionality .item .description {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

#gui .content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 123px;
    padding: 80px 0 80px 0;
    background: rgb(239, 247, 253);
}

#gui .image {
    background-size: contain;
    padding-bottom: 43%;
    flex-basis: 75%;
    background-repeat: no-repeat;
}

#gui .description-wrapper {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

#gui .description-wrapper .description {
    font-weight: 500;
}

#gui .list .item {
    gap: 15px;
}

#gui .btn {
    text-transform: uppercase;
}

#pricing {
    padding: 0 228px 180px 228px;
}


#pricing .redaction-options {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: rgb(247, 247, 251);
    margin: 40px 0 50px 0;
}

#pricing .heading {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}

#pricing .option {
    display: flex;
    gap: 62px;
    padding: 50px 25px;
    color: rgb(0, 0, 0);
}

#pricing .option .col1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#pricing .option .col1 .title {
    color: rgb(0, 137, 250);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

#pricing .option .col1 .description {
    color: rgb(129, 132, 139);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
}

#pricing .option .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

#pricing .option .col2 .list {
    margin-top: 20px;
}

#pricing .option .price {
    color: rgb(0, 137, 250);
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
}

#pricing .option .old-price {
    color: rgb(44, 47, 71);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-decoration-line: line-through;
}

#pricing .option .col3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

#pricing .option .col3 .description {
    color: rgb(129, 132, 139);
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
}

#pricing .btn {
    margin: 0 auto;
    display: block;
    max-width: 400px;
    text-transform: uppercase;
}

#pricing .try-trial {
    max-width: 420px;
    display: block;
    margin: 0 auto;
}

#choose-design {
    background: rgb(239, 247, 253);
    padding: 100px 0 203px 0;
}

#choose-design .heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}

#choose-design .sites {
    padding: 50px 25px 80px 25px;
}

#choose-design .site {
    background: rgb(248, 250, 253);
    padding: 20px;
    border-radius: 20px;
    width: 290px;
    opacity: 0.3;
}

#choose-design .swiper {
    padding: 0 60px;
}

#choose-design .swiper,
#choose-design .swiper-wrapper{
    min-height: 580px;
}

#choose-design .swiper-slide-prev,
#choose-design .swiper-slide-active,
#choose-design .swiper-slide-next {
    opacity: 1;
}

#choose-design .swiper-slide-active {
    border: 2px solid rgb(0, 137, 250);
    box-shadow: 0 10px 20px 0 rgba(183, 194, 208, 0.2);
    width: 350px;
}

#choose-design .site.swiper-slide-active .label {
    text-align: left;
}

#choose-design .swiper-wrapper {
    align-items: center;
}

#choose-design .swiper-button-next {
    right: 0;
}

#choose-design .swiper-button-prev {
    left: 0;
}

#choose-design .swiper-button-prev,
#choose-design .swiper-button-next {
    background: none;
    width: 40px;
    height: 40px;;
}

#choose-design .site img {
    width: 100%;
    cursor: pointer;
}

#choose-design .site .content {
    color: rgb(0, 0, 0);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#choose-design .site .label {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
}

#choose-design .site .button-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#choose-design .site .demo-link {
    color: rgb(44, 47, 71);
    display: flex;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
}

#choose-design .site .selected-btn {
    color: rgb(0, 137, 250);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    text-transform: uppercase;
}


#choose-design .license-wrapper {
    max-width: 570px;
    margin: 40px auto 0 auto;
    display: flex;
    gap: 25px;
}

#choose-design .license-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-basis: 220px;
    text-align: center;
}

#choose-design .license-buttons {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
}

#choose-design .license-buttons .btn {
    font-size: 14px;
    text-transform: uppercase;
}

#choose-design .license-selector select {
    width: 100%;
    min-width: 220px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background-color: #FFF;
    height: 40px;
    padding: 11px 15px;
    outline: var(--color-primary, #0089FA);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
    background-image: url(/images/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#choose-design .license-buttons .btn--secondary {
    color: rgb(44, 47, 71);
    border: 1px solid rgb(196, 206, 211);
}

#choose-design .license-buttons .btn--secondary:hover {
    color: #FFFFFF;
}

#choose-design .license-selector a {
    color: #0089FA;
    text-underline-offset: 5px;
}

#for-users, #check-list {
    padding: 120px 125px 120px 125px;
}

#check-list .description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
}

#check-list .description-wrapper .heading {
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
}

#check-list .description-wrapper .description {
    color: rgb(44, 47, 71);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

#check-list .steps {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 40px 0;
}

#check-list .step {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    padding: 20px 25px;
    border-radius: 10px;
    gap: 10px;
    background: rgb(245, 247, 250);
}

#check-list .num {
    font-size: 72px;
    font-weight: 700;
    line-height: 88px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#check-list .num::after {
    content: ".";
    color: rgb(0, 137, 250);
}

#check-list .step .heading {
    color: rgb(0, 137, 250);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

#check-list .step .title {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
}

#check-list .step .description {
    color: rgb(44, 47, 71);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

#check-list .btn {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    text-transform: uppercase;
    font-size: 14px;
}



#for-users .description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
}

#for-users .description-wrapper .heading {
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    text-transform: uppercase;
}

#for-users .description-wrapper .description {
    color: rgb(44, 47, 71);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

#for-users .steps {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: 40px 0;
}

#for-users .step {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    padding: 20px 25px;
    border-radius: 10px;
    gap: 10px;
    background: rgb(245, 247, 250);
}

#for-users .num {
    font-size: 72px;
    font-weight: 700;
    line-height: 88px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#for-users .num::after {
    content: ".";
    color: rgb(0, 137, 250);
}

#for-users .step .heading {
    color: rgb(0, 137, 250);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

#for-users .step .title {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-align: left;
}

#for-users .step .description {
    color: rgb(44, 47, 71);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

#for-users .btn {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    text-transform: uppercase;
    font-size: 14px;
}


@media only screen and (max-width: 1250px){
    #functionality .list .item {
        flex-basis: 20%;
    }
}


@media only screen and (max-width: 1190px) {
    #welcome .gallery-wrapper{
        flex-basis: 40%;
        width: 40%;
    }
}

@media only screen and (max-width: 1150px){
 #functionality .list .item {
        flex-basis: 19.5%;
    }
}

@media only screen and (max-width: 1024px){
 #functionality .list .item {
        flex-basis: 27.5%;
    }
}

@media only screen and (max-width: 990px) {
    #functionality {
        padding: 0 36px;
    }

    #functionality .list {
        padding: 40px 45px 80px 45px;
    }

    #functionality .list .item {
        flex-basis: 26%;
    }   

    #pricing {
        padding: 0 40px 120px 40px;
    }

    #pricing .redaction-options {
        margin: 40px 0;
    }

    #pricing .option {
        gap: 20px;
    }

    #choose-design .swiper-button-next,
    #choose-design .swiper-button-prev{
        display: none;
    }

     #check-list {
        padding: 80px 40px;
    }

    #check-list .steps {
        margin: 40px 0 30px 0;
    }
}

@media only screen and (max-width: 790px) {
    .btn {
        font-size: 14px;
    }

    #welcome .gallery-wrapper .arr{
        height: 20px;
        width: 20px;
    }

    #welcome .gallery-wrapper .arr--next{
        right: -30px;
    }

    #welcome .gallery-wrapper .arr--prev{
        left: -30px;
    }

    #welcome {
        padding: 30px 85px 80px 53px;
    }

    #welcome .content {
        gap: 43px;
    }

    #welcome .description-wrapper {
        flex-basis: 47%;
    }

    #welcome .gallery-wrapper {
        flex-basis: 48%;
    }

    #functionality .list .item {
        flex-basis: 41.5%;
    } 

    #gui .content {
        gap: 23px;
    }

    #gui .content .image {
        flex-basis: 100%;
    }

    #gui .description-wrapper {
        gap: 20px;
    }

    #pricing .heading {
        text-align: center;
    }

    #pricing .col1,
    #pricing .col2 {
        flex-basis: 47%;
    }

    #choose-design {
        padding: 100px 0 160px 0;
    }

     #check-list .steps {
        flex-wrap: wrap;
    }

    #check-list .step {
        flex-basis: 40.5%;
    }
}

@media only screen and (max-width: 750px){
    #functionality .list .item{
        flex-basis:40.5%;
    }
}

@media only screen and (max-width: 690px) {
   #welcome .gallery-wrapper {
        flex-basis: 100%;
        width: 100%;
        margin: auto;
    }

    #welcome {
        padding: 30px 20px;
    }

    #functionality .list,
    #welcome .content {
        flex-direction: column;
    }

    #welcome .description-wrapper .btn {
        display: block;
        margin: 0 auto;
    }

    #choose-design .license-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 30px auto 0 auto;
    }

    #choose-design .license-buttons {
        flex-direction: column !important;
        align-items: center;
    }

    #choose-design .license-selector {
        flex-basis: 0;
    }

       #check-list .steps {
        flex-direction: column;
    }
}

@media only screen and (max-width: 590px){
    #welcome .gallery-wrapper .owl-nav{
        display: none;
    }

    #welcome .gallery-wrapper .owl-dots{
        display: block;
    }

    #welcome .description-wrapper {
        margin-top: 10px;
    }
}


@media only screen and (max-width: 490px) {
    #welcome .content {
        gap: 40px;
    }

    #functionality .list {
        padding: 30px 0 60px 0;
    }

    #gui .content {
        padding: 50px 0;
        flex-direction: column;
    }

    #gui .image {
        width: 100%;
        padding-bottom: 85%;
    }

    #gui .description-wrapper {
        padding: 0 20px;
    }

    #gui .content .btn {
        display: block;
        margin: 0 auto;
    }

    #pricing {
        padding: 0 20px 80px 20px;
    }

    #pricing .redaction-options {
        margin-top: 30px;
    }

    #pricing .option {
        padding: 50px 20px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    #choose-design{
        padding: 80px 0 100px 0;
    }

    #choose-design .sites{
        padding: 40px 0 80px 0;
    }

    #choose-design .swiper,
    #choose-design .swiper-wrapper{
        min-height: unset;
    }

    #choose-design .site {
        padding: 10px;
        margin-right: 10px !important;
        width: 226px;
    }

    #choose-design .site .content {
        margin-top: 15px;
        gap: 15px;
    }

    #choose-design .site .content .label,
    #choose-design .site .content .demo-link,
    #choose-design .site .content .selected-btn {
        font-size: 12px;
        line-height: 15px;
    }

    #choose-design .swiper {
        padding: 0;
    }

     #check-list {
        padding: 60px 20px 90px 20px;
    }

    #check-list .steps {
        gap: 16px;
        margin: 30px 0;
    }
}

@media only screen and (max-width: 390px) {
    #welcome .description-wrapper{
        gap:20px;
    }

    #welcome .description-wrapper .list{
        gap:25px;
    }

    .heading {
        line-height: 18px !important;
        font-size: 14px !important;
    }

    .description:not(#pricing .description),
    .title:not(#pricing .title) {
        font-size: 12px !important;
        line-height: 15px !important;
    }

        #create-demo .modal {
        width: 70%;
        max-width: unset;
    }

    .modal .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

     #check-list .description-wrapper {
        gap: 20px;
    }


    #check-list .btn {
        font-size: 12px;
    }
}