/********************************
*********** CW GLOBALS ************
*********************************/
* {
    font-family: 'Roboto', sans-serif;
}

:root {
    --cw-color-white: #ffffff;
    --cw-color-blue: #006fb3;
    --cw-color-red: #ce1126;
    --cw-color-green: #01807c;
    --cw-color-black: #000000;

    --hamburger-color: var(--cw-color-white);
    --footer-color: var(--cw-color-red);
}

.cw-theme-white {
    --banner-color: var(--cw-color-white);
    --hamburger-color: var(--cw-color-black);
}


.cw-theme-blue {
    --banner-color: var(--cw-color-blue);
    --footer-color: var(--cw-color-blue);
}

.cw-theme-red {
    --banner-color: var(--cw-color-red);
}

.cw-theme-green {
    --banner-color: var(--cw-color-green);
    --footer-color: var(--cw-color-green);
}

.cw-theme-black {
    --banner-color: var(--cw-color-black);
    --footer-color: var(--cw-color-black);
}

.container {
    max-width: 1690px;
    padding: 0 50px;
}

.container-small {
    max-width: 1148px;
    padding: 0 30px;
}

.cw-section-wrap {
    padding: 80px 0 110px;
}

@media screen and (max-width: 1700px) {
    .container {
        max-width: 100%;
        padding: 0 120px;
    }

    .container-small {
        max-width: 1148px;
        padding: 0 30px;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 50px;
    }

    .container-small {
        max-width: 1148px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 30px;
    }

    .cw-section-wrap {
        padding: 40px 0;
    }
}

/********************************
*********** CW HEADER ************
*********************************/

header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 100px 0;
    z-index: 9;
}

.cw-logo a {
    display: block;
    text-decoration: none;
    text-align: right;
}

.cw-logo span {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 5px 8px 0 0;
}

.cw-theme-white .cw-logo span {
    color: #000;
}

.cw-hamburger a {
    padding: 8px;
    width: 68px !important;
    height: 60px;
    position: fixed;
    cursor: pointer;
    background-color: var(--banner-color);
    z-index: 8;
    top: 70px;
}

.cw-hamburger a span {
    display: block;
    width: 52px;
    height: 9px;
    position: absolute;
    left: 8px;
    background-color: var(--hamburger-color);
    transition: all .25s;
}

.cw-hamburger a span:nth-child(1) {
    top: 8px;
}

.cw-hamburger a span:nth-child(2) {
    top: 25px;
    transition-property: transform, top;
}

.cw-hamburger a span:nth-child(3) {
    top: 42px;
}

.cw-hamburger a:hover span:nth-child(1) {
    width: 26px;
    transform: rotate(-45deg) translate(-10px, 38px);
    top: 2px;
    left: 8px;
}

.cw-hamburger a:hover span:nth-child(2) {
    transform: rotate(90deg) translate(0, 0);
    width: 40px;
    top: 23px;
    left: 15px;
}

.cw-hamburger a:hover span:nth-child(3) {
    width: 26px;
    transform: rotate(45deg) translate(5px, -4px);
    top: 35px;
    left: 9px;
}

@media screen and (max-width: 1700px) {
    header {
        padding: 50px 50px 0;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding: 30px 30px 0;
    }

    .cw-hamburger a {
        top: 38px;
    }

    .cw-logo a img {
        max-width: 170px;
    }

    .cw-logo span {
        font-size: 14px;
    }
}

/********************************
*********** CW MENU ************
*********************************/
.cw-menu {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 485px;
    background: #ce1126;
    z-index: 9;
    transform: translateY(-120%);
    transition: 0.3s all;
    overflow-y: scroll;
}

.show-menu .cw-menu {
    transform: translate(0, 0);
}

.cw-menu::-webkit-scrollbar {
    width: 4px;
}

.cw-menu::-webkit-scrollbar-track {
    background-color: #ce1126;
}

.cw-menu::-webkit-scrollbar-thumb {
    background-color: #fff
}

.cw-mennu-inner {
    padding: 45px;
}

.cw-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.cw-menu-close a {
    width: 56px !important;
    height: 56px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    display: block;
}

.cw-menu-close a span {
    display: block;
    background-color: #fff;
    width: 56px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 23px;
}

.cw-menu-close a span:nth-child(1) {
    transform: rotate(45deg);
}

.cw-menu-close a span:nth-child(2) {
    transform: rotate(-45deg);
}

.cw-menu-home a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.cw-menu-home a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    transition: 0.3s all;
    background: #fff;
    left: 0;
    bottom: -5px;
    right: 0;
    margin: auto;
}

.cw-menu-home a:hover:after {
    width: 100%;
}

.cw-menu-links {
    padding: 0 30px;
}

.cw-menu ul.cw-primary-nav {
    padding: 0;
    margin: 0;
}

.cw-menu ul.cw-primary-nav li {
    margin: 0 0 40px;
    list-style: none;
}

.cw-menu ul.cw-primary-nav li a {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
}

/*
.cw-menu ul.cw-primary-nav li a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    transition: 0.3s all;
    background: #fff;
    left: 0;
    bottom: -5px;
    right: 0;
    margin: auto;
}

.cw-menu ul.cw-primary-nav li a:hover:after {
    width: 100%;
}
*/
.cw-menu ul.cw-secondary-nav {
    padding: 40px 0 0 0;
    margin: 0;
    position: relative;
}

.cw-menu ul.cw-secondary-nav:before {
    content: '';
    width: 150px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.cw-menu ul.cw-secondary-nav li {
    margin: 0 0 40px;
    list-style: none;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.cw-menu ul.cw-secondary-nav li a {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
}

/*
.cw-menu ul.cw-secondary-nav li a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    transition: 0.3s all;
    background: #fff;
    left: 0;
    bottom: -5px;
    right: 0;
    margin: auto;
}

.cw-menu ul.cw-secondary-nav li a:hover:after {
    width: 100%;
}
*/

@media screen and (max-width: 767px) {
    .cw-menu {
        width: 100%;
    }

    .cw-mennu-inner {
        padding: 25px;
    }

    .cw-menu-links {
        padding: 0;
    }

    .cw-menu ul.cw-primary-nav li,
    .cw-menu ul.cw-secondary-nav li {
        margin: 0 0 25px;
    }

    .cw-menu-close a span {
        width: 45px;
    }
}

/********************************
********* CW HOME BANNER ********
*********************************/
.cw-home-banner {
    height: 100vh;
    background: #000;
}

.cw-main-slider {
    min-height: 100vh;
    position: relative;
}

.cw-main-slider-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
}

.cw-main-slider-wrap .swiper {
    height: 100%;
}

.cw-main-slider-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cw-main-slider-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*
.cw-main-slider-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
}
*/

.cw-main-slider-box {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.cw-main-slider-box h1 {
    font-family: "forma-djr-display", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 190px;
    line-height: 150px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding-bottom: 65px;
}

@media screen and (max-width: 1600px) {
    .cw-main-slider-box h1 {
        font-size: 170px;
        line-height: 140px;
    }
}

@media screen and (max-width: 1500px) {
    .cw-main-slider-box h1 {
        font-size: 155px;
        line-height: 130px;
    }
}

@media screen and (max-width: 1400px) {
    .cw-main-slider-box h1 {
        font-size: 145px;
        line-height: 120px;
    }
}

@media screen and (max-width: 1250px) {
    .cw-main-slider-box h1 {
        font-size: 120px;
        line-height: 100px;
    }
}

@media screen and (max-width: 991px) {
    .cw-main-slider-box h1 {
        font-size: 95px;
        line-height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .cw-main-slider-box h1 {
        font-size: 44px;
        line-height: 44px;
    }
}

@media screen and (max-width: 370px) {
    .cw-main-slider-box h1 {
        font-size: 38px;
        line-height: 38px;
    }
}

/********************************
********* CW BANNER ********
*********************************/
.cw-banner {
    padding: 230px 0 80px;
    background: var(--banner-color);
}

.cw-banner h1 {
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    font-size: 90px;
    color: #fff;
}

.cw-banner-image {
    margin-top: 40px;
}

.cw-theme-white .cw-banner h1 {
    color: #000;
}

.page-innovation .cw-banner h1 {
    color: #f5e84d;
}

.page-innovation .cw-banner h1 span {
    color: #ffffff;
}

@media screen and (max-width: 1400px) {
    .cw-banner h1 {
        font-size: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .cw-banner h1 {
        font-size: 70px;
    }
}

@media screen and (max-width: 991px) {
    .cw-banner h1 {
        font-size: 60px;
    }

    .cw-banner-image {
        max-width: 700px;
    }
}

@media screen and (max-width: 768px) {
    .cw-banner {
        padding: 200px 0 50px;
    }

    .cw-banner h1 {
        font-size: 38px;
    }

    .cw-banner-image {
        max-width: 400px;
    }
}

@media screen and (max-width: 350px) {
    .cw-banner h1 {
        font-size: 32px;
    }
}

/********************************
******** CW HOME STATS *******
*********************************/
.cw-stat {
    background-color: #006fb3;
    padding: 100px 0;
}

.cw-stat-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cw-stat-col {
    text-align: center;
    position: relative;
    flex-grow: 1;
}

.cw-stat-col:after {
    content: "";
    display: block;
    height: 100%;
    width: 0;
    border-left: 3px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.cw-stat-col:last-child:after {
    display: none;
}

.cw-stat-number {
    font-size: 110px;
    font-weight: 900;
    line-height: .85;
    letter-spacing: -.3rem;
    color: #f5e84d;
    margin-bottom: 15px;
}

.cw-stat-number sub {
    margin-left: 5px;
    bottom: 0;
}

.cw-stat-number sub,
.cw-stat-number sup {
    font-size: 80px;
    font-weight: 900;
}

.cw-stat-number sup {
    vertical-align: super;
    margin-right: 5px;
    top: 20px;
}

.cw-stat-value {}

.cw-stat-text {
    font-size: 25px;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.cw-stat-info {
    color: #fff;
    margin-top: 60px;
}

@media screen and (max-width: 1250px) {
    .cw-stat-number {
        font-size: 80px;
    }

    .cw-stat-number sub,
    .cw-stat-number sup {
        font-size: 50px;
    }

    .cw-stat-number sup {
        top: 8px;
    }

    .cw-stat-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 991px) {
    .cw-stat-col {
        flex: 0 0 50%;
        margin: 0 0 50px
    }

    .cw-stat-col:after {
        display: none;
    }

    .cw-stat-info {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .cw-stat-col {
        flex: 0 0 100%;
    }

    .cw-stat-text {
        line-height: 1.4;
    }
}

/********************************
******** CW HOME STRATEGY *******
*********************************/
.cw-strategy {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
}

.cw-strategy-wrap {
    max-width: 1000px;
    margin: 0 0 50px;
}

.cw-strategy-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px;
}

.cw-strategy-title span {
    color: #f5e84d;
}

.cw-strategy-text {
    font-size: 20px;
}

.cw-strategy-content {
    max-width: 1000px;
    margin: 0;
}

.cw-strategy-col {
    max-width: 260px;
}

.cw-strategy-col-icon img {
    max-width: 85px;
    max-height: 85px;
    margin-bottom: 25px;
}

.cw-strategy-col-title {
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 25px;
    line-height: 1;
}

.cw-strategy-col-text {
    margin: 0 0 50px;
    font-size: 20px;
}

.cw-icon-btn {
    display: block;
    width: fit-content;
    text-decoration: none;
}

.cw-icon-btn-text {
    display: flex;
    align-items: center;
    font-size: 10px;
    line-height: 26px;
    font-weight: 700;
    transition: all .2s;
    transform: translateX(calc(42px - 100%));
    color: transparent;
}

.cw-icon-btn-img {
    display: block;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-left: 13px;
    transition: all .2s .1s;
    margin-left: 0;
}

.cw-icon-btn:hover .cw-icon-btn-text {
    transform: translateX(0);
    font-size: 20px;
    color: inherit;
}

.cw-icon-btn:hover .cw-icon-btn-img {
    margin-left: 13px;
}

.cw-icon-btn.cw-icon-btn-red:hover .cw-icon-btn-text {
    color: var(--cw-color-red);
}

.cw-icon-btn.cw-icon-btn-blue:hover .cw-icon-btn-text {
    color: var(--cw-color-blue);
}

.cw-icon-btn.cw-icon-btn-green:hover .cw-icon-btn-text {
    color: var(--cw-color-green);
}

.cw-icon-btn.cw-icon-btn-red g,
.cw-icon-btn.cw-icon-btn-red path {
    stroke: var(--cw-color-red);
}

.cw-icon-btn.cw-icon-btn-blue g,
.cw-icon-btn.cw-icon-btn-blue path {
    stroke: var(--cw-color-blue);
}

.cw-icon-btn.cw-icon-btn-green g,
.cw-icon-btn.cw-icon-btn-green path {
    stroke: var(--cw-color-green);
}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1399px) {
    .cw-strategy-col {
        margin: 0;
    }

    .cw-strategy-content {
        margin-top: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .cw-strategy-col {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .cw-strategy-col-text {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 767px) {
    .cw-strategy-title {
        font-size: 42px;
    }

    .cw-strategy-col {
        margin-bottom: 70px;
    }

    .cw-strategy {
        padding: 50px 0 0;
    }

    .cw-strategy-wrap {
        margin: 0;
    }
}


/********************************
******** CW HOME ABOUT *******
*********************************/

.cw-about {}

.cw-about-image img {
    width: 100%;
}

.cw-about-content {
    max-width: 675px;
    margin-left: 110px;
    margin-right: 20px;
}

.cw-about-title {
    font-weight: 900;
    font-size: 42px;
    color: #000;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0 0 32px;
}

.cw-about-text p {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 20px;
}

@media screen and (max-width: 1600px) {
    .cw-about-content {
        margin: 0 50px;
    }
}

@media screen and (max-width: 1250px) {
    .cw-about-title {
        font-size: 36px;
    }

    .cw-about-text p {
        font-size: 22px;
    }

    .cw-about-image img {
        height: 800px;
        object-fit: cover;
        object-position: top;
    }
}

@media screen and (max-width: 991px) {
    .cw-about-content {
        margin: 50px;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .cw-about-content {
        margin: 0;
        padding: 30px;
    }

    .cw-about-image img {
        height: auto;
    }
}


/********************************
******** CW FINANCIAL TABLE *******
*********************************/


.tbl {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.tbl tr:first-child {
    border-bottom: 4px solid #000;
}

.tbl tr th:first-child,
.tbl tr td:first-child {
    width: 40%;
}

.tbl tr th:nth-child(2),
.tbl tr td:nth-child(2) {
    width: 14%;
    background-color: rgba(113, 115, 117, .1);
    font-weight: 700;
    text-align: right;
    padding: 10px 20px;
}

.tbl tr th:nth-child(3),
.tbl tr th:nth-child(4),
.tbl tr td:nth-child(3),
.tbl tr td:nth-child(4) {
    width: 23%;
    text-align: right;
}

.tbl th,
.tbl .title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    color: #ce1126;
    padding: 10px 0;
}

.tbl tr {
    border-bottom: 1px solid #000;
}

.tbl tr td {
    font-size: 20px;
    line-height: 1.5;
    padding: 10px 0;
}

.tbl tr td b {
    font-weight: 700;
}

.tbl .rw-border {
    border-top: 2px solid #000 !important;
    border-bottom: 2px solid #000 !important;
}

.tbl tr th,
.tbl tr td {
    position: relative;
}

.tbl tr th span,
.tbl tr td span {
    position: absolute;
    right: 100px;
}

.tbl tr td:nth-child(3) span,
.tbl tr td:nth-child(4) span {
    left: auto;
    right: 100px
}

.tbl-percent-row td i {
    font-style: normal;
    position: relative;
    right: -15px;
}

.cw-ol {
    counter-reset: list;
    padding: 0;
}

.cw-ol>li {
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.cw-ol>li:before {
    counter-increment: list;
    content: " (" counter(list, decimal) ") ";
    position: absolute;
    left: 0;
}

@media screen and (min-width: 768px) {
    .table-responsive {
        overflow: visible;
    }
}


@media screen and (max-width: 991px) {

    .tbl tr th:nth-child(2),
    .tbl tr td:nth-child(2) {
        width: 20%;
    }

    .tbl tr th:nth-child(3),
    .tbl tr th:nth-child(4),
    .tbl tr td:nth-child(3),
    .tbl tr td:nth-child(4) {
        width: 20%;
    }
}

@media screen and (max-width: 991px) {

    .tbl {
        width: 650px;
    }

    .tbl tr th:nth-child(1),
    .tbl tr td:nth-child(1) {
        width: 200px
    }

    .tbl tr th:nth-child(2),
    .tbl tr td:nth-child(2) {
        width: 120px
    }

    .tbl tr th:nth-child(3),
    .tbl tr th:nth-child(4),
    .tbl tr td:nth-child(3),
    .tbl tr td:nth-child(4) {
        width: 120px
    }
}

/********************************
********* CW TEXT PAGES ********
*********************************/
.cw-text-page__content h1:not([class]),
.cw-text-page__content h2:not([class]),
.cw-text-page__content h3:not([class]),
.cw-text-page__content h4:not([class]),
.cw-text-page__content h5:not([class]),
.cw-text-page__content h6:not([class]) {
    margin-top: 30px;
    margin-bottom: 30px;
}

.cw-letter__content blockquote,
.cw-letter__content h3,
.cw-text-page__content blockquote,
.cw-text-page__content blockquote p,
.cw-text-page__content h3:not([class]) {
    font-size: 32px;
    line-height: 42px;
}

.cw-text-page__content h5 {
    font-size: 24px;
    font-weight: 700;
}

.cw-text-page__content p {
    font-size: 20px;
    line-height: 30px;
}

.cw-text-page__block h3,
.cw-text-page__content p {
    margin: 0 0 20px;
}

.cw-text-page__content h3:not([class]) {
    font-weight: 900;
    clear: initial;
}

.cw-text-page__content blockquote {
    font-weight: 900;
    line-height: 1.25;
    margin: 40px 0;
    padding: 0;
}

.cw-text-page__content blockquote p {
    border-top: 3px solid #ce1126;
    border-bottom: 3px solid #ce1126;
    font-weight: 900;
    line-height: 1.25;
    padding: 20px 0;
    margin-bottom: 0;
}

.cw-text-page__content blockquote p.text-right {
    text-align: left !important;
    margin: 0 0 40px 70px;
    float: right;
    max-width: 450px;
}

.cw-letter__author-signature {
    height: 140px;
    margin: 0 0 20px;
}

.cw-letter__author-signature img {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.cw-letter__author-name {
    text-transform: uppercase;
    margin: 0;
    font-weight: 900;
    font-size: 52px;
}

.cw-letter__author-position {
    font-style: italic;
    font-weight: 300;
    margin: 0;
    font-size: 24px;
    line-height: 40px;
}

.cw-image {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.cw-image img {
    width: 100%;
}

.cw-image__content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    transition: all .4s;
    transform: translateX(430px);
    display: flex;
}

.cw-image__content-arrow {
    padding: 20px;
}

.cw-image__content-box {
    height: 100%;
    width: 430px;
    background-color: var(--banner-color);
    padding: 60px 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cw-image__content-arrow svg {
    transform: rotate(180deg);
    transition: all .4s;
}

.cw-image__content-arrow svg g,
.cw-image__content-arrow svg path {
    stroke: #fff;
}

.cw-image__content-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.cw-image__content-title i {
    display: block;
    font-weight: 700;
    font-size: 24px;
    font-style: normal;
    color: #f5e84d;
    margin-bottom: 10px;
}

.cw-image:hover .cw-image__content {
    transform: translateX(0);
}

.cw-image:hover .cw-image__content-arrow svg {
    transform: rotate(0deg);
}

.cw-image.cw-image-top .cw-image__content-arrow svg {
    transform: rotate(90deg);
}

.cw-image.cw-image-top .cw-image__content-box {
    width: 100%;
}

.cw-image.cw-image-top .cw-image__content {
    height: auto;
    transform: translateY(calc(-100% + 82px));
    flex-direction: column;
}

.cw-image.cw-image-top .cw-image__content-arrow {
    order: 2;
    text-align: right;
}

.cw-image.cw-image-top:hover .cw-image__content {
    transform: translateY(0);
}

.cw-image.cw-image-top:hover .cw-image__content-arrow svg {
    transform: rotate(270deg);
}

.cw-image-float-right {
    float: right;
    margin: 0 0 0 90px;
    max-width: 430px;
}

.cw-info-section-gray {
    background: rgba(113, 115, 117, .1);
}

.cw-info-title {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 50px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
}

.cw-info-block {
    margin-bottom: 50px;
}

.cw-info-section .row>div .cw-info-block:last-child {
    margin-bottom: 0;
}

.cw-info-block h3 {
    color: #ce1126;
    margin: 0 0 8px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 32px;
    line-height: 42px;
}

.cw-info-block p,
.cw-info-block a {
    font-size: 22px;
}

.cw-info-block p {
    line-height: 30px;
    margin: 0 0 5px;
}

.cw-info-block a {
    text-decoration: underline;
    font-weight: 700;
    color: #ce1126;
    margin: 0 0 5px;
    overflow-wrap: break-word;
}


@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {

    .cw-letter__content blockquote,
    .cw-letter__content h3,
    .cw-text-page__content blockquote,
    .cw-text-page__content blockquote p,
    .cw-text-page__content h3:not([class]) {
        font-size: 28px;
        line-height: 36px;
    }
}

@media screen and (max-width: 767px) {

    .cw-letter__content blockquote,
    .cw-letter__content h3,
    .cw-text-page__content blockquote,
    .cw-text-page__content blockquote p,
    .cw-text-page__content h3:not([class]) {
        font-size: 24px;
        line-height: 30px;
    }

    .cw-text-page__content h5 {
        font-size: 20px;
    }

    .cw-text-page__content p {
        font-size: 18px;
    }

    .cw-text-page__content blockquote p.text-right {
        margin: 40px 0;
        max-width: 100%;
        float: none;
    }

    .cw-letter__author-signature {
        height: 100px;
        margin-bottom: 20px;
    }

    .cw-letter__author-name {
        font-size: 32px;
    }

    .cw-letter__author-position {
        font-size: 20px;
    }

    /* .cw-image img {
        min-height: 400px;
        object-fit: cover;
    }

    .cw-image .cw-image__content-arrow svg {
        transform: rotate(90deg);
    }

    .cw-image .cw-image__content-box {
        width: 100%;
        padding: 10px;
    }

    .cw-image .cw-image__content {
        height: auto;
        transform: translateY(calc(-100% + 82px));
        flex-direction: column;
    }

    .cw-image .cw-image__content-arrow {
        order: 2;
        text-align: right;
    }

    .cw-image:hover .cw-image__content {
        transform: translateY(0);
    }

    .cw-image:hover .cw-image__content-arrow svg {
        transform: rotate(270deg);
    } */

    .cw-image {
        margin: 20px 0;
    }

    .cw-image__content-arrow {
        display: none;
    }

    .cw-image__content {
        position: static;
        transform: none !important;
        display: block;
    }
    .cw-image__content-box {
        width: auto;
        padding: 10px;
        display: block;
        height: auto;
    }
    .cw-image__content-title {
        font-size: 18px;
        line-height: 26px;
    }

    .cw-image-float-right {
        float: none;
        margin: 20px 0;
    }

    .cw-info-section .row>div .cw-info-block:last-child {
        margin-bottom: 50px;
    }
}

/********************************
********* CW FOOTER ********
*********************************/
footer {
    background: var(--footer-color);
    padding: 90px 0 110px;
}

.cw-footer {
    display: flex;
    align-items: center;
}

.cw-footer-logo {
    display: block;
    margin-right: 70px;
}

.cw-footer-content {}

ul.cw-footer-menu {
    margin: 0 0 25px;
    padding: 0;
    display: flex;
    align-items: center;
}

ul.cw-footer-menu li {
    list-style: none;
    margin-right: 50px;
    position: relative;
}

ul.cw-footer-menu li:after {
    content: "";
    display: block;
    height: 16px;
    width: 0;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -25px;
}

ul.cw-footer-menu li:last-child {
    margin: 0;
}

ul.cw-footer-menu li:last-child::after {
    display: none;
}

ul.cw-footer-menu li a {
    font-size: 20px;
    line-height: 30px;
    display: block;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

/*
ul.cw-footer-menu li a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    transition: 0.3s all;
    background: #fff;
    left: 0;
    bottom: -5px;
    right: 0;
    margin: auto;
}

ul.cw-footer-menu li a:hover:after {
    width: 100%;
}
*/
.cw-footer-copyright {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 1250px) {
    .cw-footer {
        display: block;
    }

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

    ul.cw-footer-menu {
        justify-content: center;
    }

    .cw-footer-copyright {
        text-align: center;
    }
}

@media screen and (max-width: 950px) {
    ul.cw-footer-menu {
        flex-wrap: wrap;
    }

    ul.cw-footer-menu li {
        flex: 0 0 50%;
        margin: 0;
        text-align: center;
    }

    ul.cw-footer-menu li:after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    footer {
        padding: 50px 0;
    }
    ul.cw-footer-menu li {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.cw-barba-container {
    background: #fff;
}

.cw-barba-container_before-enter {
    position: absolute;
    top: -400px;
    left: 0;
    width: 100%;
    z-index: 10
}