h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}

body {
    font-family: 'roboto', sans-serif;
    color: #1c2323;
}

a {
    color: #3accce;
    text-decoration: none;
}

a:hover {
    color: #58d4d6;
    text-decoration: underline;
}

@media screen and (min-width: 544px) {
    .row.-equal-height {
        display: table;
    }

    .row.-equal-height > div {
        float: none;
        display: table-cell;
        vertical-align: middle;
    }
}

.header {
    margin-bottom: 15px;
    padding-top: 50px;
    background: #f8f9f9;
    overflow: hidden;
}

.header-logo {
    margin-bottom: 60px;
    text-align: center;
}

@media screen and (max-width: 543px) {
    .header {
        padding-top: 30px;
    }

    .header-logo {
        margin-bottom: 35px;
    }

    .header-logo img {
        width: 128px;
    }
}

.title {
    margin-bottom: 20px;
    font-family: 'museo-sans-rounded', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
}

.sub-title {
    font-weight: 300;
    font-size: 18px;
}

.sub-title.-bottom {
    margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
    .title {
        font-size: 32px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 991px) {
    .title {
        font-size: 24px;
        line-height: 1.5;
    }

    .sub-title {
        font-size: 16px;
    }
}

.header-content {
    position: relative;
    z-index: 100;
}

.header-illustration {
    height: 465px;
    position: relative;
}

.header-illustration-bg {
    position: absolute;
    left: 50%;
    bottom: 45px;
    width: 1140px;
    height: 425px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/header/background.svg) center no-repeat;
}

.header-illustration-phone {
    position: absolute;
    left: 50%;
    bottom: -45px;
    width: 388px;
    height: 354px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/header/phone.svg) center no-repeat;
}

.header-illustration-crop {
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    bottom: 0;
    overflow: hidden;
}

.header-illustration-bubble {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    width: 280px;
    height: 107px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header-illustration-bubble.-left {
    left: 22px;
    top: 435px;
    padding: 0 30px 0 50px;
    background: url(../img/header/bubble-left.svg) center no-repeat;
}

.header-illustration-bubble.-right {
    right: 22px;
    top: 560px;
    padding: 0 50px 0 30px;
    background: url(../img/header/bubble-right.svg) center no-repeat;
}

.header-illustration-text {
    margin: auto;
    line-height: 1.4;
    font-size: 18px;
    font-family: 'museo-sans-rounded', sans-serif;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .header-illustration {
        height: 300px;
    }
    .header-illustration-bg {
        -webkit-transform: translateX(-50%) scale(.75);
        transform: translateX(-50%) scale(.75);
        bottom: -20px;
    }
}

@media screen and (max-width: 543px) {
    .header-illustration-bg {
        background-image: none;
    }
}

.reviews {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 50px;
}

.reviews-item {
    padding: 0 10px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: .2s all ease-in-out;
}

.reviews-item:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: .8;
}

.reviews-item:active {
    opacity: 1;
}

.reviews-item img {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .reviews {
        display: none;
    }
}

.content {
    margin-top: 70px;
}

.content-section {
    margin-bottom: 80px;
}

.illustration {
    text-align: center;
    overflow: hidden;
}

.illustration.-i-1 {
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 0 60px;
}

.illustration.-i-2 {
    padding: 0 75px;
}

.illustration.-i-3 {
    padding: 0 20px;
}

.illustration.-i-4 {
    margin-top: 30px;
    padding: 0 20px;
}

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

@media screen and (max-width: 991px) {
    .illustration.-i-1 {
        margin-bottom: 0;
        padding: 0 20px;
    }

    .illustration.-i-2 {
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .illustration.-i-1 {
        margin-top: 10px;
    }

    .illustration.-i-4 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 543px) {
    .illustration.-i-2,
    .illustration.-i-3 {
        margin-top: 30px;
    }
    .illustration.-i-1,
    .illustration.-i-2,
    .illustration.-i-3,
    .illustration.-i-4 {
        padding: 0 0;
    }
}


.select {
    margin: 0 7px;
    display: inline-block;
    position: relative;
    text-align: left;
}

.select.-active {
    z-index: 500;
}

.select.-active .select-dropdown {
    display: block;
}

.select.-active .select-button::before {
    transform: rotate(180deg);
}

.select-button {
    display: inline-block;
    position: relative;
    padding: 6px 35px 6px 15px;
    background: #edeff0;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;
}

.select-button::before {
    content: '';
    width: 11px;
    height: 6px;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 15px;
    background: url(../img/arrow.svg) center no-repeat;
    transition: .2s all ease-in-out;
}

.select-selected {
}

.select-dropdown {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    padding-top: 20px;
    background: #edeff0;
    border-radius: 0 0 5px 5px;
    z-index: 50;
}

.select-dropdown-item {
    display: block;
    padding-left: 15px;
    margin-bottom: 7px;
    text-align: left;
    cursor: pointer;
}

.select-dropdown-item:hover .select-ico {
    transform: scale(1.2);
}

.select-dropdown-item:hover {
    color: #3accce;
}

.select-ico {
    width: 25px;
    height: 25px;
    position: relative;
    top: -1px;
    transition: .2s all ease-in-out;
}

.input.-native-select {
    position: relative;
    text-align: left;
    color: #000;
    cursor: pointer;
}

.input.-native-select.-active,
.input.-native-select:focus {
    border-color: #58d4d6;
}

.input.-native-select.-active .native-select-arrow {
    transform: rotate(180deg);
}

.input.-native-select [data-ico] {
    position: absolute;
    top: 50%;
    left: 13px;
    height: 26px;
    width: 26px;
    margin-top: -13px;
    background-size: contain;
}

.native-select-selected {
    padding-left: 30px;
}

.native-select-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    height: 8px;
    width: 13px;
    margin-top: -4px;
    transition: .2s all ease-in-out;
}

.native-select-node {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    z-index: 1000;
}

#switcher-mobile-phone-error {
    display: none;
}

@media screen and (max-width: 767px) {
    #switcher-desktop {
        display: none !important;
    }
    #switcher-button-desktop {
        display: none !important;
    }
    [data-to-contacts-root="middle"] {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    #switcher-mobile {
        display: none !important;
    }
    #switcher-mobile-phone {
        display: none !important;
    }
    #switcher-mobile-submit {
        display: none !important;
    }
    #switcher-mobile-phone-error {
        display: none !important;
    }
}

.messengers-grid {
    max-width: 720px;
    margin: 60px auto;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .messengers-grid {
        width: 360px;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.messengers-grid-item {
    margin: 20px 20px;
    width: 140px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .messengers-grid-item {
        margin: 20px 15px;
    }
}

.messengers-grid-label {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 300;
}

.messengers-grid-ico {
	position: relative;
	display: inline-block;
	transition: .1s all ease-in-out;
	cursor: pointer;
}

.messengers-grid-ico:hover {
	opacity: .8;
}

.messengers-grid-badge {
    position: absolute;
    bottom: -12px;
    right: -28px;
}

.palette-container {
    padding: 80px 0 80px;
    background: #f8f9f9;
}

.palette {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .palette {
       margin-top: 10px;
    }
}

.palette-item {
    display: table;
    height: 200px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 30px;
}

.palette-item.-color-1 {
    background: #f47890;
}

.palette-item.-color-2 {
    background: #91e8b0;
}

.palette-item.-color-3 {
    background: #58d4d6;
}

.palette-item.-color-4 {
    background: #ffd199;
}

.palette-item.-color-5 {
    background: #ab97d4;
}

.palette-item.-color-6 {
    background: #f47890;
}

.palette-item.-color-7 {
    background: #91e8b0;
}

.palette-item.-color-8 {
    background: #58d4d6;
}

.palette-item-content {
    display: table-cell;
    vertical-align: middle;
    padding: 0 50px 0 120px;
}

.palette-item-title {
    position: relative;
    font-size: 22px;
    font-family: 'museo-sans-rounded', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.palette-item-subtitle {
    font-size: 18px;
}

.palette-item-ico {
    position: absolute;
    width: 80px;
    height: 100px;
    top: 50%;
    margin-top: -40px;
    left: -90px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .palette-item-content {
        padding-left: 110px;
        padding-right: 40px;
    }
    .palette-item-title {
        font-size: 18px;
    }
    .palette-item-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 543px) {
    .palette-item-content {
        padding: 60px 30px 30px;
    }
    .palette-item-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .palette-item-subtitle {
        font-size: 16px;
    }
    .palette-item-ico {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
}

.footer-section {
    margin: 80px 0;
}

.footer-section .title {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 543px) {
    .footer-section {
        margin: 60px 0;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 128px;
    }
}

footer {
    padding: 30px 0;
    font-weight: 300;
    color: rgba(255, 255, 255, .8);
    background: #58d4d6;
}

footer a {
    color: #fff;
    opacity: .8;
}

footer a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.footer-columns {
    display: table;
    width: 100%;
}

.footer-column {
    display: table-cell;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .footer-columns,
    .footer-column {
        display: block;
    }
}

.footer-links {
}

.footer-link {
    display: inline-block;
    margin-right: 20px;
}

.footer-link:last-child {
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .footer-links {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .footer-link {
        margin-right: 0;
    }
}

@media screen and (max-width: 543px) {
    .footer-links {
        display: block;
        text-align: center;
    }

    .footer-link {
        display: block;
        margin-bottom: 15px;
    }

    .footer-link:last-child {
        margin-bottom: 0;
    }
}

.footer-socials {
    display: inline-block;
}

.footer-socials a {
    margin-right: 20px;
}

.footer-about {
    text-align: right;
}

.footer-about img {
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .footer-about {
        padding-top: 30px;
        margin-top: 30px;
        border-top: 1px solid #c2f3f4;
        text-align: center;
    }
}

.popup {
    display: -webkit-flex;
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: #fff;
    z-index: 5000;
    transition: all .3s ease-in-out;
    overflow: auto;
}

.popup.-active {
    visibility: visible;
    opacity: 1;
}

.popup > div {
    margin: auto;
}

.popup .title {
    margin-bottom: 30px;
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 25px;
    cursor: pointer;
    opacity: .9;
    transition: all .2s ease-in-out;
    width: 27px;
    height: 27px;
}

.popup-close:hover {
    opacity: .8;
}

.popup-close:active {
    opacity: 1;
}

.popup-video {
    position: absolute;
    left: 25px;
    top: 55px;
    right: 25px;
    bottom: 55px;
}

.popup-content {
    padding: 50px 0;
    width: 100%;
}

.popup-content.-hidden {
    display: none;
}

.popup-ico {
    margin-bottom: 30px;
}

.form-row > div {
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .form-row > div {
        margin-bottom: 0;
    }
}

.button {
    display: inline-block;
    padding: 8px 25px;
    font-family: 'museo-sans-rounded', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    border: 4px solid #58d4d6;
    background: transparent;
    color: #58d4d6;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
    transition: .1s all ease-in-out;
}

.button:focus {
    outline: none;
}

.button:hover {
    border-color: #73e0e0;
    color: #73e0e0;
}

.button:active {
    border-color: #3accce;
    color: #3accce;
}

.button[disabled] {
    cursor: default;
    color: #c1c9c9;
    border-color: #c1c9c9;
}

.button.-cta[disabled] {
    color: #fff;
    background: #c1c9c9;
}

.button.-cta {
    background: #58d4d6;
    color: #fff;
}

.button.-cta:hover {
    background: #73e0e0;
}

.button.-cta:active {
    background: #3accce;
}

.button.-block {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

@media screen and (max-width: 543px) {
    .button {
        width: 100%;
    }
}

.input {
    width: 100%;
    border: 2px #c1c9c9 solid;
    border-radius: 5px;
    background: #fff;
    padding: 10px 20px;
    font-family: 'museo-sans-rounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #798181;
    outline: none;
}

.input:focus {
    border-color: #58d4d6;
    color: #000;
}

.input.-error {
    border-color: #f47890;
}

@media screen and (max-width: 991px) {
    .button {
        font-size: 18px;
        line-height: 1.25;
        padding: 8px 25px;
    }
    .input {
        font-size: 18px;
        line-height: 1.25;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 767px) {
    .button,
    .input {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

.fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 13px 0;
    background: #fff;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.09);
    z-index: 2000;
    visibility: hidden;
    transform: translateY(-100%);
    transition: .2s all ease-in-out;
}

.fixed-bar.-active {
    visibility: visible;
    transform: translateY(0);
}

@media screen and (max-width: 991px) {
    .fixed-bar {
        display: none;
    }
}

.fixed-bar .container {
    position: relative;
}

.fixed-bar-logo {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16px;
}

.fixed-bar .button {
    float: right;
    font-size: 14px;
    padding: 4px 34px;
}

.content-page {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 50px;
}

.content-page .caption {
    color: #cbcbcd;
}

.content-page h2 {
    margin-bottom: 20px;
    font-family: 'museo-sans-rounded', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
}

.content-page h3 {
    font-family: 'museo-sans-rounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    margin: 60px 0 30px 0;
}

.content-page p {
    margin: 0 0 30px 0;
}

.content-page ol, ul {
    margin: 0 0 30px 0;
}

.content-page li {
    margin: 0 0 15px 0;
}

#beta-form-ico [data-ico] {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
}

[data-ico].-slack { background-image: url(../img/messengers/slack.svg); }

[data-ico].-kik { background-image: url(../img/messengers/kik.svg); }

[data-ico].-line { background-image: url(../img/messengers/line.svg); }

[data-ico].-messenger { background-image: url(../img/messengers/messenger.svg); }

[data-ico].-telegram { background-image: url(../img/messengers/telegram.svg); }

[data-ico].-text { background-image: url(../img/messengers/text.svg); }

[data-ico].-whatsapp { background-image: url(../img/messengers/whatsapp.svg); }

[data-ico].-skype { background-image: url(../img/messengers/skype.svg); }

[data-ico].-wechat { background-image: url(../img/messengers/wechat.svg); }

/* INTERNATIONAL PHONE INPUT */

.phone {
    position: relative;
}

.phone-close {
    position: absolute;
    left: -40px;
    top: 50%;
    margin-top: -10px;
    cursor: pointer;
}

.phone-hint {
    text-align: center;
    margin-top: 13px;
    font-size: 12px;
    color: #798181;
}

.phone-hint.-error {
    color: #f47890;
}

.phone > .intl-tel-input {
    width: 100%;
}

.phone-success {
    display: inline-block;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0 15px 80px;
    background: url(../img/check.svg) left center no-repeat;
}

[data-to-contacts-section="phone"],
[data-to-contacts-state="error"],
[data-to-contacts-state="success"] {
    display: none;
}

@media screen and (max-width: 767px) {
    .phone-hint {
        margin-top: 0;
    }
    .phone {
        margin-bottom: 15px;
    }
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=text],
.intl-tel-input.allow-dropdown input[type=tel] {
    outline: none;
}

.intl-tel-input .country-list {
    box-shadow: none;
    border: none;
    white-space: nowrap;
    border-radius: 5px;
    margin: -3px 0 0 -1px;
}

.intl-tel-input * {
    outline: none;
}

.intl-tel-input .flag-container {
    padding: 1px;
}

.intl-tel-input .country-list {
    max-width: 348px;
}

.intl-tel-input.allow-dropdown .selected-flag {
    width: 53px;
    padding-left: 15px;
}

/* Apply only on main page */

[data-to-contacts-state="input"] .intl-tel-input.allow-dropdown input,
[data-to-contacts-state="input"] .intl-tel-input.allow-dropdown input[type=text],
[data-to-contacts-state="input"] .intl-tel-input.allow-dropdown input[type=tel] {
    padding-left: 60px;
}

[data-to-contacts-root="middle"] .phone-close {
    display: none;
}
