:root {
    --transparent: transparent;
    --black: #000;
    --white: #fff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --red-100: #fff5f5;
    --red-200: #fed7d7;
    --red-300: #feb2b2;
    --red-400: #fc8181;
    --red-500: #f56565;
    --red-600: #e53e3e;
    --red-700: #c53030;
    --red-800: #9b2c2c;
    --red-900: #742a2a;
    --orange-100: #fffaf0;
    --orange-200: #feebc8;
    --orange-300: #fbd38d;
    --orange-400: #f6ad55;
    --orange-500: #ed8936;
    --orange-600: #dd6b20;
    --orange-700: #c05621;
    --orange-800: #9c4221;
    --orange-900: #7b341e;
    --yellow-100: #fffff0;
    --yellow-200: #fefcbf;
    --yellow-300: #faf089;
    --yellow-400: #f6e05e;
    --yellow-500: #ecc94b;
    --yellow-600: #d69e2e;
    --yellow-700: #b7791f;
    --yellow-800: #975a16;
    --yellow-900: #744210;
    --green-100: #f0fff4;
    --green-200: #c6f6d5;
    --green-300: #9ae6b4;
    --green-400: #68d391;
    --green-500: #48bb78;
    --green-600: #38a169;
    --green-700: #2f855a;
    --green-800: #276749;
    --green-900: #22543d;
    --teal-100: #e6fffa;
    --teal-200: #b2f5ea;
    --teal-300: #81e6d9;
    --teal-400: #4fd1c5;
    --teal-500: #38b2ac;
    --teal-600: #319795;
    --teal-700: #2c7a7b;
    --teal-800: #285e61;
    --teal-900: #234e52;
    --blue-100: #ebf8ff;
    --blue-200: #bee3f8;
    --blue-300: #90cdf4;
    --blue-400: #63b3ed;
    --blue-500: #4299e1;
    --blue-600: #3182ce;
    --blue-700: #2b6cb0;
    --blue-800: #2c5282;
    --blue-900: #2a4365;
    --indigo-100: #ebf4ff;
    --indigo-200: #c3dafe;
    --indigo-300: #a3bffa;
    --indigo-400: #7f9cf5;
    --indigo-500: #667eea;
    --indigo-600: #5a67d8;
    --indigo-700: #4c51bf;
    --indigo-800: #434190;
    --indigo-900: #3c366b;
    --purple-100: #faf5ff;
    --purple-200: #e9d8fd;
    --purple-300: #d6bcfa;
    --purple-400: #b794f4;
    --purple-500: #9f7aea;
    --purple-600: #805ad5;
    --purple-700: #6b46c1;
    --purple-800: #553c9a;
    --purple-900: #44337a;
    --pink-100: #fff5f7;
    --pink-200: #fed7e2;
    --pink-300: #fbb6ce;
    --pink-400: #f687b3;
    --pink-500: #ed64a6;
    --pink-600: #d53f8c;
    --pink-700: #b83280;
    --pink-800: #97266d;
    --pink-900: #702459;
    --primary-color: #F52C55;
    --width-container: 1280px;
    --width-container--post: 1068px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

body {
    background-color: #fff;
    background: url('./assets/images/bg_abstract.png');
    background-repeat: no-repeat;
    letter-spacing: 0px;
    background-size: cover;
    color: #515F80;
}

body.has-overlay {
    overflow: hidden;
}

body.has-overlay::after {
    content: "";
    position: fixed;
    background-color: rgba(0, 0, 0, 0.45);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    transition: .25s;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.page.--features .container {
    max-width: 960px;
}

.--gradient-bg {
    background: rgb(229, 62, 62);
    background: -moz-linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    background: -webkit-linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    background: linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="var(--red-600)", endColorstr="var(--pink-600)", GradientType=1);
    color: #fff;
}

.--gradient-outline {
    position: relative;
    background-clip: padding-box;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    box-sizing: border-box;
}

.--gradient-outline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: rgb(229, 62, 62);
    background: -moz-linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    background: -webkit-linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    background: linear-gradient(90deg, var(--red-600) 0%, var(--pink-600) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="var(--red-600)", endColorstr="var(--pink-600)", GradientType=1);
}

#breadcrumbs,
#breadcrumbs>ol {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    font-size: 0.875rem;
}

#breadcrumbs li:not(:last-child)::after {
    content: ">";
}

#breadcrumbs .bcr-item {
    padding: 0 .5rem;
}

#breadcrumbs a.bcr-item {
    font-weight: 600;
}

.__ph {
    background-color: var(--gray-300);
}

#header {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: transparent;
    height: 4rem;
    color: inherit;
    position: relative;
    transition: .25s;
    z-index: 9;
}

#header>.container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__nav {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.header__nav:first-child {
    width: 100%;
}

.header__nav:not(:first-child) {
    display: none;
}

.header__nav>.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__nav:first-child>.nav-menu {
    justify-content: space-between;
}

.header__nav .nav__item,
#header [data-toggle-sidebar] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
    margin: 0;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.header__nav .nav__item.--primary {
    color: #fff;
    border-radius: 10rem;
    padding: 0.5rem 1.5rem;
}

#header [data-toggle-sidebar][aria-expanded="true"] {
    right: 1rem;
    top: 1rem;
    z-index: 12;
    color: #fff;
}

.header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 1rem 0 0;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gray-900);
}

.header__logo>img {
    display: block;
    width: auto;
    height: 60px;
}

#sidebar {
    position: fixed;
    left: -500%;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .9);
    color: #fff;
    transition: .25s;
    z-index: 11;
}

#sidebar.is-active {
    left: 0;
}

#sidebar .menu-close {
    position: absolute;
    right: 2rem;
    top: 1rem;
    display: block;
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.sidebar__menu {
    display: block;
    width: 100%;
}

.sidebar__menu>.nav-menu {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

.sidebar__menu .nav__item {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: inherit;
    padding: 1rem;
    text-align: center;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section.--hero {
    background-color: transparent;
    margin-top: -6rem;
    padding-top: 10rem;
    color: inherit;
    text-align: center;
}

.section.--hero {
    padding-bottom: 0;
}

.section.--clients {
    padding: 2rem 0;
    margin-top: -4rem;
}

.section.--faq {
    color: #fff;
    text-align: center;
}

.section__title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--gray-800);
    margin: 0 auto 0.5rem;
    max-width: 960px;
}

.section.--faq .section__title {
    color: #fff;
}

.section__text {
    font-size: 1.125rem;
    font-weight: 400;
    color: inherit;
    line-height: 1.45;
    margin: 0 auto 1rem;
    max-width: 960px;
}

.section__read-more {
    color: var(--primary-color);
    font-weight: 600;
}

.section.--hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.375;
    color: var(--gray-800);
    margin: 0 auto 0.5rem;
    max-width: 960px;
}

.section.--hero p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 auto 2.5rem;
    max-width: 960px;
}

.section h4 {
    text-align: center;
    color: var(--red-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 400px;
    margin: 0 auto -12em;
    transform: translateY(-50%);
}

.hero__image>img,
.hero__image>svg,
.hero__image>.__ph {
    width: 100%;
    height: auto;
}

.video-wrapper {
	position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
	width: 100%;
    overflow: hidden;
	z-index: 2;
}

.video-wrapper>iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accordion-item {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1rem;
    padding: 1rem 1.5rem;
    background-color: #fff;
    border-radius: 0.375rem;
    color: var(--gray-600);
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.accordion-item .accordion__heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: var(--transparent);
    color: var(--gray-700);
    text-align: left;
    width: 100%;
}

.accordion__heading::after {
    content: "+";
    justify-self: flex-end;
    font-size: 1.25rem;
    font-weight: 700;
}

.accordion__heading[aria-expanded="true"]::after {
    content: "-";
}

.accordion-item .accordion__text {
    width: 100%;
    height: 0;
    padding: 0;
    color: var(--gray-700);
    line-height: 1.625;
    transition: .25s;
    overflow: hidden;
}

.accordion__heading[aria-expanded="true"]+.accordion__text {
    padding: 1rem 0 0;
    height: auto;
}

.feature-details {
    line-height: 1.625;
    max-width: 960px;
    margin: 4rem auto;
}

.feature-details>li>p {
    margin-bottom: 1rem;
}

.form-group:not(:last-child) {
    margin-bottom: 1.5rem;
}

.form-input-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-input-label>span {
    color: var(--red-600);
}

.form-input {
    display: block;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    #header {
        height: 6rem;
    }
    .header__nav:first-child {
        width: auto;
    }
    #header [data-toggle-sidebar] {
        display: none;
    }
    .header__nav:not(:first-child) {
        display: flex;
    }
    .header__nav:nth-child(2) {
        flex-grow: 2;
    }
    .header__nav:not(:nth-child(2)) {
        flex-grow: 1;
    }
    .header__nav:nth-child(2)>.nav-menu {
        justify-content: center;
    }
    .header__nav:last-child>.nav-menu {
        justify-content: flex-end;
    }
    .header__logo>img {
        height: 82px;
    }
    .section__title {
        font-size: 1.75rem;
    }
    .section.--hero h1 {
        font-size: 3.5rem;
        margin: 0 auto 1rem;
    }
    .section.--hero p {
        font-size: 1.25rem;
        margin: 0 auto 2.5rem;
    }
	.video-wrapper {
		margin: 0;
	}
    .feature-details {
        columns: 2;
        list-style: disc;
    }
    .feature-details>li {
        margin-left: 1.5rem;
    }
    .feature-details>li>h5 {
        font-weight: 600;
        color: var(--gray-700);
        line-height: 1.375;
    }
}

@media (min-width:1024px) {}

@media (min-width:1068px) {}

@media (min-width:1200px) {
	.header__nav .nav__item {
		font-size: 1.25rem;
	}
}