﻿@-webkit-keyframes featureImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes featureImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

body .main {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.top-section {
    position: relative;
    background-image: url(/images/background/bg-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 105px;
}

    .top-section .container {
        padding-top: 100px;
        padding-bottom: 100px;
        position: relative;
    }

        .top-section .container h2 {
            margin: 0;
            color: #2a2833;
            font-weight: 400;
            font-size: 50px;
            line-height: 1em;
            letter-spacing: -.06em;
        }

            .top-section .container h2 span,
            .top-section .container .text span {
                font-weight: 500;
                color: #604fdd;
            }

        .top-section .container .text {
            margin: 0;
            font-size: 15px;
            line-height: 36px;
            color: #74727a;
            margin-bottom: 10px;
        }

        .top-section .container .right {
            position: absolute;
            top: 0;
            right: -200px;
        }

            .top-section .container .right:before {
                content: '';
                width: 639px;
                height: 639px;
                background-image: linear-gradient( 40deg, #ff43c0 0%, #ffa95c 100%);
                -webkit-box-shadow: 0px 20px 60px 0px rgb(244 151 190 / 80%);
                box-shadow: 0px 20px 60px 0px rgb(244 151 190 / 80%);
                border-radius: 50%;
                position: absolute;
                top: 0;
                left: -24%;
                -webkit-transform-origin: center bottom;
                transform-origin: center bottom;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
                -webkit-animation-name: bounce;
                animation-name: bounce;
                -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
                -webkit-animation-duration: 5s;
                animation-duration: 5s;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
            }

            .top-section .container .right .img-wrapper {
                position: relative;
                -webkit-animation: featureImgBounce 5s ease-in-out 0s infinite alternate;
                animation: featureImgBounce 5s ease-in-out 0s infinite alternate
            }

        .top-section .container .img-wrapper .img-inside {
            position: absolute;
            top: 28px;
            bottom: 0;
            left: 44px;
            border-radius: 20px;
            width: 357px;
            height: 659px;
        }

    .top-section .features-list {
        color: #2a2833;
        font-size: 14px;
        position: relative;
    }

        .top-section .features-list .row {
            margin-bottom: 15px;
        }

        .top-section .features-list .col-8 div {
            line-height: 16px;
        }

        .top-section .features-list .col-8 span {
            font-size: 13px;
            color: #bababa;
        }

        .top-section .features-list i {
            color: #604fdd;
            font-size: 22px;
            margin-right: 10px;
        }

.features-section {
    padding-bottom: 90px;
    position: relative;
}

    .features-section .container {
        position: relative;
        z-index: 10;
    }

        .features-section .container .box {
            border-style: solid;
            border-width: 1px;
            border-color: #efefef;
            border-radius: 5px;
            padding: 2px;
            position: relative;
            margin-bottom: 30px;
            text-align: left;
            width: calc(100% - 30px);
        }

            .features-section .container .box:before {
                content: '';
                position: absolute;
                top: -1px;
                left: -1px;
                right: -1px;
                bottom: -1px;
                border-radius: 5px;
                opacity: 0;
                background-image: linear-gradient( 40deg, #0db8ff 0%, #f332ff 100%);
                -webkit-transition: all .4s ease;
                transition: all .4s ease;
            }

            .features-section .container .box:hover:before {
                opacity: 1;
            }

        .features-section .container .inner-box {
            background-color: #fff;
            border-radius: 5px;
            position: relative;
            padding: 50px 30px 35px;
        }

    .features-section .inner-box i {
        color: #55e6c1;
    }

    .features-section .inner-box .col-3 span {
        font-size: 14px;
        font-weight: 500;
    }

    .features-section .box h3 {
        color: #604fdd;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .features-section .box p {
        font-size: 15px;
    }

        .features-section .box h3 span,
        .features-section .box p span {
            font-weight: 500;
        }

.add-ons-section {
    padding: 120px 0;
    position: relative;
    background-color: #fefbf4;
    z-index: 2;
}

    .add-ons-section .box {
        border-style: solid;
        border-width: 1px;
        border-color: #efefef;
        border-radius: 5px;
        padding: 2px;
        position: relative;
        margin-bottom: 30px;
        text-align: center;
        height: calc(100% - 30px);
    }

        .add-ons-section .box:before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 5px;
            opacity: 0;
            background-image: linear-gradient( 40deg, #0db8ff 0%, #f332ff 100%);
            -webkit-transition: all .4s ease;
            transition: all .4s ease;
        }

        .add-ons-section .box:hover:before {
            opacity: 1;
        }

    .add-ons-section [class*=col-]:nth-child(1) .box:before,
    .add-ons-section [class*=col-]:nth-child(4) .box:before {
        background-image: linear-gradient( 40deg, #ff43c0 0%, #ffa95c 100%);
    }

    .add-ons-section [class*=col-]:nth-child(2) .box:before,
    .add-ons-section [class*=col-]:nth-child(5) .box:before {
        background-image: linear-gradient( 40deg, #39aeff 0%, #3cff53 100%);
    }

    .add-ons-section [class*=col-]:nth-child(3) .box:before,
    .add-ons-section [class*=col-]:nth-child(6) .box:before {
        background-image: linear-gradient( 40deg, #0db8ff 0%, #f332ff 100%);
    }

    .add-ons-section .inner-box {
        background-color: #fff;
        border-radius: 5px;
        position: relative;
        padding: 50px 30px 10px;
        height: 100%;
    }

        .add-ons-section .inner-box .title {
            color: rgb(96, 79, 221);
            font-size: 20px;
            font-weight: 500;
        }

    .add-ons-section .price-container .currency:not(.no-common-styles) {
        font-size: 15px;
    }

    .add-ons-section .price-container .price:not(.no-common-styles) {
        font-weight: 500;
    }

    .add-ons-section .price-container .text {
        font-size: 13px;
        color: #bababa;
    }

    .add-ons-section .button-wrapper,
    .add-ons-section .img-wrapper {
        margin: 15px 0;
    }

        .add-ons-section .img-wrapper img {
            max-width: 100%;
            width: 455px;
            height: 258px;
        }

    .add-ons-section .description {
        font-size: 13px;
        text-align: left;
    }

        .add-ons-section .description .description-title {
            color: #2a2833;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .add-ons-section .description .content {
            line-height: normal;
        }

.upcoming-section {
    padding: 80px 0;
}

    .upcoming-section img {
        max-width: 100%;
    }

.description-section {
    padding: 60px 0 120px;
    position: relative;
}

    .description-section img {
        position: absolute;
        top: -14%;
        right: 0;
    }

    .description-section .container {
        position: relative;
    }

    .description-section .description {
        position: relative;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

        .description-section .description:before {
            content: '';
            position: absolute;
            top: -2px;
            bottom: -2px;
            left: 0px;
            right: 0px;
            border-radius: 7px;
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
            background-image: -webkit-gradient(linear, left bottom, left top, from(#ff4eb5), to(#ffa065));
            background-image: linear-gradient( 0deg, #ff4eb5 0%, #ffa065 100%);
            -webkit-transition: -webkit-transform .4s ease;
            transition: -webkit-transform .4s ease;
            transition: transform .4s ease;
            transition: transform .4s ease, -webkit-transform .4s ease;
        }

        .description-section .description.active {
            -webkit-box-shadow: 0px 20px 60px 0px rgb(244 151 190 / 30%);
            box-shadow: 0px 20px 60px 0px rgb(244 151 190 / 30%);
        }

            .description-section .description.active:before {
                -webkit-transform: scaleX(1);
                transform: scaleX(1);
            }

        .description-section .description .description-inner {
            background-color: #fff;
            padding: 32px 0;
            border-style: solid;
            border-width: 1px;
            border-color: #efefef;
            border-radius: 7px;
            position: relative;
            -webkit-transition: all .4s ease;
            transition: all .4s ease;
        }

        .description-section .description.active .description-inner {
            margin: 0 2px;
        }

        .description-section .description .description-title {
            padding: 0px 40px;
            position: relative;
            -webkit-transition: all .4s ease;
            transition: all .4s ease;
        }

        .description-section .description.active .description-title {
            padding-bottom: 0;
        }

        .description-section .description .description-title h4 {
            margin: 0;
            color: #2a2833;
            font-size: 18px;
            font-weight: 500;
        }

        .description-section .description.active .description-title h4 {
            color: #ff4eb5;
        }

        .description-section .description .description-content .inner {
            padding: 0 40px;
            padding-top: 25px;
            padding-bottom: 0px;
        }

    .description-section .description-content .inner p {
        margin: 0;
        color: #74727a;
        font-size: 16px;
        line-height: 30px;
    }

    .description-section .description + .description {
        margin-top: 20px;
    }

.calculation-section {
    padding: 30px 0 165px;
    position: relative;
    z-index: 1;
}

    .calculation-section .customers-bg {
        position: absolute;
        top: -15px;
        right: 0;
    }

    .calculation-section .container {
        position: relative;
    }

        .calculation-section .container:before {
            content: '';
            width: 448px;
            height: 448px;
            border-radius: 50%;
            background-color: #f6fff7;
            position: absolute;
            top: 0;
            left: -12%;
        }

    .calculation-section .header img {
        opacity: 1;
        mix-blend-mode: normal;
        border-radius: 0px;
        object-fit: cover;
        object-position: center center;
        width: 45px;
        height: 42px;
    }

    .calculation-section .section-title {
        margin-bottom: 0;
        margin-top: 30px;
        margin-bottom: 45px;
    }

    .calculation-section .form-wrapper {
        font-size: 14px;
    }

    .calculation-section .currency:not(.no-common-styles) {
        font-size: 13px;
    }

    .calculation-section .price:not(.no-common-styles) {
        font-weight: 500;
        font-size: 15px;
    }

    .calculation-section .form-wrapper .box {
        border-style: solid;
        border-width: 1px;
        border-color: #efefef;
        border-radius: 5px;
        padding: 2px;
        position: relative;
    }

        .calculation-section .form-wrapper .box:before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 5px;
            opacity: 0;
            background-image: linear-gradient( 40deg, #ff43c0 0%, #ffa95c 100%);
            -webkit-transition: all .4s ease;
            transition: all .4s ease;
        }

        .calculation-section .form-wrapper .box:hover:before {
            opacity: 1;
        }

        .calculation-section .form-wrapper .box .inner-box {
            background: #fff;
            border-radius: 5px;
            position: relative;
            padding: 50px 30px 10px;
            height: 100%;
        }

            .calculation-section .form-wrapper .box .inner-box .header {
                margin-bottom: 25px;
                border-bottom: 1px solid #efefef;
            }

    .calculation-section .amount-container {
        line-height: normal;
        margin-bottom: 5px;
    }

    .calculation-section .list-inline {
        padding-left: 0;
        list-style: none;
    }

    .calculation-section ul.switch-toggler-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: flex-end;
        margin-bottom: 0;
    }

        .calculation-section ul.switch-toggler-list li.active {
            color: #2a2833;
        }

        .calculation-section ul.switch-toggler-list li {
            font-weight: 400;
            color: #74727a;
            padding-left: 10px;
            padding-right: 10px;
            display: block;
            cursor: pointer;
        }

            .calculation-section ul.switch-toggler-list li span.colored {
                color: rgb(48, 213, 200) !important;
                margin-left: 3px;
            }

    .calculation-section .switch {
        position: relative;
        display: inline-block;
        width: 85px;
        height: 40px;
        vertical-align: middle;
        margin: 0;
    }

    .calculation-section .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: .4s;
        transition: .4s;
        border-style: solid;
        border-width: 1px;
        border-color: #efefef;
        background-color: white;
    }

        .calculation-section .slider.round {
            border-radius: 34px;
        }

        .calculation-section .slider:before {
            position: absolute;
            content: "";
            height: 27px;
            width: 27px;
            left: 6px;
            bottom: 6px;
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
            background-image: linear-gradient( 40deg, #ff4eb5 0%, #ffa065 100%);
            -webkit-transition: .4s;
            transition: .4s;
        }

        .calculation-section .slider.round:before {
            border-radius: 50%;
        }

    .calculation-section .switch.off .slider:before {
        -webkit-transform: translateX(44px);
        transform: translateX(44px);
    }

    .calculation-section .form-wrapper .add-on-name {
        font-weight: 500;
        line-height: normal;
    }

    .calculation-section .form-wrapper .add-on-description {
        color: #bababa;
        font-size: 12px;
        line-height: normal;
        margin-top: 5px;
    }

    .calculation-section .form-wrapper .range-wrapper .col-3 {
        padding-top: 30px;
    }

    .calculation-section .form-wrapper .range-wrapper input[type="range"] {
        -webkit-appearance: none;
        margin-right: 15px;
        width: 80%;
        height: 7px;
        background: #efefef;
        border-radius: 5px;
        background-image: linear-gradient(rgba(54, 211, 214, 0.8), rgba(54, 211, 214, 0.8));
        background-size: 1% 100%;
        background-repeat: no-repeat;
    }

        .calculation-section .form-wrapper .range-wrapper input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            border: 1px solid rgba(54, 211, 214, 0.8);
            background: #fff;
            cursor: pointer;
            box-shadow: 0 0 2px 0 #555;
            transition: background .3s ease-in-out;
        }

    .calculation-section .form-wrapper .range-wrapper input[type=range]::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .calculation-section .form-wrapper .range-wrapper output {
        display: block;
        width: 80%;
        font-weight: 500;
        color: #2a2833;
        position: relative;
        top: 10px;
    }

    .calculation-section .form-wrapper .range-wrapper .hints-container {
        width: 80%;
        position: relative;
        line-height: normal;
    }

    .calculation-section .form-wrapper .range-wrapper .hint {
        color: #bababa;
    }

        .calculation-section .form-wrapper .range-wrapper .hint.right {
            position: absolute;
            right: 0;
            top: 0;
        }

    .calculation-section .border-bottom {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .calculation-section .slider-container {
        text-align: right;
        padding-top: 15px;
    }

        .calculation-section .slider-container .text {
            position: relative;
            margin-left: 5px;
            top: -10px;
            font-size: 15px;
            color: #eb548c;
            width: 75px;
            display: inline-block;
            text-align: left;
        }

            .calculation-section .slider-container .text.active {
                color: #55e6c1;
            }

    .calculation-section .radio-switch {
        position: relative;
        display: inline-block;
        width: 85px;
        height: 40px;
        vertical-align: middle;
        margin: 0;
        top: -13px;
    }

        .calculation-section .radio-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .calculation-section .radio-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: .4s;
        transition: .4s;
        border-style: solid;
        border-width: 1px;
        border-color: #efefef;
        background-color: white;
    }

        .calculation-section .radio-slider:before {
            position: absolute;
            content: "";
            height: 27px;
            width: 27px;
            left: 6px;
            bottom: 6px;
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
            background-image: linear-gradient( 40deg, #ff4eb5 0%, #ffa065 100%);
            -webkit-transition: .4s;
            transition: .4s;
        }

    .calculation-section input:checked + .radio-slider:before {
        -webkit-transform: translateX(48px);
        -ms-transform: translateX(48px);
        transform: translateX(48px);
    }

    .calculation-section .radio-slider.round {
        border-radius: 34px;
    }

        .calculation-section .radio-slider.round:before {
            border-radius: 50%;
        }

    .calculation-section .form-wrapper .total-box {
        background: #fff;
        font-size: 13px;
        padding: 10px;
        padding-bottom: 20px;
        border-radius: 3px;
        box-shadow: rgba(96, 79, 221, 0.1) 0px 1px 2px 0px inset, rgba(96, 79, 221, 0.3) 0px 1px 10px 0px;
    }

        .calculation-section .form-wrapper .total-box [class*=col-] {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .calculation-section .form-wrapper .total-box .row {
            margin-left: 0;
            margin-right: 0;
        }

        .calculation-section .form-wrapper .total-box img {
            opacity: 1;
            mix-blend-mode: normal;
            border-radius: 0px;
            object-fit: cover;
            object-position: center center;
            width: 226px;
            height: 111px;
        }

        .calculation-section .form-wrapper .total-box h3 {
            font-size: 19px;
            font-weight: 400;
            color: #2a2833;
        }

        .calculation-section .form-wrapper .total-box .to-be-paid {
            font-weight: 500;
            margin-bottom: 15px;
        }

.site-footer {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-color: white;
    -webkit-box-shadow: 0px -1px 0px 0px #efefef;
    box-shadow: 0px -1px 0px 0px #efefef;
}

    .site-footer .site-footer__upper {
        padding-top: 60px;
        padding-bottom: 60px;
    }

        .site-footer .site-footer__upper .footer-widget__logo {
            margin-bottom: 40px;
        }

    .site-footer .footer-widget__contact {
        font-size: 16px;
        font-weight: 400;
        color: #74727a;
        margin: 0;
        line-height: 30px;
    }

        .site-footer .footer-widget__contact + .footer-widget__contact {
            margin-top: 15px;
        }

        .site-footer .footer-widget__contact a {
            color: inherit;
            -webkit-transition: all .4s ease;
            transition: all .4s ease;
        }

            .site-footer .footer-widget__contact a:hover {
                color: #604fdd;
            }

    .site-footer .footer-widget {
        width: 50%;
    }

    .site-footer .footer-widget__title {
        font-size: 18px;
        font-weight: 500;
        color: #2a2833;
        margin: 0;
        line-height: 1em;
        margin-bottom: 70px;
        padding-top: 25px;
    }

    .site-footer .footer-widget__links {
        margin: 0;
        margin-top: -5px;
    }

        .site-footer .footer-widget__links li {
            line-height: 1em;
        }

            .site-footer .footer-widget__links li + li {
                margin-top: 20px;
            }

            .site-footer .footer-widget__links li a {
                font-size: 16px;
                font-weight: 400;
                color: #74727a;
                -webkit-transition: all .4s ease;
                transition: all .4s ease;
            }

                .site-footer .footer-widget__links li a:hover {
                    color: #604fdd;
                }

    .site-footer .iclickats-img {
        width: 100%;
        max-width: 128px;
    }

    .site-footer .site-footer__bottom {
        background-color: #fff9ff;
    }

        .site-footer .site-footer__bottom .inner-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            text-align: center;
            padding-top: 44px;
            padding-bottom: 44px;
        }

        .site-footer .site-footer__bottom .site-footer__copy {
            font-size: 16px;
            font-weight: 400;
            color: #74727a;
            margin: 0;
        }

        .site-footer .site-footer__bottom a {
            color: #604fdd;
        }

.section-title {
    margin-bottom: 45px;
}

    .section-title .section-title-text {
        margin: 0;
        margin-top: -10px;
        margin-bottom: 10px;
        font-size: 40px;
        font-weight: 300;
        color: #2a2833;
        line-height: 1.2em;
    }

    .section-title h4 {
        font-weight: 300;
    }

    .section-title .section-title-text span {
        font-weight: 700;
    }

.currencies-wrapper {
    position: absolute;
    left: 0;
    top: 310px;
    z-index: 5;
    font-weight: 100;
    font-size: 14px;
}

    .currencies-wrapper .currency-item {
        padding: 3px 10px;
        border: 1px solid #604fdd;
        background: #fff;
        color: #604fdd;
        cursor: pointer;
        position: relative;
        z-index: 3;
    }

        .currencies-wrapper .currency-item:hover {
            box-shadow: 0 0 0 1px #604fdd, 0 0 12px 0 rgb(24 0 196 / 80%);
            z-index: 4;
        }

        .currencies-wrapper .currency-item.active {
            box-shadow: 0 0 0 1px #604fdd, 0 0 12px 0 rgb(24 0 196 / 80%);
            font-weight: 400;
            z-index: 5;
        }

    .currencies-wrapper .currency-item:not(:first-of-type) {
        margin-top: -1px;
    }

        .currencies-wrapper .currency-item:first-of-type {
            border-top-right-radius: 3px;
        }

    .currencies-wrapper .currency-item:last-of-type {
        border-bottom-right-radius: 3px;
    }

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@media (max-width: 991.9px) {
    .top-section .container .top-section-right:before {
        display: none;
    }

    .top-section .container .top-section-right {
        display: block;
        position: relative;
        top: 55px;
        right: unset;
        left: unset;
    }
}

@media (max-width: 480px) {
    .top-section .top-section-right .img-wrapper {
        width: 330px;
        margin: 0 auto;
    }

    .top-section .container .img-wrapper .img-inside {
        top: 20px;
        left: 31px;
        width: 268px;
        height: unset;
    }

    .customers-section .img-wrapper .img-inside {
        left: 72px;
        width: 167px;
        top: 17px;
        height: 94%;
    }

    .top-section .top-section-right .phone-border-img {
        width: 100%;
    }
}
