.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}

@-webkit-keyframes a {
    0%,
    to {
        -webkit-transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1)
    }
}

@keyframes a {
    0%,
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@-webkit-keyframes b {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@keyframes b {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@-webkit-keyframes c {
    0%,
    20%,
    50%,
    80%,
    to {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px)
    }
}

@keyframes c {
    0%,
    20%,
    50%,
    80%,
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@-webkit-keyframes d {
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-transform-origin: top center
    }
    20% {
        -webkit-transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(0)
    }
}

@keyframes d {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: d;
    animation-name: d
}

@-webkit-keyframes e {
    0% {
        -webkit-transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scale(1) rotate(0)
    }
}

@keyframes e {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}
.clear:after {
    content: "";
    display: block;
    clear: both
}

.hidden,
[hidden] {
    display: none !important
}

.disabled,
[disabled] {
    cursor: default
}

* {
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

article,
aside,
details,
figcaption,
figure,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

html {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent
}

audio,
iframe,
object,
iframe,

b,
strong {
    font-weight: 700
}

svg:not(:root) {
    overflow: hidden
}

a,
button,
input[type=button],
input[type=file],
input[type=image],
input[type=reset],
input[type=submit],
label[for] {
    cursor: pointer
}

a[href^=tel],
button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0
}

a[href^=tel],
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=submit],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=submit] {
    border-radius: 0
}

textarea {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased
}

button,
select {
    text-transform: none
}

nav ol,
nav ul {
    list-style: none
}

.text-header--lg {
    font-size: 64px;
    letter-spacing: .6px
}

.text-header--lg,
.text-header--md {
    font-weight: 700;
    line-height: 1;
    color: #000
}




.shell {
    max-width: 1290px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto
}

.shell:after {
    content: "";
    display: block;
    clear: both
}

.shell--medium {
    max-width: 990px
}

.shell--normal {
    max-width: 1130px
}

.shell--fluid {
    max-width: none
}

.wrapper {
    background-color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden
}

.accordion-main .accordion__group {
    border: 2px solid transparent;
    border-radius: 6px;
    -webkit-transition: padding .4s, border .4s, background .4s, margin .4s, -webkit-box-shadow .4s;
    transition: padding .4s, border .4s, background .4s, margin .4s, box-shadow .4s, -webkit-box-shadow .4s;
    -o-transition: padding .4s, border .4s, background .4s, margin .4s, box-shadow .4s
}

.accordion-main .accordion__group>* {
    padding: 0 30px
}

.accordion-main .accordion__group:last-child .accordion__head {
    border-bottom: 0
}

.accordion-main .accordion__head {
    position: relative;
    border-bottom: 1px solid #e8eaed;
    padding-top: 15px;
    padding-bottom: 15px
}

.accordion-main .accordion__head:before {
    content: " ";
    position: absolute;
    right: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffe5e0;
    pointer-events: none;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s
}

.accordion-main .accordion__head h4 {
    font-size: 15px;
    text-transform: uppercase;
    color: #70717b;
    font-weight: 500;
    cursor: pointer;
    padding-right: 40px;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s
}

.accordion-main .accordion__head h4:after,
.accordion-main .accordion__head h4:before {
    content: " ";
    position: absolute;
    right: 36px;
    top: 50%;
    margin-top: -1px;
    width: 12px;
    height: 2px;
    background-color: #ff603c;
    pointer-events: none
}

.accordion-main .accordion__head h4:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .4s;
    transition: transform .4s, opacity .4s, -webkit-transform .4s;
    -o-transition: transform .4s, opacity .4s
}

.accordion-main .accordion__body {
    -webkit-transition: opacity .4s, visibility .4s, padding .4s;
    -o-transition: opacity .4s, visibility .4s, padding .4s;
    transition: opacity .4s, visibility .4s, padding .4s;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    position: relative;
    overflow: hidden
}

.accordion-main .active {
    border-color: #e8eaed;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 19px rgba(65, 85, 108, .1);
    box-shadow: 0 4px 19px rgba(65, 85, 108, .1);
    margin: -4px 0 15px
}

.accordion-main .active .accordion__head h4 {
    color: #ff603c
}

.accordion-main .active .accordion__head h4:after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion-main .active .accordion__head:before {
    opacity: 0
}

.accordion-main .active .accordion__body {
    opacity: 1;
    visibility: visible;
    max-height: 99999px;
    padding-top: 17px;
    padding-bottom: 17px
}


@-webkit-keyframes g {
    0%,
    to {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px)
    }
}

@keyframes g {
    0%,
    to {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
    50% {
        -webkit-transform: translateY(12px);
        transform: translateY(12px)
    }
}

.article-service {
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 6px rgba(156, 166, 175, .22);
    box-shadow: 0 3px 6px rgba(156, 166, 175, .22);
    padding: 34px 24px;
    text-align: center;
    min-height: 100%;
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.article-service .article__image {
    min-height: 60px;
    margin: 10px 0 28px
}

.article-service .article__image img {
    display: block;
    width: auto;
    max-width: none;
    max-height: 56px;
    margin: 0 auto
}

.article-service .article__body {
    font-size: 12px;
    line-height: 1.23
}

.article-service .article__body h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px
}

.article-service .article__body p {
    color: #979aa5
}

.article-service .article__body>:last-child {
    margin-bottom: 0
}

body:not(.is-touch) .article-service:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

@media(max-width:767px) {
    .article-service {
        padding: 24px 14px
    }
    .article-service .article__body h4 {
        font-size: 10px
    }
    .article-service .article__image {
        min-height: 50px;
        margin-bottom: 11px
    }
    .article-service .article__image img {
        max-height: 46px
    }
}

.article-service-secondary {
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 6px rgba(156, 166, 175, .22);
    box-shadow: 0 3px 6px rgba(156, 166, 175, .22);
    padding: 18px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s
}

.article-service-secondary .article__image {
    width: 56px;
    margin-right: 18px
}

.article-service-secondary .article__image img {
    display: block;
    max-height: 40px
}

.article-service-secondary .article__body h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 6px
}

.article-service-secondary .article__body>:last-child {
    margin-bottom: 0
}

.article-service-secondary .article__body {
    max-width: 80%
}

body:not(.is-touch) .article-service-secondary:hover {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px)
}

@media(max-width:767px) {
    .article-service-secondary {
        padding-left: 20px;
        padding-right: 20px
    }
    .article-service-secondary .article__body h3 {
        font-size: 12px
    }
}

.article-callout {
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #fff;
    padding: 32px 24px;
    text-align: center;
    -webkit-transition: border .4s, background .4s, -webkit-box-shadow .4s;
    transition: box-shadow .4s, border .4s, background .4s, -webkit-box-shadow .4s;
    -o-transition: box-shadow .4s, border .4s, background .4s
}

.article-callout .article__image {
    min-height: 85px;
    margin-bottom: 18px
}

.article-callout .article__image img {
    display: block;
    margin: 0 auto;
    max-height: 85px
}

.article-callout .btn {
    display: block
}

body:not(.is-touch) .article-callout:hover {
    border-color: #ff603c;
    -webkit-box-shadow: 0 5px 25px rgba(156, 166, 175, .24);
    box-shadow: 0 5px 25px rgba(156, 166, 175, .24)
}

input::-webkit-input-placeholder {
    color: inherit;
    opacity: 1
}

input:-ms-input-placeholder,
input::-ms-input-placeholder {
    color: inherit;
    opacity: 1
}

input::placeholder {
    color: inherit;
    opacity: 1
}

textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1
}

textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: inherit;
    opacity: 1
}

textarea::placeholder {
    color: inherit;
    opacity: 1
}

input:-webkit-autofill {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0 1000px #fff inset
}

.form-review {
    background-color: #fff;
    border-radius: 9px;
    padding: 24px 30px;
    -webkit-box-shadow: 0 4px 57px rgba(69, 79, 124, .1);
    box-shadow: 0 4px 57px rgba(69, 79, 124, .1)
}

.form-review .form__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px
}

.form-review .form__head img {
    display: block;
    width: 70px;
    margin-right: 20px
}

.form-review .form__head h4 {
    font-size: 20px;
    font-weight: 600
}

.form-review .form__body>ul {
    list-style: none
}

.form-review .form__body>ul>li {
    padding: 15px 0
}

.form-review .form__body>ul>li+li {
    border-top: 2px solid #ebeef8
}

.form-review .form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.form-review .form__field>label {
    font-size: 14px;
    line-height: 1.21;
    color: #53607e;
    padding-right: 20px;
    font-weight: 600;
    min-width: 133px;
    max-width: 133px
}

.form-review .form__field>input,
.form-review .form__field>select,
.form-review .form__field>textarea {
    width: calc(100% - 133px);
    margin-left: auto;
    border: 0;
    color: rgba(83, 96, 126, .7);
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    font-weight: 600
}

.form-review .form__field>input:focus,
.form-review .form__field>select:focus,
.form-review .form__field>textarea:focus {
    color: #53607e
}

.form-review .form__field>textarea {
    display: block;
    width: 100%;
    resize: none;
    height: 174px
}

.form-review .form__field--rating>ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 0 0;
    font-size: 0;
    line-height: 0
}

.form-review .form__field--rating>ul>li {
    width: 24px
}

.form-review .form__field--rating>ul label {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    color: #ff603c
}

.form-review .form__field--rating>strong {
    font-size: 12px;
    font-weight: 500;
    color: rgba(52, 63, 89, .5);
    line-height: 24px;
    padding: 0 8px;
    border-radius: 10px;
    background-color: #eff0f3;
    min-width: 39px;
    text-align: center
}

.form-review .form__field--rating input {
    display: none
}

.form-review .form__field--textarea {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.form-review .form__btn {
    border: 0;
    width: 100%;
    background-color: #ff603c;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 500;
    height: 46px;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 4px rgba(47, 55, 78, .34);
    box-shadow: 0 2px 4px rgba(47, 55, 78, .34)
}

body:not(.is-touch) .form-review .form__btn:hover {
    opacity: .75
}

@media(max-width:767px) {
    .btn-menu {
        display: block
    }
    .form-review {
        padding: 20px 12px
    }
    .form-review .form__field>label {
        min-width: 80px;
        max-width: 80px
    }
    .form-review .form__field>textarea {
        height: 100px
    }
}

.fragment-comment {
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 5px 0 16px rgba(156, 166, 175, .34);
    box-shadow: 5px 0 16px rgba(156, 166, 175, .34);
    padding: 9px;
    position: relative;
    overflow: hidden;
    width: 370px;
    -webkit-transition: opacity .4s, visibility .4s, -webkit-transform .4s;
    transition: opacity .4s, visibility .4s, transform .4s, -webkit-transform .4s;
    -o-transition: opacity .4s, visibility .4s, transform .4s
}

.fragment-comment .fragment__body {
    position: relative;
    overflow: hidden
}

.fragment-comment.close {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px)
}

.fragment-package {
    background-color: #fff;
    border: 1px solid #cdcdde;
    border-radius: 7px;
    padding: 24px 22px 28px;
    min-height: 100%;
    -webkit-box-shadow: 0 8px 38px rgba(65, 85, 108, .1);
    box-shadow: 0 8px 38px rgba(65, 85, 108, .1);
    -webkit-transition: -webkit-box-shadow .4s;
    transition: box-shadow .4s;
    -o-transition: box-shadow .4s;
    transition: box-shadow .4s, -webkit-box-shadow .4s
}

.fragment-package .fragment__head {
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    color: #a5a7b0;
    font-weight: 600;
    margin-bottom: 18px
}

.fragment-package .fragment__head strong {
    display: block;
    font-size: 27px;
    line-height: 1.11;
    color: #626470;
    font-weight: 500
}

.fragment-package .fragment__price {
    background-color: #ff603c;
    text-align: center;
    color: #fff;
    margin: 0 -22px;
    padding: 20px 22px
}

.fragment-package .fragment__price p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0
}

.fragment-package .fragment__price p+p {
    font-size: 11px;
    line-height: 1.27;
    font-weight: 500;
    color: #ffd5cc
}

.fragment-package .fragment__price span {
    display: block;
    font-size: 16px;
    padding: 0 2px
}

.fragment-package .fragment__price span:last-child {
    font-size: 14px
}

.fragment-package .fragment__price strong {
    display: block;
    font-size: 40px;
    line-height: 1;
    font-weight: 500
}

.fragment-package .fragment__list {
    padding: 18px 0;
    color: #62656e
}

.fragment-package .fragment__list ul {
    list-style: none
}

.fragment-package .fragment__list li {
    position: relative;
    padding-left: 26px;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 9px
}

.fragment-package .fragment__list li:last-child {
    margin-bottom: 0
}

.fragment-package .fragment__list strong {
    font-weight: 700
}

.fragment-package .fragment__list i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ff603c;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .1)
}

.fragment-package .fragment__actions {
    border-top: 1px solid #efeff2;
    padding-top: 20px
}

.fragment-package .fragment__actions .btn {
    display: block;
    max-width: 116px;
    margin: 0 auto
}

.fragment-package:hover {
    -webkit-box-shadow: 0 8px 38px rgba(65, 85, 108, .4);
    box-shadow: 0 8px 38px rgba(65, 85, 108, .4)
}

.fragment-box {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(205, 205, 222, .81);
    position: relative;
    overflow: hidden;
    text-align: center;
    -webkit-box-shadow: 0 8px 35px hsla(240, 9%, 70%, .29);
    box-shadow: 0 8px 35px hsla(240, 9%, 70%, .29);
    z-index: 9
}

.fragment-box .fragment__head {
    padding: 38px 20px 60px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase
}

.fragment-box .fragment__head h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0
}

.fragment-box .fragment__head i {
    font-size: 16px
}

@media(max-width:767px) {
    .fragment-comment {
        width: auto
    }
    .fragment-package {
        padding: 24px 12px 28px
    }
    .fragment-package .fragment__price {
        margin-left: -12px;
        margin-right: -12px
    }
    .fragment-box {
        max-width: 230px
    }
    .fragment-box .fragment__head {
        font-size: 9px;
        padding: 38px 10px 60px
    }
    .fragment-box .fragment__head h2 {
        font-size: 30px
    }
}

.fragment-phone {
    width: 250px;
    height: 500px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.fragment-phone>* {
    position: relative;
    z-index: 6
}

.fragment-phone:before {
    content: " ";
    position: absolute;
    left: -15px;
    right: -55px;
    bottom: -55px;
    top: 0;
    z-index: 1;
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/ico-phone.png) 50%/contain no-repeat
}

.fragment-phone .fragment__images {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: translateZ(40px);
    transform: translateZ(40px)
}

.fragment-phone .fragment__images img {
    display: block;
    width: 100%;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    position: relative;
    z-index: 5
}

.fragment-phone .fragment__images>span {
    position: absolute;
    left: 0;
    top: 0;
    width: 138px
}

.fragment-phone .fragment__images>span:first-child {
    top: 60px;
    left: -32px
}

.fragment-phone .fragment__images>span:first-child:before {
    content: " ";
    position: absolute;
    right: -13px;
    top: 50px;
    width: 60px;
    height: 80px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, .05);
    box-shadow: 0 0 14px rgba(0, 0, 0, .05)
}

.fragment-phone .fragment__images>span:nth-child(2) {
    left: auto;
    right: -28px;
    top: 75px
}

.fragment-phone .fragment__images>span:nth-child(2):before {
    content: " ";
    position: absolute;
    left: 0;
    top: 50px;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, .05);
    box-shadow: 0 0 14px rgba(0, 0, 0, .05)
}

.fragment-phone .fragment__images>span:nth-child(3) {
    top: 186px;
    left: -62px;
    width: 78px
}

.fragment-phone .fragment__images>span:nth-child(4) {
    top: 218px;
    left: 66px;
    width: 124px
}

.fragment-phone .fragment__images>span:nth-child(4):before {
    content: " ";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, .05);
    box-shadow: 0 0 14px rgba(0, 0, 0, .05)
}

.fragment-phone .fragment__images>span:nth-child(5) {
    left: auto;
    right: -76px;
    top: 197px;
    width: 110px
}

.fragment-phone .fragment__images>span:nth-child(5):before {
    content: " ";
    position: absolute;
    left: -40px;
    top: 10px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, .05);
    box-shadow: 0 0 14px rgba(0, 0, 0, .05)
}

.fragment-phone .fragment__body {
    position: absolute;
    z-index: 5;
    left: 30px;
    right: 30px;
    bottom: 30px;
    text-align: center
}

.fragment-phone .fragment__body i {
    margin-bottom: 6px
}

.fragment-phone .fragment__body p {
    font-size: 12px;
    color: #7a7a9a;
    margin-bottom: 0
}

.fragment-phone .fragment__body h6 {
    font-size: 24px;
    color: #40405f;
    font-weight: 500
}

.fragment-phone .fragment__body h6 span {
    font-size: 12px;
    font-weight: 400;
    color: #7a7a9a
}

@media(max-width:767px) {
    .fragment-phone {
        width: 124px;
        height: 248px;
        margin: 0 auto
    }
    .fragment-phone:before {
        right: -30px;
        bottom: -30px
    }
    .fragment-phone .fragment__images>span {
        width: 69px
    }
    .fragment-phone .fragment__images>span:first-child {
        top: 30px;
        left: -16px
    }
    .fragment-phone .fragment__images>span:first-child:before {
        content: " ";
        position: absolute;
        right: -6px;
        top: 25px;
        width: 30px;
        height: 40px
    }
    .fragment-phone .fragment__images>span:nth-child(2) {
        left: auto;
        right: -14px;
        top: 37px
    }
    .fragment-phone .fragment__images>span:nth-child(2):before {
        left: 0;
        top: 25px;
        width: 30px;
        height: 30px
    }
    .fragment-phone .fragment__images>span:nth-child(3) {
        top: 93px;
        left: -31px;
        width: 39px
    }
    .fragment-phone .fragment__images>span:nth-child(4) {
        top: 109px;
        left: 33px;
        width: 62px
    }
    .fragment-phone .fragment__images>span:nth-child(4):before {
        left: -5px;
        top: -5px;
        width: 22px;
        height: 22px
    }
    .fragment-phone .fragment__images>span:nth-child(5) {
        left: auto;
        right: -38px;
        top: 98px;
        width: 55px
    }
    .fragment-phone .fragment__images>span:nth-child(5):before {
        left: -20px;
        top: 5px;
        width: 22px;
        height: 22px
    }
    .fragment-phone .fragment__body {
        left: 10px;
        right: 10px;
        bottom: 10px
    }
    .fragment-phone .fragment__body p {
        font-size: 6px
    }
    .fragment-phone .fragment__body h6 {
        font-size: 10px
    }
    .fragment-phone .fragment__body h6 span {
        font-size: 8px
    }
}

[class^=ico-] {
    display: inline-block;
    vertical-align: top;
    position: relative
}

.ico-close {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ccc;
    -webkit-transition: background .4s;
    -o-transition: background .4s;
    transition: background .4s
}

.ico-close:after,
.ico-close:before {
    content: " ";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 50%;
    height: 2px;
    margin-top: -1px;
    background-color: #fff;
    border-radius: 2px
}

.ico-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.ico-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

body:not(.is-touch) a:hover .ico-close {
    background-color: #ff603c
}

.ico-passowrd,
.ico-quality,
.ico-support,
.ico-time {
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/sprite-main.png) no-repeat;
    width: 24px;
    height: 24px
}

.ico-quality {
    background-position: -3px -205px
}

.ico-passowrd {
    background-position: -4px -232px
}

.ico-time {
    background-position: -4px -260px
}

.ico-support {
    background-position: -4px -290px
}

@media(-o-min-device-pixel-ratio:2/1),
(-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi) {
    .ico-passowrd,
    .ico-quality,
    .ico-support,
    .ico-time {
        background-image: url(../../../../../../../../../themes/buzz/v2/assets/images/sprite-main@2x.png);
        background-size: 320px 320px
    }
}

@-webkit-keyframes h {
    25% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px)
    }
    50% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg)
    }
    75% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }
}

@keyframes h {
    25% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px)
    }
    50% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg)
    }
    75% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }
}

.ico-heart {
    width: 35px;
    height: 32px
}

.ico-heart:after,
.ico-heart:before {
    content: " ";
    position: absolute;
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/ico-heart.svg) 50% no-repeat
}

.ico-heart:before {
    left: -9px;
    right: -9px;
    top: -12px;
    bottom: -2px;
    opacity: .3
}

.ico-heart:after {
    left: -18px;
    right: -18px;
    top: -24px;
    bottom: -4px;
    opacity: .3
}

.ico-heart span {
    display: block;
    position: relative;
    z-index: 6;
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/ico-heart.svg) 50%/contain no-repeat;
    width: inherit;
    height: inherit
}

@media(max-width:767px) {
    .ico-heart {
        width: 17px;
        height: 16px
    }
    .ico-heart:before {
        left: -4px;
        right: -4px;
        top: -6px;
        bottom: -1px
    }
    .ico-heart:after {
        left: -9px;
        right: -9px;
        top: -12px;
        bottom: -2px
    }
}

.ico-header-bar-arrow {
    width: 24px;
    height: 16px;
    border-radius: 10px;
    background-color: #5aa9db;
    vertical-align: middle
}

.ico-header-bar-arrow:before {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 2px;
    background-color: #fff;
    margin: -1px 0 0 -4px
}

.ico-header-bar-arrow:after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin: -3px 0 0 -2px
}

@media(max-width:767px) {
    .ico-header-bar-arrow {
        width: 20px;
        height: 14px
    }
}

[class^=list-],
[class^=list]>ul {
    list-style: none
}

.list-services {
    width: 100%
}

.list-services>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.list-services>ul>li {
    width: 226px;
    padding: 7px
}

@media(max-width:767px) {
    .list-services>ul {
        width: auto;
        margin: -6px -3px
    }
    .list-services>ul>li {
        width: 50%;
        padding: 6px 3px
    }
}

.list-services-secodnary {
    width: 100%
}

.list-services-secodnary>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.list-services-secodnary>ul>li {
    width: 356px;
    padding: 16px;
    position: relative
}

.list-services-secodnary>ul>li:before {
    content: " ";
    height: 0;
    width: 0;
    border-left: 8px solid #bcbfc8;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    right: -5px;
    bottom: 20px
}

.list-services-secodnary>ul>li:last-child:before {
    display: none
}

@media(max-width:767px) {
    .list-services-secodnary>ul {
        margin: -8px;
        width: auto
    }
    .list-services-secodnary>ul>li:before {
        display: none
    }
    .list-services-secodnary>ul>li {
        padding: 8px
    }
}

.list-services-secodnary--without-separator>ul>li {
    padding: 6px
}

.list-services-secodnary--without-separator>ul>li:before {
    display: none
}

.list-reviews>ul>li {
    margin-bottom: 27px
}

.list-reviews>ul>li:last-child {
    margin-bottom: 0
}

.list-about {
    width: 100%
}

.list-about>ul>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 88px
}

.list-about>ul>li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.list-about>ul>li:nth-child(2n) .list__image {
    width: 50%;
    margin-right: 0;
    margin-left: auto
}

.list-about>ul>li:nth-child(2n) .list__body {
    width: calc(50% - 66px)
}

.list-about>ul>li:last-child {
    margin-bottom: 0
}

.list-about .list__image {
    width: calc(50% - 66px);
    margin-right: auto
}

.list-about .list__image img {
    display: block;
    margin: 0 auto;
    max-width: 233px;
    max-height: 220px
}

.list-about .list__body {
    width: 50%;
    color: #53607e
}

.list-about .list__body h3 {
    font-size: 17px;
    line-height: 1.29;
    text-transform: uppercase;
    font-weight: 500;
    color: #3d434e;
    letter-spacing: .25px
}

.list-about .list__body h3+p {
    font-size: 16px;
    line-height: 1.44
}

.list-about .list__body p {
    margin-bottom: 12px
}

.list-about .list__body a {
    color: #ff603c;
    text-decoration: none
}

.list-about .list__body>:last-child {
    margin-bottom: 0
}

body:not(.is-touch) .list-about .list__body a:hover {
    text-decoration: underline
}

.list-about--secondary {
    max-width: 880px;
    margin: 0 auto
}

.list-about--secondary>ul>li {
    margin-bottom: 0;
    position: relative
}

.list-about--secondary>ul>li>* {
    position: relative;
    z-index: 6
}

.list-about--secondary>ul>li:nth-child(2n):before {
    content: " ";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    left: 118px;
    pointer-events: none;
    border-radius: 0 20px 20px 0;
    border: 2px dotted #d4d5de;
    border-left: 0
}

.list-about--secondary>ul>li:nth-child(2n) .list__image {
    width: 200px
}

.list-about--secondary>ul>li:nth-child(2n) .list__body {
    width: calc(100% - 280px);
    padding-right: 0;
    padding-left: 80px
}

.list-about--secondary>ul>li:nth-child(odd):before {
    content: " ";
    position: absolute;
    left: 96px;
    top: -2px;
    bottom: -2px;
    width: 20px;
    border: 2px dotted #d4d5de;
    border-radius: 20px 0 0 20px;
    border-right: 0
}

.list-about--secondary>ul>li:first-child:before {
    top: 50%;
    border-radius: 0 0 0 20px
}

.list-about--secondary>ul>li:last-child:before {
    bottom: 50%;
    border-radius: 20px 0 0;
    border-bottom: 0
}

.list-about--secondary .list__image {
    width: 200px
}

.list-about--secondary .list__body {
    width: calc(100% - 280px);
    padding: 74px 150px 74px 0
}

.list-callout {
    width: 100%
}

.list-callout>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.list-callout>ul>li {
    width: 266px;
    padding: 6px
}

@media(max-width:767px) {
    .list-about .list__body h3 {
        font-size: 14px
    }
    .list-about .list__body h3+p {
        font-size: 13px
    }
    .list-about:not(.list-about--secondary)>ul>li {
        display: block;
        margin-bottom: 20px
    }
    .list-about:not(.list-about--secondary) .list__image {
        float: right;
        width: 100px;
        position: relative;
        z-index: 6;
        margin: 0 -20px -50px 0
    }
    .list-about:not(.list-about--secondary) .list__body {
        width: auto;
        position: relative;
        overflow: hidden;
        clear: both;
        z-index: 7
    }
    .list-about--secondary>ul>li {
        display: block
    }
    .list-about--secondary .list__body {
        padding: 30px 10px 30px 30px;
        width: auto
    }
    .list-about--secondary .list__body h3 {
        padding-top: 30px;
        position: relative;
        overflow: hidden
    }
    .list-about--secondary .list__body h3+p {
        clear: both
    }
    .list-about--secondary .list__image {
        width: 80px;
        float: left;
        margin-right: 20px;
        margin-left: 20px;
        margin-bottom: 20px
    }
    .list-about--secondary>ul>li:nth-child(2n):before {
        left: 20px
    }
    .list-about--secondary>ul>li:nth-child(2n) .list__image {
        width: 80px;
        float: right
    }
    .list-about--secondary>ul>li:nth-child(2n) .list__body {
        width: auto;
        padding-left: 30px;
        padding-right: 30px
    }
    .list-about--secondary>ul>li:nth-child(2n):after {
        content: " ";
        position: absolute;
        left: 0;
        bottom: -2px;
        height: 4px;
        background-color: #fff;
        width: 40px
    }
    .list-about--secondary>ul>li:nth-child(odd):before {
        left: 0
    }
    .list-about--secondary>ul>li:first-child .list__body {
        padding-top: 10px
    }
    .list-about--secondary>ul>li:first-child:before {
        top: 30px;
        border-radius: 20px 0 0 20px
    }
    .list-about--secondary>ul>li:last-child .list__image {
        margin-left: 0;
        margin-top: 30px
    }
    .list-about--secondary>ul>li:last-child:before {
        bottom: auto;
        height: 60px;
        left: 20px
    }
    .list-about--secondary>ul>li:last-child .list__body {
        padding-bottom: 0
    }
    .list-callout>ul {
        display: block
    }
    .list-callout>ul>li {
        width: 224px;
        padding: 0;
        margin: 0 auto 12px
    }
    .list-callout>ul>li:last-child {
        margin-bottom: 0
    }
}


.free-likes>div>div>.likes-main>p {
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.41;
    letter-spacing: normal;
    color: #7d7d7d
}

.free-likes>div>div>.likes-main>h2 {
    font-size: 84px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #252525
}

[class^=section] {
    width: 100%;
    position: relative
}

.section {
    padding: 0 0 58px
}

.section>:first-child {
    padding-top: 58px
}

.section>:not(:last-child) {
    padding-bottom: 50px
}

.section .section__head {
    text-align: center;
    font-size: 19px;
    line-height: 1.38;
    color: #868e9b
}

.section .section__head h1 {
    margin-bottom: 5px;
    color: #3d434e
}

.section .section__head h2 {
    font-weight: 600;
    margin-bottom: 22px
}

.section .section__head h2 strong {
    color: #ff603c;
    font-weight: 600
}

.section .section__head p {
    margin: 0 auto
}

.section .section__head h1.page_title {
    line-height: 22px;
    color: #7b7d86;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: #edeef3;
    padding: 5px 13px;
    font-weight: 600;
    border-radius: 16px;
    text-transform: uppercase
}

.section .section__head--large p {
    max-width: 784px !important
}

.section .section__body .shell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.section .section__body .sidebar {
    width: 244px;
    margin-right: auto
}

.section .section__body .content {
    width: calc(100% - 324px);
    position: relative
}

.section .section__body .content__wrap {
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px 3px rgba(156, 166, 175, .22);
    box-shadow: 0 3px 6px 3px rgba(156, 166, 175, .22);
    padding: 38px 40px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s
}

.section .section__body .content__wrap.active {
    opacity: 1;
    visibility: visible;
    position: relative
}

.section .section__body .content__wrap .accordion-main .active {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
    margin: 0
}

.section .section__body-col {
    width: calc(50% - 15px)
}

.section .section__body-col:last-child {
    margin-left: auto
}

.section .section__body-form {
    width: calc(50% - 66px)
}

.section .section__body-review {
    width: 50%;
    margin-left: auto
}

@media(max-width:985px) {
    .section .section__head i {
        font-size: 18px
    }
    .section .section__body .sidebar {
        width: 200px
    }
    .section .section__body .content {
        width: calc(100% - 240px)
    }
    .section .section__body .content__wrap {
        padding: 20px
    }
    .section .section__body-form,
    .section .section__body-review {
        width: calc(50% - 10px)
    }
}

@media(max-width:767px) {
    .section {
        padding-bottom: 30px
    }
    .section>:first-child {
        padding-top: 30px
    }
    .section>:not(:last-child) {
        padding-bottom: 30px
    }
    .section .section__head {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px
    }
    .section .section__head i {
        font-size: 14px
    }
    .section .section__head h1,
    .section .section__head h2 {
        margin-bottom: 10px
    }
    .section .section__body .shell {
        display: block
    }
    .section .section__body .content,
    .section .section__body .sidebar {
        float: none;
        width: auto
    }
    .section .section__body .content__wrap {
        border: 0;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: 0 0
    }
    .section .section__body .content__wrap .accordion-main .active {
        -webkit-box-shadow: 0 4px 19px rgba(65, 85, 108, .1);
        box-shadow: 0 4px 19px rgba(65, 85, 108, .1);
        margin: -4px 0 15px;
        border-color: #e8eaed;
        background-color: #fff
    }
    .section .section__body-col,
    .section .section__body-form {
        width: 100%
    }
    .section .section__body-review {
        width: 100%;
        margin-top: 30px
    }
}

.section--gray {
    background-color: #F1F3F7;

}


.section--packages {
    background-color: #fefeff
}

.section--packages .section__head {
    font-size: 15px
}

@media(max-width:767px) {
    .section--packages .section__head {
        font-size: 12px
    }
    .section--packages-column-on-mobile .owl-carousel {
        display: block
    }
    .section--packages-column-on-mobile .slider-packages .slide {
        margin: 0 auto 14px
    }
    .section--packages-column-on-mobile .slider-packages .slide:last-child {
        margin-bottom: 0
    }
}

.section--packages-free .slider-gallery {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.section--services .section__head {
    font-size: 19px;
    line-height: 1.47
}

.section--services .section__head h2 {
    margin-bottom: 22px
}

.section--services .section__head p {
    max-width: 514px
}

@media(max-width:767px) {
    .section--services .section__head {
        font-size: 13px
    }
}

.section--services-secondary .section__head {
    font-size: 17px;
    line-height: 1.59
}

.section--services-secondary .section__head h2 {
    margin-bottom: 18px
}

.section--services-secondary .section__head p {
    max-width: 394px;
    color: #53607e
}

.section--faq .section__head h1 {
    margin-bottom: 10px
}

.section--faq .accordion__body ul {
    margin-left: 30px
}

@media(max-width:767px) {
    .section--services-secondary .section__head {
        font-size: 13px
    }
    .section--faq .section__head {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px
    }
}

.section--reviews .section__head {
    font-size: 17px;
    color: #53607e
}

.section--reviews .section__head h2 {
    font-size: 36px;
    margin-bottom: 16px
}

.section--reviews .section__head p {
    max-width: 630px
}

@media(max-width:767px) {
    .section--reviews .section__head {
        font-size: 13px
    }
    .section--reviews .section__head h2 {
        font-size: 24px
    }
}

.section--pricing .section__head {
    font-size: 17px;
    line-height: 1.59;
    color: #74788c
}

.section--pricing .section__head h2 {
    margin-bottom: 16px
}

.section--pricing .section__head p {
    max-width: 440px
}

@media(max-width:767px) {
    .section--pricing .section__head {
        font-size: 13px
    }
}

.section--about {
    padding: 88px 0
}

.section--about>:first-child {
    padding-top: 0
}

.section--about .section__head {
    font-size: 17px;
    line-height: 1.65
}

.section--about .section__head h2 {
    margin-bottom: 30px
}

.section--about .section__head p {
    max-width: 770px;
    color: #53607e
}

@media(max-width:767px) {
    .section--about {
        padding: 36px 0
    }
    .section--about .section__head {
        font-size: 13px;
        line-height: 1.54;
        padding-left: 20px;
        padding-right: 20px
    }
    .section--about .section__head h2 {
        margin-bottom: 15px
    }
}

.section--testimonials-secondary .section__body .shell {
    display: block
}

.section--callout .section__head {
    font-size: 17px;
    line-height: 1.59;
    color: #53607e
}

.section--callout .section__head h2 {
    margin-bottom: 10px;
    font-size: 36px
}

.section--callout .section__head p {
    max-width: 600px
}

@media(max-width:767px) {
    .section--callout .section__head {
        font-size: 13px
    }
    .section--callout .section__head h2 {
        font-size: 24px
    }
}

.section-intro {
    background-color: #f8f9fd;
    padding: 16px 0 88px
}

.section-intro .shell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.section-intro .shell:after {
    display: none
}

.section-intro .section__body {
    margin-right: auto;
    width: calc(100% - 392px);
    font-size: 0;
    line-height: 0
}

.section-intro .section__body h1 {
    font-size: 33px
}

.section-intro .section__body h1 strong {
    font-weight: 400;
    color: #ff603c
}

.section-intro .section__body p {
    font-size: 17px;
    line-height: 1.65;
    color: #53607e
}

.section-intro .section__body .btn {
    min-width: calc(33.333% - 10px);
    margin-top: 8px
}

.section-intro .section__body .btn:not(:last-child) {
    margin-right: 10px
}

.section-intro .section__image {
    width: 250px;
    margin: 0 38px
}

@media(max-width:767px) {
    .section-intro {
        overflow: hidden;
        padding: 16px 0 0
    }
    .section-intro .shell {
        display: block
    }
    .section-intro .section__body {
        width: auto;
        text-align: center
    }
    .section-intro .section__body h1 {
        font-size: 21px
    }
    .section-intro .section__body p {
        font-size: 12px
    }
    .section-intro .section__body br {
        display: none
    }
    .section-intro .section__body .btn,
    .section-intro .section__body .btn:not(:last-child) {
        margin: 0 auto 7px;
        display: block;
        max-width: 182px
    }
    .section-intro .section__image {
        width: auto;
        margin: 0
    }
}

.section-callout {
    background: -webkit-gradient(linear, left top, left bottom, from(#fd8559), to(#fc5f26));
    background: -o-linear-gradient(top, #fd8559 0, #fc5f26 100%);
    background: linear-gradient(180deg, #fd8559 0, #fc5f26);
    text-align: center;
    color: #fff;
    overflow: hidden
}

.section-callout>.section__slider+* {
    padding-top: 0
}

.section-callout .section__slider {
    padding: 10px 0 0;
    overflow: hidden;
    margin-bottom: -10px
}

.section-callout .section__body {
    font-size: 17px;
    line-height: 1.65;
    color: #fcdbd0
}

.section-callout .section__body .btn {
    min-width: 212px
}

.section-callout .section__body .btn--white {
    color: #ff603c
}

.section-hero {
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/hero/bg_desktop.jpg) 0 0/cover no-repeat #2b2827;
    position: relative
}

.section-hero h1 {
    font-size: 84px;
    font-weight: 700;
    line-height: 1em;
    color: #fff;
    margin-bottom: 32px
}

.section-hero p {
    font-size: 24px;
    line-height: 1.41em;
    color: hsla(0, 0%, 100%, .8);
    max-width: 620px;
    margin-bottom: 32px
}

.section-hero .hero-left {
    float: left;
    width: 700px;
    padding-top: 160px;
    padding-bottom: 200px
}

.section-hero .btn {
    background: #fc591e;
    color: #fff;
    padding: 15px 18px;
    line-height: 26px;
    position: relative
}

.section-hero .btn span {
    padding-right: 39px
}

.section-hero .btn .btn--drop {
    position: absolute;
    top: 24px;
    right: 17px;
    height: 10px;
    width: 15px;
    background: url(../../../../../../../../../themes/buzz/v2/assets/images/btn-dropdown.svg) no-repeat;
    display: block
}

.section-hero .dropdown {
    position: relative;
    display: inline-block
}

.section-hero ul.dropdown-menu {
    display: none;
    background: #fff;
    -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, .12);
    border-radius: 6px;
    list-style: none;
    padding: 0 16px;
    position: absolute;
    top: 0;
    right: -254px;
    min-width: 238px
}

.section-hero ul.dropdown-menu li a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #414141;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #e2e2e2
}

.section-hero ul.dropdown-menu li:last-child a {
    border: 0
}

.section-hero i {
    display: inline-block;
    vertical-align: middle
}

.section-hero i.icon-next {
    margin-left: 48px
}

@media(max-width:767px) {
    .section-callout .section__body {
        font-size: 13px
    }
    .section-hero {
        background-image: url(../../../../../../../../../themes/buzz/v2/assets/images/hero/bg_mobile.jpg)
    }
    .section-hero .hero-left {
        float: none;
        width: 100%;
        padding-top: 32px;
        padding-bottom: 275px
    }
    .section-hero h1 {
        font-size: 42px;
        text-align: center;
        line-height: 46px;
        margin-bottom: 18px
    }
    .section-hero p {
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        padding: 0 8px;
        margin-bottom: 20px
    }
    .section-hero .btn,
    .section-hero .dropdown {
        display: block;
        margin: 0 auto;
        max-width: 238px
    }
    .section-hero .btn {
        text-align: left
    }
    .section-hero .btn .btn-drop {
        float: right
    }
    .section-hero ul.dropdown-menu {
        right: auto;
        top: 72px;
        z-index: 11
    }
}

.section--contact form {
    max-width: 626px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 56px 88px;
    border-radius: 6px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .02);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .02)
}

.section--contact .form-msg {
    margin-bottom: 32px;
    font-size: 18px;
    text-align: center;
    font-weight: 600
}

.section--contact .action-group {
    padding-top: 16px
}

.section--contact button {
    width: 100%;
    display: block;
    background: #fc654b;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    line-height: 24px
}

.section--contact button:disabled {
    opacity: .5
}

.section--contact .input-group {
    margin-bottom: 16px
}

.section--contact input,
.section--contact textarea {
    width: 100%;
    padding: 16px;
    line-height: 24px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid rgba(19, 34, 80, .15);
    outline: 0;
    font-size: 18px;
    color: #000
}

.section--contact input:focus,
.section--contact textarea:focus {
    border-color: #fc654b;
    -webkit-box-shadow: 0 0 10px 0 hsla(9, 97%, 64%, .2);
    box-shadow: 0 0 10px 0 hsla(9, 97%, 64%, .2)
}

.section--contact input::-webkit-input-placeholder,
.section--contact textarea::-webkit-input-placeholder {
    color: #676767
}

.section--contact input::-moz-placeholder,
.section--contact textarea::-moz-placeholder {
    color: #676767
}

.section--contact input:-ms-input-placeholder,
.section--contact textarea:-ms-input-placeholder {
    color: #676767
}

.section--contact input:-moz-placeholder,
.section--contact textarea:-moz-placeholder {
    color: #676767
}

@media(max-width:767px) {
    .section--contact form {
        max-width: none;
        width: 100%;
        padding: 32px 24px
    }
    .section--contact button,
    .section--contact input,
    .section--contact textarea {
        font-size: 16px;
        font-weight: 600;
        padding: 12px;
        line-height: 18px
    }
    .section--contact .form-msg {
        margin-bottom: 16px
    }
    .section--contact .action-group {
        padding-top: 0
    }
}

.section--text .section__body p {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 14px;
    margin-bottom: 1.25em;
    line-height: 1.5em
}

.section--text .section__body ol,
.section--text .section__body ul {
    margin-left: 32px;
    display: block
}

.section--text .section__body h1,
.section--text .section__body h2,
.section--text .section__body h3,
.section--text .section__body h4,
.section--text .section__body h5,
.section--text .section__body h6 {
    text-align: left;
    display: block;
    width: 100%;
    margin-bottom: .785em;
    color: #3a4250;
    font-weight: 400
}

.owl-nav {
    display: block !important
}

.owl-nav>button {
    width: 42px;
    height: 42px;
    overflow: visible;
    visibility: visible;
    border-radius: 50%;
    background-color: #4a4a4b !important;
    font-size: 0;
    line-height: 0;
    text-indent: -4004px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    -webkit-box-shadow: 0 0 14px rgba(141, 159, 175, .56);
    box-shadow: 0 0 14px rgba(141, 159, 175, .56)
}

.owl-nav>button:after,
.owl-nav>button:before {
    content: " ";
    width: 12px;
    height: 3px;
    border-radius: 3px;
    background-color: #dbdbdb;
    -webkit-transition: background .4s;
    -o-transition: background .4s;
    transition: background .4s;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -5px
}

.owl-nav>button:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.owl-nav>button:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.owl-nav>.owl-next {
    right: -60px
}

.owl-nav>.owl-next:before {
    margin-top: -5px
}

.owl-nav>.owl-next:after {
    margin-top: 2px
}

.owl-nav>.owl-prev {
    left: -60px
}

.owl-nav>.owl-prev:before {
    margin-top: 2px;
    margin-left: -6px
}

.owl-nav>.owl-prev:after {
    margin-top: -5px;
    margin-left: -6px
}

body:not(.is-touch) .owl-nav>button:hover {
    background-color: #ff603c !important
}

.slider-packages {
    width: 100%
}

.slider-packages .slider__body {
    width: 100%;
    position: relative;
    margin: -60px 0
}

.slider-packages .slider__body:after,
.slider-packages .slider__body:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 9999px;
    background-color: #fff;
    pointer-events: none;
    z-index: 10
}

.slider-packages .slider__body:after {
    left: -9999px
}

.slider-packages .slider__body:before {
    right: -9999px
}

.slider-packages .slider__body-group {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0 40px;
    -webkit-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s
}

.slider-packages .slider__body-group.active {
    opacity: 1;
    visibility: visible;
    position: relative
}

.slider-packages.tabless .slider__body {
    margin-top: 0
}

.slider-packages .slide {
    width: 252px
}

.slider-packages .slides {
    padding: 60px 100px;
    position: relative
}

.slider-packages .slides:after,
.slider-packages .slides:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 6
}

.slider-packages .slides:after {
    left: -40px;
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(hsla(0, 0%, 100%, 0)));
    background: -o-linear-gradient(left, #fff 0, hsla(0, 0%, 100%, 0) 100%);
    background: linear-gradient(90deg, #fff 0, hsla(0, 0%, 100%, 0))
}

.slider-packages .slides:before {
    right: -40px;
    background: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, 0)), to(#fff));
    background: -o-linear-gradient(left, hsla(0, 0%, 100%, 0) 0, #fff 100%);
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, #fff)
}

.slider-packages .fragment-package {
    margin: 0 9px
}

.slider-packages .owl-stage-outer {
    overflow: visible
}

.slider-packages .owl-nav>.owl-next {
    right: -20px
}

.slider-packages .owl-nav>.owl-prev {
    left: -20px
}

body:not(.is-touch) .slider-packages .fragment-package:hover {
    -webkit-box-shadow: 0 8px 38px rgba(65, 85, 108, .4);
    box-shadow: 0 8px 38px rgba(65, 85, 108, .4)
}

@media(max-width:1024px) {
    .slider-packages .slider__body-group {
        margin: 0 auto;
        padding: 0 40px
    }
    .slider-packages .owl-nav>.owl-next {
        right: -40px
    }
    .slider-packages .owl-nav>.owl-prev {
        left: -40px
    }
    .slider-packages .slides:before {
        right: -40px
    }
    .slider-packages .slides:after {
        left: -40px
    }
}

@media(max-width:767px) {
    .owl-nav {
        margin-top: 26px;
        text-align: center
    }
    .owl-nav>button {
        position: relative;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin: 0 6px
    }
    .owl-nav>.owl-next {
        right: 0
    }
    .owl-nav>.owl-prev {
        left: 0
    }
    .slider-packages .slider__body {
        margin-top: -20px;
        margin-bottom: -20px
    }
    .slider-packages .slider__body:after,
    .slider-packages .slider__body:before {
        display: none
    }
    .slider-packages .slider__body-group {
        padding: 0;
        width: auto;
        margin: 0
    }
    .slider-packages .slides {
        padding: 20px 0
    }
    .slider-packages .slides:after,
    .slider-packages .slides:before {
        display: none
    }
    .slider-packages .owl-nav>button {
        background-color: #ff603c !important
    }
    .slider-packages .owl-nav>button.disabled {
        pointer-events: none;
        background-color: #ededee !important
    }
    .slider-packages .owl-nav>.owl-next {
        right: 0
    }
    .slider-packages .owl-nav>.owl-prev {
        left: 0
    }
    .slider-packages .owl-dots {
        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: center;
        margin-top: 18px
    }
    .slider-packages .owl-dots>button {
        margin: 4px
    }
}

.slider-gallery .slide {
    width: 256px;
    padding: 80px 0
}

.slider-gallery .slide__image {
    max-width: 194px;
    margin: 0 auto;
    position: relative;
    top: -10px
}

.slider-gallery .slide__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 29px rgba(26, 49, 64, .18);
    box-shadow: 0 10px 29px rgba(26, 49, 64, .18)
}

.slider-gallery .slide--even .slide__image {
    top: 10px
}

.slider-gallery .owl-nav {
    display: none !important
}

.slider-testimonials {
    width: 100%;
    max-width: 770px;
    margin: 0 auto
}

.slider-testimonials .slides {
    padding: 0 132px
}

.slider-testimonials .slide {
    text-align: center
}

.slider-testimonials .slide__body {
    font-size: 21px;
    line-height: 1.48;
    color: #53607e;
    margin-bottom: 24px;
    position: relative;
    padding-top: 70px
}

.slider-testimonials .slide__body:before {
    content: "“";
    font-size: 90px;
    line-height: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #ff603c;
    font-weight: 400;
    margin-top: -30px
}

.slider-testimonials .owl-nav>button {
    background-color: #fff !important
}

.slider-testimonials .owl-nav>button:after,
.slider-testimonials .owl-nav>button:before {
    height: 2px;
    background-color: #ff603c
}

body:not(.is-touch) .slider-testimonials .owl-nav>button:hover {
    background-color: #ff603c !important
}

body:not(.is-touch) .slider-testimonials .owl-nav>button:hover:after,
body:not(.is-touch) .slider-testimonials .owl-nav>button:hover:before {
    background-color: #fff
}

@media(max-width:767px) {
    .slider-gallery .slide {
        width: 130px
    }
    .slider-gallery .slide__image {
        max-width: 104px
    }
    .slider-testimonials .slides {
        padding: 0
    }
    .slider-testimonials .slide__body {
        font-size: 18px;
        padding-top: 55px
    }
    .slider-testimonials .slide__body:before {
        margin-top: -16px
    }
}

.slider-testimonials-secondary .slide__body {
    text-align: center;
    max-width: 786px;
    padding: 0 0 0 74px;
    position: relative;
    font-size: 17px;
    line-height: 1.59;
    color: #53607e;
    margin-left: 40px
}

.slider-testimonials-secondary .slide__body:before {
    content: "“";
    font-size: 123px;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    font-weight: 400;
    color: #ff603c;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 12px
}

.slider-testimonials-secondary .slide__body p.author {
    color: #ff603c;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .35px
}

.slider-testimonials-secondary .slider__foot {
    margin: 30px auto 0;
    max-width: 590px
}

.slider-testimonials-secondary .slider__foot .slide-thumb a {
    display: block;
    text-decoration: none;
    margin: 0 auto;
    opacity: .2;
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 5px solid transparent
}

.slider-testimonials-secondary .slider__foot .slide-thumb img {
    display: block;
    width: 100%;
    border-radius: 50%
}

.slider-testimonials-secondary .slider__foot .active+.active .slide-thumb a,
.slider-testimonials-secondary .slider__foot .center+.active .slide-thumb a {
    opacity: .5
}

.slider-testimonials-secondary .slider__foot .center+.active~* .slide-thumb a {
    opacity: .2
}

.slider-testimonials-secondary .slider__foot .center .slide-thumb a {
    opacity: 1 !important;
    border-color: #ff603c
}

.slider-testimonials-secondary .slider__foot .owl-nav {
    display: none !important
}

.slider-testimonials-secondary .owl-nav>button {
    background-color: #fff !important
}

.slider-testimonials-secondary .owl-nav>button:after,
.slider-testimonials-secondary .owl-nav>button:before {
    height: 2px;
    background-color: #ff603c
}

body:not(.is-touch) .slider-testimonials-secondary .owl-nav>button:hover {
    background-color: #ff603c !important
}

body:not(.is-touch) .slider-testimonials-secondary .owl-nav>button:hover:after,
body:not(.is-touch) .slider-testimonials-secondary .owl-nav>button:hover:before {
    background-color: #fff
}

@media(max-width:1200px) {
    .slider-testimonials-secondary .owl-nav {
        margin-top: 26px;
        text-align: center
    }
    .slider-testimonials-secondary .owl-nav>button {
        position: relative;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin: 0 6px
    }
    .slider-testimonials-secondary .owl-nav>.owl-next {
        right: 0
    }
    .slider-testimonials-secondary .owl-nav>.owl-prev {
        left: 0
    }
}

@media(max-width:985px) {
    .slider-testimonials-secondary .slide__body {
        margin-left: 0;
        padding-right: 74px
    }
}

@media(max-width:767px) {
    .slider-testimonials-secondary .slide__body {
        padding: 0 34px;
        font-size: 14px;
        line-height: 1.57
    }
    .slider-testimonials-secondary .slide__body:before {
        font-size: 83px;
        left: -5px
    }
    .slider-testimonials-secondary .slider__foot .slide-thumb a {
        width: 54px;
        height: 54px
    }
}

.section.section--reviews .section__body,
.section.section--reviews .section__head {
    z-index: 9;
    background: 0 0
}

.section.section--reviews .review__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 856px;
    background: #f8f9fd;
    color: rgba(57, 100, 231, .06);
    overflow: hidden
}

.section.section--reviews .review__bg .review__bg__contain {
    position: absolute;
    width: 1680px;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -840px
}

.section.section--reviews .review__bg i {
    position: absolute
}

.section.section--reviews .review__bg .fa-star {
    font-size: 326px;
    left: 0;
    top: 156px
}

.section.section--reviews .review__bg .fa-circle {
    font-size: 320px;
    left: -95px;
    top: 696px
}

.section.section--reviews .review__bg .fa-comment-smile {
    font-size: 294px;
    left: 1355px;
    top: 109px
}

.section.section--reviews .review__bg .fa-heart {
    font-size: 200px;
    left: 1471px;
    top: 594px
}

.section.section--reviews>.section__head {
    padding-top: 96px
}

.section.section--reviews .section__head h1 {
    color: #000;
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 0
}

.section.section--reviews .section__head h1 span {
    margin: 0 !important;
    display: inline !important;
    font-size: 42px;
    height: auto;
    width: 42px
}

.section.section--reviews .section__head h3 {
    font-size: 28px;
    line-height: 1;
    letter-spacing: .3px;
    color: #606060;
    margin-top: 64px
}

.section.section--reviews .section__head p {
    margin-top: 32px;
    color: #606060;
    font-size: 20px;
    line-height: 28px;
    max-width: 490px
}

.reviews_wrap {
    position: relative;
    padding-bottom: 28px;
    width: 100%;
    max-width: 948px;
    margin: 0 auto
}

.reviews_container {
    -webkit-columns: 2;
    columns: 2
}

.reviews_container .rev-cell {
    padding: 28px;
    width: 100%;
    display: inline-block
}

@media(max-width:767px) {
    .section.section--reviews .review__bg {
        height: 856px
    }
    .section.section--reviews .review__bg .review__bg__contain {
        width: 376px;
        margin-left: -188px
    }
    .section.section--reviews .review__bg .fa-star {
        font-size: 121px;
        left: -25px;
        top: 29px
    }
    .section.section--reviews .review__bg .fa-circle {
        display: none
    }
    .section.section--reviews .review__bg .fa-comment-smile {
        font-size: 90px;
        left: 289px;
        top: 127px
    }
    .section.section--reviews .review__bg .fa-heart {
        font-size: 80px;
        left: 22px;
        top: 238px
    }
    .section.section--reviews>.section__head {
        padding-top: 38px
    }
    .section.section--reviews .section__head h1 {
        font-size: 36px;
        line-height: 38px;
        letter-spacing: .4px
    }
    .section.section--reviews .section__head h1 span {
        font-size: 28px;
        width: 28px
    }
    .section.section--reviews .section__head p {
        max-width: none;
        margin-top: 20px;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: .2px
    }
    .section.section--reviews .section__head h3 {
        margin-top: 32px;
        font-size: 24px;
        line-height: 28px
    }
    .reviews_wrap {
        padding-bottom: 56px
    }
    .reviews_container {
        -webkit-columns: 1;
        columns: 1
    }
    .reviews_container .rev-cell {
        padding: 0 0 24px
    }
}

.reviews_container .rev-item {
    padding: 56px;
    background: #fff;
    width: 100%;
    border-radius: 20px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .03), 0 3px 3px 0 rgba(0, 0, 0, .04);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .03), 0 3px 3px 0 rgba(0, 0, 0, .04)
}

@media(max-width:767px) {
    .reviews_container .rev-item {
        padding: 32px
    }
}

.reviews_container .rev-item .text {
    color: #303030;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .2px;
    margin-bottom: 24px
}

.reviews_container .rev-item .info {
    position: relative
}

.reviews_container .rev-item .name {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: .2px;
    color: #000;
    width: 50%
}

.reviews_container .rev-item .stars {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    height: 24px
}

@media(max-width:370px) {
    .section.section--reviews .section__head h1 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .2px
    }
    .section.section--reviews .section__head h1 span {
        font-size: 24px;
        width: 24px
    }
    .reviews_container .rev-item .name {
        width: 100%
    }
    .reviews_container .rev-item .stars {
        display: block;
        margin-top: 8px;
        position: relative;
        right: inherit;
        bottom: inherit;
        text-align: left
    }
}

.reviews_container .rev-item .stars span {
    display: inline-block;
    background: #fc591e;
    color: #fff;
    height: 24px;
    width: 24px;
    line-height: 24px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px
}

.reviews_container .rev-pre {
    padding: 56px;
    background: #fc591e;
    color: #fff;
    width: 100%;
    border-radius: 20px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .03), 0 3px 3px 0 rgba(0, 0, 0, .04);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .03), 0 3px 3px 0 rgba(0, 0, 0, .04)
}

.reviews_container .rev-pre .score {
    font-size: 64px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 8px
}

.reviews_container .rev-pre .stars {
    letter-spacing: .2px;
    font-size: 24px;
    margin-bottom: 26px
}

.reviews_container .rev-pre .text {
    font-size: 20px;
    line-height: 24px
}

.reviews_container .rev-pre .text b {
    font-weight: 600 !important
}

.reviews_more {
    height: 340px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0)), to(#fff));
    background: -o-linear-gradient(top, hsla(0, 0%, 100%, 0) 0, #fff 100%);
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff)
}

.reviews_more,
.reviews_more .action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0
}

.reviews_more .action {
    text-align: center
}

.reviews_more .action a {
    display: block;
    background: #fc591e;
    color: #fff;
    height: 56px;
    line-height: 56px;
    width: 100%;
    margin: 0 auto;
    max-width: 450px;
    padding: 0 32px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px
}

.section--submit-review {
    background: #f8f9fd
}

.section.section--submit-review .section__head h2 {
    font-size: 48px;
    line-height: 48px;
    color: #000;
    margin-bottom: 32px;
    font-weight: 700;
    margin-top: 62px
}

.section--submit-review p {
    color: #606060;
    font-size: 20px;
    line-height: 26px
}

.section--submit-review form {
    width: 100;
    max-width: 562px;
    background: #fff;
    border-radius: 20px;
    padding: 56px;
    margin: 6px auto 62px;
    -webkit-box-shadow: 0 8px 16px 0 rgba(239, 240, 244, .6), 0 4px 4px 0 rgba(0, 0, 0, .02);
    box-shadow: 0 8px 16px 0 rgba(239, 240, 244, .6), 0 4px 4px 0 rgba(0, 0, 0, .02)
}

@media(max-width:767px) {
    .reviews_container .rev-pre {
        padding: 32px;
        text-align: center
    }
    .section--submit-review form {
        padding: 24px 16px;
        max-width: none
    }
}

.section--submit-review form .fcontrol {
    width: 100%;
    text-align: left;
    height: 56px;
    line-height: 48px;
    padding: 4px 16px;
    border: 1px solid #dddfe6;
    margin-bottom: 16px;
    border-radius: 6px;
    font-size: 18px;
    color: #000
}

.section--submit-review form .fcontrol::-webkit-input-placeholder {
    color: #676767
}

.section--submit-review form .fcontrol::-moz-placeholder {
    color: #676767
}

.section--submit-review form .fcontrol:-ms-input-placeholder {
    color: #676767
}

.section--submit-review form .fcontrol:-moz-placeholder {
    color: #676767
}

.section--submit-review form textarea.fcontrol {
    height: 128px;
    resize: vertical;
    min-height: 56px;
    max-height: 256px;
    line-height: 24px;
    padding: 16px
}

.section--submit-review .input-stars {
    background: #f9f9f9;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.section--submit-review .input-stars .label {
    float: left;
    font-weight: 600;
    font-size: 18px
}

.section--submit-review .input-stars .stars {
    float: right;
    text-align: right;
    color: #fc591e;
    font-size: 20px;
    padding: 0 2px;
    cursor: pointer
}

@media(max-width:370px) {
    .section--submit-review .input-stars .label {
        display: none
    }
    .section--submit-review .input-stars .stars {
        float: none;
        text-align: center;
        font-size: 22px;
        margin-top: -1px
    }
}

.section--reviews .goBack,
.section--submit-review .fsubmit {
    display: block;
    text-align: center;
    margin-top: 16px;
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 6px;
    background: #fc591e;
    color: #fff;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 56px;
    text-decoration: none
}

.section--submit-review .fsubmit:disabled {
    opacity: .5;
    pointer-events: none
}

.page_reviews .rr_star,
.page_reviews .stars {
    color: #f3632e;
    font-size: 18px;
    padding-left: 45px
}

.page_reviews {
    position: relative;
    max-height: 550px;
    overflow: hidden
}

.page_reviews .testimonial {
    margin-bottom: 26px
}

.page_reviews .rr_review_text {
    font-size: 16px;
    line-height: 1.63;
    color: #53607e;
    margin-bottom: 0
}

.page_reviews .rr_review_text .drop_cap {
    display: block;
    line-height: 10px;
    font-size: 70px;
    font-weight: 600;
    color: rgba(99, 99, 111, .4)
}

.page_reviews .rr_review_name {
    color: rgba(83, 96, 126, .6);
    font-weight: 500;
    font-size: 13px
}

.page_reviews .more_reviews {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, hsla(0, 0%, 100%, 0)), color-stop(50%, #f8f9fd));
    background: -o-linear-gradient(top, hsla(0, 0%, 100%, 0) 0, #f8f9fd 50%);
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #f8f9fd 50%)
}

.page_reviews .more_reviews a {
    margin-top: 30px;
    display: inline-block
}

.column {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: .75rem
}

@media print,
screen and (min-width:769px) {
    .column.is-full,
    .column.is-full-tablet,
    .column.is-narrow,
    .column.is-narrow-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .column.is-full,
    .column.is-full-tablet {
        width: 100%
    }
    .column.is-one-quarter,
    .column.is-one-quarter-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }
    .column.is-offset-one-quarter,
    .column.is-offset-one-quarter-tablet {
        margin-left: 25%
    }
    .column.is-1,
    .column.is-1-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 8.33333%
    }
    .column.is-2,
    .column.is-2-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 16.66667%
    }
    .column.is-6,
    .column.is-6-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 50%
    }
    .column.is-8,
    .column.is-8-tablet {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 66.66667%
    }
    .columns:not(.is-desktop) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (max-width:1087px) {
    .column.is-full-touch,
    .column.is-narrow-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none
    }
    .column.is-full-touch {
        width: 100%
    }
    .column.is-one-quarter-touch {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 25%
    }
    .column.is-offset-one-quarter-touch {
        margin-left: 25%
    }
}

.columns {
    margin-left: -.75rem;
    margin-right: -.75rem;
    margin-top: -.75rem
}

.columns:last-child {
    margin-bottom: -.75rem
}

.columns:not(:last-child) {
    margin-bottom: .75rem
}

.columns.is-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (min-width:1088px) {
    .columns.is-desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.columns.is-variable {
    --columnGap: .75rem;
    margin-left: calc(-1 * var(--columnGap));
    margin-right: calc(-1 * var(--columnGap))
}

.columns.is-variable .column {
    padding-left: var(--columnGap);
    padding-right: var(--columnGap)
}

.header {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    background-color: #fff
}

.gift {
    -o-object-fit: contain;
    object-fit: contain;
    color: #7d7d7d;
    font-size: 18px
}

.no-padding-top {
    padding-top: 0 !important
}

.cc {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.18;
    letter-spacing: normal;
    color: #7d7d7d
}

.free-likes-main-section {
    margin-top: 206px !important
}

.free-likes-main-section .left-img,
.free-likes-main-section .right-img {
    min-width: 264px;
    padding: 0
}

@media(max-width:767px) {
    .free-likes-main-section {
        margin-top: 82px !important;
        padding-top: 32px
    }
    .free-likes-main-section .left-img,
    .free-likes-main-section .right-img {
        display: none
    }
}

.dividey-boi {
    border: none;
    margin-top: 120px;
    margin-bottom: 120px
}

.gradient-boi {
    margin-top: 100px;
    background: #f7f7f7
}

.no-cc {
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.18;
    letter-spacing: normal;
    color: #7d7d7d;
    position: relative;
    top: 16px
}

.no-cc .gift {
    -o-object-fit: contain;
    object-fit: contain;
    color: #7d7d7d;
    font-size: 18px
}

.saying .left {
    max-width: 404px;
    padding: 32px 0 0
}

.saying .left h2 {
    margin-top: 31px;
    font-size: 56px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000
}

.section--free-likes,
.section--free-likes .section__head {
    background-color: #fff
}

.likes-main {
    text-align: center;
    max-width: 991px
}

.likes-main h2 {
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
    color: #252525;
    margin-bottom: 32px
}

.likes-main h2,
.likes-main p {
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal
}

.likes-main p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.41;
    color: #7d7d7d
}

@media(max-width:767px) {
    .gradient-boi {
        margin-top: 0
    }
    .mobile-users-container {
        padding-bottom: 28px
    }
    .dividey-boi {
        border: none;
        margin-top: 56px;
        margin-bottom: 56px
    }
    .likes-main {
        text-align: center;
        max-width: 991px;
        padding: 16px
    }
    .likes-main h2 {
        font-size: 40px;
        font-weight: 700;
        color: #252525;
        margin-bottom: 16px
    }
    .likes-main #jumbop,
    .likes-main h2 {
        font-style: normal;
        font-stretch: normal;
        letter-spacing: normal
    }
    .likes-main #jumbop {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.41;
        color: #7d7d7d;
        padding-left: 16px;
        padding-right: 16px
    }
    .likes-main #jumbop br {
        display: none
    }
}

.features {
    max-width: 991px;
    margin-bottom: 56px
}

.why-get div.heady-boi {
    text-align: center;
    padding-top: 0
}

.why-get div.heady-boi h2 {
    font-size: 56px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000
}

.why-get div.features {
    margin-top: 96px
}

.why-get div.features .feature {
    margin-bottom: 64px
}

.why-get div.features .feature div.icon {
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    width: 64px
}

.why-get div.features .feature div.icon i {
    border-radius: 50%;
    padding: 10px;
    width: 64px;
    height: 64px;
    background-color: #fc591e;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #fff
}

.why-get div.features .feature div.text {
    padding-top: 0;
    padding-left: 32px
}

.why-get div.features .feature div.text h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000
}

.why-get div.features .feature div.text p {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 26px;
    letter-spacing: normal;
    color: #7d7d7d
}

#appContainer {
    margin-top: 49px
}

#appContainer .username-container:before {
    content: "\f16d"
}

#appContainer .email-container:before,
#appContainer .username-container:before {
    font-family: FontAwesome;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: .83;
    letter-spacing: normal;
    color: #fc591e;
    position: relative;
    left: -40%;
    top: 45px;
    z-index: 12
}

#appContainer .email-container:before {
    content: "\f0e0"
}

@media(max-width:767px) {
    .why-get {
        padding-left: 24px;
        padding-right: 24px
    }
    .why-get div.heady-boi {
        text-align: center;
        padding-top: 0;
        padding-bottom: 42px
    }
    .why-get div.heady-boi h2 {
        font-size: 40px;
        font-weight: 700;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.05;
        letter-spacing: normal;
        color: #252525
    }
    .why-get div.heady-boi h2 br {
        display: none
    }
    .why-get div.features {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 24px
    }
    .why-get div.features .feature {
        margin-bottom: 64px
    }
    .why-get div.features .feature div.icon {
        padding: 0;
        text-align: center
    }
    .why-get div.features .feature div.icon i {
        border-radius: 50%;
        padding: 10px;
        width: 64px;
        height: 64px;
        background-color: #fc591e;
        font-size: 28px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: normal;
        color: #fff
    }
    .why-get div.features .feature div.text {
        text-align: center;
        margin-bottom: 32px
    }
    .why-get div.features .feature div.text h3 {
        margin-bottom: 16px;
        font-size: 24px;
        font-weight: 700;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #000
    }
    .why-get div.features .feature div.text p {
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: 26px;
        letter-spacing: normal;
        color: #7d7d7d
    }
    #appContainer {
        margin-top: 0
    }
    #appContainer .username-container:before {
        content: "\f16d"
    }
    #appContainer .email-container:before,
    #appContainer .username-container:before {
        font-family: FontAwesome;
        font-size: 24px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: .83;
        letter-spacing: normal;
        color: #fc591e;
        position: relative;
        left: 31px;
        top: 0;
        z-index: 12
    }
    #appContainer .email-container:before {
        content: "\f0e0"
    }
}

.is-orange {
    font-size: 20px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-stretch: normal !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    color: #fff !important;
    border-radius: 6px !important;
    background-color: #fc591e !important;
    height: 64px !important;
    width: 307px !important
}

.bottom-hero {
    margin-top: 12px !important;
    background-color: #252525;
    height: 688px;
    margin-left: 0 !important;
    margin-right: 0 !important
}

.bottom-hero:after {
    background-image: url(../../../../../../../../../themes/buzz/v2/assets/images/hero-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
    z-index: 0;
    content: ""
}

.bottom-hero .columns {
    z-index: 1;
    position: relative;
    top: 0;
    left: 0
}

.bottom-hero .columns .bottom-hero-box {
    text-align: center;
    margin-top: 181px;
    background-image: url(../../../../../../../../../themes/buzz/v2/assets/images/radial.svg);
    background-position: 50%
}

.bottom-hero .columns .bottom-hero-box h1 {
    font-size: 56px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #fff
}

.bottom-hero .columns .bottom-hero-box .no-cc-bottom {
    margin-top: 26px
}

.bottom-hero .columns .bottom-hero-box .no-cc-bottom,
.bottom-hero .columns .bottom-hero-box .no-cc-bottom .gift {
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: hsla(0, 0%, 100%, .8)
}

.bottom-hero .columns .bottom-hero-box .bottom-cta-btn {
    margin-top: 32px
}

.bottom-hero .columns .bottom-hero-box .bottom-cta-btn .is-orange {
    border: none !important
}

#mobile-users {
    display: none
}

@media(max-width:767px) {
    .bottom-hero {
        margin-top: -16px;
        background-color: #252525;
        height: 688px;
        background-image: url(../../../../../../../../../themes/buzz/v2/assets/images/hero-bg.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%
    }
    .bottom-hero .columns {
        position: relative;
        top: 0;
        left: 0
    }
    .bottom-hero .columns .bottom-hero-box {
        text-align: center;
        margin-top: 16px;
        padding-top: 181px;
        height: 565px;
        padding-left: 16px;
        padding-right: 16px
    }
    .bottom-hero .columns .bottom-hero-box h1 {
        font-size: 40px;
        font-weight: 700;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.05;
        letter-spacing: normal;
        color: #fff;
        white-space: pre
    }
    .bottom-hero .columns .bottom-hero-box .no-cc-bottom {
        margin-top: 26px
    }
    .bottom-hero .columns .bottom-hero-box .no-cc-bottom,
    .bottom-hero .columns .bottom-hero-box .no-cc-bottom .gift {
        font-size: 17px;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.18;
        letter-spacing: normal;
        color: hsla(0, 0%, 100%, .8)
    }
    .bottom-hero .columns .bottom-hero-box .bottom-cta-btn {
        margin-top: 32px
    }
    .bottom-hero .columns .bottom-hero-box .bottom-cta-btn .is-orange {
        height: 56px !important;
        font-size: 18px !important;
        border: none !important
    }
    #mobile-users {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 140px;
        -o-object-fit: contain;
        object-fit: contain;
        background: url(../../../../../../../../../themes/buzz/v2/assets/images/mobile-users-sm.png) 50% no-repeat
    }
    .app-search-button {
        width: 100% !important;
        height: 56px !important
    }
    #appContainer {
        padding-left: 32px;
        padding-right: 32px
    }
    input.form-control[type=email],
    input.form-control[type=text] {
        height: 56px
    }
}

@media(min-width:768px) {
    .app-search-button {
        width: 307px !important
    }
}

.app-search-button:hover {
    font-weight: 600 !important
}

.app-profile-select-title {
    font-size: 56px !important;
    margin-bottom: 0 !important
}

.app-load-more-col {
    margin-bottom: 20px
}

.no-cc-top {
    margin-top: 32px
}

#jumboimg,
#jumboimg2 {
    max-width: 201px !important
}

form i.inline-icon {
    left: 18px !important;
    top: 22px !important;
    z-index: 1 !important
}

input.form-control[type=email],
input.form-control[type=text] {
    padding-left: 52px !important;
    border-color: #d1d1d1 !important;
    color: #000 !important
}

input.form-control[type=email]::-webkit-input-placeholder,
input.form-control[type=text]::-webkit-input-placeholder {
    color: #7d7d7d
}

input.form-control[type=email]:-ms-input-placeholder,
input.form-control[type=email]::-ms-input-placeholder,
input.form-control[type=text]:-ms-input-placeholder,
input.form-control[type=text]::-ms-input-placeholder {
    color: #7d7d7d
}

input.form-control[type=email]::placeholder,
input.form-control[type=text]::placeholder {
    color: #7d7d7d
}

#no-cc-top>div:nth-child(3)>span>i.gift {
    margin-right: 10px
}

#app-step-1>form>div.field {
    padding-bottom: 0;
    margin-bottom: 0
}

body.show-upsell-bar {
    padding-top: 136px
}

@media(max-width:767px) {
    body.show-upsell-bar {
        padding-top: 120px
    }
}
.dropdownList{
    background-color: transparent;
    color: grey;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.curentLanguage{
    width: 24px; height: 18px; margin-right: 8px;
}
.dropdownMenu{
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 5px;
    z-index: 1000;
    width: 80px;
}
.dropdownMenu a{
    display: flex;
    align-items: center;
    padding: 10px;
    color: black;
    text-decoration: none;
    font-size: 14px;
}
.dropdownMenu img{
    width: 24px; height: 18px; margin-right: 8px;
}

@media (max-width: 768px) {
    /* Styles pour mobile */
    #navbarSupportedContent2 {
        margin-right: 15px;
        margin-top: 5px;
    }
}

@media (min-width: 769px) {
    /* Styles pour desktop */
    #navbarSupportedContent2 {
        margin-top: 16px;
    }
}