/*
  ------------------------------------------------------------------
  Table of contents

  1. Global styles
    - General styles
    - Button styles
    - Animations
  2. Header
  3. Footer
  4. Components
  ------------------------------------------------------------------- */

/*
  -------------------------------------------------------
  #1.1 General styles
  ------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
}

.real-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: 1200px;
}

html,
body {
    height: 100%;
}

body {
    background: #eeeeee;
    font-family: 'Open Sans',sans-serif;
}

    body.no-scroll {
        overflow: hidden;
        position: relative;
    }

@supports not ((display: -ms-grid) or (display: grid)) {
    @media screen and (min-width: 768px) {
        body.no-scroll {
            position: unset;
        }
    }
}

body.no-scroll.no-scroll-video {
    overflow: hidden;
}

.slick-slider {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

.underlined-link {
    color: #9f1f37;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2.8px;
    position: relative;
    padding-bottom: 12px;
    text-decoration: none !important;
    outline: none !important;
}

.underlined-link-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.underlined-link:hover {
    color: inherit;
}

    .underlined-link:hover::after {
        width: 100%;
        background: #757575;
    }

.underlined-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 1px;
    background: #ebebeb;
    transition: .1s ease-in-out;
}

.section-title {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 37px 1fr;
    grid-template-columns: 37px 1fr;
    grid-row-gap: 15px;
    overflow: hidden;
    max-width: 100%;
}

.section-title-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

    .section-title-content .title {
        font-size: 24px;
        letter-spacing: 2.4px;
        color: #A42039;
        font-weight: 900;
        line-height: 1.2;
        padding-left:10px;
    }

        .section-title-content .title.dark {
            color: #333333;
        }

        .section-title-content .title.light {
            color: #ffffff;
        }

    .section-title-content span.subtitle {
        font-size: 12px;
        color: #b4b4b4;
        letter-spacing: 2.4px;
        font-weight: 300;
        margin-top: 0;
        line-height: 1;
        padding-left:7px;
    }

.section-title-btn {
    margin-left: auto;
    position: relative;
    width: 100%;
    grid-column: 1 / -1;
}

    .section-title-btn .app-btn {
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 2.4px;
        height: 50px;
    }

ul.slick-dots {
    margin: 0;
    margin-top: 65px;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    ul.slick-dots li {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 8px;
        height: 8px;
        background: #cfcfcf;
        border-radius: 50%;
        transition: .2s ease-in-out;
    }

        ul.slick-dots li.slick-active {
            width: 30px;
            border-radius: 4px;
            background: #A42039;
        }

        ul.slick-dots li + li {
            margin-left: 10px;
        }

        ul.slick-dots li button {
            display: none;
        }

/*
  -------------------------------------------------------
  #1.2 Button styles
  ------------------------------------------------------- */

.app-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    padding: 0 30px;
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;
    transition: .1s ease-in-out;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

    .app-btn.app-btn--outline {
        color: #a7a7a7;
        border: 1px solid #a7a7a7;
    }

        .app-btn.app-btn--outline:hover {
            color: #ffffff;
            background: #a7a7a7;
        }

    .app-btn.app-btn--secondary {
        background: #6b6b6b;
        color: #ffffff;
        border: 0;
    }

        .app-btn.app-btn--secondary:hover {
            background: #525252;
        }

    .app-btn.app-btn--success {
        background: #A42039;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        position: relative;
    }

        .app-btn.app-btn--success::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: .1s ease-in-out;
        }

        .app-btn.app-btn--success:hover::before {
            opacity: 1;
        }

/*
  -------------------------------------------------------
  #1.3 Animations
  ------------------------------------------------------- */

@-webkit-keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
        transform: translateX(-50%) translateY(-50%) scale(0);
        opacity: 1;
    }

    95% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
        transform: translateX(-50%) translateY(-50%) scale(0);
        opacity: 1;
    }

    95% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

@keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*
  -------------------------------------------------------
  #2 Header
  ------------------------------------------------------- */

.header-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 90px;
    padding: 0 70px;
    background: #ffffff;
    box-shadow: 0px 7px 59px 0 rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 0 30px;
}

.header-social-links {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    left: unset;
    right: unset;
    position: relative;
    display: none;
    top: 0;
    bottom: 0;
    margin: auto;
}

    .header-social-links a.header-social-link {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: 40px;
        text-decoration: none !important;
        color: #2b454e;
        font-size: 17px;
        font-weight: 400;
    }

        .header-social-links a.header-social-link:hover i {
            color: #95c2be;
        }

        .header-social-links a.header-social-link + .header-social-link {
            margin-left: 30px;
        }

    .header-social-links i {
        font-size: 28px;
        color: #2b454e;
        margin-left: 10px;
    }

.nav-trigger {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0;
    height: auto;
    box-shadow: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    cursor: pointer;
    z-index: 98;
}

    .nav-trigger:hover .nav-trigger-line {
        width: 30px;
    }

.nav-trigger-line {
    background: #42866a;
    height: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: .1s ease-out;
}

    .nav-trigger-line:nth-child(1) {
        width: 30px;
    }

    .nav-trigger-line:nth-child(2) {
        width: 20px;
        transition-delay: .1s;
    }

    .nav-trigger-line:nth-child(3) {
        width: 10px;
        transition-delay: .2s;
    }

    .nav-trigger-line + .nav-trigger-line {
        margin-top: 4px;
    }

.nav-trigger.close-menu {
    position: relative;
    font-size: 1.3em;
    z-index: 99;
}

    .nav-trigger.close-menu i {
        color: #fff;
    }

/*
  -------------------------------------------------------
  #3 Footer
  ------------------------------------------------------- */

.app-footer {
    background: #414141;
    padding-top: 60px;
    position: relative;
    z-index: 76;
}

    .app-footer .footer-contact-btn {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background: #ffffff;
        height: 40px;
        border-radius: 21.5px;
        color: #2c2c2c;
        letter-spacing: 4.2px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 14px;
        white-space: nowrap;
        padding: 0 30px;
    }

        .app-footer .footer-contact-btn:hover {
            background: #e6e6e6;
        }

        .app-footer .footer-contact-btn i {
            margin-left: 12px;
            font-size: 1.2em;
        }

    .app-footer .footer-contact-btn-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 55px;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .app-footer .footer-contact-btn-wrapper img {
            background-color: white;
            margin-top: -34px;
            padding: 15px;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-shadow: 0 6px 15px rgb(65, 65, 65);
            box-shadow: 0 6px 15px rgb(65, 65, 65);
        }

.app-footer-wrapper {
    margin-top: 30px;
    padding-bottom: 30px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .app-footer-wrapper {
        display: -ms-grid;
        display: grid;
        grid-column-gap: 0;
        grid-row-gap: 30px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
    }

    @media (min-width: 576px) {
        .app-footer-wrapper {
            grid-column-gap: 15px;
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (min-width: 768px) {
        .app-footer-wrapper {
            -ms-grid-columns: (1fr)[6];
            grid-template-columns: repeat(6, 1fr);
            margin-top: 60px;
            padding-bottom: 65px;
            -ms-grid-column-align: center;
            justify-items: center;
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.app-footer-widget {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-widget {
        width: auto;
    }

        .app-footer-widget + .app-footer-widget {
            margin-left: 4%;
        }
}

.app-footer-widget .newsletter-input {
    border-radius: 2px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 20px;
    border: 0;
    color: #ffffff !important;
}

    .app-footer-widget .newsletter-input + .app-btn--success {
        letter-spacing: .56px;
    }

.app-footer-widget-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .56px;
    margin-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #545454;
    padding-bottom: 5px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-widget-title {
        white-space: nowrap;
    }
}

.app-footer-widget-title.push-left {
    padding-left: 0;
}

.app-footer-widget-title::before {
    display: block;
    content: '';
    position: absolute;
    left: -5px;
    top: -2px;
    width: 10px;
    height: 5px;
    background: transparent;
    border-width: 1px 0 0 1px;
    border-color: white;
    border-style: solid;
}

.app-footer-widget figure.footer-logo {
    margin: 0;
    margin-bottom: 20px;
}

    .app-footer-widget figure.footer-logo img {
        max-width: 100%;
        height: auto;
    }

.app-footer-widget p.description {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: .3px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .app-footer-widget p.description {
        max-width: 260px;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-widget p.description {
        max-width: 200px;
    }
}

.app-footer-widget p.description.footer-brand-description {
    line-height: 1.79;
}

.app-footer-list-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-top: 15px;
}

    .app-footer-list-item i {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        width: 20px;
        margin-right: 25px;
        color: #ffffff;
        font-size: 1.4em;
    }

    .app-footer-list-item span {
        font-size: 14px;
        color: #ffffff;
        letter-spacing: .3px;
    }

    .app-footer-list-item a {
        font-size: 14px;
        color: #ffffff;
        letter-spacing: .3px;
    }

@supports ((display: -ms-grid) or (display: grid)) {
    .app-footer-menu {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-row-gap: 15px;
    }

    @media (min-width: 576px) {
        .app-footer-menu {
            -ms-grid-columns: 1fr;
            grid-template-columns: 1fr;
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-menu {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.app-footer-menu-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    padding-left: 5px;
    border-radius: 4px;
    border-left: 1px solid #545454;
    letter-spacing: .56px;
    text-decoration: none !important;
    outline: none !important;
    position: relative;
    line-height: 1.4;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-menu-item + .app-footer-menu-item {
        margin-top: 15px;
    }
}

.app-footer-menu-item.active,
.app-footer-menu-item:hover {
    font-weight: normal;
    color: #fff;
}

    .app-footer-menu-item.active:before,
    .app-footer-menu-item:hover:before {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        content: '\f105';
        font-family: "Font Awesome 5 Free";
        position: absolute;
        left: -10px;
        top: calc(50% - 1px);
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        color: #ffffff !important;
        font-size: 1.2em;
        font-weight: 900;
        top:7px;
    }

.app-footer-rich-menu-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 2px;
    position: relative;
    text-decoration: none !important;
    background-image: none;
    overflow: hidden;
    height: 100px;
    padding: 15px 20px;
    transition: .2s ease-in-out;
    grid-column: -1 / 1;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .app-footer-rich-menu-item + .app-footer-rich-menu-item {
        margin-top: 15px;
    }
}

.app-footer-rich-menu-item:first-of-type {
    margin-top: 0;
}

.app-footer-rich-menu-item:hover {
    box-shadow: 0px 17px 40px 0 rgba(0, 0, 0, 0.1);
}

    .app-footer-rich-menu-item:hover .rich-menu-background {
        opacity: 1;
    }

.app-footer-rich-menu-item .rich-menu-background {
    display: block;
    transition: .2s ease-in-out;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

    .app-footer-rich-menu-item .rich-menu-background::before {
        display: block;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(31, 136, 104, 0.85);
        z-index: 1;
    }

    .app-footer-rich-menu-item .rich-menu-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.app-footer-rich-menu-item span.title {
    font-size: 14px;
    line-height: 1.43;
    font-weight: 300;
    letter-spacing: .6px;
    color: #ffffff;
    margin-bottom: 10px;
    z-index: 1;
}

.app-footer-rich-menu-item .info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

    .app-footer-rich-menu-item .info i {
        margin-right: 10px;
        color: #ffffff;
        font-size: .8em;
    }

    .app-footer-rich-menu-item .info span {
        font-size: 12px;
        letter-spacing: .48px;
        color: #ffffff;
        font-weight: 300;
    }

.app-footer-copyright {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    height: auto;
    padding: 15px 10px;
    -ms-grid-column-align: center;
    justify-items: center;
}

    .app-footer-copyright .app-footer-social {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .app-footer-copyright .app-footer-social .app-footer-social-link {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none !important;
            color: #fff !important;
            outline: none !important;
        }

            .app-footer-copyright .app-footer-social .app-footer-social-link:hover {
                color: #ffffff;
            }

            .app-footer-copyright .app-footer-social .app-footer-social-link + .app-footer-social-link {
                margin-left: 15px;
                color: #fff;
            }

    .app-footer-copyright p.footer-text {
        font-size: 11px;
        font-weight: 300;
        color: #ffffff;
        letter-spacing: .56px;
        margin: 0;
        text-align: center;
        line-height: 1.79;
    }

        .app-footer-copyright p.footer-text a {
            font-size: 11px;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: .56px;
            margin: 0;
            text-align: center;
            line-height: 1.79;
        }

    .app-footer-copyright .footer-brand-logo {
        margin: 0;
        margin-left: 15px;
        max-width: 100%;
        height: auto;
    }

/*
  -------------------------------------------------------
  #4 Components
  ------------------------------------------------------- */

.title-rectangle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    width: 37px;
    height: 50px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .title-rectangle.title-rectangle--white {
        border: 5px solid #fff;
    }

        .title-rectangle.title-rectangle--white.fill {
            background: #fff;
        }

    .title-rectangle.title-rectangle--primary {
        border-width: 5px;
        border-style: solid;
        border-color: #A42039;
    }

        .title-rectangle.title-rectangle--primary.fill {
            background: #A42039;
        }

.hero-wrapper {
    background: #fff;
    position: relative;
    overflow: hidden;
    height: auto;
    -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
}

    .hero-wrapper .hero-container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        margin-left: auto;
        max-width: 100%;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

        .hero-wrapper .hero-container .hero-left-wrapper {
            height: 100%;
            width: 100%;
            margin-top: 75px;
            padding: 0 20px 20px 20px;
        }

        .hero-wrapper .hero-container .hero-left-carousel {
            height: 100%;
        }

            .hero-wrapper .hero-container .hero-left-carousel .slick-list,
            .hero-wrapper .hero-container .hero-left-carousel .slick-track {
                height: 100%;
            }

        .hero-wrapper .hero-container .hero-left-carousel-item {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            max-width: 100%;
            outline: none !important;
            margin-right: unset;
            overflow: hidden;
        }

            .hero-wrapper .hero-container .hero-left-carousel-item span.title-small {
                display: block;
                font-size: 14px;
                color: #757575;
                margin-bottom: 10px;
                letter-spacing: 2.8px;
                line-height: 1;
            }

            .hero-wrapper .hero-container .hero-left-carousel-item span.title {
                display: block;
                color: #A42039;
                font-weight: 900;
                line-height: .9;
                letter-spacing: 2px;
                font-size: 20px;
                margin-bottom: 20px;
                word-break: break-all;
                margin-top: 15px;
            }

                .hero-wrapper .hero-container .hero-left-carousel-item span.title::first-letter {
                    margin-left: unset;
                }

            .hero-wrapper .hero-container .hero-left-carousel-item span.subtitle {
                display: block;
                color: #757575;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 4.4px;
                margin-bottom: 20px;
                font-size: 16px;
            }

            .hero-wrapper .hero-container .hero-left-carousel-item p.description {
                display: block;
                font-size: 14px;
                color: #757575;
                margin: 0;
                font-weight: 300;
                letter-spacing: 0.28px;
                margin-bottom: 30px;
            }

        .hero-wrapper .hero-container .hero-right {
            height: 100%;
            position: relative;
            z-index: 1;
            width: 100%;
        }

            .hero-wrapper .hero-container .hero-right .hero-carousel-navigation {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-justify-content: center;
                -ms-flex-pack: center;
                justify-content: center;
                position: absolute;
                background: #ffffff;
                box-shadow: 0px 7px 59px 0 rgba(0, 0, 0, 0.1);
                left: 0;
                z-index: 1;
                width: 100%;
                height: auto;
                -webkit-transform: none;
                -ms-transform: none;
                transform: none;
                padding: 15px 10px;
                -webkit-flex-direction: row;
                -ms-flex-direction: row;
                flex-direction: row;
                top: 100%;
            }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text {
                    margin: 0;
                    -webkit-flex-grow: 1;
                    -ms-flex-positive: 1;
                    flex-grow: 1;
                    color: #757575;
                    line-height: normal;
                    -webkit-writing-mode: unset;
                    -ms-writing-mode: unset;
                    writing-mode: unset;
                    -webkit-transform: none;
                    -ms-transform: none;
                    transform: none;
                    font-size: 13px;
                    display: inline;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    text-align: center;
                    margin-top: auto;
                    margin-bottom: auto;
                    padding: 0 5px;
                }

                    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text span {
                        color: #A42039;
                        margin: 0 5px;
                    }

            .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn {
                display: inline-block;
                text-align: center;
                background: none;
                border: 0;
                outline: none !important;
                position: relative;
                cursor: pointer;
            }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn.prev {
                    -webkit-order: -1;
                    -ms-flex-order: -1;
                    order: -1;
                }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:hover i {
                    color: #A42039;
                }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(1) {
                    margin-top: unset;
                }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(2) {
                    margin-top: 0;
                    padding-top: 0;
                }

                    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(2)::before {
                        display: none;
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 15px;
                        width: 70px;
                        height: 1px;
                        background: #efefef;
                    }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn i {
                    color: #d4d4d4;
                    font-size: 1.5em;
                    transition: .1s ease-in-out;
                }

        .hero-wrapper .hero-container .hero-right-carousel {
        }

            .hero-wrapper .hero-container .hero-right-carousel .slick-list,
            .hero-wrapper .hero-container .hero-right-carousel .slick-track {
                height: 100%;
            }

        .hero-wrapper .hero-container .hero-right-carousel-item {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            position: relative;
        }


            .hero-wrapper .hero-container .hero-right-carousel-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

.hero-rectangle {
    position: absolute;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.hero-rectangle--black {
    border-color: #3b3b3b;
}

.hero-rectangle--primary {
}

.hero-rectangle--big {
    width: 165px;
    height: 238px;
    left: -20px;
    top: -25%;
    background-image: url(/assets/img/lale-b.png);
}

.hero-rectangle--small {
    width: 165px;
    height: 238px;
    left: calc(50% - 295px);
    bottom: -25%;
    background-image: url("/assets/img/lale-big.png");
}

.main-box-three-col-section {
    background: #ffffff;
}

.main-box-wrapper {
    background: #fff;
    margin-top: 30px;
    padding: 0 0 30px 0;
}

    .main-box-wrapper.about-us-box {
        margin-top: 0;
        padding-top: 0;
        background: #ffffff;
        margin-bottom: 45px;
    }

        .main-box-wrapper.about-us-box .main-box-right {
            padding-top: 20px;
            padding-left: 15px;
            padding-right: 15px;
        }

            .main-box-wrapper.about-us-box .main-box-right span.subtitle {
                margin-bottom: 25px;
            }

        .main-box-wrapper.about-us-box .main-box-left-figure {
            padding-left: 0;
            margin-left: 0;
            height: 250px;
        }

    .main-box-wrapper.main-box-three-col {
        padding: 0;
        margin-top: 30px;
        padding-bottom: 30px;
    }

        .main-box-wrapper.main-box-three-col > .row {
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .main-box-wrapper.main-box-three-col .main-box-left-figure {
            padding: 0;
            margin: 0;
            height: 300px;
            margin: 25px 0;
        }

        .main-box-wrapper.main-box-three-col .main-box-col {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            padding: 0;
            margin: 0;
        }

            .main-box-wrapper.main-box-three-col .main-box-col.col-right {
                text-align: left;
            }

    .main-box-wrapper .main-box-left {
        position: relative;
    }

        .main-box-wrapper .main-box-left[data-tilt] {
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }

            .main-box-wrapper .main-box-left[data-tilt] .main-box-left-figure {
                -webkit-transform: translateZ(0px);
                transform: translateZ(0px);
            }

            .main-box-wrapper .main-box-left[data-tilt] .main-box-left-box {
                -webkit-transform: translateZ(10px);
                transform: translateZ(10px);
            }

    .main-box-wrapper .main-box-left-figure {
        margin: 0;
        height: 250px;
        padding-left: 0;
    }

        .main-box-wrapper .main-box-left-figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .main-box-wrapper .main-box-left-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        background: #A42039;
        position: relative;
        left: unset;
        top: unset;
        width: calc(100% - 30px);
        height: auto;
        padding: 15px;
        margin: -30px 15px 0 15px;
    }

        .main-box-wrapper .main-box-left-box .underlined-link-wrapper {
            width: 100%;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            margin-top: 30px;
        }

            .main-box-wrapper .main-box-left-box .underlined-link-wrapper .underlined-link {
                font-size: 12px;
                color: #fff;
            }

                .main-box-wrapper .main-box-left-box .underlined-link-wrapper .underlined-link::after {
                    background: #ffffff;
                }

        .main-box-wrapper .main-box-left-box span {
            font-weight: 700;
            line-height: 1.33;
            letter-spacing: 0.6px;
            text-align: left;
            color: #ffffff;
            font-size: 22px;
        }

    .main-box-wrapper .main-box-right {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 15px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .main-box-wrapper .title {
        font-weight: 700;
        color: #08152f;
        line-height: 1.11;
        letter-spacing: .7px;
        margin: 0;
        margin-bottom: 15px;
        font-size: 24px;
    }

    .main-box-wrapper span.subtitle {
        font-size: 14px;
        color: #757575;
        letter-spacing: 2.8px;
        margin-bottom: 25px;
    }

    .main-box-wrapper p.description {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 6px;
        font-family: 'Open Sans',sans-serif;
        color: #222;
    }

    .main-box-wrapper ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
        margin-top: 5px;
    }

        .main-box-wrapper ul li {
            position: relative;
            padding-left: 7px;
        }

            .main-box-wrapper ul li p {
                font-size: 14px;
                font-weight: 400;
                line-height: 20px;
                margin-bottom: 6px;
                font-family: 'Open Sans',sans-serif;
                color: #383737;
            }

                .main-box-wrapper ul li p i {
                    color: #a12038;
                }

            .main-box-wrapper ul li:after {
                left: 0;
                position: absolute;
                top: 0;
                z-index: 99999;
                color: #da0f13;
                font-size: 18px;
            }

    .main-box-wrapper p.description + p {
        margin-top: 12px;
    }

    .main-box-wrapper .main-box-content-figure {
        margin: 0;
        margin-top: 12px;
    }

        .main-box-wrapper .main-box-content-figure img {
            max-width: 100%;
            height: auto;
        }

    .main-box-wrapper .main-box-bottom {
        margin-top: 40px;
        padding: 0 15px;
    }

@supports not ((display: -ms-grid) or (display: grid)) {
    .main-box-wrapper .main-box-bottom {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    @media screen and (min-width: 768px) {
        .main-box-wrapper .main-box-bottom {
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }
    }

    @media screen and (min-width: 992px) {
        .main-box-wrapper .main-box-bottom {
            -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }
    }
}

@supports ((display: -ms-grid) or (display: grid)) {
    .main-box-wrapper .main-box-bottom {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-column-gap: 90px;
        grid-row-gap: 30px;
    }
}

.main-box-wrapper .main-box-bottom-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .main-box-wrapper .main-box-bottom-item {
        width: 100%;
    }

    @media screen and (min-width: 768px) {
        .main-box-wrapper .main-box-bottom-item {
            width: 48%;
        }

            .main-box-wrapper .main-box-bottom-item:not(:last-of-type) {
                margin-bottom: 30px;
            }
    }

    @media screen and (min-width: 992px) {
        .main-box-wrapper .main-box-bottom-item {
            width: unset;
        }

            .main-box-wrapper .main-box-bottom-item:not(:last-of-type) {
                margin-bottom: unset;
            }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .main-box-wrapper .main-box-bottom-item + .main-box-bottom-item {
        margin-top: 30px;
    }

    @media screen and (min-width: 768px) {
        .main-box-wrapper .main-box-bottom-item + .main-box-bottom-item {
            margin-top: 0;
        }
    }
}

.main-box-wrapper .main-box-bottom-item span.title {
    display: block;
    font-size: 14px;
    letter-spacing: 2.8px;
    font-weight: 700;
    color: #050505;
    line-height: 1;
    margin-bottom: 15px;
}

.main-box-wrapper .main-box-bottom-item p.description {
    font-size: 14px;
    color: #757575;
    font-weight: 300;
    margin: 0;
    line-height: 1.7;
}

.services {
    background: #fff;
    background-image: url("../img/services_bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 35px;
}

.services-circle {
    display: block;
    border-radius: 50%;
    position: relative;
    width: 80%;
    height: 0;
    padding-bottom: 80%;
    margin: 70px auto;
    border: 1px solid #e1e1e1;
    box-sizing: content-box;
}

    .services-circle::before,
    .services-circle::after {
        display: none;
        content: '';
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border: 1px solid #e1e1e1;
        border-radius: 50%;
    }

    .services-circle::before {
        width: 450px;
        height: 450px;
        opacity: .6;
    }

    .services-circle::after {
        width: 550px;
        height: 550px;
        opacity: .4;
    }

.services-subcircle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    margin: auto;
    color: #fff;
    box-shadow: 0px 11px 18px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 50%;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

    .services-subcircle i {
        font-size: 1.8em;
        color: #a5a5a5;
    }

    .services-subcircle:hover,
    .services-subcircle.active {
        box-shadow: 0px 11px 13px 0 rgba(31, 136, 104, 0.4);
        background-color: #A42039;
    }

        .services-subcircle:hover i,
        .services-subcircle.active i {
            color: #fff;
        }

.services-content-wrapper {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    padding: 0 65px;
}

.services-content-item {
    display: none;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 2;
}

    .services-content-item.active {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-animation: focus-in-contract 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        animation: focus-in-contract 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
        animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    }

    .services-content-item span.title {
        font-weight: 900;
        letter-spacing: 3.2px;
        color: #A42039;
        line-height: normal;
        margin-bottom: 0;
        font-size: 14px;
        text-align: center;
    }

        .services-content-item span.title a {
            color: #A42039;
            font-size: inherit;
        }

    .services-content-item p.description {
        display: none;
        margin: 0;
        color: #757575;
        letter-spacing: .3px;
        line-height: 1.88;
        text-align: center;
        font-size: 12px;
    }

.grid-gallery-wrapper {
    padding: 0 15px;
    width: 100%;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .grid-gallery-wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(180px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        grid-auto-rows: 300px;
        grid-auto-flow: row dense;
        grid-gap: 10px;
    }

    @media (min-width: 450px) {
        .grid-gallery-wrapper {
            -ms-grid-columns: (minmax(180px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }
    }

    @media (min-width: 576px) {
        .grid-gallery-wrapper {
            grid-gap: 15px;
            -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media screen and (min-width: 768px) {
        .grid-gallery-wrapper {
            -ms-grid-columns: (minmax(350px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
    }

    @media screen and (min-width: 992px) {
        .grid-gallery-wrapper {
            -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            grid-gap: 30px;
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .grid-gallery-wrapper {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.gallery-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-decoration: none !important;
    padding: 20px 10px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .gallery-item {
        margin-bottom: 1%;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

        .gallery-item + .gallery-item {
            margin-left: 1%;
        }

        .gallery-item:nth-child(3n + 1) {
            margin-left: 0;
        }
}

.gallery-item:hover::before {
    background-image: linear-gradient(to top, rgba(31, 136, 104, 0.85), rgba(31, 136, 104, 0.85));
}

.gallery-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    transition: .1s ease-in-out;
    z-index: 2;
}

.gallery-item-thumbnail {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
}

    .gallery-item-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-item-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 3;
}

.gallery-item span.title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2.8px;
    line-height: 1;
    margin-bottom: 13px;
}

.gallery-item span.subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #b4b4b4;
    letter-spacing: .3px;
    line-height: 1;
}

.gallery-small-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .gallery-small-item {
        width: 100%;
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .gallery-small-item {
        width: 28%;
        height: 300px;
    }
}

.gallery-big-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .gallery-big-item {
        width: 100%;
        -ms-grid-row-span: 1;
        grid-row-end: span 1;
    }

    @media (min-width: 576px) {
        .gallery-big-item {
            -ms-grid-row-span: 2;
            grid-row-end: span 2;
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .gallery-big-item {
        width: 42%;
        height: 300px;
    }
}

.projects {
    background: #ffffff;
    padding: 30px 0;
}

.projects-wrapper {
    margin-top: 30px;
}

.blog-carousel {
    display: block;
    padding: 30px 0 0 0;
}

.blog-carousel-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-carousel-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    margin-left: 30px;
    position: relative;
    outline: none !important;
    opacity: .5;
    width: 300px;
    height: auto;
    padding-bottom: 30px;
}

    .blog-carousel-item.slick-active {
        opacity: 1;
    }

    .blog-carousel-item::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        background: #A42039;
        transition: .2s ease-in-out;
    }

    .blog-carousel-item.slick-center span.title {
        color: #A42039;
    }

    .blog-carousel-item.slick-center::after {
        height: 5px;
    }

    .blog-carousel-item figure.thumbnail {
        margin: 0;
        width: 100%;
        height: 200px;
    }

        .blog-carousel-item figure.thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.blog-carousel-item-heading {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: -20px;
    padding: 0 70px 0 15px;
}

    .blog-carousel-item-heading .author {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        .blog-carousel-item-heading .author span.name {
            font-size: 12px;
            font-weight: 900;
            color: #050505;
            letter-spacing: .48px;
            margin-left: 10px;
            line-height: 1;
        }

        .blog-carousel-item-heading .author figure.avatar {
            margin: 0;
            width: 50px;
            height: 50px;
        }

            .blog-carousel-item-heading .author figure.avatar img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
                object-fit: cover;
            }

    .blog-carousel-item-heading span.date {
        font-size: 10px;
        color: #a7a7a7;
        letter-spacing: .4px;
        font-weight: 300;
        margin-left: auto;
        line-height: 1;
    }

.blog-carousel-item-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
    padding: 0 15px 0 15px;
}

    .blog-carousel-item-content span a {
        font-size: 14px;
        color: #050505;
        letter-spacing: 2.8px;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1;
    }

    .blog-carousel-item-content p {
        margin: 0;
        font-size: 13px;
        font-weight: 300;
        color: #757575;
        letter-spacing: .28px;
        margin-top:15px;
    }

    .blog-carousel-item-content .more-link {
        font-size: 14px;
        font-weight: 300;
        color: #808080;
        letter-spacing: 1px;
        text-decoration: none !important;
        outline: none !important;
        margin-top: 30px;
        display: block;
        font-weight: 500;
    }

        .blog-carousel-item-content .more-link:hover {
            color: #818181;
        }

.references {
    background: #A42039;
    position: relative;
    z-index: 77;
    padding: 30px 0 0 0;
    margin-top: 30px;
}

.references-wrapper {
    margin-top: 30px;
    margin-bottom: -30px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
    margin-left: 0;
}

@supports ((display: -ms-grid) or (display: grid)) {
    @media (min-width: 576px) {
        .references-wrapper {
            width: calc(100% + 30px);
            margin-left: -15px;
        }
    }

    @media screen and (min-width: 768px) {
        .references-wrapper {
            width: 100%;
            margin-left: 0;
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: (1fr)[4];
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 15px;
            margin-top: 65px;
        }
    }

    @media screen and (min-width: 992px) {
        .references-wrapper {
            -ms-grid-columns: (1fr)[4];
            grid-template-columns: repeat(4, 1fr);
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    @media (min-width: 576px) {
        .references-wrapper {
            width: calc(100% + 30px);
            margin-left: -15px;
        }
    }

    @media screen and (min-width: 768px) {
        .references-wrapper {
            width: 100%;
            margin-left: 0;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }
    }
}

.references-item {
    display: block;
    height: 165px;
    background: #fff;
    border-radius: 4px;
    margin-right: 0px;
    margin-left: 0px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .references-item {
        width: 100%;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .references-item {
        width: 170px;
    }

    @media screen and (min-width: 992px) {
        .references-item {
            width: 220px;
        }
    }
}

.references-item:hover img {
    -webkit-filter: none;
    filter: none;
}

.references-item figure {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

    .references-item figure img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

.responsive-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(87deg, rgba(31, 136, 104, 0.95), rgba(17, 103, 77, 0.95));
    z-index: 99;
    padding: 15px 0;
    overflow-y: scroll;
}

    .responsive-menu::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/menumap.png");
        background-repeat: no-repeat;
        background-position: 30% center;
        opacity: 0.1;
    }

    .responsive-menu.active {
        display: block;
        -webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
        animation: fade-in-fwd 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    }

.responsive-menu-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px 0 50px 0;
    padding-right: 20px;
    float: right;
}

    .responsive-menu-header a.logo {
        display: block;
    }

.responsive-menu-figure {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100vh;
    margin: 0;
}

    .responsive-menu-figure img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

.responsive-menu ul.responsive-menu-links {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-y: scroll;
}

    .responsive-menu ul.responsive-menu-links .responsive-menu-link {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        cursor: pointer;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children {
            position: relative;
            overflow: hidden;
        }

            .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children > a:after {
                content: '\f107';
                position: absolute;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                color: #fff;
                right: 15px;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                font-size: 1.3em;
                transition: .3s ease-in-out;
            }

            .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children > a.menu-opened::after {
                -webkit-transform: translateY(-50%) rotate(-180deg);
                -ms-transform: translateY(-50%) rotate(-180deg);
                transform: translateY(-50%) rotate(-180deg);
            }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link + li {
            margin-top: 10px;
        }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link.active > a {
            border-color: #fff;
        }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link a {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            width: 100%;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 3.2px;
            position: relative;
            line-height: 1;
            text-decoration: none;
            color: #fff;
            padding: 10px 20px;
            border: 3px solid transparent;
        }

            .responsive-menu ul.responsive-menu-links .responsive-menu-link a:hover {
                border-color: #ffffff;
            }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks {
            display: none;
            margin: 15px 0;
            margin-left: 35px;
            list-style: none;
        }

    .responsive-menu ul.responsive-menu-links .mega-menu .responsive-menu-link .responsive-menu-sublinks {
        margin-left: 0px;
    }

    .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks.submenu-show {
        display: block;
        -webkit-animation: slide-in-top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        animation: slide-in-top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    }

    .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks a {
        border-width: 1px;
        position: relative;
        font-weight: normal;
        line-height: 1.3;
    }

        .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks a::before {
            content: '';
            position: absolute;
            left: 15px;
            top: calc(50% + 3px);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background: #ffffff;
            font-size: 3px;
            width: 1em;
            height: 1em;
            border-radius: 50%;
        }

.main-hero {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -50px;
    height: 200px;
}

.main-hero-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

    .main-hero-content span.main-hero-subtitle {
        font-size: 14px;
        color: #787878;
        letter-spacing: 2.8px;
        line-height: 1.79;
    }

    .main-hero-content span.main-hero-title {
        font-size: 20px;
        margin-bottom: 25px;
        margin-top: 25px;
        color: #A42039;
        letter-spacing: 1.4px;
        text-align: center;
        font-weight: 900;
    }

        .main-hero-content span.main-hero-title .keyword {
            color: #050505;
        }

    .main-hero-content .main-hero-breadcrumb {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .main-hero-content .main-hero-breadcrumb-item {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
        color: #222;
        letter-spacing: .28px;
        line-height: 1;
        position: relative;
        text-decoration: none;
    }

}

.main-hero-content .main-hero-breadcrumb-item:hover {
    color: #424242;
}

.main-hero-content .main-hero-breadcrumb-item + .main-hero-breadcrumb-item {
    margin-left: 20px;
}

    .main-hero-content .main-hero-breadcrumb-item + .main-hero-breadcrumb-item::before {
        content: '|';
        -webkit-transform: translateX(calc(-50% - 10px));
        -ms-transform: translateX(calc(-50% - 10px));
        transform: translateX(calc(-50% - 10px));
        left: 0;
        position: absolute;
        pointer-events: none;
        color: #757575 !important;
    }

.main-hero-rectangle {
    display: none;
    position: absolute;
}

    .main-hero-rectangle.main-hero-rectangle--big {
        left: 20px;
        top: 20px;
        width: 113px;
        height: 163px;
        background-image: url("/assets/img/lale.png");
    }

    .main-hero-rectangle.main-hero-rectangle--small {
        right: 110px;
        bottom: 20px;
        width: 113px;
        height: 163px;
        background-image: url("/assets/img/lale.png");
    }

.nav-tabs-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 75;
    width: 100%;
    height: auto;
    overflow: visible;
}

    .nav-tabs-wrapper .mobile-tab-toggle {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 65px;
        background: #fff;
        border-top: 1px solid #e9e9e9;
        position: relative;
        z-index: 2;
    }

    .nav-tabs-wrapper .mobile-tab-toggle-btn {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-width: 1px;
        border-style: solid;
        border-color: #A42039;
    }

        .nav-tabs-wrapper .mobile-tab-toggle-btn i {
            font-size: 1em;
            color: #A42039;
        }

        .nav-tabs-wrapper .mobile-tab-toggle-btn.hide-tab {
            display: none;
        }

.nav.nav-tabs {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    background: #ffffff;
    width: 100%;
    border: 0;
    height: 130px;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-shadow: none;
    transition: .2s ease-in-out;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    overflow-y: scroll;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 1;
}

    .nav.nav-tabs + .mobile-tab-toggle .mobile-tab-toggle-btn.open-tab {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .nav.nav-tabs + .mobile-tab-toggle .mobile-tab-toggle-btn.hide-tab {
        display: none;
    }

    .nav.nav-tabs.show-me {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

        .nav.nav-tabs.show-me + .mobile-tab-toggle .mobile-tab-toggle-btn.open-tab {
            display: none;
        }

        .nav.nav-tabs.show-me + .mobile-tab-toggle .mobile-tab-toggle-btn.hide-tab {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

    .nav.nav-tabs .nav-link.nav-item {
        display: block;
        padding: 0;
        margin: 0;
        border-radius: 0;
        font-size: 14px;
        font-weight: 700;
        color: #050505;
        letter-spacing: 2.8px;
        line-height: 1;
        border: 0;
        position: relative;
        padding: 10px 15px;
        border: 1px solid transparent;
        white-space: nowrap;
        text-overflow: unset;
        height: 35px;
        text-align: center;
    }

        .nav.nav-tabs .nav-link.nav-item + .nav-link.nav-item {
            margin-left: 0;
            margin-top: 5px;
        }

        .nav.nav-tabs .nav-link.nav-item.active {
            color: #A42039;
            border-color: #A42039;
        }

            .nav.nav-tabs .nav-link.nav-item.active::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -20px;
                width: 26%;
                height: 1px;
                background: #A42039;
                display: none;
            }

.tab-content .active {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.project-list .grid-gallery-wrapper {
    margin-top: 30px;
}

.app-pagination {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

ul.pagination {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    border-radius: 0;
    margin-bottom: 35px;
    margin-top:35px;
}

    ul.pagination .page-item {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: auto;
        height: 35px;
        background: none;
        outline: none !important;
        border: 2px solid transparent;
    }

        ul.pagination .page-item .page-link {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            outline: none !important;
            box-shadow: none !important;
            padding: 0 5px;
            width: 100%;
            height: 100%;
            font-size: 12px;
            font-weight: 700;
            color: #aaaaaa;
            letter-spacing: .24px;
            line-height: 1;
            background: none;
            border: 0;
            border-radius: 0;
        }

            ul.pagination .page-item .page-link:hover {
                color: #1a1a1a;
            }

        ul.pagination .page-item.pagination-navigation a {
            color: #1a1a1a;
        }

        ul.pagination .page-item.disabled a {
            opacity: .5;
            pointer-events: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        ul.pagination .page-item + .page-item {
            margin-left: 5px;
        }

        ul.pagination .page-item.active {
            border-color: #A42039;
        }

            ul.pagination .page-item.active .page-link {
                color: #A42039;
            }

.article-container {
    display: block;
    background: #fff;
    width: 100%;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    -ms-box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    -o-box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.2);
}

    .article-container.project-detail-article .article-thumbnail-wrapper {
        height: 300px;
    }

        .article-container.project-detail-article .article-thumbnail-wrapper .article-thumbnail-info {
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-align-items: flex-start;
            -ms-flex-align: start;
            align-items: flex-start;
        }

            .article-container.project-detail-article .article-thumbnail-wrapper .article-thumbnail-info span.article-title {
                font-size: 14px;
                font-weight: 700;
                color: #ffffff;
                letter-spacing: 2.8px;
                line-height: 1;
                margin-bottom: 13px;
            }

            .article-container.project-detail-article .article-thumbnail-wrapper .article-thumbnail-info span.article-subtitle {
                font-size: 14px;
                font-weight: 300;
                color: #b4b4b4;
                letter-spacing: .28px;
            }

    .article-container.project-detail-article .article-content {
        padding-top: 30px;
    }

    .article-container .article-sharebox {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        border-bottom: 1px solid #f7f7f7;
        padding: 15px;
    }

        .article-container .article-sharebox span.title {
            font-size: 12px;
            font-weight: 700;
            outline-color: #252525;
            letter-spacing: .48px;
        }

    .article-container .article-sharebox-links {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .article-container .article-sharebox-links .article-sharebox-link {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none;
        }

            .article-container .article-sharebox-links .article-sharebox-link i {
                color: #252525;
                font-size: .8em;
            }

            .article-container .article-sharebox-links .article-sharebox-link + .article-sharebox-link {
                margin-left: 15px;
            }

            .article-container .article-sharebox-links .article-sharebox-link:hover i {
                color: #A42039;
            }

    .article-container .article-thumbnail-wrapper {
        width: 100%;
        height: 300px;
        position: relative;
    }

        .article-container .article-thumbnail-wrapper figure.article-thumbnail {
            margin: 0;
            position: relative;
            height: 100%;
        }

            .article-container .article-thumbnail-wrapper figure.article-thumbnail::before {
                content: '';
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            }

            .article-container .article-thumbnail-wrapper figure.article-thumbnail img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .article-container .article-thumbnail-wrapper .article-thumbnail-info {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 20px;
            padding: 0 15px;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-align-items: flex-start;
            -ms-flex-align: start;
            align-items: flex-start;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

.article-author {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none !important;
}

    .article-author figure {
        margin: 0;
        width: 50px;
        height: 50px;
        margin-right: 18px;
    }

        .article-author figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

    .article-author .name {
        font-size: 12px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: .48px;
        line-height: 1;
        text-decoration: none !important;
    }

.article-container .article-thumbnail-wrapper .article-thumbnail-info span.article-date {
    font-size: 11px;
    font-weight: 700;
    color: #cacaca;
    letter-spacing: 2.2px;
    margin-top: 20px;
    margin-left: 5px;
}

.article-container .article-content {
    display: block;
    padding: 30px 15px;
    margin-bottom: 25px;
}

    .article-container .article-content .article-date {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #757575;
        letter-spacing: 2.4px;
        margin-bottom: 30px;
        line-height: 1;
    }

    .article-container .article-content h1.article-title {
        font-weight: 800;
        border-bottom: 1px dotted rgb(17, 105, 168);
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 20px;
        color: #A42039;
        text-transform: uppercase;
    }

    .article-container .article-content h1.article-title2 {
        font-weight: 800;
        font-size: 20px;
        color: #2b454e;
        text-transform: uppercase;
    }

    .article-container .article-content p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 15px;
        font-family: 'Open Sans',sans-serif;
        color: #222;
    }

    .article-container .article-content p {
        margin-bottom: 15px;
    }

    .article-container .article-content h3 {
        font-weight: 500;
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 16px;
        color: #414141;
    }

    .article-container .article-content p:last-of-type {
        margin-bottom: 0px;
    }

    .article-container .article-content .article-infos {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 30px;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .article-container .article-content .article-infos-item {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .article-container .article-content .article-infos-item + .article-infos-item {
            margin-left: 0;
            margin-top: 15px;
        }

        .article-container .article-content .article-infos-item i {
            color: #A42039;
            font-size: 1.2em;
            margin-right: 10px;
        }

    .article-container .article-content .article-infos-item-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .article-container .article-content .article-infos-item-content .article-tags-item {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 14px;
            font-weight: normal;
            letter-spacing: .28px;
            color: #9d9d9d;
            text-decoration: none !important;
        }

            .article-container .article-content .article-infos-item-content .article-tags-item + a.article-tags-item {
                margin-left: 5px;
            }

            .article-container .article-content .article-infos-item-content .article-tags-item:hover {
                color: #6a6a6a;
            }

.reversed-articlePage {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

    .reversed-articlePage [class*='col']:first-of-type {
        margin-top: 30px;
    }

.app-input {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: inherit;
    height: 50px;
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: normal;
    color: #A42039;
    border-color: transparent;
    border-radius: 0;
    padding: 0 15px;
    position: relative;
}

.app-input-select {
    color: #757575 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.app-input-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #d2d2d2;
    pointer-events: none;
}

.app-input:focus {
    border-color: #A42039;
}

.app-input.app-input--dark {
    background: #393939;
    color: #fff;
}

    .app-input.app-input--dark.placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .app-input.app-input--dark:-moz-placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .app-input.app-input--dark::-moz-placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .app-input.app-input--dark:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .app-input.app-input--dark::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.search-input {
    height: 65px;
    letter-spacing: 1px;
    padding-right: 55px;
}

    .search-input.placeholder {
        color: #919191;
        font-weight: 300;
        letter-spacing: 2.4px;
    }

    .search-input:-moz-placeholder {
        color: #919191;
        font-weight: 300;
        letter-spacing: 2.4px;
    }

    .search-input::-moz-placeholder {
        color: #919191;
        font-weight: 300;
        letter-spacing: 2.4px;
    }

    .search-input:-ms-input-placeholder {
        color: #919191;
        font-weight: 300;
        letter-spacing: 2.4px;
    }

    .search-input::-webkit-input-placeholder {
        color: #919191;
        font-weight: 300;
        letter-spacing: 2.4px;
    }

.search-input-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.search-input-submit {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    position: absolute;
    color: #b5b5b5;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    z-index: 1;
    cursor: pointer;
}

    .search-input-submit:hover {
        color: #828282;
    }

textarea.app-input {
    resize: none;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 90px;
}

    textarea.app-input.placeholder {
        color: #757575;
        font-weight: 300;
    }

    textarea.app-input:-moz-placeholder {
        color: #757575;
        font-weight: 300;
    }

    textarea.app-input::-moz-placeholder {
        color: #757575;
        font-weight: 300;
    }

    textarea.app-input:-ms-input-placeholder {
        color: #757575;
        font-weight: 300;
    }

    textarea.app-input::-webkit-input-placeholder {
        color: #757575;
        font-weight: 300;
    }

@supports not ((display: -ms-grid) or (display: grid)) {
    body.no-scroll .page-aside-widget,
    body.no-scroll .main-box-left-box,
    body.no-scroll .contact-page-wrapper,
    body.no-scroll .references {
        opacity: 0;
        transition-delay: unset;
    }

    @media screen and (min-width: 768px) {
        body.no-scroll .page-aside-widget,
        body.no-scroll .main-box-left-box,
        body.no-scroll .contact-page-wrapper,
        body.no-scroll .references {
            transition-delay: .1s;
        }
    }
}

.page-aside {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
}

.page-aside-widget {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #fff;
}

    .page-aside-widget + .page-aside-widget {
        margin-top: 30px;
    }

    .page-aside-widget.flat-widget span.page-aside-widget-title {
        color: #252525;
        height: auto;
        border: 0;
        padding-left: 30px;
        padding-bottom: 15px;
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 2px solid #eeeeee;
        font-size: 15px;
    }

        .page-aside-widget.flat-widget span.page-aside-widget-title::before {
            display: none;
        }

.page-aside-widget-title {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 65px;
    font-size: 14px;
    font-weight: 700;
    color: #A42039 !important;
    padding: 0 10px 0 20px;
    position: relative;
    border-bottom: 1px solid #f7f7f7;
    text-transform:uppercase;
}

    .page-aside-widget-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 2px;
        background: #A42039 !important;
    }

.page-aside-widget .page-aside-menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

    .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        border: 0;
        margin-top: 30px;
        padding-left: 30px;
        border-bottom: 1px solid #eeeeee;
    }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link:first-child {
            margin-top: 25px;
        }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link:last-child {
            margin-bottom: 25px;
        }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link:hover {
            background-image: none;
            border: 0;
        }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link span.title {
            font-size: 12px;
            font-weight: 700;
            color: #252525;
            letter-spacing: 2.4px;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link span.subtitle {
            font-size: 14px;
            color: #757575;
            letter-spacing: .56px;
            line-height: 1.2;
            font-weight: normal;
        }

.page-aside-widget .page-aside-menu-link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 35px;
    text-decoration: none !important;
    padding: 0 10px 0 20px;
    border-left: 2px solid transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

    .page-aside-widget .page-aside-menu-link + .page-aside-menu-link {
        border-top: 1px solid #f7f7f7;
    }

    .page-aside-widget .page-aside-menu-link:hover {
        background-image: linear-gradient(to right, #ffffff, #f7f7fd);
        border-left: 2px solid #e5e5e5;
    }

    .page-aside-widget .page-aside-menu-link span.category-item-title {
        display: block;
        max-width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        font-size: 12px;
        font-weight: 500;
        color: #191919;
        letter-spacing: .56px;
    }

    .page-aside-widget .page-aside-menu-link span.category-item-count {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background: #f7f7fd;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 10px;
        color: rgba(37, 37, 37, 0.47);
        margin-left: auto;
    }

.page-aside-widget .page-aside-posts {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .page-aside-widget .page-aside-posts .page-aside-post {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 15px;
        border-left: 2px solid transparent;
        text-decoration: none !important;
    }

        .page-aside-widget .page-aside-posts .page-aside-post:hover {
            background-image: linear-gradient(to right, #ffffff, #f7f7fd);
            border-left: 2px solid #e5e5e5;
        }

    .page-aside-widget .page-aside-posts .page-aside-post-thumbnail {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        width: 100px;
        height: 90px;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 10px;
    }

        .page-aside-widget .page-aside-posts .page-aside-post-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .page-aside-widget .page-aside-posts .page-aside-post-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .page-aside-widget .page-aside-posts .page-aside-post-content span.page-aside-post-title {
            font-size: 14px;
            font-weight: 300;
            color: #252525;
            letter-spacing: .56px;
        }

        .page-aside-widget .page-aside-posts .page-aside-post-content span.page-aside-post-date {
            font-size: 10px;
            color: #aaaaaa;
            letter-spacing: .4px;
            margin-top: 10px;
        }

    .page-aside-widget .page-aside-posts .page-aside-post + .page-aside-post {
        border-top: 1px solid #f7f7f7;
    }

.page-aside-widget .page-aside-carousel {
    position: relative;
}

.page-aside-widget .page-aside-carousel-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 15px 20px;
    outline: none !important;
    height: 250px;
}

    .page-aside-widget .page-aside-carousel-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

.page-aside-widget .page-aside-carousel-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2.8px;
    margin-bottom: 10px;
    z-index: 1;
    line-height: 1.2;
}

.page-aside-widget .page-aside-carousel-item-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #b4b4b4;
    letter-spacing: .28px;
    z-index: 1;
    line-height: 1.2;
}

.page-aside-widget .page-aside-carousel-nav-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .page-aside-widget .page-aside-carousel-nav-wrapper button.page-aside-carousel-nav {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 36px;
        height: 36px;
        background: none;
        border: 3px solid #ffffff;
        border-radius: 0;
        cursor: pointer;
        transition: .1s ease-in-out;
        outline: none !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

        .page-aside-widget .page-aside-carousel-nav-wrapper button.page-aside-carousel-nav i {
            display: block;
            margin: 0 auto;
            font-size: 1.5em;
            color: #ffffff;
            transition: .1s ease-in-out;
        }

        .page-aside-widget .page-aside-carousel-nav-wrapper button.page-aside-carousel-nav + .page-aside-carousel-nav {
            margin-top: 13px;
        }

        .page-aside-widget .page-aside-carousel-nav-wrapper button.page-aside-carousel-nav:hover {
            background: #ffffff;
        }

            .page-aside-widget .page-aside-carousel-nav-wrapper button.page-aside-carousel-nav:hover i {
                color: #969696;
            }

.page-aside-widget .page-aside-map {
    border: 0;
    width: 100%;
    height: 290px;
}

.page-aside-widget .page-aside-userbox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px 20px 20px;
}

.page-aside-widget .page-aside-userbox-avatar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: 70px;
    height: auto;
}

    .page-aside-widget .page-aside-userbox-avatar img {
        max-width: 100%;
        height: auto;
    }

.page-aside-widget .page-aside-userbox-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 12px;
    padding-top: 5px;
}

    .page-aside-widget .page-aside-userbox-content span.title {
        font-size: 9px;
        font-weight: 700;
        color: #cacaca;
        letter-spacing: 1.8px;
        margin-bottom: 10px;
    }

    .page-aside-widget .page-aside-userbox-content a.name {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .28px;
        color: #252525;
        margin-bottom: 15px;
        line-height: 1.2;
        text-decoration: none;
    }

.page-aside-widget .page-aside-userbox-socials {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .page-aside-widget .page-aside-userbox-socials a.page-aside-userbox-social-link {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
    }

        .page-aside-widget .page-aside-userbox-socials a.page-aside-userbox-social-link:hover i {
            color: #A42039;
        }

        .page-aside-widget .page-aside-userbox-socials a.page-aside-userbox-social-link i {
            color: #c7c7c8;
            font-size: .8em;
        }

        .page-aside-widget .page-aside-userbox-socials a.page-aside-userbox-social-link + a {
            margin-left: 10px;
        }

.small-article-box {
    border-bottom: 2px solid #a01f38;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #ffffff;
    margin-top: 45px;
}

    .small-article-box:hover {
        border-bottom: 2px solid #222;
    }

        .small-article-box:hover .small-article-thumbnail {
            opacity: 1;
        }

        .small-article-box:hover span.small-article-title {
            color: #222;
        }

        .small-article-box:hover .small-article-btn {
            background: #A42039;
        }

    .small-article-box .small-article-thumbnail {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        z-index: 1;
        transition: .2s ease-in-out;
        opacity: 1;
    }

        .small-article-box .small-article-thumbnail::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .small-article-box .small-article-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .small-article-box .small-article-btn {
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        position: absolute;
        top: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 2;
        background: #A42039;
    }

    .small-article-box.prev .small-article-btn {
        left: auto;
    }

    .small-article-box.next .small-article-btn {
        right: auto;
    }

    .small-article-box span.small-article-date {
        font-size: 12px;
        font-weight: 700;
        color: #cacaca;
        letter-spacing: 2.4px;
        z-index: 2;
    }

    .small-article-box span.small-article-title {
        font-size: 20px;
        font-weight: normal;
        letter-spacing: .4px;
        line-height: 1.5;
        text-align: center;
        margin-top: 15px;
        z-index: 2;
        color: #222;
    }

    .small-article-box span.small-article-text {
        font-size: 12px;
        font-weight: normal;
        letter-spacing: .4px;
        line-height: 1.5;
        margin-top: 25px;
        z-index: 2;
        color: #222;
        text-align: left;
        margin-left: 15px;
        margin-bottom: 15px;
        margin-right: 15px;
    }

.author-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #ffffff;
    min-height: 170px;
    margin-top: 30px;
    padding: 20px 10px;
    position: relative;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .author-box::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #A42039;
    }

.author-box-avatar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: 100px;
    height: 100px;
    margin-right: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .author-box-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-box-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

    .author-box-content .author-box-title {
        font-size: 17px;
        color: #a32039;
        letter-spacing: 0.2px;
        line-height: 1;
        margin-bottom: 10px;
        text-align: center;
    }

    .author-box-content .author-box-name {
        font-size: 14px;
        font-weight: 700;
        color: #242424;
        letter-spacing: 1.4px;
        line-height: 1;
        margin-bottom: 12px;
        text-decoration: none !important;
    }

    .author-box-content .author-box-description {
        font-size: 14px;
        font-weight: 300;
        color: #757575;
        letter-spacing: .28px;
        line-height: 1.5;
        margin: 0;
        margin-bottom: 12px;
        text-align: center;
    }

    .author-box-content .author-box-socials {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .author-box-content .author-box-socials .author-box-social-link {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            text-decoration: none !important;
        }

            .author-box-content .author-box-socials .author-box-social-link:hover i {
                color: #929294;
            }

            .author-box-content .author-box-socials .author-box-social-link + .author-box-social-link {
                margin-left: 15px;
            }

            .author-box-content .author-box-socials .author-box-social-link i {
                color: #b9b9ba;
            }

.blog-list-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
    background: #ffffff;
}

    .blog-list-item + .blog-list-item {
        margin-top: 30px;
    }

    .blog-list-item:hover .blog-list-item-right::after {
        height: 5px;
    }

    .blog-list-item:hover .blog-list-item-title,
    .blog-list-item:hover .blog-list-item-link {
        color: #A42039;
    }

.blog-list-item-left {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    min-height: unset;
    height: 200px;
}

    .blog-list-item-left .blog-list-item-thumbnail {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        width: 100%;
        height: 100%;
        position: relative;
    }

        .blog-list-item-left .blog-list-item-thumbnail::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }

        .blog-list-item-left .blog-list-item-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .blog-list-item-left .article-author {
        position: absolute;
        left: 15px;
        bottom: 30px;
    }

.blog-list-item-right {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    position: relative;
    height: unset;
}

    .blog-list-item-right::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        background: #A42039;
        transition: .1s ease-in-out;
    }

    .blog-list-item-right .blog-list-item-title {
        font-size: 14px;
        font-weight: 700;
        color: #272729;
        letter-spacing: 1.2px;
        margin-bottom: 15px;
        line-height: normal;
        text-decoration: none;
        text-transform:uppercase;
    }

    .blog-list-item-right span.blog-list-item-date {
        font-size: 12px;
        font-weight: 300;
        color: #a7a7a7;
        letter-spacing: .48px;
        line-height: 1;
        margin-bottom: 15px;
    }

    .blog-list-item-right p.blog-list-item-description {
        font-size: 13px;
        font-weight: 300;
        color: #757575;
        letter-spacing: .28px;
        line-height: 1.71;
        margin: 0;
        margin-bottom: 20px;
        max-height: 250px;
    }

    .blog-list-item-right a.blog-list-item-link {
        display: block;
        font-size: 10px;
        font-weight: 300;
        color: #a7a7a7;
        letter-spacing: 2px;
        line-height: 1;
        text-decoration: none;
    }

.blog-list-item-sm-wrapper {
    margin-bottom: 15px;
}

    .blog-list-item-sm-wrapper:nth-last-child(1) {
        margin-bottom: 0;
    }

    .blog-list-item-sm-wrapper:nth-last-child(2) {
        margin-bottom: 15px;
    }

    .blog-list-item-sm-wrapper .blog-list-item.sm .article-author {
        left: 15px;
    }

.comment-box {
    background: #ffffff;
    min-height: auto;
    padding: 20px 10px;
    margin-top: 30px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .comment-box {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 66px 1fr;
        grid-template-columns: 66px 1fr;
        grid-column-gap: 15px;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.comment-box.reply-comment {
    margin-left: 30px;
}

.comment-box figure.comment-box-avatar {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    width: 66px;
    height: 72px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

    .comment-box figure.comment-box-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.comment-box-content {
    display: -ms-grid;
    display: grid;
    padding-top: 0;
    margin-top: 30px;
    grid-column: -1 / 1;
    -ms-grid-row: 4;
    grid-row-start: 4;
    margin-left: -81px;
}

.comment-box-content-head {
    padding-top: 5px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .comment-box-content-head {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 5px;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box-content-head {
        margin-left: 15px;
    }
}

.comment-box-content-head .user-name {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-row-gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #242424;
    letter-spacing: 1.4px;
    line-height: 1;
    grid-column: -1 / 1;
    height: 20px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box-content-head .user-name {
        display: block;
        width: 100%;
        margin-top: 25px;
    }
}

.comment-box-content-head .user-role {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    color: #A42039;
    margin-left: 0;
    margin-bottom: -9px;
}

.comment-box-content-head span.date {
    font-size: 12px;
    font-weight: 700;
    color: #cacaca;
    letter-spacing: .24px;
    line-height: 1;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box-content-head span.date {
        display: block;
        float: left;
    }
}

.comment-box-content-head a.comment-reply-link {
    font-size: 11px;
    font-weight: 700;
    color: #cacaca;
    letter-spacing: .22px;
    line-height: 1;
    text-decoration: none;
    text-align: right;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box-content-head a.comment-reply-link {
        display: block;
        float: right;
    }
}

.comment-box-content-head a.comment-reply-link:hover {
    color: #979797;
}

.comment-box-content p.comment-box-comment {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    color: #757575;
    letter-spacing: .28px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .comment-box-content p.comment-box-comment {
        display: block;
        float: left;
        margin-top: 13px;
    }
}

.comment-box-content p.comment-box-comment + p.comment-box-comment {
    margin-top: 15px;
}

.comment-form {
    display: block;
    margin: 0;
    margin-top: 65px;
}

    .comment-form input {
        margin-bottom: 15px;
    }

    .comment-form button[type="submit"] {
        margin-left: auto;
        width: 100%;
        margin-top: 15px;
    }

.contact-form-box-container {
    left: 0;
    right: 0;
    bottom: 0;
    position: relative;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    z-index: 4;
}

.contact-page-box {
    background: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 4;
    padding: 30px 15px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .contact-page-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@supports ((display: -ms-grid) or (display: grid)) {
    .contact-page-box {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-gap: 20px;
    }

    @media (min-width: 576px) {
        .contact-page-box {
            -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
    }
}

.contact-page-box.contact-form-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    position: relative;
    padding: 40px 15px;
}

    .contact-page-box.contact-form-box.form-active {
        padding: 40px 15px 65px 15px;
    }

        .contact-page-box.contact-form-box.form-active i.close-form {
            display: -webkit-flex !important;
            display: -ms-flexbox !important;
            display: flex !important;
        }

        .contact-page-box.contact-form-box.form-active i.open-form {
            display: none !important;
        }

        .contact-page-box.contact-form-box.form-active div.contact-form {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-animation: scale-in-ver-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            animation: scale-in-ver-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

        .contact-page-box.contact-form-box.form-active span.contact-form-title {
            text-align: center;
            -webkit-animation: scale-in-ver-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            animation: scale-in-ver-top 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
        }

    .contact-page-box.contact-form-box span.contact-form-box-pulse {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        top: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 67px;
        height: 67px;
        border-radius: 50%;
        background: #A42039;
        box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.32);
        cursor: pointer;
        right: 0;
        z-index: 4;
    }

        .contact-page-box.contact-form-box span.contact-form-box-pulse::before,
        .contact-page-box.contact-form-box span.contact-form-box-pulse::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            border: 2px solid transparent;
            border-radius: 50%;
            -webkit-animation: pulse 3s;
            animation: pulse 3s;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            z-index: -1;
        }

        .contact-page-box.contact-form-box span.contact-form-box-pulse::before {
            width: 87px;
            height: 87px;
            border-color: rgba(31, 136, 104, 0.6);
        }

        .contact-page-box.contact-form-box span.contact-form-box-pulse::after {
            width: 113px;
            height: 113px;
            border-color: rgba(31, 136, 104, 0.2);
        }

        .contact-page-box.contact-form-box span.contact-form-box-pulse i {
            color: #fff;
            font-size: 2em;
        }

            .contact-page-box.contact-form-box span.contact-form-box-pulse i.close-form {
                display: none;
            }

            .contact-page-box.contact-form-box span.contact-form-box-pulse i.open-form {
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
            }

    .contact-page-box.contact-form-box div.contact-form {
        display: none;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
        margin-top: 30px;
        padding: 0;
    }

        .contact-page-box.contact-form-box div.contact-form .contact-form-input-row {
            width: 100%;
            -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            position: relative;
        }

            .contact-page-box.contact-form-box div.contact-form .contact-form-input-row + .contact-form-input-row {
                margin-left: 0;
                margin-top: 15px;
            }

            .contact-page-box.contact-form-box div.contact-form .contact-form-input-row.contact-form-textarea {
                margin-left: 0 !important;
                width: 100%;
                margin-top: 15px !important;
            }

                .contact-page-box.contact-form-box div.contact-form .contact-form-input-row.contact-form-textarea textarea {
                    height: 250px;
                }

        .contact-page-box.contact-form-box div.contact-form input,
        .contact-page-box.contact-form-box div.contact-form select,
        .contact-page-box.contact-form-box div.contact-form textarea {
            border: 1px solid #ececec;
        }

            .contact-page-box.contact-form-box div.contact-form input:focus,
            .contact-page-box.contact-form-box div.contact-form select:focus,
            .contact-page-box.contact-form-box div.contact-form textarea:focus {
                border-color: #A42039;
            }

                .contact-page-box.contact-form-box div.contact-form textarea:focus + button[type="submit"] {
                    border-color: #A42039;
                }

    .contact-page-box.contact-form-box button.contact-form-submit {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        border: 1px solid #ececec;
        background: #ffffff;
        width: 57px;
        height: 57px;
        border-radius: 50%;
        position: absolute;
        right: 6px;
        bottom: 0;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        transform: translateY(50%);
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
        transition: border-color .15s ease-in-out;
    }

        .contact-page-box.contact-form-box button.contact-form-submit i {
            display: block;
            margin: 0 auto;
            color: #A42039;
            font-size: 2em;
        }

    .contact-page-box.contact-form-box span.contact-form-title {
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 700;
        color: #050505;
        letter-spacing: 2.8px;
        transition: 5s;
        text-align: left;
    }

.contact-page-list-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    border-width: 2px;
    border-style: solid;
    border-color: #A42039;
    padding: 20px 15px;
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .contact-page-list-item {
        width: 49%;
    }

        .contact-page-list-item + .contact-page-list-item {
            margin-left: 2%;
        }

        .contact-page-list-item:not(:nth-child(-n+2)) {
            margin-top: 20px;
        }

        .contact-page-list-item:nth-child(2n+1) {
            margin-left: 0;
        }
}

.contact-page-list-item::before,
.contact-page-list-item::after {
    display: inline-block;
    content: '';
    position: absolute;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.contact-page-list-item::before {
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
}

.contact-page-list-item::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.contact-page-list-item .list-item-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1.79;
    margin-bottom: 10px;
    color: #A42039;
}

.contact-page-list-item .list-item-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #757575;
    letter-spacing: .3px;
    line-height: 1.71;
}

    .contact-page-list-item .list-item-subtitle a {
        font-size: 14px;
        font-weight: 300;
        color: #757575;
        letter-spacing: .3px;
        line-height: 1.71;
    }

.contact-page-list-item .list-item-icon {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 35px;
    top: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    width: 30px;
    height: 30px;
}

    .contact-page-list-item .list-item-icon i {
        color: #A42039;
        font-size: 1.4em;
    }

.contact-page-list-item:hover .list-item-icon {
    opacity: 1;
}

.contact-page-list-item:hover .list-item-title {
    color: #A42039;
}

.contact-page-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    height: auto;
    padding-bottom: 60px;
}

    .contact-page-wrapper + .references {
        margin-top: 30px;
        padding-top: 30px;
        position: relative;
        z-index: 3;
    }

        .contact-page-wrapper + .references + footer {
            z-index: 0;
        }

.contact-page-map {
    display: block;
    width: 100%;
    padding: 0 15px;
    border: 0;
    position: relative;
    height: 300px;
    top: unset;
    left: unset;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin: 20px 0;
    z-index: 2;
}

.services-boxes {
    display: block;
    width: 100%;
    padding-top: 30px;
}

.services-boxes-heading {
    display: block;
    text-align: center;
    max-width: 100%;
}

.services-boxes-heading-wrapper {
    padding-bottom: 145px;
}

.services-boxes-heading span.title {
    display: block;
    font-weight: 700;
    color: #838383;
    letter-spacing: .44px;
    font-size: 18px;
}

    .services-boxes-heading span.title.big {
        display: block;
        letter-spacing: .72px;
        font-size: 28px;
        word-break: break-word;
    }

.services-boxes-heading span.title--primary {
    color: #A42039;
}

.services-boxes-heading span.title--italic {
    font-style: italic;
}

.services-boxes-heading span.subtitle {
    display: block;
    font-size: 14px;
    color: #b3b3b3;
    letter-spacing: 2.8px;
    margin-top: 20px;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .services-boxes-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        margin-top: -115px;
        grid-gap: 15px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    @media (min-width: 576px) {
        .services-boxes-content {
            grid-gap: 30px;
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (min-width: 768px) {
        .services-boxes-content {
            margin-top: -150px;
            -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .services-boxes-content {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: -115px;
    }

    @media screen and (min-width: 768px) {
        .services-boxes-content {
            margin-top: -150px;
        }
    }
}

.services-boxes-content-wrapper {
    display: block;
    width: 100%;
    background: #ffffff;
}

.services-boxes-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 7px 43px 0 rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: .2s ease-in-out;
}

@supports ((display: -ms-grid) or (display: grid)) {
    .services-boxes-item {
        width: unset;
    }
}

@supports not ((display: -ms-grid) or (display: grid)) {
    .services-boxes-item {
        width: calc(50% - 30px);
    }

        .services-boxes-item:not(:nth-last-child(-n+2)) {
            margin-bottom: 30px;
        }

        .services-boxes-item + .services-boxes-item {
            margin-left: 30px;
        }

        .services-boxes-item:nth-child(2n + 1) {
            margin-left: 0;
        }

    @media screen and (min-width: 768px) {
        .services-boxes-item {
            width: calc(33.3% - 30px);
        }

            .services-boxes-item:not(:nth-last-child(-n+2)) {
                margin-bottom: unset;
            }

            .services-boxes-item:not(:nth-child(-n+3)) {
                margin-top: 30px;
            }

            .services-boxes-item + .services-boxes-item {
                margin-left: 30px;
            }

            .services-boxes-item:nth-child(3n + 1) {
                margin-left: 0;
            }
    }
}

.services-boxes-item:not(.no-hover) > * {
    transition: .2s ease-in-out;
}

.services-boxes-item:not(.no-hover):hover {
    background: #A42039;
    box-shadow: 0px 12px 16px 0 rgba(31, 136, 104, 0.55);
}

    .services-boxes-item:not(.no-hover):hover .services-boxes-item-icon,
    .services-boxes-item:not(.no-hover):hover span.title,
    .services-boxes-item:not(.no-hover):hover p.description {
        color: #fff;
    }

.services-boxes-item-icon {
    font-size: 2em;
    color: #A42039;
    margin-bottom: 20px;
}

.services-boxes-item span.title {
    font-size: 14px;
    font-weight: 700;
    color: #050505;
    letter-spacing: 2.8px;
    margin-bottom: 20px;
}

.services-boxes-item p.description {
    display: block;
    text-align: center;
    margin: 0;
    font-size: 13px;
    color: #757575;
    letter-spacing: .3px;
    line-height: 1.71;
}

.brand-video {
    display: block;
    background-color: #A42039;
    position: relative;
    margin-bottom: 215px;
}

    .brand-video.video-opened .video-container {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .brand-video .video-container {
        display: none;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 98;
        height: 100%;
        padding: 0 2%;
    }

        .brand-video .video-container iframe,
        .brand-video .video-container video {
            max-width: 100%;
            margin: 0;
            height: 350px;
            border: 0;
        }

        .brand-video .video-container span.video-container-close {
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            position: absolute;
            right: 2%;
            top: 5%;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            transition: .2s ease-in-out;
        }

            .brand-video .video-container span.video-container-close:hover {
                background: #e6e6e6;
            }

            .brand-video .video-container span.video-container-close i {
                color: rgba(0, 0, 0, 0.8);
                font-size: 1.2em;
                transition: .2s ease-in-out;
            }

    .brand-video + .references {
        margin-top: 0;
    }

    .brand-video::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/menumap.png");
        background-repeat: no-repeat;
        background-position: center;
        opacity: .2;
    }

.brand-video-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 30px;
}

.brand-video .services-boxes-heading span.title,
.brand-video .services-boxes-heading span.subtitle {
    color: #ffffff;
}

.brand-video-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 85px;
    height: 85px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 45px;
}

    .brand-video-btn:hover {
        background: #f2f2f2;
    }

    .brand-video-btn::before,
    .brand-video-btn::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        border: 2px solid transparent;
        border-radius: 50%;
        -webkit-animation: pulse 3s;
        animation: pulse 3s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        z-index: 0;
    }

    .brand-video-btn::before {
        width: 111px;
        height: 111px;
        border-color: rgba(255, 255, 255, 0.6);
    }

    .brand-video-btn::after {
        width: 133px;
        height: 133px;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .brand-video-btn i {
        font-size: 1.5em;
        color: #A42039;
        z-index: 1;
    }

.brand-video .services-boxes-content {
    margin: 0;
    padding: 0;
    margin-bottom: -150px;
}

.brand-video .services-boxes-item p.description {
    font-size: 14px;
    font-weight: 300;
}

.brand-video .services-boxes-item:hover {
    box-shadow: 0px 7px 43px 0 rgba(31, 136, 104, 0.34);
}

    .brand-video .services-boxes-item:hover .services-boxes-item-icon {
        color: #A42039;
    }

.brand-video .services-boxes-item .services-boxes-item-icon {
    color: #b3b3b3;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transition: 0.5s cubic-bezier(0.25, 0.8, 0.5, 1);
    z-index: 1;
}

    .overlay:before {
        position: absolute;
        background-color: #000000;
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0;
        right: 0;
        top: 0;
        transition: inherit;
        transition-delay: 0.15s;
        width: 100%;
    }

.overlay--active {
    z-index: 97;
}

    .overlay--active:before {
        opacity: 0.8;
    }

.page-la-rc {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 990px) {
    .main-box-wrapper .main-box-left-figure iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 576px) {
    .header-social-links {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .logo-img {
        height: 60px;
    }

    .app-footer-widget-title {
        margin-bottom: 20px;
    }

    .hero-wrapper .hero-container .hero-left-carousel-item span.title {
        font-size: 35px;
    }

    .hero-wrapper .hero-container .hero-left-carousel-item span.subtitle {
        margin-bottom: 30px;
    }

    .main-box-wrapper .main-box-right {
        padding-top: 60px;
    }

    .services-circle {
        padding-bottom: unset;
        display: block;
        margin: 150px auto;
        width: 350px;
        height: 350px;
    }

        .services-circle::before,
        .services-circle::after {
            display: block;
        }

    .services-content-item span.title {
        margin-bottom: 20px;
        line-height: 1;
    }

    .services-content-item p.description {
        display: block;
    }

    .references-item {
        margin-right: 15px;
        margin-left: 15px;
    }

    .blog-list-item-right {
        padding: 20px 30px;
    }

    .comment-box {
        margin-top: 65px;
    }

        .comment-box.reply-comment {
            margin-left: 150px;
        }

    .comment-box-content {
        margin-left: -96px;
        margin-top: 35px;
    }

    .comment-box-content-head .user-name {
        height: unset;
        font-size: 14px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .comment-box-content-head .user-role {
        font-size: 10px;
        margin-left: 15px;
        margin-bottom: unset;
    }

    .brand-video .video-container span.video-container-close {
        width: 40px;
        height: 40px;
    }

        .brand-video .video-container span.video-container-close i {
            font-size: 1.5em;
        }
}

@media screen and (min-width: 768px) {
    body.no-scroll {
        position: fixed;
    }

    .section-title {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding-left: 15px;
    }


    .section-title-content .title {
        line-height: 2;
    }

    .section-title-btn {
        width: unset;
        -ms-grid-column: unset;
        grid-column: unset;
    }

    .app-footer {
        padding-top: 3px;
    }

        .app-footer .footer-contact-btn {
            padding: 0 50px;
        }

    .app-footer-widget .newsletter-input {
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .app-footer-widget-title {
        margin-bottom: 15px;
        text-transform: uppercase;
        border-bottom: 1px solid #545454;
        padding-bottom: 5px;
    }

        .app-footer-widget-title.push-left {
            padding-left: 30px;
        }

        .app-footer-widget-title::before {
            display: none;
        }

    .app-footer-widget figure.footer-logo {
        margin-bottom: 50px;
    }

    .app-footer-list-item {
        margin-top: 25px;
    }

    @supports ((display: -ms-grid) or (display: grid)) {
        .app-footer-list-item {
            padding-left: 25px;
        }
    }

    @supports not ((display: -ms-grid) or (display: grid)) {
        .app-footer-list-item {
            padding-left: 0px;
        }
    }

    .app-footer-rich-menu-item {
        padding: 20px 30px;
    }

    @supports ((display: -ms-grid) or (display: grid)) {
        .app-footer-rich-menu-item {
            width: 230px;
        }
    }

    @supports not ((display: -ms-grid) or (display: grid)) {
        .app-footer-rich-menu-item {
            width: 200px;
        }
    }

    .app-footer-rich-menu-item:first-of-type {
        margin-top: -20px;
    }

    .app-footer-copyright {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: 65px;
        padding: 0;
        border-top: 1px solid #585656;
    }

    .hero-wrapper {
        height: 500px;
    }

        .hero-wrapper .hero-container {
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

            .hero-wrapper .hero-container .hero-left-wrapper {
                margin-top: unset;
                width: 60%;
                padding-right: 50px;
            }

            .hero-wrapper .hero-container .hero-left-carousel-item {
                margin-right: 15px;
            }

                .hero-wrapper .hero-container .hero-left-carousel-item span.title {
                    margin-bottom: 30px;
                    font-size: 30px;
                }

                    .hero-wrapper .hero-container .hero-left-carousel-item span.title::first-letter {
                        margin-left: -.07em;
                    }

                .hero-wrapper .hero-container .hero-left-carousel-item span.subtitle {
                    font-size: 18px;
                }

                .hero-wrapper .hero-container .hero-left-carousel-item p.description {
                    margin-bottom: 15px;
                }

            .hero-wrapper .hero-container .hero-right {
                width: 40%;
            }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation {
                    -webkit-flex-direction: column;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    width: 100px;
                    -webkit-transform: translateX(-50%) translateY(-50%);
                    -ms-transform: translateX(-50%) translateY(-50%);
                    transform: translateX(-50%) translateY(-50%);
                    padding: 0 0 35px 0;
                    top: 50%;
                    height: 90%;
                }

                    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text {
                        display: -webkit-flex;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-justify-content: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        -webkit-align-items: center;
                        -ms-flex-align: center;
                        align-items: center;
                        font-size: 14px;
                        line-height: 100px;
                        -webkit-writing-mode: vertical-lr;
                        -ms-writing-mode: tb-lr;
                        writing-mode: vertical-lr;
                        -webkit-transform: rotate(180deg);
                        -ms-transform: rotate(180deg);
                        transform: rotate(180deg);
                        text-align: unset;
                        margin-top: unset;
                        margin-bottom: unset;
                        padding: unset;
                        overflow: unset;
                    }

                        .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text span {
                            margin: 10px 0;
                        }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn.prev {
                    -webkit-order: unset;
                    -ms-flex-order: unset;
                    order: unset;
                }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(1) {
                    margin-top: auto;
                }

                .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(2) {
                    margin-top: 20px;
                    padding-top: 20px;
                }

                    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(2)::before {
                        display: block;
                    }

            .hero-wrapper .hero-container .hero-right-carousel {
                height: 100%;
            }

    .main-box-wrapper.about-us-box .main-box-left-figure {
        height: 400px;
    }

    .main-box-wrapper .main-box-left-figure {
        height: 100%;
    }

    .main-box-wrapper .main-box-left-box {
        position: absolute;
        width: 300px;
        height: auto;
        left: -30px;
        bottom: 50px;
        padding: 15px 30px;
        margin: unset;
    }

        .main-box-wrapper .main-box-left-box span {
            font-size: 30px;
        }

    .services {
        padding-top: 65px;
    }

    .services-circle {
        margin: 180px auto;
        width: 510px;
        height: 510px;
    }

        .services-circle::before {
            width: 640px;
            height: 640px;
        }

        .services-circle::after {
            width: 750px;
            height: 750px;
        }

    .services-subcircle:nth-child(2n+1) {
        width: 72px;
        height: 72px;
    }

    .services-content-item span.title {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-content-item p.description {
        font-size: 16px;
    }

    .gallery-item {
        padding: 40px 30px;
    }

    .projects {
        padding: 65px 0;
    }

    .projects-wrapper {
        margin-top: 65px;
    }

    .blog-carousel {
        padding: 65px 0 0 0;
    }

    .blog-carousel-wrapper {
        margin-top: 65px;
        margin-bottom: 45px;
    }

    .blog-carousel-item {
        width: 370px;
        height: 550px;
        padding-bottom: 0;
    }

        .blog-carousel-item figure.thumbnail {
            height: 260px;
        }

    .blog-carousel-item-heading {
        padding: 0 70px 0 40px;
    }

    .blog-carousel-item-content {
        margin-top: 45px;
        padding: 0 60px 0 40px;
    }

        .blog-carousel-item-content .more-link {
            margin-top: 50px;
        }

    .references {
        padding: 65px 0 0 0;
        margin-top: 65px;
    }

    .references-item {
        margin-right: 0px;
        margin-left: 0px;
    }

    .responsive-menu {
        height: 100vh;
        padding: unset;
    }

    .logo-img {
        height: 45px;
    }

    .responsive-menu .container {
        overflow-y: scroll;
    }

    .responsive-menu::before {
        opacity: 0.3;
    }

    .responsive-menu-header {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

        .responsive-menu-header a.logo {
            display: none;
        }

    .responsive-menu ul.responsive-menu-links .responsive-menu-link a {
        padding: 20px 30px;
    }

    .main-hero {
    }

    .main-hero-content {
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

        .main-hero-content span.main-hero-title {
            font-size: 30px;
            margin-top: 15px;
        }

        .main-hero-content .main-hero-breadcrumb {
            margin-bottom: 100px;
        }

    .nav-tabs-wrapper {
        position: relative;
    }

        .nav-tabs-wrapper .mobile-tab-toggle {
            display: none;
        }

    .nav.nav-tabs {
        box-shadow: 0px 11px 18px 0 rgba(0, 0, 0, 0.5);
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        overflow-y: unset;
        height: auto;
    }

    .nav.nav-tabs {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-column-gap: 0;
        grid-row-gap: 0;
        box-shadow: none;
    }

        .nav.nav-tabs .nav-link.nav-item + .nav-link.nav-item {
            margin-top: unset;
        }

    .app-pagination {
        margin-top: 65px;
    }

    ul.pagination .page-item {
        height: 48px;
    }

        ul.pagination .page-item .page-link {
            padding: 0 8px;
        }

        ul.pagination .page-item + .page-item {
            margin-left: 13px;
        }

    .article-container.project-detail-article .article-thumbnail-wrapper {
        height: 350px;
    }

    .article-container .article-thumbnail-wrapper {
        height: 350px;
    }

    .article-container .article-content h1.article-title {
        font-weight: 800;
        border-bottom: 1px dotted rgb(17, 105, 168);
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 20px;
        color: #A42039;
        text-transform: uppercase;
    }

    .article-container .article-content h1.article-title2 {
        font-weight: 800;
        font-size: 20px;
        color: #2b454e;
        text-transform: uppercase;
    }

    .article-container .article-content p {
        margin-bottom: 30px;
    }

    .article-container .article-content .article-infos {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .reversed-articlePage {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .reversed-articlePage [class*='col']:first-of-type {
            margin-top: unset;
        }

    .app-input {
        padding: 0 33px;
    }

    .page-aside {
        margin-top: 0;
    }

    .page-aside-widget.flat-widget span.page-aside-widget-title {
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 2px solid #eeeeee;
        font-size: 15px;
    }

    .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link {
        margin-top: 25px;
        border-bottom: 1px solid #eeeeee;
    }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link:first-child {
            margin-top: 30px;
        }

        .page-aside-widget .page-aside-menu.flat-menu .page-aside-menu-link:last-child {
            margin-bottom: 35px;
        }

    .page-aside-widget .page-aside-carousel-item {
        height: 305px;
        padding: 35px 30px;
    }

    .author-box {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 36px 33px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .author-box-avatar {
        margin-right: 40px;
    }

    .author-box-content {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0;
    }

        .author-box-content .author-box-description {
            text-align: left;
        }

    .blog-list-item {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .blog-list-item {
        height: 300px;
    }

        .blog-list-item + .blog-list-item {
            margin-top: 65px;
            margin-bottom: 35px;
        }

    .blog-list-item-left {
        height: 100%;
        min-height: 300px;
        width: 40%;
    }

    .blog-list-item-right {
        height: 100%;
    }

        .blog-list-item-right .blog-list-item-title {
            line-height: 1;
        }

        .blog-list-item-right span.blog-list-item-date {
            margin-bottom: 30px;
        }

        .blog-list-item-right p.blog-list-item-description {
            font-size: 14px;
            margin-bottom: 40px;
            max-height: 130px;
        }

    .blog-list-item-sm-wrapper {
        margin-bottom: 30px;
    }

        .blog-list-item-sm-wrapper:nth-last-child(2) {
            margin-bottom: 0;
        }

    .comment-box {
        min-height: 190px;
        padding: 35px 70px 40px 30px;
    }

    .comment-box-content {
        margin-left: unset;
        margin-top: 0;
        -ms-grid-row: unset;
        grid-row-start: unset;
    }

    .comment-box-content-head {
        grid-row-gap: 13px;
    }

    .comment-form button[type="submit"] {
        width: auto;
        margin-top: unset;
    }

    .contact-page-box.contact-form-box div.contact-form .contact-form-input-row {
        width: auto;
    }

        .contact-page-box.contact-form-box div.contact-form .contact-form-input-row + .contact-form-input-row {
            margin-top: 0;
            margin-left: 15px;
        }

    .contact-page-list-item {
        margin-top: 0;
    }

    .services-boxes {
        padding-top: 65px;
    }

    .services-boxes-heading-wrapper {
        padding-bottom: 215px;
    }

    .services-boxes-heading span.title {
        font-size: 22px;
    }

        .services-boxes-heading span.title.big {
            font-size: 36px;
        }

    .services-boxes-heading span.subtitle {
        margin-top: 25px;
    }

    .services-boxes-item-icon {
        font-size: 3em;
        margin-bottom: 40px;
    }

    .services-boxes-item p.description {
        font-size: 14px;
    }

    .brand-video-wrapper {
        margin-top: 130px;
    }

    .brand-video-btn {
        margin-top: 60px;
        margin-bottom: 90px;
    }
}

@media screen and (min-width: 768px) and (min-width: 992px) {
    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation {
        height: 550px;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .responsive-menu .container {
        overflow-y: unset;
    }
}

@media screen and (min-width: 992px) {
    body.no-scroll {
        position: unset;
    }

    .header-wrapper {
        padding: 0 40px;
    }

    .header-social-links {
        position: absolute;
        left: 20%;
        right: 20%;
    }

        .header-social-links a.header-social-link + .header-social-link {
            margin-left: 52px;
        }

    @supports ((display: -ms-grid) or (display: grid)) {
        .app-footer-rich-menu-item {
            width: 230px;
        }
    }

    .app-footer-rich-menu-item .rich-menu-background {
        opacity: 0;
    }

    .app-footer-copyright p.footer-text {
        line-height: 1;
        text-align: unset;
    }

    .hero-wrapper {
        height: 600px;
    }

        .hero-wrapper .hero-container .hero-left-wrapper {
            width: 50%;
        }

        .hero-wrapper .hero-container .hero-left-carousel-item {
            margin-right: 5px;
        }

            .hero-wrapper .hero-container .hero-left-carousel-item span.title {
                font-size: 28px;
            }

            .hero-wrapper .hero-container .hero-left-carousel-item span.subtitle {
                font-size: 22px;
                margin-bottom: 50px;
            }

        .hero-wrapper .hero-container .hero-right {
            width: 50%;
        }

    @supports ((display: -ms-grid) or (display: grid)) {
        .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text {
            overflow: hidden;
        }
    }

    .hero-wrapper .hero-container .hero-right .hero-carousel-navigation-btn:nth-of-type(2) {
        margin-top: 35px;
        padding-top: 35px;
    }

    .hero-rectangle {
        display: block;
    }

    .main-box-wrapper {
        margin-top: 60px;
        padding: 60px 0;
    }

        .main-box-wrapper.about-us-box {
            background: linear-gradient(180deg, transparent 300px, #ffffff 0, #ffffff calc(100% - 300px));
            margin-bottom: 45px;
        }

            .main-box-wrapper.about-us-box .main-box-right {
                padding-top: 120px;
                padding-left: 0;
                padding-right: 80px;
            }

                .main-box-wrapper.about-us-box .main-box-right span.subtitle {
                    margin-bottom: 120px;
                }

            .main-box-wrapper.about-us-box .main-box-left-figure {
                height: 100%;
                margin-left: -30px;
            }

        .main-box-wrapper.main-box-three-col {
            margin-top: 65px;
            padding-bottom: 65px;
        }

            .main-box-wrapper.main-box-three-col .main-box-left-figure {
                margin: 0;
                height: 100%;
            }

            .main-box-wrapper.main-box-three-col .main-box-col.col-right {
                text-align: right;
            }

        .main-box-wrapper .main-box-left-figure {
            padding-left: 100px;
        }

        .main-box-wrapper .main-box-left-box {
            width: 400px;
            height: 335px;
            left: -15px;
            bottom: 85px;
            padding: 10px 45px;
        }

        .main-box-wrapper .main-box-right {
            padding-top: 170px;
            padding-right: 80px;
            padding-left: unset;
        }

        .main-box-wrapper .title {
            margin-bottom: 20px;
            font-size: 36px;
        }

        .main-box-wrapper span.subtitle {
            margin-bottom: 45px;
        }

        .main-box-wrapper p.description + p {
            margin-top: 6px;
        }

        .main-box-wrapper .main-box-content-figure {
            margin-top: 20px;
        }

        .main-box-wrapper .main-box-bottom {
            margin-top: 80px;
            padding: 0;
        }

        .main-box-wrapper .main-box-bottom-item span.title {
            margin-bottom: 25px;
        }

    .services-circle {
        width: 630px;
        height: 630px;
        margin-bottom: 240px;
    }

        .services-circle::before {
            width: 760px;
            height: 760px;
        }

        .services-circle::after {
            width: 870px;
            height: 870px;
        }

    .services-subcircle {
        width: 88px;
        height: 88px;
    }

    .responsive-menu ul.responsive-menu-links {
        width: 370px;
        margin-left: 100px;
        overflow-y: hidden;
    }

    .main-hero-rectangle {
        display: block;
    }

    .nav.nav-tabs {
        height: 100px;
        grid-column-gap: 60px;
        padding: 0 15px;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .nav.nav-tabs .nav-link.nav-item {
            white-space: nowrap;
            text-overflow: ellipsis;
            height: unset;
            padding: 0;
            border: none;
            text-align: unset;
        }

            .nav.nav-tabs .nav-link.nav-item + .nav-link.nav-item {
                margin-left: 60px;
            }

            .nav.nav-tabs .nav-link.nav-item.active::after {
                display: block;
            }

    .article-container.project-detail-article .article-thumbnail-wrapper {
        height: 630px;
    }

    .article-container.project-detail-article .article-content {
        padding-top: 70px;
    }

    .article-container .article-sharebox {
        padding: 15px 70px;
    }

    .article-container .article-thumbnail-wrapper {
        height: 480px;
    }

        .article-container .article-thumbnail-wrapper .article-thumbnail-info {
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 0 70px;
            bottom: 40px;
        }

            .article-container .article-thumbnail-wrapper .article-thumbnail-info span.article-date {
                margin-top: 0;
                margin-left: 0;
            }

    .article-container .article-content {
        padding: 15px 15px 15px 15px;
    }

        .article-container .article-content .article-infos {
            margin-top: 60px;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
        }

        .article-container .article-content .article-infos-item + .article-infos-item {
            margin-left: 30px;
            margin-top: 0;
        }

    .small-article-box .small-article-thumbnail {
        opacity: 0;
    }

    .small-article-box .small-article-btn {
        background: #6b6b6b;
    }

    .small-article-box.prev .small-article-btn {
        left: 70px;
    }

    .small-article-box.next .small-article-btn {
        right: 70px;
    }

    .small-article-box span.small-article-title {
        color: #222;
    }

    .blog-list-item-left .article-author {
        left: 70px;
        bottom: 30px;
    }

    .comment-box-content {
        padding-top: 0;
    }

    .contact-form-box-container {
        -webkit-order: unset;
        -ms-flex-order: unset;
        order: unset;
    }

    .contact-page-box {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

        .contact-page-box.contact-form-box {
            padding: 50px;
        }

            .contact-page-box.contact-form-box.form-active {
                padding: 40px 100px 65px 100px;
            }

            .contact-page-box.contact-form-box span.contact-form-box-pulse {
                right: 100px;
            }

            .contact-page-box.contact-form-box div.contact-form {
                margin-top: 65px;
            }

                .contact-page-box.contact-form-box div.contact-form .contact-form-input-row.contact-form-textarea {
                    margin-top: 30px !important;
                }

                    .contact-page-box.contact-form-box div.contact-form .contact-form-input-row.contact-form-textarea textarea {
                        height: 120px;
                    }

    .contact-page-list-item {
        border-color: transparent !important;
    }

        .contact-page-list-item:hover::before {
            -webkit-animation-name: borderAnimationTop !important;
            animation-name: borderAnimationTop !important;
        }

        .contact-page-list-item:hover::after {
            -webkit-animation-name: borderAnimationBottom !important;
            animation-name: borderAnimationBottom !important;
        }

        .contact-page-list-item .list-item-title {
            color: #050505;
        }

        .contact-page-list-item .list-item-icon {
            opacity: 0;
            width: 50px;
            height: 50px;
        }

            .contact-page-list-item .list-item-icon i {
                font-size: 1.8em;
            }

    .contact-page-wrapper {
        height: 100%;
    }

        .contact-page-wrapper + .references {
            margin-top: -65px;
            padding-top: 130px;
        }

    .contact-page-map {
        display: block;
        width: 100%;
        padding: 0 15px;
        border: 0;
        position: relative;
        height: 300px;
        top: unset;
        left: unset;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        margin: 20px 0;
        z-index: 2;
    }

    .services-boxes-item {
        padding: 55px 50px;
    }
}

@media (min-width: 992px) and (max-height: 500px) {
    .contact-form-box-container {
        padding-top: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .header-wrapper {
        padding: 0 20px;
    }

    .header-social-links {
        left: 40%;
        right: 40%;
    }

    .hero-wrapper {
        height: 835px;
    }

        .hero-wrapper .hero-container {
            max-width: calc(100vw - (50% - 585px + 15px));
        }

            .hero-wrapper .hero-container .hero-left-wrapper {
                padding: 0;
                width: 585px;
                padding-right: 125px;
            }

            .hero-wrapper .hero-container .hero-right {
                width: calc(100% - 585px);
            }

    .hero-rectangle--big {
        top: -20px;
    }

    .hero-rectangle--small {
        bottom: -100px;
    }

    .contact-page-box {
        padding: 65px 70px;
    }

        .contact-page-box.contact-form-box {
            padding-left: 100px;
            padding-right: 100px;
        }

            .contact-page-box.contact-form-box div.contact-form .contact-form-input-row {
                width: 300px;
                -webkit-flex-grow: unset;
                -ms-flex-positive: unset;
                flex-grow: unset;
            }

                .contact-page-box.contact-form-box div.contact-form .contact-form-input-row + .contact-form-input-row {
                    margin-left: 35px;
                }

    .contact-page-list-item {
        padding: 35px 38px;
    }
}

.contact-form-input-row .error {
    color: #EA4335;
}


@media screen and (min-width: 992px) {

    .logo-img {
        height: 60px;
    }

    .full-header .header-social-links {
        left: auto;
        right: 25px;
    }

        .full-header .header-social-links a.header-social-link + .header-social-link {
            margin-left: 25px;
        }

    .full-header .responsive-menu {
        background-image: unset;
        height: unset;
        position: absolute;
        display: block;
        left: 20%;
        right: 1%;
        width: auto;
        top: 50%;
        margin-top: -46px;
        overflow: unset;
    }

        .full-header .responsive-menu .align-items-center .d-none.d-md-flex {
            display: none !important;
        }

        .full-header .responsive-menu .col-12.col-md-7.col-lg-6 {
            max-width: unset;
            flex: unset;
            width: 100%;
        }

        .full-header .responsive-menu .responsive-menu-header {
            display: none;
        }

        .full-header .responsive-menu ul.responsive-menu-links {
            margin-left: 0px;
            display: table;
            width: 100%;
            text-align:right;
        }

            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link a {
                padding: 40px 6px;
                display: inline-block;
                font-size: 11.5px;
                border: unset;
                color: #000000;
                letter-spacing: normal;
                width: 100%;
                text-transform: uppercase;
            }

            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link.active a,
            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link:hover a {
                color: #4e4e4e;
            }

            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-sublinks .responsive-menu-link a {
                padding: 10px 10px;
                display: inline-block;
                font-size: 12px;
                border: unset;
                color: #000000;
                letter-spacing: normal;
                width: 100%;
                text-align: left;
            }

            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-sublinks.mega-menu .responsive-menu-link a.sublinks-toggle {
                font-weight: 600;
            }

        .full-header .responsive-menu ul.responsive-menu-links {
            width: 100%;
            display: table;
        }

            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link {
                display: inline-block;
            }

                .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link + li {
                    margin-top: unset;
                }

                .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children > a:after {
                    color: #A42039;
                    right: -4px;
                }

                .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks {
                    position: absolute;
                    margin: unset;
                    width: 250px;
                    background: #fff;
                    box-shadow: 0px 4px 24px -10px rgba(0,0,0,.2);
                }

            .full-header .responsive-menu ul.responsive-menu-links .mega-menu .responsive-menu-link .responsive-menu-sublinks {
                box-shadow: unset;
            }


            .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-sublinks .responsive-menu-link {
                float: unset;
                position: relative;
                width: 100%;
                border-bottom: 1px solid #f4f4f4;
            }

    .full-header .responsive-menu-link.has-children .responsive-menu-sublinks.mega-menu > li {
        border-bottom: 0px solid #fff;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-sublinks .responsive-menu-link:last-child {
        border-bottom: 0px;
    }

    .full-header .mega-menu .responsive-menu-link.has-children .responsive-menu-sublinks li {
        position: relative;
        border-bottom: 1px solid #f4f4f4;
    }


    .full-header a.nav-trigger {
        display: none;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-link:not(.has-children):hover a,
    .mega-menu .responsive-menu-link.has-children .responsive-menu-sublinks li:hover a {
        color: #4e4e4e
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-link:not(.has-children):hover,
    .mega-menu .responsive-menu-link.has-children .responsive-menu-sublinks li:hover {
        background: #8c8c8c1a;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks a::before {
        content: unset;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children {
        overflow: unset;
    }

        .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children:hover .responsive-menu-sublinks {
            display: table;
        }

        .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children > a:after {
            content: unset;
        }

    .responsive-menu ul.responsive-menu-links .responsive-menu-link.has-children.has-mega-menu {
        position: unset;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks.mega-menu {
        position: absolute;
        left: 15px;
        right: 15px;
        width: 100%;
        background: #fff;
        padding: 0px 15px 30px 15px;
    }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks {
        margin-top: -1px;
    }

        .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .responsive-menu-sublinks.mega-menu .responsive-menu-sublinks {
            position: relative;
            left: unset;
            right: unset;
            width: 100%;
            list-style: none;
        }

    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link .mega-menu .has-children a.sublinks-toggle {
        border-bottom: 1px solid #cac9c9;
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .full-header .responsive-menu {
        right: 2%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
    .full-header .header-social-links {
        display: none;
    }

    .full-header .responsive-menu {
        right: 1%;
    }
}

@media screen and (max-width: 768px) {
    .main-hero {
        height: 145px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1099px) {
    .konteyner-logo {
        height: 30px !important;
    }
    .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link a {
        padding: 40px 6px;
        font-size: 11px;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1200px) {
    .konteyner-logo {
        height: 30px !important;
    }

    .full-header .responsive-menu ul.responsive-menu-links {
        margin-left: 25px;
    }

        .full-header .responsive-menu ul.responsive-menu-links .responsive-menu-link a {
            padding: 40px 6px;
            font-size: 12px;
        }
}

    @media screen and (min-width: 1024px) and (max-width: 1200px) {
        .full-header .header-social-links {
            display: flex;
        }

        header .responsive-menu {
            right: 18%;
        }

        .full-header .header-social-links a.header-social-link + .header-social-link {
            margin-left: 10px;
        }

      
    }

    .logo-img {
        height: 60px;
    }

    .email-a {
        color: #757575;
    }

    .mr-7 {
        margin-right: 7px;
    }

    .faq-header {
        font-size: 20px;
        border-bottom: 1px dotted #ccc;
        padding: 24px;
        margin-top: 40px;
        margin-bottom: 40px;
        color: #a32039;
    }

    .faq-content {
        margin: 0 auto;
    }

    .faq-question {
        padding: 20px 0;
        border-bottom: 1px dotted #ccc;
    }

    .panel-title {
        font-size: 14px;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 15px 10px 0 48px;
        display: block;
        cursor: pointer;
        font-weight: 700;
    }

    .panel-content {
        font-size: 14px;
        padding: 0px 14px;
        margin: 0 40px;
        height: 0;
        overflow: hidden;
        position: relative;
        opacity: 0;
        -webkit-transition: .4s ease;
        -moz-transition: .4s ease;
        -o-transition: .4s ease;
        transition: .4s ease;
    }

    .panel:checked ~ .panel-content {
        height: auto;
        opacity: 1;
        margin-top: 15px;
    }

    .plus {
        position: absolute;
        margin-left: 20px;
        margin-top: 10px;
        z-index: 5;
        font-size: 31px;
        line-height: 100%;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
        -webkit-transition: .2s ease;
        -moz-transition: .2s ease;
        -o-transition: .2s ease;
        transition: .2s ease;
    }

    .panel:checked ~ .plus {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .panel {
        display: none;
    }

    .m-t65 {
        margin-top: 65px;
    }

    .m-b65 {
        margin-bottom: 65px;
    }

    .page-bottom {
        margin-bottom: 50px;
    }

    blockquote {
        background: #f9f9f9;
        border-left: 10px solid #ccc;
        margin: 1.5em 10px;
        padding: 0.5em 10px;
        quotes: "\201C""\201D""\2018""\2019";
    }

        blockquote:before {
            color: #ccc;
            content: open-quote;
            font-size: 4em;
            line-height: 0.6em;
            margin-right: 0.25em;
            vertical-align: -0.4em;
            float: left;
        }

        blockquote p {
            display: inline;
        }

    .page-img {
        width: 100%;
    }

    .yerleske-img {
        width: 100%;
        border-radius: 50%;
    }

    .yerleske {
        text-align: center;
        margin-top: 25px;
        color: #a01f38;
        font-weight: 700;
    }

    .footer-bottom {
        padding-bottom: 25px;
        border-bottom: 1px solid #585656;
    }

    .m-t20 {
        margin-top: 20px;
    }

    .img-width {
        width: 100%;
    }

    .image-resize {
        width: 55px;
    }

    .yerleske-galeri img {
        width: 100%;
        object-fit: cover;
        margin-bottom: 25px;
        margin-top: 25px;
        height: 215px;
        border: 2px solid #a31e34;
        border-radius: 4px;
        padding: 5px;
    }

    .ml-20 {
        margin-left: 20px;
        margin-top: 5px;
    }

    .son-basvuru-txt {
        color: #9f1f37;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2.8px;
        margin-top: 7px;
        position: relative;
        padding-bottom: 12px;
        text-decoration: none !important;
        outline: none !important;
    }

    .konteyner-logo {
        height: 40px;
    }

    @media only screen and (max-width:767px) {
        .anasayfa-banner-title span {
            font-size: 20px !important;
            line-height: 35px !important;
        }
        .article-container .article-content p {
            font-size: 13px;
        }
        .article-container .article-content h3 {
            font-size: 14px;
            line-height:20px;
        }
        .page-aside {
            margin-bottom: 15px;
        }
        .app-footer .footer-contact-btn-wrapper {
            margin-top: auto;
            margin-bottom: 50px;
        }
        .konteyner-title {
            font-size: 25px !important;
            text-transform: uppercase;
            font-weight: 600;
        }

        .konteyner-logo {
            height: 35px;
        }

        .href-slider {
            font-size: 10px !important;
            color: #757575;
        }

        .hero-wrapper .hero-container .hero-right .hero-carousel-navigation p.text span {
            color: #2b454e;
            margin: 0 5px;
            font-size: 10px;
        }
    }

    .href-slider {
        font-size: 12px;
        color: #757575;
    }

        .href-slider:hover {
            color: #757575;
            text-decoration: underline;
        }

    .flag-height {
        height: 25px;
        margin-right: -25px;
    }

    .bg-anasayfa {
        background-color: #f8f8f8 !important;
    }

    .anasayfa-banner-title span {
        font-size: 25px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        line-height: 45px;
    }

    .anasayfa-banner-title p {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: .3px;
        line-height: 2;
        margin: 0;
        color: #757575;
    }

    .btn-aktif {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-btn-aktif {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background: #eeeeee;
        height: 40px;
        border-radius: 21.5px;
        color: #2c2c2c;
        letter-spacing: 4.2px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 14px;
        white-space: nowrap;
        padding: 0 30px;
    }

        .page-btn-aktif:hover {
            background: #fff;
            color: #2c2c2c;
        }

    .btn-aktif-2 {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-btn-aktif-2 {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background: #ffffff;
        height: 40px;
        border-radius: 21.5px;
        color: #2c2c2c;
        letter-spacing: 4.2px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 14px;
        white-space: nowrap;
        padding: 0 30px;
    }

        .page-btn-aktif-2:hover {
            background: #d5d5d5;
            color: #2c2c2c;
        }

    .bg-orange {
        background-color: #c19b76;
    }

    .alysweb-footer {
        color: #fff;
        font-size: 14px;
    }

        .alysweb-footer:hover {
            color: #fff;
            text-decoration: underline;
        }

    .anasayfa-banner-slogan span {
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        line-height: 30px;
        color: #fff;
    }

    .konteyner-title {
        font-size: 35px;
        text-transform: uppercase;
        font-weight: 600;
    }
.blog-detay {
    font-size: 13px;
    text-transform: uppercase;
    color: #d40a0a;
    font-weight: 500;
}
.mb-20{
    margin-bottom:20px;
}
.responsive-img{
    width:100%;
    height:auto;
}