*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: #999;
    line-height: 21px;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
}

@media screen and (max-width: 359px) {
    .container {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media screen and (min-width: 360px) and (max-width: 575px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding-right: 32px;
        padding-left: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .container {
        width: 960px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1419px) {
    .container {
        width: 1080px;
    }
}

@media screen and (min-width: 1420px) {
    .container {
        width: 1280px;
    }
}

#header {
    border-top: 5px solid #ccc;
}

.scroll #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #fefefe;
    box-shadow: -4px 3px 5px 0 rgba(00, 00, 00, 0.1);
}

#header-container::after {
    display: block;
    clear: both;
    content: "";
}

#header-logo {
    float: left;
}

#header-logo::after {
    display: block;
    clear: left;
    content: "";
}

#header-logo-link {
    display: block;
}

#header-logo-animated {
    float: left;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

#header-logo-animated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#header-logo-iframe {
    width: 100%;
    height: 100%;
}

#header-logo-static {
    float: left;
    margin-top: -1px;
    margin-left: 11px;
}

#header-logo-static-image {
    display: block;
}

.scroll #header-brand {
    margin-top: 0;
}

#header-menu-toggle {
    float: right;
    width: 45px;
    height: 40px;
    border: 0 none;
    background: transparent;
    padding: 0;
}

#header-menu-toggle .menu-icon-bar {
    display: block;
    width: 45px;
    height: 8px;
    border-radius: 4px;
    background: #f24b4d;
    content: "";
}

#header-menu-toggle .menu-icon-bar + .menu-icon-bar {
    margin-top: 8px;
}

#header-menu-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu-item {
    line-height: 0;
}

.header-menu-link {
    color: #666;
    text-transform: uppercase;
    line-height: 22px;
    font-size: 16px;
}

.header-menu-link:hover {
    font-weight: 700;
}

.header-menu-link::after {
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 11px;
    height: 11px;
    opacity: 0;
    border-radius: 5px;
    background: #f24d4b;
    content: "";
    transition: opacity 0.3s ease-in-out;
}

.header-menu-link:hover::after {
    opacity: 1;
}

#header-menu-contact-link {
    color: #f24d4b;
    font-weight: 700;
}

@media screen and (max-width: 1023px) {
    #header {
        box-shadow: -4px 3px 5px 0 rgba(00, 00, 00, 0.1);
        background: #fefefe;
        padding-top: 10px;
        padding-bottom: 11px;
    }

    #header-logo-animated {
        width: 60px;
        height: 60px;
    }

    #header-menu {
        clear: both;
        text-align: center;
    }

    #header-menu-items {
        height: 0;
        overflow-y: hidden;
        transition: height 0.5s ease-in-out;
    }

    #header-menu-items.open {
        height: 198px;
    }

    .header-menu-item + .header-menu-item {
        margin-top: 22px;
    }

    .header-menu-link {
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    #header {
        padding-top: 22px;
    }

    .scroll #header {
        padding-bottom: 23px;
    }

    #header-brand {
        transition: margin-top 0.5s ease-in-out;
    }

    #header-logo-static {
        display: none;
    }

    .scroll #header-logo-static {
        display: block;
    }

    #header-logo-animated {
        width: 125px;
        height: 125px;
    }

    .scroll #header-logo-animated {
        width: 60px;
        height: 60px;
    }

    #header-menu-toggle {
        display: none;
    }

    .scroll #header-menu {
        margin-top: 14px;
    }

    #header-menu-items {
        margin-right: -30px;
    }

    #header-menu-items::after {
        display: block;
        clear: left;
        content: "";
    }

    .header-menu-item {
        float: left;
        position: relative;
        padding-right: 30px;
        padding-left: 30px;
    }

    .header-menu-item::after {
        display: block;
        visibility: hidden;
        color: transparent;
        content: attr(data-text);
        text-transform: uppercase;
        line-height: 20px;
        font-size: 16px;
        font-weight: 700;
    }

    .header-menu-link {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (min-width: 1024px) {
    #header-brand {
        margin-top: 22px;
    }

    #header-menu {
        float: right;
        margin-top: 18px;
        transition: margin-top 0.5s ease-in-out;
    }
}

@media screen and (min-width: 1200px) {
    #header-brand {
        margin-top: 38px;
    }

    #header-menu {
        margin-top: 34px;
    }
}

#footer {
    padding-top: 74px;
}

#footer-container::after {
    display: block;
    clear: right;
    content: "";
}

#footer-heading {
    float: right;
    color: #333;
    font-weight: 700;
}

#footer-heading .color-alt-1 {
    color: #999;
}

#footer-heading .color-alt-2 {
    color: #f24d4b;
}

#footer-heading .color-alt-3 {
    color: #666;
}

#footer-contact {
    clear: right;
    float: right;
    margin: 0;
    padding: 0;
}

#footer-contact dt,
#footer-contact dd {
    margin: 0;
    padding: 0;
    color: #333;
    font-weight: 300;
}

#footer-contact dt::after {
    content: ":";
}

#footer-contact a {
    color: inherit;
}

#footer-contact a:hover {
    color: #f24d4b;
}

.footer-contact-item::after {
    display: block;
    clear: both;
    content: "";
}

#footer-contact dt {
    float: left;
}

#footer-contact dd {
    float: right;
    text-align: right;
}

@media screen and (max-width: 767px) {
    #footer-heading {
        line-height: 25px;
        font-size: 20px;
    }

    #footer-contact {
        margin-top: 20px;
        width: 300px;
        line-height: 26px;
        font-size: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #footer-heading {
        line-height: 31px;
        font-size: 25px;
    }

    #footer-contact {
        margin-top: 16px;
        width: 400px;
        line-height: 32px;
        font-size: 18px;
    }
}

@media screen and (max-width: 1023px) {
    #footer {
        padding-bottom: 89px;
    }
}

@media screen and (min-width: 1024px) {
    #footer {
        padding-bottom: 178px;
    }

    #footer-heading {
        line-height: 42px;
        font-size: 34px;
    }

    #footer-contact {
        margin-top: 24px;
        width: 500px;
        line-height: 35px;
        font-size: 20px;
    }
}

#to-top-button {
    display: none;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 0 none;
    background: #f24d4b;
    padding: 0;
    opacity: 0.8;
}

#to-top-button:hover {
    opacity: 1;
}

#to-top-button::after {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    content: "";
    transform: rotate(45deg);
}

.scroll #to-top-button {
    display: block;
}

@media screen and (max-width: 359px) {
    #to-top-button {
        right: 8px;
    }
}

@media screen and (min-width: 360px) and (max-width: 575px) {
    #to-top-button {
        right: 16px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    #to-top-button {
        right: 24px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #to-top-button {
        right: 32px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    #to-top-button {
        left: calc(50% + 430px);
    }
}

@media screen and (max-width: 1199px) {
    #to-top-button {
        bottom: 30px;
    }
}

@media screen and (min-width: 1200px) {
    #to-top-button {
        top: calc(50vh - 25px);
    }
}

@media screen and (min-width: 1200px) and (max-width: 1419px) {
    #to-top-button {
        left: calc(50% + 490px);
    }
}

@media screen and (min-width: 1420px) {
    #to-top-button {
        left: calc(50% + 590px);
    }
}

.anchor {
    height: 0;
    overflow-y: hidden;
}

@media screen and (max-width: 1023px) {
    .anchor {
        scroll-margin-top: 87px;
    }
}

@media screen and (min-width: 1024px) {
    .anchor {
        scroll-margin-top: 111px;
    }
}

.section-heading {
    margin: 0;
    color: #333;
    font-weight: 700;
}

@media screen and (max-width: 413px) {
    .section-heading {
        line-height: 30px;
        font-size: 24px;
    }
}

@media screen and (min-width: 414px) and (max-width: 767px) {
    .section-heading {
        line-height: 40px;
        font-size: 32px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section-heading {
        line-height: 50px;
        font-size: 40px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .section-heading {
        line-height: 60px;
        font-size: 48px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1339px) {
    .section-heading {
        line-height: 70px;
        font-size: 56px;
    }
}

@media screen and (min-width: 1340px) {
    .section-heading {
        line-height: 80px;
        font-size: 64px;
    }
}

.section-body-text p {
    margin: 0;
}

.section-body-text p + p {
    margin-top: 21px;
}

#about-us-section-heading .color-alt-1 {
    color: #999;
}

#about-us-section-heading .color-alt-2 {
    color: #f24d4b;
}

#about-us-section-heading .color-alt-3 {
    color: #666;
}

#about-us-section-subheading {
    margin-bottom: 0;
    color: #333;
    font-weight: 700;
}

#about-us-section-body-text {
    margin-top: 17px;
}

#motto {
    background-color: #f4f4f4;
    text-align: right;
    font-family: Montserrat, sans-serif;
}

#motto-text {
    color: #666;
    font-weight: 100;
}

#motto-author {
    margin-top: 10px;
    color: #f24d4b;
    line-height: 19px;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 413px) {
    #about-us-section-subheading {
        margin-top: 8px;
        line-height: 20px;
        font-size: 16px;
    }
}

@media screen and (min-width: 414px) and (max-width: 767px) {
    #about-us-section-subheading {
        margin-top: 5px;
        line-height: 25px;
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    #introduction {
        padding-top: 48px;
        padding-bottom: 55px;
    }

    #motto {
        padding-top: 35px;
        padding-bottom: 38px;
    }

    #motto-text {
        line-height: 19px;
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    #about-us-section-subheading {
        margin-top: -3px;
        line-height: 35px;
        font-size: 28px;
    }

    #motto {
        padding-top: 55px;
        padding-bottom: 59px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #introduction {
        padding-top: 96px;
        padding-bottom: 109px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #motto-text {
        line-height: 29px;
        font-size: 30px;
    }
}

@media screen and (max-width: 1023px) {
    #motto-text .hide-on-small-screen {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    #introduction {
        background-image: url("../img/background/introduction.png"),
        url("../img/background/introduction.png");
        background-position: left top, right bottom 10px;
        background-repeat: no-repeat, no-repeat;
        padding-top: 194px;
        padding-bottom: 217px;
    }

    #motto {
        background-image: url("../img/background/motto.png");
        background-position: right center;
        background-repeat: no-repeat;
    }
}

@media screen and (min-width: 1200px) {
    #motto-text {
        line-height: 38px;
        font-size: 40px;
    }
}

.service-name {
    margin: 0;
    color: #666;
    font-weight: 700;
}

.service-description {
    font-size: 16px;
}

.service-description p {
    margin: 0;
}

#services .glide__bullets {
    margin-top: 54px;
    display: flex;
    justify-content: center;
    line-height: 0;
}

#services .glide__bullet {
    margin-right: 4px;
    margin-left: 4px;
    width: 11px;
    height: 11px;
    border-radius: 5px;
    border: 0 none;
    background: #ccc;
    padding: 0;
}

#services .glide__bullet--active {
    background: #f24d4b;
}

@media screen and (max-width: 767px) {
    #services-section {
        padding-top: 58px;
        padding-bottom: 90px;
    }

    #services-section-body-text {
        margin-top: 21px;
    }

    #services {
        margin-top: 32px;
    }

    .service-name {
        line-height: 28px;
        font-size: 21px;
    }

    .service-description {
        margin-top: 29px;
    }
}

@media screen and (min-width: 768px) {
    #services {
        margin-top: 64px;
    }

    #services-section-body-text {
        margin-top: 43px;
    }

    .service-name {
        line-height: 35px;
        font-size: 28px;
    }

    .service-description {
        margin-top: 39px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #services-section {
        padding-top: 87px;
        padding-bottom: 120px;
    }
}

@media screen and (min-width: 1200px) {
    #services-section {
        padding-top: 116px;
        padding-bottom: 180px;
    }
}

#clients-section {
    background-color: #fff;
    background-image: url("../img/background/clients.png");
    background-position: center top;
    background-repeat: repeat-x;
}

#clients {
    display: flex;
    flex-wrap: wrap;
}

.client {
    position: relative;
    height: 0;
    overflow-y: hidden;
}

.client-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.client-logo:not(:hover) {
    filter: grayscale(1);
}

@media screen and (max-width: 479px) {
    .client {
        width: 50%;
        padding-bottom: 29.296875%;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .client {
        width: 33.3333%;
        padding-bottom: 19.53125%;
    }
}

@media screen and (max-width: 767px) {
    #clients-section {
        padding-top: 57px;
        padding-bottom: 90px;
    }

    #clients-section-body-text {
        margin-top: 21px;
    }

    #clients {
        margin-top: 36px;
    }
}

@media screen and (min-width: 768px) {
    #clients-section-body-text {
        margin-top: 43px;
    }

    #clients {
        margin-top: 74px;
    }
}

@media screen and (min-width: 768px) {
    .client {
        width: 25%;
        padding-bottom: 14.6484375%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #clients-section {
        padding-top: 76px;
        padding-bottom: 120px;
    }
}

@media screen and (max-width: 1023px) {
    .client-logo {
        max-width: 75%;
        max-height: 75%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1419px) {
    .client-logo {
        max-width: 66.6666%;
        max-height: 66.6666%;
    }
}

@media screen and (max-width: 1199px) {
    #clients-section {
        background-size: contain;
    }
}

@media screen and (min-width: 1200px) {
    #clients-section {
        padding-top: 115px;
        padding-bottom: 180px;
    }
}

@media screen and (min-width: 1420px) {
    .client-logo {
        max-width: 50%;
        max-height: 50%;
    }
}

#prices-section {
    background-color: #fff;
    background-image: url("../img/background/prices.png");
    background-position: center top;
    background-repeat: repeat-x;
}

.price-list-group {
    margin-bottom: 28px;
}

.price-list-group-name {
    margin: 0;
    color: #666;
    line-height: 22px;
    font-size: 16px;
}

.price-list-group-body {
    margin-top: 7px;
}

.price-list-item {
    line-height: 22px;
    font-size: 16px;
}

.price-list-item-price {
    padding-left: 16px;
    white-space: nowrap;
}

@media screen and (max-width: 479px) {
    .price-list-item {
        margin-bottom: 11px;
    }
}

@media screen and (min-width: 480px) {
    .price-list-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

@media screen and (max-width: 767px) {
    #prices-section {
        padding-top: 57px;
        padding-bottom: 91px;
    }

    #prices-section-body-text {
        margin-top: 25px;
    }

    #prices {
        margin-top: 30px;
    }
}

@media screen and (min-width: 768px) {
    #prices-section-body-text {
        margin-top: 51px;
    }

    #prices {
        margin-top: 60px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #prices-section {
        padding-top: 76px;
        padding-bottom: 121px;
    }
}

@media screen and (min-width: 1024px) {
    #prices {
        column-count: 2;
        column-gap: 44px;
    }

    .price-list-group {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
}

@media screen and (min-width: 1200px) {
    #prices-section {
        padding-top: 115px;
        padding-bottom: 182px;
    }
}

#contact-section {
    transform: skewY(-9deg);
    background: #f4f4f4;
}

#contact-section-skew {
    transform: skewY(9deg);
}

#contact-message-success {
    display: none;
    border-radius: 5px;
    background: #1ab41a;
    padding: 1em 2em;
    color: #fff;
    text-align: center;
}

#contact-message-success.visible {
    display: block;
}

#contact-message-form .form-control + .form-control {
    margin-top: 6px;
}

#contact-message-form label {
    display: inline-block;
    color: #333;
    line-height: 22px;
    font-size: 16px;
    font-weight: 300;
}

#contact-message-form label.required::after {
    color: #f00;
    content: "*";
}

#contact-message-form input[type="text"],
#contact-message-form input[type="email"],
#contact-message-form input[type="tel"],
#contact-message-form textarea {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 0 none;
    background: #fff;
    padding: 9px 18px;
    color: #666;
    line-height: 23px;
    font-size: 18px;
    font-family: inherit;
}

#contact-message-form input[type="text"],
#contact-message-form input[type="email"],
#contact-message-form input[type="tel"] {
    height: 41px;
}

#contact-message-form textarea {
    resize: vertical;
    height: 248px;
}

#contact-message-form .form-radio-control::after {
    display: block;
    clear: left;
    content: "";
}

#contact-message-form input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    float: left;
    position: relative;
    margin: 1px 0 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #c2c2c2;
    background-color: #fff;
}

#contact-message-form input[type="radio"]:checked::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #616161;
    content: "";
}

#contact-message-form .form-radio-control label {
    float: left;
    margin-left: 10px;
}

#contact-message-form-recaptcha {
    margin-top: 10px;
}

#contact-message-form .form-actions {
    margin-top: 8px;
    line-height: 0;
}

#contact-message-form .form-error {
    color: #f00;
    font-size: 14px;
}

#contact-message-form .form-error:empty {
    height: 0;
}

#contact-message-form-submit-button {
    display: inline-block;
    border-radius: 2px;
    border: 0 none;
    background: #f26e6d;
    padding: 8px 25px 9px;
    color: #fff;
    text-transform: uppercase;
    line-height: 20px;
    font-size: 14px;
}

#contact-message-form-submit-button:hover {
    background: #f24d4b;
}

@media screen and (max-width: 413px) {
    #contact-message-form .form-radio-control + .form-radio-control {
        margin-top: 20px;
    }
}

@media screen and (min-width: 414px) {
    #contact-message-form .form-radio-group::after {
        display: block;
        content: "";
    }

    #contact-message-form .form-radio-control:nth-child(odd) {
        float: left;
    }
}

@media screen and (min-width: 414px) and (max-width: 1023px) {
    #contact-message-form .form-radio-group::after {
        clear: left;
    }

    #contact-message-form .form-radio-control:nth-child(even) {
        float: left;
        margin-left: 30px;
    }
}

@media screen and (max-width: 767px) {
    #contact-section {
        padding-top: 83px;
        padding-bottom: 96px;
    }

    #contact-section-body-text {
        margin-top: 26px;
    }

    #contact-message-success {
        margin-top: 29px;
    }

    #contact-message-form {
        margin-top: 35px;
    }
}

@media screen and (min-width: 768px) {
    #contact-section-body-text {
        margin-top: 51px;
    }

    #contact-message-success {
        margin-top: 57px;
    }

    #contact-message-form {
        margin-top: 69px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #contact-section {
        padding-top: 108px;
        padding-bottom: 126px;
    }
}

@media screen and (max-width: 1023px) {
    #contact-message-form {
        max-width: 600px;
    }

    #contact-message-form .form-block + .form-block {
        margin-top: 10px;
    }

    #contact-message-form #form-control-contact-type {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) {
    #contact-message-form::after {
        display: block;
        clear: left;
        content: "";
    }

    #contact-message-form .form-block {
        float: left;
    }

    #contact-message-form .form-block:nth-child(2) {
        position: relative;
    }

    #contact-message-form .form-block:nth-child(2)::before {
        position: absolute;
        top: 22px;
        left: -1px;
        width: 2px;
        height: 248px;
        border-left: 2px dotted #ccc4bd;
        content: "";
    }

    #contact-message-form .form-radio-group::after {
        clear: both;
    }

    #contact-message-form .form-radio-control:nth-child(even) {
        float: right;
    }

    #contact-message-form-recaptcha::after {
        display: block;
        clear: right;
        content: "";
    }

    #contact-message-form-recaptcha-container {
        float: right;
    }

    #contact-message-form #form-control-contact-type {
        margin-top: 10px;
    }

    #contact-message-form .form-actions::after {
        display: block;
        clear: right;
        content: "";
    }

    #contact-message-form-submit-button {
        float: right;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    #contact-message-form .form-block:nth-child(1) {
        width: 400px;
        padding-right: 20px;
    }

    #contact-message-form .form-block:nth-child(2) {
        width: 560px;
        padding-left: 30px;
    }
}

@media screen and (min-width: 1200px) {
    #contact-section {
        padding-top: 164px;
        padding-bottom: 194px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1419px) {
    #contact-message-form .form-block:nth-child(1) {
        width: 380px;
        padding-right: 20px;
    }

    #contact-message-form .form-block:nth-child(2) {
        width: 700px;
        padding-left: 40px;
    }
}

@media screen and (min-width: 1420px) {
    #contact-message-form .form-block:nth-child(1) {
        width: 400px;
        padding-right: 30px;
    }

    #contact-message-form .form-block:nth-child(2) {
        width: 880px;
        padding-left: 40px;
    }
}
