/*******************************
    FONTS
*******************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/*******************************
    BASE
*******************************/

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;
    font-size: inherit;
}

body {
    font-size: .8125rem;
    line-height: 1.625;
    color: #000;
    /* overflow: hidden; */
}

@media (min-width: 992px) {
    body {
        font-size: 1rem;
    }
}

body, input, select, textarea, button {
    font-family: Montserrat, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 700;
}

p, ul, ol {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
}

figure {
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: #1bb0ce;
    transition: background-color .3s, color .3s, opacity .3s;
}

a:hover {
    color: #3366FF;
}

ul,
ol {
    padding-left: 1.25em;
}

li ul,
li ol {
    margin-left: 1rem;
}

/*******************************
    LAYOUT
*******************************/

/*
    Grid
*/

.container {
    width: 720px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1540px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (min-width: 768px) {
    .col-md-1 { width: 8.333333%; }
    .col-md-2 { width: 16.666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-5 { width: 41.666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333333%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333333%; }
    .col-md-11 { width: 91.666667%; }
    .col-md-12 { width: 100%; }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }
}

@media (min-width: 992px) {
    .col-lg-1 { width: 8.333333%; }
    .col-lg-2 { width: 16.666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-5 { width: 41.666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333333%; }
    .col-lg-8 { width: 66.666667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.333333%; }
    .col-lg-11 { width: 91.666667%; }
    .col-lg-12 { width: 100%; }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }
}

@media (min-width: 1200px) {
    .col-xl-1 { width: 8.333333%; }
    .col-xl-2 { width: 16.666667%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.333333%; }
    .col-xl-5 { width: 41.666667%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.333333%; }
    .col-xl-8 { width: 66.666667%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.333333%; }
    .col-xl-11 { width: 91.666667%; }
    .col-xl-12 { width: 100%; }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }
}

@media (min-width: 1600px) {
    .col-xxl-1 { width: 8.333333%; }
    .col-xxl-2 { width: 16.666667%; }
    .col-xxl-3 { width: 25%; }
    .col-xxl-4 { width: 33.333333%; }
    .col-xxl-5 { width: 41.666667%; }
    .col-xxl-6 { width: 50%; }
    .col-xxl-7 { width: 58.333333%; }
    .col-xxl-8 { width: 66.666667%; }
    .col-xxl-9 { width: 75%; }
    .col-xxl-10 { width: 83.333333%; }
    .col-xxl-11 { width: 91.666667%; }
    .col-xxl-12 { width: 100%; }

    .order-xxl-1 {
        order: 1;
    }

    .order-xxl-2 {
        order: 2;
    }
}

/*
    Header
*/

.header {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 1100;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
}

    .header > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header__logo {
        display: block;
        height: 35px;
        margin: 0 auto .5rem;
        transition: transform .3s;
    }

        .header__logo img {
            display: block;
            height: 100%;
        }

    .header__menu {
        width: 100%;
    }

        .header__menu ul {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

            .header__menu a {
                display: block;
                font-weight: 600;
                font-size: .6875rem;
                color: #686868;
            }

            .header__menu .btn {
                color: #3366ff;
            }

@media screen and (max-width: 767px) {
    .header__menu .btn {
        padding: 2px 6px;
        color: #3366ff;
    }
}

@media screen and (min-width: 768px) {
    .header__logo {
        margin-left: 0;
    }

    .header__menu {
        width: auto;
    }

        .header__menu li {
            margin-left: 1.5rem;
        }
}

@media screen and (min-width: 992px) {
    .header {
        height: 110px;
    }

        .header__logo {
            height: 69px;
        }

        .header__menu li {
            margin-left: 2rem;
        }
            
            .header__menu a {
                position: relative;
                font-size: 1rem;
            }

            .header__menu a:not(.btn) {
                padding-top: 5px;
                padding-bottom: 5px;
            }

            .header__menu a:not(.btn):after {
                position: absolute;
                content: "";
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: #3366FF;
                opacity: 0;
                transition: all .3s;
            }

            .header__menu a:not(.btn):hover:after {
                width: 100%;
                opacity: 1;
            }
}

@media screen and (min-width: 1200px) {
    .header__menu li {
        margin-left: 3rem;
    }

    .header__menu .btn {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/*
    Headline
*/

.headline {
    padding-top: 100px;
    border-bottom: 1px solid #EAEAEA;
}

.headline--empty {
    border-bottom: 0;
}

@media screen and (min-width: 992px) {
    .headline {
        padding-top: 130px;
        padding-bottom: 20px;
    }

        .headline .breadcrumbs {
            margin-bottom: 1rem;
        }
}

/*
    Footer
*/

.footer {
    padding: 20px 0;
    font-size: .75rem;
    text-align: center;
    color: #86CBFF;
    background: #3366ff;
}

    .footer__menu {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        list-style-type: none;
    }

        .footer__menu a {
            color: #A8E0FF;
        }

@media (min-width: 768px) {
    .footer {
        text-align: left;
    }

        .footer__menu {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .footer__menu li {
                margin-left: 2rem;
            }
}

@media (min-width: 1200px) {
    .footer__left {
        display: flex;
        align-items: center;
    }

        .footer__left p {
            margin: 0;
        }

        .footer__logo {
            margin-right: 1rem;
        }
}

/*******************************
    MODULES
*******************************/

/*
    Section
*/

.section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}

    .section > .container {
        position: relative;
        z-index: 1;
    }

    .section__bg {
        position: absolute;
        overflow: hidden;
        z-index: -1;
    }

.section--1 .section__bg {
    top: 0;
    bottom: 0;
    left: 0;
    width: 55%;
    background: linear-gradient(180deg, rgba(248,250,255,0) 0%, rgba(238, 243, 255, 0.38) 100%);
    border-radius: 0 0 2000px 0;
}

.section--1 .circle--green {
    top: 65%;
    left: 9%;
}

.section--1 .circle--blue {
    top: 45%;
    left: 39%;
}

.section--2 .section__bg {
    top: 40%;
    right: 0;
    width: 40%;
}

.section--2 .section__bg:before,
.section--2 .section__bg:after {
    content: "";
    border: 2px solid #E8EFFF;
    border-radius: 100%;
}

.section--2 .section__bg:before {
    display: block;
    padding-top: 100%;
    transform: translate(20%, 0);
}

.section--2 .section__bg:after {
    position: absolute;
    top: 15%;
    right: 15%;
    bottom: 15%;
    left: 15%;
    transform: translate(28%, 0);
}

.section--2 .circle--green {
    top: 50%;
    right: 45%;
}

.section--2 .circle--blue {
    top: 8%;
    right: 10%;
}

.section--4 .section__bg {
    top: 0;
    bottom: 130px;
    right: 0;
    width: 97%;
    background: linear-gradient(180deg, rgba(248,250,255,0) 0%, rgba(238, 243, 255, 0.38) 100%);
    border-radius: 0 0 0 400px;
}

.section--4 .circle--green-1 {
    top: 28%;
    right: 45%;
}

.section--4 .circle--green-2 {
    top: 60%;
    right: 15%;
}

.section--4 .circle--blue {
    top: 15%;
    right: 7%;
}

.section--4 .circle--light-blue {
    top: 32%;
    right: 31%;
}

.section--4 .circle--light-blue-sm {
    top: 81%;
    right: 44%;
}

.section--4 .circle--light-blue-xl {
    right: 5%;
    bottom: 0;
    transform: translate(0, 30%);
}

.section--4 .circle--yellow-1 {
    top: 38%;
    right: 38%;
}

.section--4 .circle--yellow-2 {
    top: 80%;
    right: 10%;
}

.section--5 .circle--green {
    top: 65%;
    left: 5%;
}

.section--5 .circle--blue {
    top: 70%;
    right: 8%;
}

.section--5 .circle--light-blue-sm {
    top: 10%;
    left: 36%;
}

.section--5 .circle--light-blue {
    top: 45%;
    left: 60%;
}

.section--5 .circle--yellow {
    top: 18%;
    left: 39%;
}

.section--3 .section__bg,
.section--6 .section__bg {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(248,250,255,0) 0%, rgba(238, 243, 255, 0.38) 100%);
}

.section--3 .circle--green {
    top: 60%;
    left: 10%;
}

.section--3 .circle--blue {
    top: 45%;
    left: 38.5%;
}

.section--3 .circle--light-blue {
    top: 40%;
    left: 12%;
}

.section--3 .circle--yellow {
    top: 35%;
    left: 11%;
}

.section--6 .circle--blue {
    z-index: 1;
    top: 40%;
    left: 15%;
}

.section--6 .circle--light-blue {
    z-index: 1;
    top: 36%;
    left: 45%;
}

.section--6 .circle--green-1 {
    z-index: 1;
    top: 54%;
    left: 44%;
}

.section--6 .circle--green-2 {
    bottom: 10%;
    right: 10%;
}

.section--6 .circle--yellow {
    bottom: 20%;
    right: 16%;
}

.section--6 .circle--light-blue-xl {
    top: 10%;
    left: 2%;
}





.section--7 .section__bg {
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    background: linear-gradient(180deg, rgba(248,250,255,0) 0%, rgba(238, 243, 255, 0.38) 100%);
    border-radius: 0 0 0 300px;
}

.section--7 .circle--green-1 {
    top: 45%;
    right: 59%;
}

.section--7 .circle--green-2 {
    bottom: -5%;
    right: 10%;
}

.section--7 .circle--light-blue-sm {
    bottom: 0;
    right: 58%;
}

.section--7 .circle--light-blue-xl {
    right: 0;
    bottom: 0;
    transform: translate(20%, 20%);
}

.section--7 .circle--yellow-1 {
    top: 70%;
    right: 57%;
}

.section--7 .circle--yellow-2 {
    bottom: 3%;
    right: 35%;
}






@media (max-width: 767px) {
    .hero .circle--blue,
    .section--2 .circle--blue,
    .section--3 .circle--blue,
    .section--4 .circle--blue,
    .section--5 .circle--light-blue,
    .section--5 .circle--blue,
    .section--6 .circle--blue,
    .section--6 .circle--green-1 {
        display: none;
    }
}

@media (min-width: 992px) {
    .section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

/*
    Entry
*/

.entry {
    line-height: 1.75;
}

    .entry li {
        margin-bottom: .5rem;
    }

/*
    Hero
*/

.hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    /* background: url("./assets/img/bg-wave.svg") center bottom no-repeat; */
    background-size: auto 100%;
}

    .hero > .container {
        position: relative;
        z-index: 1;
    }

    .hero__content {
        padding: 40px 0 20px;
    }

        .hero__title {
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            line-height: 1.25;
            color: #1356C7;
        }

        .hero__text {
            font-weight: 700;
            font-size: 1.5rem;
            color: #3366FF;
        }

        .hero__btns {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

    .hero__footer {
        position: absolute;
        bottom: 0;
        right: 15px;
        left: 15px;
        text-align: left;
    }

        .hero__footer > span {
            display: block;
            margin-bottom: .5rem;
            font-size: .875rem;
            font-weight: 600;
            color: #868686;
        }

    .hero__figure {
        margin-bottom: 0;
    }

.hero .circle--green-1 {
    top: 40%;
    right: 50%;
}

.hero .circle--green-2 {
    top: 75%;
    right: 8%;
}

.hero .circle--yellow {
    top: 70%;
    right: 14%;
}

.hero .circle--blue {
    top: 30%;
    right: 10%;
}

.hero .circle--light-blue {
    top: 12%;
    right: 36%;
}

.hero .circle--light-blue-xl {
    top: 0;
    left: 1%;
    transform: translate(0, -60%);
}

@media (max-width: 767px) {
    .hero {
        padding-bottom: 180px;
    }

        .hero__footer {
            bottom: -80px;
        }
}

@media (min-width: 768px) {
    .hero {
        text-align: left;
        background-size: 100% auto;
    }

    .hero:before {
        position: absolute;
        content: "";
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        height: 50%;
        background: #f8faff;
    }

        .hero__content {
            position: relative;
        }

            .hero__footer {
                top: 100%;
                right: 0;
                bottom: auto;
                left: 0;
            }

        .hero__btns {
            justify-content: flex-start;
        }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 110px;
    }

        .hero__btns .btn--link,
        .hero__btns .btn--text {
            padding-left: 0;
            padding-right: 0;
        }

        .hero__btns .btn:not(:last-child) {
            margin-right: 2rem;
        }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1600px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 140px;
    }

        .hero__content {
            margin-top: -30px;
            padding-bottom: 150px;
        }

            .hero__text {
                margin-bottom: 3rem;
                font-size: 1.75rem;
                font-weight: 600;
            }

            .hero__btns .btn:not(:last-child) {
                margin-right: 3.5rem;
            }

            .hero__btns .btn--primary {
                min-width: 215px;
            }
}

/*
    Icon Box
*/

.icon-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 35px;
    font-size: .875rem;
    transition: background-color .3s;
}

.icon-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 120px;
    height: 106px;
    transform: translate(-30%, -30%);
    /* background: url("./assets/img/corner-shape.svg") center center no-repeat; */
    background-size: cover;
    opacity: 0;
    transition: opacity .3s;
}

    .icon-box figure {
        margin-top: 20px;
        text-align: center;
    }

        .icon-box figure img {
            height: 106px;
            margin: 0 auto;
        }

        .icon-box__title {
            text-align: center;
            font-size: 1.125rem;
            color: #0034D1;
            transition: color .3s;
        }

.icon-box:hover {
    background-color: #f8faff;
}

.icon-box:hover:before {
    opacity: 1;
}

.icon-box:hover .icon-box__title {
    color: #3366ff;
}

@media (min-width: 1600px) {
    .icon-box {
        padding: 60px;
    }
}

/*
    Quote
*/

.quote {
    line-height: 2;
}

    .quote figure {
        margin-bottom: .5rem;
    }

    .quote .rating {
        margin-bottom: 2rem;
        justify-content: center;
    }

        .quote .rating span {
            width: 28px;
            height: 28px;
        }

    .quote__title {
        margin-bottom: 0;
        font-size: 1.875rem;
        color: #3366FF;
    }

    .quote__subtitle {
        font-size: .875rem;
        letter-spacing: .1em;
        color: #868686;
    }

    .quote__icon {
        display: block;
        height: 40px;
        margin-bottom: 1.5rem;
    }

/*
    Carousel
*/

.screenshot-carousel {
    text-align: center;
}

    .screenshot-carousel .swiper-slide {
        opacity: .25;
        transition: opacity .3s;
    }

    .screenshot-carousel .swiper-slide-active {
        opacity: 1;
    }

.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin-left: 6px;
        margin-right: 6px;
    }

    .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: #e8eeff;
        opacity: 1;
        border-radius: 20px;
        transition: all .3s;
    }

    .swiper-pagination-bullet-active {
        width: 44px;
        background: #3366ff;
    }

/*******************************
    COMPONENTS
*******************************/

/*
    Buttons
*/

.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: .5rem 1rem;
    border: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color .3s, color .3s, border-color .3s, opacity .3s, box-shadow .3s;
}

.btn--sm {
    padding: .25rem 1rem;
}

.btn--lg {
    text-transform: uppercase;
    font-weight: 700;
    padding: .625rem 2rem;
}

.btn:after {
    position: absolute;
    content: "";
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    padding-top: 100%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .3s;
    border-radius: 100%;
}

.btn:hover:after {
    transform: translate(-50%, -50%) scale(1);
}

    .btn span {
        position: relative;
        z-index: 2;
    }

    .btn svg {
        float: left;
        width: 2rem;
        height: 2rem;
        margin-top: -.25em;
        margin-right: 1rem;
        transition: fill .3s;
    }

.btn--primary {
    color: #fff;
    background-color: #3366FF;
    box-shadow: 2px 5px 19px 0px rgb(51 102 255 / 70%);
}

.btn--primary svg {
    fill: #fff;
}

.btn--primary:after {
    background: #000;
}

.btn--primary:hover {
    color: #fff;
    box-shadow: 2px 5px 19px 0px rgb(0 0 0 / 70%);
}

.btn--primary:hover svg {
    fill: #fff;
}

.btn--outline-primary {
    color: #3366ff;
    background-color: transparent;
    box-shadow: 0 0 0 2px #3366ff;
}

.btn--lg.btn--outline-primary {
    box-shadow: 0 0 0 4px #3366ff;
}

.btn--outline-primary:after {
    background: #3366ff;
}

.btn--outline-primary:hover {
    color: #fff;
    box-shadow: 2px 5px 19px 0px rgb(51 102 255 / 70%);
}

.btn--outline-primary:hover svg {
    fill: #fff;
}

.btn--link {
    color: #000;
}

.btn--link:hover {
    color: #3366FF;
}

.btn--text {
    font-size: .875rem;
    color: #7D7D7D;
}

@media (min-width: 992px) {
    .btn {
        padding: 1.125rem 2rem;
    }

    .btn--lg {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .btn--sm {
        padding: .5rem 1rem;
    }
}

/*
    Form Components
*/

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 1.5rem;
    }

.form-control {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 1.625rem 1.5em;
    border: 0;
    background: #fff;
    border-radius: 2.5rem;
    box-shadow: 3px 9px 40px 0px rgb(0 0 0 / 5%);
    transition: box-shadow .3s;
}

.form-control:focus {
    outline: none;
    box-shadow: 1px 4px 10px 0px rgb(0 0 0 / 7%);
}

/*
    Lists
*/

.list-social {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: .875rem;
    list-style-type: none;
}

    .list-social li:not(:last-child) {
        margin-right: 1rem;
    }

        .list-social a {
            color: #3366FF;
        }

            .list-social img {
                display: inline-block;
                vertical-align: text-top;
                height: 1.25rem;
                margin-right: .25rem;
            }

            .list-social span {
                position: relative;
                display: inline-block;
                padding-top: 5px;
                padding-bottom: 5px;
            }

            .list-social span:after {
                position: absolute;
                content: "";
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: #3366FF;
                opacity: 0;
                transition: all .3s;
            }

            .list-social a:hover span:after {
                width: 100%;
                opacity: 1;
            }

/*
    Titles
*/

.page-title {
    font-size: 2rem;
    font-weight: 600;
}

.section-title {
    font-size: 2rem;
    line-height: 1.25;
}

.section-title--secondary {
    font-size: 1.5rem;
    color: #1356C7;
}

.section-title--secondary {
    font-size: 1.5rem;
}

.section-subtitle {
    margin-bottom: .25rem;
    font-weight: 400;
    font-size: 1rem;
    color: #545353;
}

.article-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -.05em;
    color: #3366FF;
}

.article-subtitle {
    color: #bfbfbf;
}

.paragraph-title {
    font-size: 1.125em;
    font-weight: 400;
    text-decoration: underline;
}

.paragraph-title--secondary {
    font-style: italic;
    text-decoration: none;
}

.text-title {
    font-weight: 700;
    color: #3366FF;
}

@media (min-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.875rem;
    }

    .section-title--secondary {
        font-size: 1.625rem;
    }

    .section-title--sm {
        font-size: 2rem;
    }

    .article-title {
        font-size: 2.25rem;
    }
}

/*
    Breadcrumbs
*/

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: .75rem;
    font-weight: 600;
    list-style-type: none;
    color: #111;
}

    .breadcrumbs li {
        position: relative;
        padding-right: .75rem;
        margin-right: .75rem;
    }

    .breadcrumbs li:not(:last-child):after {
        position: absolute;
        content: "\203A";
        top: 50%;
        right: 0;
        font-size: 1rem;
        line-height: 1;
        transform: translate(50%, -50%);
    }

        .breadcrumbs li a {
            display: block;
            color: #111;
        }

        .breadcrumbs li a:hover {
            text-decoration: underline;
            color: #1bb0ce;
        }

/*
    Testimonial
*/

.testimonial {
    position: relative;
    padding: 34px 40px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 34px 46px 99px 0px rgb(0 0 0 / 11%);
}

    .testimonial cite {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        font-style: normal;
        line-height: 1.25;
    }

        .testimonial cite img {
            display: block;
            width: 56px;
            margin-right: 14px;
            border-radius: 100%;
        }

        .testimonial__title {
            display: block;
            font-weight: 700;
            font-size: 1.25rem;
            color: #3366FF;
        }

        .testimonial__subtitle {
            font-size: .8125rem;
            color: #c4c4c4;
        }

        .testimonial .rating {
            margin-top: 5px;
            margin-left: 70px;
        }

@media (min-width: 992px) {
    .testimonial {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .testimonial .rating {
        position: absolute;
        right: 40px;
        bottom: 50px;
        width: auto;
    }
}

@media (min-width: 1600px) {
    .testimonial--pull {
        transform: translate(-25%);
    }
}

/*
    Circles
*/

.circle {
    position: absolute;
    z-index: 0;
    border-radius: 100%;
}

.circle:after {
    display: block;
    content: "";
    padding-top: 100%;
}

.circle--yellow {
    width: 16px;
    background: #f6b900;
    opacity: .24;
    animation: float-x 2s infinite alternate linear, float-y 1s infinite alternate linear;
}

.circle--green {
    width: 46px;
    background: linear-gradient(45deg, #03dda5 0%, #08f5b8 100%);
    animation: float-x 3s infinite alternate linear, float-y 2s infinite alternate linear;
}

.circle--blue {
    width: 76px;
    background: linear-gradient(130deg, #3366ff 0%, #012ba9 100%);
    animation: float-x 4s infinite alternate linear, float-y 3s infinite alternate linear;
}

.circle--light-blue,
.circle--light-blue-sm {
    width: 114px;
    background: #3260ec;
    opacity: .14;
    animation: float-x 5s infinite alternate linear, float-y 4s infinite alternate linear;
}

.circle--light-blue-sm {
    width: 38px;
}

.circle--light-blue-xl {
    width: 544px;
    background: linear-gradient(130deg, rgba(51,102,255,0.04) 0%, rgba(51,102,255,0.04) 100%);
}

@media (max-width: 767px) {
    .circle--light-blue-xl {
        width: 260px;
    }
}

@keyframes float-x {
    50% {
        transform: translate(50%, 0);
    }
    100% {
        transform: translate(50%, 50%);
    }
}

@keyframes float-y {
    to {
        transform: translate(0, 50%);
    }
}

/*
    Embed
*/

.embed {
    position: relative;
}

.embed:after {
    display: block;
    content: "";
    padding-top: 100%;
}

    .embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/*
    Step
*/

.step {
    font-size: 1.5rem;
    line-height: 1.25;
    color: #3366FF;
}

    .step__num {
        margin-bottom: 1rem;
        font-weight: 600;
        color: #DADADA;
    }

@media (min-width: 992px) {
    .step {
        font-size: 1.75rem;
    }
        
        .step__num {
            font-size: 3rem;
            font-weight: 700;
        }

        .step p {
            margin-bottom: 1.5rem;
        }
}

/*
    FAQ
*/

.faq {
    margin-bottom: 1rem;
    padding: 20px;
    border: 1px solid #e2e2e2;
    background: #fcfcfc;
}

    .faq__title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #3366FF;
    }

@media (min-width: 1200px) {
    .faq {
        padding: 60px 60px 40px;
    }

        .faq__title {
            margin-bottom: 2rem;
        }
}

/*
    Rating
*/

.rating  {
    display: flex;
    width: 100%;
}

    .rating span {
        margin-right: 3px;
        width: 20px;
        height: 20px;
        /* background: url("./assets/img/icons/star.svg") center center no-repeat; */
        background-size: 100% 100%;
    }

    .rating span.disabled {
        /* background-image: url("./assets/img/icons/star-disabled.svg"); */
    }

/*
    Scroll Up
*/

.scroll-up {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    width: 35px;
    height: 35px;
    border: 1px solid #3d3d3d;
    background: #fff;
    border-radius: 100%;
}

    .scroll-up img {
        height: 40%;
        transition: transform .3s;
    }

.scroll-up:hover img {
    transform: translate(0, -25%);
}

@media (min-width: 768px) {
    .scroll-up {
        right: 50px;
        bottom: 25px;
    }
}

/*******************************
    HELPERS
*******************************/

.sr-only {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left;
    }
}

.text-uppercase {
    text-transform: uppercase;
}

.text-underline {
    text-decoration: underline;
}

.align-items-center {
    align-items: center;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mb-10 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.mb-0 {
    margin-bottom: 0;
}

@media (min-width: 1600px) {
    .mb-xxl-60 {
        margin-bottom: 6rem;
    }

    .mb-xxl-100 {
        margin-bottom: 10rem;
    }
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.maw-680 {
    max-width: 680px;
}

.c-red {
    color: #FF6633;
}