@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: Avenir, sans-serif;
    box-sizing: border-box;
}

body * {
    box-sizing: border-box;
}

p, h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}


.header-bg {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url('images/bg-1.png');
    padding: 0 119px 50px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 100%;
    margin: 0 auto;
}

.header {
    width: 100%;
    padding: 25px 0;
}

.header-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo-container {
    outline: none;
}

.header-logo {
    width: 250px;
    height: auto;
    margin: 0;
}

.header-request-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 147%;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.header-request-separator {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 147%;
    color: #FFFFFF;
}

.header-request-separator:before, .header-request-separator:after {
    content: "";
    width: 61px;
    height: 2px;
    background: #ffffff;
    margin: 0 5px;
}

.header-request-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 147%;
    text-align: center;
    color: #FFFFFF;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-menu #hamburger {
    display: none;
}

.nav-menu label {
    display: none;
}

.nav-menu label img {
    width: 25px;
    height: auto;
}

.nav-menu-links-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    margin: 0;
}

.nav-menu-link-item {
    margin-right: 23px;
}

.nav-menu-link-item:last-child {
    margin-right: 0;
}

.nav-menu-link {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
}

.title {
    font-family: Avenir, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 66px;
}

.title-alt {
    font-family: 'Red Hat Display', sans-serif;
}

.title--medium {
    font-weight: 700;
    font-weight: 800;
    font-size: 50px;
}

.title--light {
    color: #434343;
}

.title--dark {
    color: #020122;
}

.title--white {
    color: #ffffff;
}

.title--main {
    max-width: 772px;
}

.btn {
    font-size: 20px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 6px 66px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background: #FB7C35;
    text-align: center;
    min-width: 257px;
    display: block;
    padding: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #FF8F51;
}

.btn--invert {
    color: #FB7C35;
    background: #ffffff;
    border: 2px solid #FB7C35;
}

.btn--invert:hover {
    background: #F7FFF7;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 35px;
}

.header-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.header-content-right {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Red Hat Display', sans-serif;
    margin-left: 30px;
}

.header-paragraph {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 46px;
}

.header-btns-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 56px 0 26px;
}

.header-btns-container .btn--invert {
    margin-left: 21px;
}

.header-list {
    list-style-type: none;
    margin: 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Red Hat Display', sans-serif;
    line-height: 46px;
    font-size: 25px;
}

.header-list-item {
    position: relative;
    padding-left: 27px;
}

.header-list-item:before {
    content: '';
    width: 20px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("images/tick-icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.header-list-end {
    font-size: 20px;
    font-family: 'Red Hat Display', sans-serif;
    margin: 0 0 7px;
}

.header-call-link {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff !important;
}

.header-call-link.header-call-link--light-green {
    color: #36FF1F !important;
}

.section {
    padding: 50px 123px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
}

.section-sale img {
    float: right;
    width: 440px;
    height: auto;
}

.section-sale p {
    font-size: 23px;
    font-weight: 500;
    color: #4B4F51;
    line-height: 43px;
    margin: 60px 0 50px;
}

.section-struggles {
    background-image: url('images/bg-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-struggles > p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 50px;
}

.struggles-container {
    width: 100%;
    margin: 0 -49px;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
}

.struggle-box {
    max-width: 945px;
    background: rgba(255, 255, 255, .9);
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    align-items: flex-start;
    margin-bottom: 62px;
    color: #000000;
    padding: 32px 100px 23px 54px;
    text-align: left;
    outline: none;
}

.struggle-box:last-child {
    margin-bottom: 0;
}

.struggle-box:nth-child(even) {
    align-self: flex-end;
    align-items: flex-end;
    padding: 32px 54px 23px 100px;
    text-align: right;
}

.struggle-box-title {
    font-size: 25px;
    font-weight: 800;
}

.struggle-box-img {
    width: auto;
    margin: 15px 0;
}

.struggle-box-p {
    font-size: 25px;
    font-weight: 400;
    line-height: 36px;
}

.section-benefits {
    background-image: url('images/bg-3.png'), url('images/banner-separator.png');
    background-repeat: no-repeat, no-repeat;
    background-size: cover, contain;
    background-position: center center, bottom left;
    padding-bottom: 150px;
}

.benefits-content {
    width: 100%;
    max-width: 730px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits-content .title > br {
    display: none;
}

.benefits-list {
    list-style-type: none;
    margin: 50px 0;
    padding: 0;
    text-align: left;
    font-weight: 500;
    font-size: 23px;
    color: #4B4F51;
}

.benefits-list-item {
    position: relative;
    padding-left: 18px;
    margin-bottom: 20px;
}

.benefits-list-item:last-child {
    margin-bottom: 0;
}

.benefits-list-item:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ED2CF;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sections-separator {
    height: 100px;
    width: 100%;
    background-image: url('images/banner-separator.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 100%;
    margin: 0 auto;
}

.section-info {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    background-image: url('images/bg-4.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.info-list {
    width: 100%;
    max-width: 750px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 30px 0;
    color: #4B4F51;
    font-size: 23px;
    line-height: 43px;
}

.info-list > li {
    margin-bottom: 10px;
}

.info-list > li:last-child {
    margin-bottom: 0;
}

.section-calculator {
    padding-bottom: 22px;
}

.calculator-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 58px 0;
}

.calculator-inputs {
    background: #FFFFFF;
    box-shadow: 0 34px 26px rgba(0, 0, 0, 0.05);
    border-radius: 13px;
    max-width: 510px;
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    margin-right: 60px;
}

.calculator-input-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 60px;
}

.calculator-input-block:last-child {
    margin-bottom: 0;
}

.calculator-input-title {
    font-size: 25px;
    color: #999999;
    display: inline-block;
}

.calculator-input-value {
    font-size: 40px;
    font-weight: normal;
    color: #020122;
    font-family: 'DM Serif Display', serif;
    position: relative;
    transform: translateX(-95%);
    margin-bottom: 10px;
}

.calculator-input-number {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #FB7C35;
    border-radius: 8px;
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    color: #020122;
    padding: 15px;
    height: 55px;
}

.calculator-input-number-container {
    position: relative;
    width: 100%;
}

.calculator-input-number-container .calculator-input-number {
    padding-left: 21px;
}

.calculator-input-number-container:before {
    position: absolute;
    font-family: 'DM Serif Display', serif;
    content: '$';
    font-size: 30px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #020122;
}

.calculator-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #FEC8C0 0%, #FEC8C0 0%, #fff 0%, #fff 100%);
    height: 5px;
    outline: none;
    cursor: pointer;
    border-radius: 15px;
}

.calculator-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FB7C35;
    cursor: pointer;
}


.calculator-input::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FB7C35;
    cursor: pointer;
}

.calculator-input::-ms-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FB7C35;
    cursor: pointer;
}

.calculator-table-container {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.calculator-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-spacing: 0;
}

.calculator-table-row {
    background: #ffffff;
    border: none;
}

.calculator-table-row--colored {
    background: #FFF2E4;
}

.calculator-table-row--border-top > td {
    border-top: 1px solid #c4c4c4;
}

.calculator-table-row--border-top > td:first-child {
    border-left: 1px solid #c4c4c4;
    border-top-left-radius: 12px;
}

.calculator-table-row--border-top > td:last-child {
    border-right: 1px solid #c4c4c4;
    border-top-right-radius: 12px;
}

.calculator-table-row--border-bottom > td {
    border-bottom: 1px solid #c4c4c4;
}

.calculator-table-row--border-bottom > td:first-child {
    border-left: 1px solid #c4c4c4;
    border-bottom-left-radius: 12px;
}

.calculator-table-row--border-bottom > td:last-child {
    border-right: 1px solid #c4c4c4;
    border-bottom-right-radius: 12px;
}

.calculator-table-title {
    padding: 7px;
    color: #999999;
    font-size: 25px;
    text-align: left;
    font-weight: normal;
}

.calculator-table-cell {
    padding: 18px 16px;
    text-align: left;
    font-size: 25px;
    font-weight: normal;
    border: none;
    color: #4B4F51;
}

.calculator-table-cell--no-padding {
    padding: 0 !important;
}

.calculator-table-cell > img {
    width: 100%;
    height: auto;
}

.calculator-table-cell--full {
    font-style: italic;
    font-weight: normal;
    font-size: 20px;
    color: #4B4F51;
    padding-top: 0;
}

.calculator-table-col-main {
    width: 240px;
}

.calculator-table-cell--main {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    font-weight: normal;
    color: #020122;
}

.calculator-table-cell-toggle {
    padding: 18px 16px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom-left-radius: 12px;
    min-height: 90px;
}

.calculator-table-cell-toggle:hover {
    background: #F7FFF7;
}

.calculator-table-cell-toggle:after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url('images/toggler.png');
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center bottom;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.calculator-table-cell-toggle > img {
    max-width: 115px;
    height: auto;
    margin-right: 20px;
}

.calculator-revenue {
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    color: #999999;
    margin-top: -30px;
}

.calculator-revenue > b {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 0 16px;
}

.calculator-cta {
    font-family: 'Red Hat Display', serif;
    width: 100%;
    max-width: 1000px;
    font-size: 25px;
    font-weight: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 54px;
    align-self: center;
}

.calculator-cta > b {
    font-family: 'DM Serif Display', serif;
    font-weight: normal;
    font-size: 55px;
    margin: 0 20px;
    line-height: 1;
}

.calculator-cta > br {
    display: none;
}

.calculator-dropdown {
    width: 100%;
    position: absolute;
    bottom: -1px;
    transform: translateY(100%);
    left: 0;
    height: 0;
    transition: height ease-in-out .3s;
    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #F7FFF7;
}

.calculator-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    height: 80px;
    min-height: 80px;
    cursor: pointer;
}

.calculator-dropdown-item:hover {
    background: #FEC8C0;
}

.calculator-dropdown-item > img {
    height: 30px;
    width: auto;
}

.calculator-contact {
    font-family: 'Red Hat Display', serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 37px;
    text-align: center;
    color: #020122;
    margin: 21px auto 0;
}

.calculator-contact > a {
    color: #020122;
}

.section-platform {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    background-image: url('images/bg-5.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 60px 0;
}

.platform-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 23px;
    color: #020122;
    line-height: 56px;
}

.platform-item-img-container {
    margin-right: 38px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-customer-info {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url('images/bg-6.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-customer-relationships {
    background-image: url('images/bg-7.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.customer-info-p {
    margin: 50px 0;
    font-size: 23px;
    font-weight: 400;
    color: #4B4F51;
    width: 100%;
    max-width: 810px;
    line-height: 46px;
}

.customer-relationships-container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    align-items: flex-start;
}

.customer-relationships-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 50px 0;
    padding-left: 25px;
}

.customer-relationships-list-item {
    font-size: 23px;
    font-weight: 400;
    color: #ffffff;
    line-height: 40px;
    margin-bottom: 20px;
}

.customer-relationships-list-item:last-child {
    margin-bottom: 0;
}

.section-restaurant {
    align-items: center;
    padding-bottom: 50px;
}

.section-restaurant + .contact-banner {
    padding-top: 0;
}

.restaurants-carousel {
    width: 100%;
    max-width: 900px;
    margin: 46px auto;
    display: flex;
    flex-direction: column-reverse;
}

.restaurants-carousel .slick-track {
    height: 120px;
}

.restaurants-carousel .slick-dots {
    margin-top: 0;
    margin-bottom: 35px;
}

.restaurant-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    outline: none;
    height: 100%;
}

.restaurant-logo > img {
    height: auto;
}

/*Update slick styles*/

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.slick-dots li {
    width: 14px;
    height: 6px;
    margin: 0 5px;
    transition: all ease-in-out .2s;
}

.slick-dots li.slick-active {
    background: #FCA70C;
    width: 50px;
    height: 6px;
    border-radius: 22px;
}

.slick-dots li button {
    border-radius: 22px;
    width: 14px;
    height: 6px;
    border: none;
    background: #E5E5E5;
    padding: 0;
    transition: all ease-in-out .2s;
}

.slick-dots li.slick-active button {
    background: #FCA70C;
    width: 50px;
    height: 6px;
}

/* slick styles end*/

.section-steps {
    padding-top: 0;
    padding-bottom: 0;
}

.steps-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px 50px 40px;
    background-image: linear-gradient(to right, #FFF2E4 0%, #FFF2E4 80%, transparent 80%, transparent 100%);
    position: relative;
}

.steps-top:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background-image: linear-gradient(to top right, #FFF2E4 0%, #FFF2E4 50%, #FFFFFF 50%, #FFFFFF 100%);
    z-index: -1;
}

.steps-top > .title--medium {
    line-height: 73px;
    margin-bottom: 29px;
}

.steps-top > p {
    font-family: 'Red Hat Display', serif;
    font-weight: normal;
    font-size: 25px;
    line-height: 30px;
    color: #4B4F51;
}

.step-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    background: #FFF2E4;
}

.step-box:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-box > img {
    width: 57%;
    height: auto;
}

.step-text {
    position: relative;
    width: 43%;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.step-text:before {
    content: '';
    width: 34%;
    height: 100%;
    background-image: linear-gradient(to top left, #FFF2E4 0%, #FFF2E4 50%, transparent 51%, transparent 100%);
    position: absolute;
    top: 0;
    left: 1px;
    transform: translateX(-100%);
}


.step-box:nth-child(odd) .step-text:before {
    background-image: linear-gradient(to top right, #FFF2E4 0%, #FFF2E4 50%, transparent 51%, transparent 100%);
    left: unset;
    right: 1px;
    transform: translateX(100%);
}


.step-text > span {
    font-family: 'Red Hat Display', serif;
    font-size: 50px;
    font-weight: bold;
    color: #020122;
    margin-bottom: 20px;
}

.step-text > p {
    font-size: 30px;
    line-height: 36px;
    font-weight: normal;
    color: #434343;
}

.step-box:nth-child(odd) .step-text {
    justify-content: center;
}

.step-box:nth-child(odd) .step-text > * {
    position: relative;
    left: 18%;
}

.section-testimonials {
    padding-bottom: 50px;
}

.testimonials-carousel {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.testimonial-container {
    padding: 55px 30px 50px;
    outline: none;
}

.testimonial-box {
    width: 92%;
    margin-right: auto;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 27px 41px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-box:after {
    content: '';
    width: 50%;
    height: 50%;
    max-height: 190px;
    max-width: 466px;
    position: absolute;
    right: -5%;
    top: -43px;
    background: #BCECE9;
    border-radius: 22px;
    z-index: -1;
}

.testimonial-box:before {
    content: '';
    width: 83%;
    height: calc(100% + 55px);
    position: absolute;
    top: -16px;
    right: -11%;
    border-radius: 48px;
    border: 3px solid #BCECE9;
    z-index: -2;
}

.testimonial-icon {
    font-family: 'DM Serif Display', serif;
    font-size: 86px;
    color: #035755;
    line-height: 45px;
}

.testimonial-title {
    font-family: 'DM Serif Display', serif;
    font-weight: normal;
    font-size: 30px;
    letter-spacing: 0.03em;
    color: #081F32;
    margin-bottom: 20px;
}

.testimonial-content {
    font-size: 23px;
    font-weight: 400;
    line-height: 43px;
    color: #6E798C;
}

.testimonials-carousel .slick-dots li.slick-active button {
    background: #BCECE9;
}

.testimonials-carousel .slick-dots li.slick-active {
    background: #BCECE9;
}

.section-characteristics {
    padding-top: 50px;
    padding-bottom: 50px;
}

.characteristics-carousel {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 50px 0 0;
}

.characteristic-box {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 3);
    margin-right: 22px;
    outline: none;
}

.characteristic-box:last-child {
    margin-right: 0;
}

.characteristic-title {
    font-size: 30px;
    font-weight: 800;
    color: #FB7C35;
    text-align: center;
    margin-bottom: 21px;
}

.characteristic-image {
    width: 100%;
    height: auto;
}

.section-services .title {
    margin-bottom: 20px;
}

.service-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
}

.service-container:last-child {
    margin-bottom: 0;
}

.service-container:first-of-type {
    padding-bottom: 80px;
    background-image: url('images/oval-shape.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 30%;
}

.service-container:nth-child(odd) {
    flex-direction: row-reverse;
}

.service-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-right: 45px;
}

.service-container:nth-child(odd) .service-image-container {
    padding-right: 0;
    padding-left: 45px;
}

.service-container:first-of-type .service-image-container {
    justify-content: flex-end;
    position: relative;
    bottom: -80px;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-intro {
    font-family: 'Red Hat Display', serif;
    font-weight: normal;
    font-size: 25px;
    color: #4B4F51;
    margin-bottom: 40px;
}

.service-title {
    font-size: 30px;
    font-weight: 800;
    color: #FB7C35;
    margin-bottom: 20px;
}

.service-description {
    font-size: 30px;
    font-weight: 400;
    line-height: 43px;
    color: #434343;
}

.contact-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 54px 20px;
    font-family: 'Red Hat Display', serif;
}

.contact-banner > .btn {
    box-shadow: none;
}

.contact-banner-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #020122;
    margin-top: 22px;
}

.contact-banner-text > a {
    color: #020122;
}

.section-contact {
    background-image: url('images/bg-8.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-contact > p {
    font-family: 'Red Hat Display', serif;
    font-size: 30px;
    font-weight: normal;
    padding: 20px 0;
    text-align: left;
    color: #ffffff;
}

.plans-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 14px;
}

.plan-box {
    width: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 400px;
    min-width: 426px;
    padding: 20px 56px;
    margin: 0 30px 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, .97);
    background-image: url('images/oval-shape.png');
    background-position: 18px 20px;
    background-repeat: no-repeat;
    color: #081F32;
    position: relative;
}

.plan-box:last-child {
    margin-left: 30px;
    margin-right: 0;
}

.plan-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.2em;
}

.plan-price {
    font-family: 'DM Serif Display', serif;
    font-size: 60px;
}

.plan-price > span {
    font-size: 16px;
    color: #4B4F51;
}

.plan-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-items: center;
    width: 100%;
    margin: auto 0;
    padding-left: 0;
    list-style-type: none;
    z-index: 1;
}

.plan-list-item {
    font-size: 20px;
    font-weight: 300;
    line-height: 46px;
    padding-left: 48px;
    position: relative;
}

.plan-list-item:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 5px;
    border-bottom: 3px solid #F8593B;
    border-left: 3px solid #F8593B;
    transform: rotate(-45deg) translateY(-50%);
    left: 0;
    top: 50%;
}

.plan-box > img {
    position: absolute;
    bottom: 2px;
    right: 14px;
    max-width: 180px;
    height: auto;
}

.contact-form-container {
    width: 100%;
    margin-top: 10px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.contact-form-button-container > .btn {
    border: none;
    outline: none;
    margin: auto;
    padding: 18px;
    width: 35%;
}

.contact-form-label, .contact-form-button-container {
    width: 100%;
    margin-bottom: 13px;
}

.contact-form-button-container > .btn {
    margin: auto;
    width: 100%;
    padding: 18px;
    height: 64px;
    font-size: 20px;
}


.contact-form-input {
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    outline: none;
    border: none;
    height: 64px;
    padding: 22px 26px;
    font-size: 15px;
    font-family: 'Red Hat Display', serif;
}

.section-footer {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #eeeeee;
    color: #575756;
    font-family: 'Red Hat Display', serif;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% / 3);
    padding: 0 34px;
}

.footer-title {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 45px;
}

.footer-link {
    text-decoration: underline;
    font-weight: 300;
    display: inline-block;
    line-height: 42px;
    color: #575756;
}

.footer-link:hover, .footer-link:visited {
    color: #575756;
}

.footer-text {
    font-weight: 300;
    line-height: 42px;
    padding: 0;
}

.mobile-only {
    display: none;
}

@media (max-width: 1200px) {
    .header-bg {
        padding: 0 50px 50px;
    }

    .section {
        padding: 50px;
    }
}

@media (max-width: 990px) {
    .nav-menu label {
        display: block;
    }

    .nav-menu-links-container {
        position: absolute;
        width: 100%;
        height: calc(100vh - 97px);
        background: #020122;
        top: 97px;
        left: -100%;
        text-align: center;
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        transition: all .5s;
    }

    .nav-menu-link-item {
        margin-bottom: 30px;
        margin-right: 0;
    }

    .nav-menu-link-item:last-child {
        margin-bottom: 0;
        margin-top: 7px;
    }

    .nav-menu #hamburger:checked ~ ul {
        left: 0;
    }

    .nav-menu #hamburger:checked + label > #openIcon {
        display: none;
    }

    .nav-menu #hamburger:checked + label > #closeIcon {
        display: block;
    }

    #openIcon, #closeIcon {
        height: 17px;
        width: auto;
    }

    #closeIcon {
        display: none;
    }

    .header-content {
        margin-top: 40px;
    }

    .title--medium {
        font-size: 40px;
        line-height: 60px;
    }

    .struggles-container {
        margin: 0;
    }

    .struggle-box:nth-child(even) {
        align-items: flex-start;
        text-align: left;
        padding: 32px 100px 23px 54px;
    }

    .struggle-box {
        width: 100%;
    }

    .calculator-container {
        flex-direction: column;
    }

    .calculator-inputs {
        width: 100%;
        margin-bottom: 30px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        max-width: 600px;
    }

    .calculator-table-container {
        width: 100%;
    }

    .characteristics-carousel {
        flex-direction: column;
        align-items: center;
    }

    .characteristic-box {
        margin-right: 0;
        width: 70%;
        margin-bottom: 60px;
    }

    .characteristic-box:last-child {
        margin-bottom: 0;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-box {
        width: 75%;
        margin: 0 0 60px;
    }

    .plan-box:last-child {
        margin-left: 0;
    }

    .steps-top > .title--medium {
        line-height: 60px;
    }

    .section-info {
        background-position-x: right;
        position: relative;
    }

    .section-benefits {
        position: relative;
        padding-bottom: 150px;
        background-position: left center, bottom left;
    }

    .section-info:before, .section-benefits:before {
        content: '';
        background: rgba(255, 255, 255, .5);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .section-info > h4, .section-info > ul, .section-info > a, .benefits-content {
        z-index: 0;
    }

    .info-list, .benefits-list {
        color: #020122;
    }
}


@media (max-width: 767px) {

    .nav-menu-links-container {
        height: calc(100vh - 58px);
        top: 58px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .header-bg {
        padding: 0 22px 25px;
    }

    .header {
        padding: 17px 0;
    }

    .header-logo {
        width: 120px;
    }

    .header-content {
        flex-direction: column;
        margin-top: 23px;
    }

    .header-content-right {
        width: 100%;
        margin: 9px 0 0;
    }

    .header-request-description {
        text-align: left;
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .header-call-link {
        font-size: 24px;
        align-self: flex-start;
    }

    .section {
        padding: 30px 22px;
    }

    .title {
        font-size: 23px;
        line-height: 32px;
    }

    .title--medium {
        font-size: 22px;
        line-height: 35px;
        font-family: Avenir, sans-serif;
    }

    .btn {
        font-size: 13px;
        padding: 11px 20px;
        min-width: 165px;
    }

    .btn--invert {
        border-width: 1px;
    }

    .header-btns-container {
        flex-direction: column;
        align-items: flex-start;
        margin: 13px 0;
    }

    .header-btns-container .btn--invert {
        margin-top: 13px;
        margin-left: 0;
    }

    .header-list {
        font-size: 15px;
        line-height: 22px;
        display: inline;
    }

    .header-list-item {
        display: inline-block;
    }

    .header-list-end {
        font-size: 15px;
        line-height: 22px;
    }

    .section-sale img {
        width: 100%;
        max-width: 230px;
        float: unset;
    }

    .section-sale > .title {
        order: 2;
        margin: 25px 0;
    }

    .section-sale > .title > br {
        display: none;
    }

    .section-sale > p {
        order: 1;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .section-sale > .btn {
        order: 3;
    }

    .section-struggles {
        background-image: url('images/bg-2-m.png');
        background-position: right top;
    }

    .struggles-container {
        margin: 31px 0 0;
        padding: 0;
    }

    .struggle-box {
        background: none;
        padding: 5px;
        margin: 0;
        width: 100%;
        outline: none;
    }

    .struggle-box:nth-child(even) {
        align-self: flex-start;
        align-items: flex-start;
        text-align: left;
        margin: 0;
        padding: 5px;
    }

    .struggle-box-title {
        font-size: 19px;
    }

    .struggle-box-p {
        font-size: 17px;
    }

    .section-benefits {
        background-image: url("images/bg-3-m.png");
        background-color: #ffffff;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .benefits-content {
        max-width: calc(100% - 100px);
    }

    .benefits-content .title {
        text-align: right;
        color: #434343;
        margin-bottom: 24px;
    }

    .benefits-content .title > br {
        display: block;
    }

    .section-info {
        background-image: url("images/bg-4-m.png");
        background-position: center bottom;
        min-height: calc(100vw * 1.03);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-info .title {
        color: #434343;
    }

    .section-platform {
        padding-bottom: 30px;
        padding-top: 30px;
        background-image: url("images/bg-5-m.png");
        align-items: flex-start;
    }

    .platform-content {
        margin: 35px 0 22px;
    }

    .platform-item {
        font-size: 17px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .platform-item-img-container {
        margin-right: 24px;
        width: 38px;
    }

    .section-platform > .btn {
        margin: 0 auto;
    }

    .sections-separator {
        height: 40px;
        background-image: url('images/banner-separator-m.png');
    }

    .section-customer-info {
        min-height: calc(100vw * 0.76);
        padding-top: 25px;
        padding-bottom: 25px;
        background-image: url('images/bg-6-m.png');
        justify-content: center;
    }

    .section-customer-info > .title {
        color: #434343;
        max-width: calc(100% - 50px);
    }

    .section-steps {
        padding: 0;
    }

    .steps-top {
        padding: 30px 23px;
    }

    .steps-top:before {
        background-image: linear-gradient(to top right, #FFF2E4 0%, #FFF2E4 50%, #FFF 50%, #FFF 100%);
    }

    .steps-top > .title {
        color: #434343;
        line-height: 35px;
        margin-bottom: 0;
    }

    .steps-top > .title > span {
        display: none;
    }

    .step-box {
        height: calc(100vw * 0.9);
        position: relative;
        overflow: hidden;
        align-items: flex-end;
    }

    .step-box > img {
        height: 100%;
        width: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .step-text {
        background-image: linear-gradient(to left, #FFF2E4 0%, #FFF2E4 60%, transparent 60%, transparent 100%);
        width: 61%;
        margin-left: auto;
        justify-content: center;
        padding: 15px 22px;
        text-align: right;
    }

    .step-text:before {
        content: '';
        width: 40%;
        height: 100%;
        background-image: linear-gradient(to top left, #FFF2E4 0%, #FFF2E4 50%, transparent 51%, transparent 100%);
        left: 1px;
        transform: unset;
        z-index: 0;
    }

    .step-box:nth-child(odd) .step-text {
        background-image: linear-gradient(to right, #FFF2E4 0%, #FFF2E4 60%, transparent 60%, transparent 100%);
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        justify-content: center;
    }

    .step-box:nth-child(odd) .step-text:before {
        background-image: linear-gradient(to top right, #FFF2E4 0%, #FFF2E4 50%, transparent 51%, transparent 100%);
        right: 1px;
        transform: unset;
    }

    .step-box:nth-child(odd) .step-text > * {
        left: 0;
        align-self: flex-start;
    }

    .step-text > span {
        font-size: 20px;
        z-index: 1;
        margin-bottom: 15px;
        max-width: 140px;
        align-self: flex-end;
    }

    .step-text > p {
        font-size: 17px;
        z-index: 1;
        line-height: 23px;
    }

    .section-characteristics > .title {
        color: #434343;
    }

    .section-characteristics > .title > br {
        display: none;
    }

    .characteristics-carousel {
        display: block;
        text-align: center;
        margin: 30px 0 0;
    }

    .characteristic-box {
        width: 100%;
        margin: 0 2px;
        position: relative;
    }

    .characteristic-title {
        position: absolute;
        top: 17px;
        left: 0;
        padding: 3px 9px;
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        font-weight: 800;
        font-size: 20px;
    }

    .section-contact {
        background-image: url('images/bg-8-m.png');
        background-position-y: bottom;
        padding-bottom: 80px;
    }

    .plans-container {
        flex-direction: column;
        margin: 40px 0;
    }

    .plan-box {
        width: 100%;
        margin: 0 0 40px;
        background-position: center 26px;
        padding: 30px 20px;
        min-width: unset;
        min-height: unset;
    }

    .plan-box:last-child {
        margin: 0;
    }

    .plan-box > img {
        max-width: unset;
        max-height: 80px;
        top: 49px;
    }

    .plan-list-item {
        font-size: 16px;
        padding-left: 28px;
    }

    .contact-form-container {
        margin-top: 40px;
    }

    .contact-form-label, .contact-form-button-container {
        width: 100%;
        margin-bottom: 6px;
    }

    .contact-form-input {
        height: 40px;
        padding: 14px 10px;
        font-size: 11px;
        border-radius: 7px;
    }

    .contact-form-button-container > .btn {
        height: 40px;
        font-size: 13px;
        padding: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 3px;
    }

    .section-footer {
        font-size: 17px;
    }

    .footer-block {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

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

    .footer-title {
        margin-bottom: 0;
    }

    .section-calculator > .title {
        color: #434343;
    }

    .calculator-container {
        margin: 30px 0;
        flex-direction: column;
    }

    .calculator-inputs {
        box-shadow: none;
        border-radius: 0;
        max-width: 510px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .calculator-input-block {
        margin: 0;
        width: calc(50% - 5px);
    }

    .calculator-input-title {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .calculator-table-container {
        width: 100%;
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-top: 15px;
    }

    .calculator-table-cell {
        padding: 12px 10px;
        font-size: 14px;
        width: calc(100% / 3);
        border-bottom: 1px solid #E5E5E5;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .calculator-table-cell:first-child {
        border-bottom: none;
    }

    .calculator-table-title {
        font-size: 13px;
        color: #999999;
    }

    .calculator-table-cell--main {
        font-size: 25px;
        background: #FFF2E4;
    }

    .calculator-revenue {
        font-size: 13px;
        color: #999999;
        margin: 0 auto 0 0;
    }

    .calculator-revenue > b {
        font-size: 17px;
        margin: 0 5px;
        color: #020122;
    }

    .calculator-table-cell-toggle > img {
        max-width: unset;
        width: 80%;
        height: auto;
    }

    .calculator-table-row {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .calculator-table-cell-toggle {
        padding: 12px 10px;
        min-height: 56px;
    }

    .calculator-table-cell-toggle:after {
        right: 0;
    }

    .calculator-dropdown-item {
        /* height: 41px; */
        padding: 10px;
        min-height: unset;
    }

    .calculator-dropdown-item > img {
        height: auto;
        width: 80%;
    }


    .calculator-cta {
        width: 100%;
        padding: 8px 12px;
        display: inline;
        line-height: 1.5;
    }


    .calculator-cta > b {
        font-size: 27px;
        margin-left: 5px;
        margin-right: 0;
    }

    .calculator-cta > br {
        display: block;
    }

    .contact-form {
        margin-top: 10px;
    }

    .calculator-contact {
        margin: 12px auto 0;
        font-weight: 500;
        font-size: 17px;
        line-height: 1.5;
    }

    .section-calculator {
        padding-bottom: 10px;
    }

    .contact-banner {
        padding: 33px 20px 25px;
    }

    .contact-banner > .btn {
        padding: 16px;
    }

    .contact-banner-text {
        font-size: 17px;
        line-height: 1.5;
        margin-top: 12px;
    }

    .restaurants-carousel {
        flex-direction: column;
        margin-top: 35px;
    }

    .restaurants-carousel .slick-dots {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .header-request-separator, .header-request-title {
        font-size: 18px;
    }
}

@media (max-width: 350px) {
    .header-call-link {
        font-size: 19px;
    }
}

@media (min-width: 1600px) {
    .header-bg {
        padding: 0 220px 50px 119px;
    }

    .header-content-right {
        max-width: 500px;
        width: 50%;
    }
}