*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

::-moz-selection {
    background-color: #d9f2f2
}

::selection {
    background-color: #d9f2f2
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    text-decoration: none;
    color: inherit;
    opacity: .8
}

iframe,
img {
    max-width: 100%
}

:root {
    --color-primary: 0, 0, 95;
    --header-height: 80px
}

.object-contain {
    object-fit: contain;
}

@font-face {
    font-family: Gotham;
    src: url(../font/Gotham-Book.otf) format("opentype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Gotham;
    src: url(../font/Gotham-Medium.otf) format("opentype");
    font-weight: 500;
    font-style: normal
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit
}

html {
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: auto;
    overflow-y: auto
}

@media screen and (max-width:991px) {
    html {
        font-size: 14px
    }
}

body {
    font-style: normal;
    color: #000;
    font-family: Gotham, sans-serif;
    line-height: 1.5
}

@media (max-width:992px) {
    body {
        overflow-x: hidden
    }
}

input,
select,
textarea {
    resize: unset
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline-color: rgb(var(--color-primary))
}

.btn {
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    border-radius: unset;
    padding: 1rem 1.5rem;
    font-weight: 500;
    position: relative;
    --btnSquareColor: #000;
    padding-right: 60px;
    text-transform: uppercase
}

.btn:not(.btn-without-square)::after {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    content: "";
    background-color: var(--btnSquareColor);
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.btn:hover::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.btn-primary {
    background: rgb(var(--color-primary));
    border-color: rgb(var(--color-primary));
    --btnSquareColor: #fff;
    color: #fff
}

.btn-primary:hover {
    opacity: 1 !important;
    background-color: #0C0B95 !important;
    border-color: #0C0B95 !important
}

.btn-black {
    background: #000;
    border-color: #000;
    --btnSquareColor: #fff;
    color: #fff
}

.btn-black:hover {
    background: rgba(0, 0, 0, .8);
    border-color: #000;
    color: #fff
}

.btn-white {
    border: 1px solid rgb(var(--color-primary));
    background-color: #fff;
    color: rgb(var(--color-primary))
}

.btn-white:hover {
    border: 1px solid rgb(var(--color-primary));
    background-color: #fff;
    color: rgb(var(--color-primary))
}

.btn-primary:hover {
    opacity: .9;
    background-color: rgb(var(--color-primary));
    border-color: rgb(var(--color-primary))
}

.d-flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

iframe,
img {
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    height: auto
}

h1 {
    font-size: 6rem
}

h2 {
    font-size: 3rem
}

.text-medium {
    font-size: 1.5rem
}

form input[type=email],
form input[type=password],
form input[type=text],
form textarea {
    background-color: transparent;
    font-size: 1.2rem;
    border: none;
    padding: 8px;
    padding-left: 0;
    border-bottom: 1px solid #000
}

form input[type=email]:focus-visible,
form input[type=password]:focus-visible,
form input[type=text]:focus-visible,
form textarea:focus-visible {
    outline: 0;
    border-color: rgba(var(--color-primary), .5)
}

form input[type=checkbox] {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    border-width: 2px;
    border-color: #000
}

form input[type=checkbox]:checked {
    background-color: rgb(var(--color-primary)) !important;
    border-color: rgb(var(--color-primary)) !important
}

form input[type=checkbox]:focus-visible {
    outline: 0;
    border-color: rgba(var(--color-primary), .5)
}

body.transparent-header .c-header {
    --textColor: #fff;
    background-color: transparent
}

body.transparent-header .c-header .black-logo {
    display: none
}

body.transparent-header .c-header .search-icon img {
    -webkit-filter: invert(1);
    filter: invert(1)
}

.template-insight-detail .c-header {
    background-color: transparent
}

body:not(.transparent-header) .white-logo {
    display: none
}

.c-header {
    height: var(--header-height);
    position: fixed;
    left: 0;
    z-index: 10;
    top: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background: #fff;
    --textColor: #000
}

.c-header .logo:hover {
    opacity: 1
}

@media (max-width:992px) {
    .c-header__inner .logo img {
        width: 200px
    }
}

.c-header #menu-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    gap: 7px
}

.c-header #menu-button span {
    width: 30px;
    height: 1px;
    background-color: var(--textColor)
}

@media (min-width:992px) {
    .c-header:not(.dark-bg) .search-icon {
        border-left: 1px solid var(--textColor)
    }
}

.c-header nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.c-header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.c-header nav ul li {
    color: var(--textColor);
    text-transform: uppercase
}

.c-header nav ul li:not(:last-child) {
    margin-right: 35px
}

.c-header nav ul li#menu-item-145 {
    position: relative;
    margin-right: 20px;
    margin-left: -15px;
    padding-top: 10px;
    margin-top: -10px;
    padding-right: 15px;
    padding-left: 15px;
}

.c-header nav ul li#menu-item-145:hover {
    background-color: #f1f1f7;
}

.c-header nav ul li#menu-item-145:hover a{color:#000000;}

.c-header nav ul ul.sub-menu {
    display: none;
    position: relative;
}

.c-header nav ul li:hover ul.sub-menu {
    display: block;
    position: absolute;
    background-color: #f1f1f7;
    padding: 15px;
    width: 300px;
    left: 0;
    top: 100%;
}
.c-header nav ul li:hover ul.sub-menu li{display:block; width:100%;}
.c-header nav ul li:hover ul.sub-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #00000050;
    display: block;
}

.c-header nav ul li:hover ul.sub-menu li:last-child a{border-bottom:0;}

body.page-10 .c-header nav ul li#menu-item-145:hover a{color: #F1F1F7;}
body.page-10 .c-header nav ul li#menu-item-145:hover,
body.page-10 .c-header nav ul li:hover ul.sub-menu{background-color:rgb(var(--color-primary));}


@media screen and (max-width:991px) {
    .mobile-menu .mobile-menu-wrapper ul.sub-menu li a{padding:0; display:block; border-left:1px solid #fff; padding-left:15px; font-size:1.2rem !important; margin-top:15px;}
}

@media (min-width:992px) {
    .c-header nav .search-icon {
        margin-left: 25px;
        padding-left: 12px
    }
}

.c-header.scrolled {
    --textColor: #000 !important;
    background-color: #fff !important;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    -moz-transition: transform .3s, -moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s, -moz-transform .3s, -o-transform .3s
}

.c-header.scrolled .black-logo {
    display: block !important
}

.c-header.scrolled .white-logo {
    display: none !important
}

.c-header.scrolled.scroll-down {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%)
}

.c-header.scrolled .search-icon img {
    -webkit-filter: unset !important;
    filter: unset !important
}

.mobile-menu {
    display: none;
    position: fixed;
    background: rgb(var(--color-primary));
    width: 100%;
    height: 100%;
    z-index: 99998;
    padding-top: 0;
    overflow-y: scroll;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
    top: -100%
}

.mobile-menu__search {
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative
}

.mobile-menu__search ::-moz-placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search ::-webkit-input-placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search :-moz-placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search :-ms-input-placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search ::-ms-input-placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search ::placeholder {
    color: #fff;
    opacity: 1
}

.mobile-menu__search ::-ms-input-placeholder {
    color: #fff
}

.mobile-menu__search input {
    background-color: transparent;
    border: unset;
    color: #fff;
    text-transform: uppercase;
    padding-left: 40px;
    width: 100%
}

.mobile-menu__search input:focus-visible {
    outline: 0;
    border-bottom: 1px solid rgba(127, 127, 127, .5)
}

.mobile-menu__search img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.mobile-menu .mobile-menu-wrapper {
    max-width: 100%;
    font-size: 1.3rem;
    color: #fff;
    line-height: 2;
    height: 100%;
    padding: 15px;
    padding-top: 30px
}

.mobile-menu .mobile-menu-wrapper #menu-button span {
    background-color: #fff
}

.mobile-menu .mobile-menu-wrapper #menu-button span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -moz-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    -o-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu .mobile-menu-wrapper #menu-button span:nth-child(2) {
    display: none
}

.mobile-menu .mobile-menu-wrapper #menu-button span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(0, -1px);
    -moz-transform: rotate(-45deg) translate(0, -1px);
    -ms-transform: rotate(-45deg) translate(0, -1px);
    -o-transform: rotate(-45deg) translate(0, -1px);
    transform: rotate(-45deg) translate(0, -1px)
}

.mobile-menu .mobile-menu-wrapper .logo img {
    width: 200px
}

.mobile-menu .mobile-menu-wrapper .menu-block {
    margin-top: 60px
}

.mobile-menu .mobile-menu-wrapper .menu-block ul li a {
    display: block;
    text-transform: uppercase;
    font-size: 1.5rem
}

.mobile-menu .mobile-menu-wrapper .menu-block ul li:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(127, 127, 127, .5)
}

.mobile-menu .mobile-menu-wrapper .menu-block>a {
    font-weight: 700
}

.mobile-menu .mobile-menu-wrapper ul {
    list-style: none;
    padding-left: 10px
}

.mobile-menu .mobile-menu-wrapper ul li {
    font-size: 1.2rem;
    padding-left: 0
}

.mobile-menu .mobile-menu-wrapper a {
    display: block;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, .062745098)
}

body.menu-open .mobile-menu {
    display: block;
    top: 0
}

.c-footer {
    background-image: -webkit-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: -moz-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: -o-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: linear-gradient(315deg, #000067 0, #000 80%);
    padding: 4rem 0;
    color: #fff
}

.c-footer__head {
    margin-bottom: 9.18rem
}

.c-footer__body ul {
    padding: 0;
    list-style: none;
    font-size: 3rem
}

.c-footer__body__end {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.c-footer__body__end__address {
    margin-top: 2rem
}

.c-footer__end {
    margin-top: 8rem;
    font-size: 1rem
}

.c-footer__end ul {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem
}

@media (max-width:992px) {
    .c-footer__end ul {
        gap: 1rem
    }
}

body.header-margin {
    margin-top: var(--header-height)
}

.c-home__hero {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    color: #fff
}

.c-home__hero__bg,
.c-home__hero__line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.c-home__hero__line {
    right: 0;
    left: unset !important;
    -o-object-position: unset !important;
    object-position: unset !important;
    top: 0;
    height: 700px;
    width: 50%;
    z-index: 6;
    -o-object-fit: contain;
    object-fit: contain
}

.c-home__hero__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 5;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative
}

.c-home__hero__top__content {
    z-index: inherit
}

.c-home__hero__top::before {
    content: "";
    position: absolute;
    opacity: .3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #010153
}

.c-home__hero__top::after {
    content: "";
    position: absolute;
    opacity: .9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: -moz-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: -o-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: linear-gradient(45deg, #05053a 40%, #0b0981 100%)
}

.c-home__hero__top .container {
    z-index: inherit
}

.c-home__hero__top h1 {
    line-height: 1
}

.c-home__hero__top h1 strong {
    font-weight: 500
}

.c-home__hero__top p {
    margin-bottom: 0;
    font-size: 1.7rem;
    margin-top: 4rem;
    color: rgba(255, 255, 255, .8)
}

.c-home__hero__top__scroll-btn {
    position: absolute;
    bottom: 3.12rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1
}

.c-home__hero__bottom {
    padding: 3rem 0;
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgb(var(--color-primary))
}

.c-home__hero__bottom::after {
    content: "";
    position: absolute;
    opacity: .8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: #fff
}

.c-home__hero__bottom .container {
    position: relative;
    z-index: 4
}

.c-home__hero__bottom__start h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.c-home__hero__bottom__start p {
    font-size: 2.5rem;
    margin-bottom: 0;
    line-height: 1.1
}

.c-home__hero__bottom__end {
    margin-top: 3.5rem;
    font-size: 1.5rem
}

.c-home__hero__bottom__end p:not(:last-child) {
    margin-bottom: 1.5rem
}

@media (max-width:1400px) {

    html,
    body {
        font-size: 14px;
    }

    .c-home__hero .c-home__hero__top__content h1 {
        font-size: 4rem
    }
}

@media (max-width:992px) {
    .c-home__hero .c-home__hero__bg {
        -o-object-position: right;
        object-position: right
    }

    .c-home__hero .c-home__hero__top {
        display: block
    }

    .c-home__hero .c-home__hero__top::after {
        z-index: -1
    }

    .c-home__hero .c-home__hero__top__content {
        font-size: 16px;
        padding-top: 200px
    }

    .c-home__hero .c-home__hero__top__content h1 {
        font-size: 3rem;
    }

    .c-home__hero .c-home__hero__top__content p {
        margin-top: 10px
    }

    .c-home__hero .c-home__hero__line__mobile {
        min-height: 300px;
        margin-top: 30px;
        -o-object-fit: contain;
        object-fit: contain;
        padding-bottom: 100px
    }

    .c-home__hero .c-home__hero__bottom__start {
        font-size: 16px
    }

    .c-home__hero .c-home__hero__bottom__start p {
        font-size: 20px
    }
}

.c-home__bg-image-slider {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8.3rem 0;
    color: #00005f
}

.c-home__bg-image-slider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(315deg, #fff 0, #dad5e1 21%, #5e5cc1 63%);
    background-image: -moz-linear-gradient(315deg, #fff 0, #dad5e1 21%, #5e5cc1 63%);
    background-image: -o-linear-gradient(315deg, #fff 0, #dad5e1 21%, #5e5cc1 63%);
    background-image: linear-gradient(135deg, #fff 0, #dad5e1 21%, #5e5cc1 63%);
    opacity: .1
}

.c-home__bg-image-slider img {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: .1;
    height: 100%;
    top: 0;
    z-index: 0
}

.c-home__bg-image-slider .container {
    z-index: 2;
    position: relative
}

.c-home__bg-image-slider h2 {
    margin-bottom: 1.5rem
}

.c-home__bg-image-slider p {
    margin-bottom: 0;
    font-size: 1.5rem
}

.c-home__bg-image-slider__start {
    margin-bottom: 6.25rem
}

.c-home__bg-image-slider__start p {
    font-weight: 500
}

.c-home__bg-image-slider h3 {
    font-size: 2.25rem;
    font-weight: 400
}

.c-home__bg-image-slider h3 a.active {
    font-weight: 500
}

.c-home__bg-image-slider h3:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(127, 127, 127, .48)
}

.c-home__bg-image-slider .accordion-button,
.c-home__bg-image-slider .accordion-item {
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border: 0;
}

.c-home__bg-image-slider .accordion-button {
    outline: unset;
    box-shadow: none;
}

.c-home__bg-image-slider .accordion-button:hover {
    font-weight: 500
}

.c-home__bg-image-slider .accordion-button:focus,
.c-home__bg-image-slider .accordion-button.active {
    color: inherit;
    outline: unset;
    box-shadow: none;
}

.c-home__bg-image-slider .accordion-body p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

@media (min-width:992px) {
    .c-home__bg-image-slider::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 160px;
        width: 30%;
        background-color: #010106;
        z-index: 1
    }
}

.c-home__contacts {
    padding: 15rem 0;
    color: #fff;
    background-image: -webkit-linear-gradient(135deg, #000067 0, #000 100%);
    background-image: -moz-linear-gradient(135deg, #000067 0, #000 100%);
    background-image: -o-linear-gradient(135deg, #000067 0, #000 100%);
    background-image: linear-gradient(315deg, #000067 0, #000 100%)
}

.c-home__contacts p {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem
}

.c-home__insights {
    padding-top: 9.3rem;
    background-image: -webkit-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -o-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    padding-bottom: 14rem
}

.c-home__insights__start {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.c-home__insights__start h2 {
    margin-bottom: 2.75rem
}

.c-home__insights__start__nav {
    gap: 4.5rem
}

.c-home__insights__start__newsletter p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0
}

.c-home__insights__start__newsletter form input[type=email] {
    margin-bottom: 1.2rem
}

.c-home__insights__start__newsletter form .form-check {
    margin-bottom: 2.4rem
}

.c-home__insights__start__newsletter form label {
    font-size: .875rem
}

@media (max-width:992px) {
    .c-home__insights__start__head {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 2.75rem
    }

    .c-home__insights__start__head h2 {
        margin-bottom: 0
    }

    .c-home__insights__start__head .c-home__insights__start__nav {
        gap: 2rem
    }
}

.c-home__insights .c-insight-box:hover .c-insight-box__body,
.c-home__insights .c-insight-box:hover .c-insight-box__img::after {
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -ms-transform: unset !important;
    -o-transform: unset !important;
    transform: unset !important
}

.c-team-item {
    margin-top: 50px
}

.c-team-item__img {
    background-color: #f3f3f7
}

.c-team-item__img img {
    -o-object-position: top;
    object-position: top;
    margin-top: -50px;
    width: 100%
}

@media (min-width:992px) {
    .c-team-item__img img {
        height: 350px
    }
}

.c-team-item.with-gradient .c-team-item__img {
    background-color: unset;
    background-image: -webkit-linear-gradient(135deg, #000 60%, #000067 100%);
    background-image: -moz-linear-gradient(135deg, #000 60%, #000067 100%);
    background-image: -o-linear-gradient(135deg, #000 60%, #000067 100%);
    background-image: linear-gradient(315deg, #000 60%, #000067 100%)
}

.c-team-item h3 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500
}

.c-team-item label {
    font-size: .93rem;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase
}

.c-insight-box .c-insight-box__body {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.c-insight-box__img {
    position: relative;
    width: 100%;
    height: 380px;
    padding: 0 10px;
    overflow: hidden
}

.c-insight-box__img::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 45px;
    z-index: 1;
    background-color: #f2f2f5
}

.c-insight-box__img img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.c-insight-box__title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem
}

.c-insight-box time {
    color: #9e9e9e;
    font-weight: 500;
    margin-right: 10px
}

.c-insight-box label {
    color: #00005f;
    font-weight: 500
}


.c-insight-box--small .c-insight-box__img::after {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    background-color: #fff;
    width: 40%;
    height: 33px
}

.c-insight-box--small .c-insight-box__title {
    font-size: 1.2rem;
    margin-bottom: .9rem
}

.c-insight-box__body {
    padding-top: 2rem;
    padding: 10px
}

.c-insight-box:hover a {
    opacity: 1
}

.c-insight-box:hover .c-insight-box__body {
    color: #fff;
    background-color: rgb(var(--color-primary))
}

.c-insight-box:hover .c-insight-box__img::after {
    background-color: rgb(var(--color-primary))
}

.c-insight-box:hover .c-insight-box__img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
}

.c-insight-box:hover label {
    color: #fff
}

.c-social-icons {
    gap: 10px
}

.c-social-icons a {
    width: 37px;
    height: 37px;
    padding: 5px;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.c-white-hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 540px
}

@media (max-width:992px) {
    .c-white-hero {
        min-height: 300px
    }
}

.c-white-hero h1 {
    color: rgb(var(--color-primary));
    font-weight: 500;
    font-size: 4.37rem
}

.c-white-hero p {
    font-size: 2rem;
    margin-bottom: 0;
    margin-top: 1rem;
    line-height: 1.4
}

.c-white-hero__img {
    height: 540px;
    position: absolute;
    right: 0;
    top: 0;
}

.template-page-expertise .c-white-hero__img {
    mask-image: url(https://copartners.docker.algoritmik.net/wp-content/uploads/2024/07/hero-line.svg);
    overflow: hidden;
    mask-repeat: no-repeat;
    background-repeat: no-repeat;
    mask-size: 100%;

}

.template-page-expertise .c-white-hero__img::after {
    content: '';
    top: -100%;
    position: absolute;
    left: -300px;
    width: 2000px;
    height: 2000px;
    border-radius: 50%;
    display: block;
    z-index: -1;
    background-repeat: no-repeat;
    background-image: linear-gradient(0deg, #C9C9E9 0% 40%, #0534DA 60% 100%);
    animation: rotate-gradient linear 7s infinite;
}

.c-white-hero__img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: inherit;
    height: inherit;
}

.template-page-expertise .c-white-hero__img img {
    visibility: hidden;
}


.c-about .scroll-on-click {
    margin-top: 7.75rem
}

.c-about__content {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.c-about__content h2 {
    color: rgb(var(--color-primary));
    font-size: 3rem
}

.c-about__content__sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px
}

.c-about__content__sidebar ul {
    padding-left: 0
}

.c-about__content__sidebar ul li:not(:last-child) {
    margin-bottom: 1.5rem
}

.c-about__content__sidebar ul li a.active,
.c-about__content__sidebar ul li a:hover {
    font-weight: 500
}

.c-about__content__main__text-section__big-text {
    color: rgb(var(--color-primary));
    font-size: 2rem;
    font-weight: 500
}

.c-about__content__main__text-section__small-text {
    font-size: 1.5rem
}

.c-about__content__image-with-box {
    margin: 10rem 0
}

.c-about__content__image-with-box#about-us {
    margin-top: 0;
}

@media (min-width:992px) {
    .c-about__content__image-with-box img {
        height: 635px
    }
}

.c-about__content__image-with-box h2 {
    margin-top: 3.75rem
}

.c-about__content__image-with-box__content {
    padding: 4.68rem 2.18rem;
    background-color: #fff;
    text-align: justify;
}

.c-about__content__image-with-box__content a:not(.btn) {
    text-decoration: underline;
    font-weight: 500
}

@media (min-width:992px) {
    .c-about__content__image-with-box__content {
        margin-top: -400px
    }
}

.c-about__content__image-with-box__content__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 30px;
    text-align: justify;
}

.c-about__content__image-with-box__content__item label {
    color: #51b6ff;
    font-size: 1.25rem
}

.c-about__content__image-with-box__content__item h3 {
    font-size: 2rem;
    margin-bottom: 1rem
}

.c-about__content__image-with-box__content__item p {
    color: #646464
}

.c-about__content__image-with-box__content__item:not(:last-child) {
    margin-bottom: 4rem
}

.c-about__content__image-with-box.careers h2 {
    margin-top: 0;
    margin-bottom: 1rem
}

.c-about__content__image-with-box.careers .btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3rem
}

.c-about__content__image-with-box.careers .btn img {
    width: 28px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.c-about__content__image-with-box.careers .c-about__content__image-with-box__content {
    background-color: #f9f9f9
}

@media (min-width:992px) {
    .c-about__content__image-with-box.careers .c-about__content__image-with-box__content {
        margin-top: -100px
    }
}

.c-about__content__our-values h2 {
    margin-bottom: 1.2rem
}

.c-about__content__our-values p {
    font-size: 1.2rem
}

.c-about__content__our-values__items__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.5rem
}

.c-about__content__our-values__items__item:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #b6b6b6
}

.c-about__content__our-values__items__item img {
    padding-left: 1rem;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.c-about__content__our-values__items__item h3 {
    font-size: 1.5rem;
    margin-bottom: 0
}

.c-team__items {
    padding: 3rem 0
}

.c-team__items .c-team-item__img {
    position: relative
}

.c-team__items .c-team-item__img::before {
    content: "";
    height: 50px;
    width: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    -moz-transition: transform .3s, -moz-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s, -moz-transform .3s, -o-transform .3s;
    background-color: #f3f3f7;
    left: 0;
    position: absolute;
    z-index: 0;
    top: -50px;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px)
}

.c-team__items .c-team-item__img img {
    z-index: 1;
    position: relative;
    height: 390px
}

.c-team__items .c-team-item__body {
    padding-left: 1rem
}

.c-team__items .c-team-item__body h2 {
    margin-top: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    color: rgb(var(--color-primary));
    font-size: 1.5rem
}

.c-team__items .c-team-item:hover a {
    opacity: 1
}

.c-team__items .c-team-item:hover .c-team-item__img::before {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.c-team-detail__hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    color: #fff;
    background-image: -webkit-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: -moz-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: -o-linear-gradient(135deg, #000067 0, #000 80%);
    background-image: linear-gradient(315deg, #000067 0, #000 80%);
    min-height: 580px
}

@media (max-width:992px) {
    .c-team-detail__hero {
        padding-top: -webkit-calc(var(--header-height) + 60px);
        padding-top: -moz-calc(var(--header-height) + 60px);
        padding-top: calc(var(--header-height) + 60px)
    }
}

@media (min-width:992px) {
    .c-team-detail__hero::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 70%;
        height: 92px;
        background-color: #fff;
        z-index: 3
    }
}

.c-team-detail__hero .container {
    position: relative;
    z-index: 2
}

.c-team-detail__hero__content h1 {
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 0
}

.c-team-detail__hero__content label {
    font-size: 1.2rem;
    font-weight: 500
}

.c-team-detail__hero__content__contact-links {
    margin-top: 4rem;
    margin-bottom: 8.12rem
}

@media (max-width:992px) {
    .c-team-detail__hero__content__contact-links {
        margin-bottom: 4rem
    }
}

.c-team-detail__hero__content__contact-links a {
    display: block
}

.c-team-detail__hero__content__contact-links a:not(:last-child) {
    margin-bottom: 1rem
}

.c-team-detail__hero__content__contact-links a img {
    width: 15px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px
}

.c-team-detail__hero .c-home__hero__line {
    height: 100%;
    z-index: 1
}

.c-team-detail__content {
    position: relative;
    z-index: 4;
    font-size: 1.2rem;
    padding-bottom: 6rem;
    text-align: justify;
}

@media (min-width:992px) {
    .c-team-detail__content {
        margin-top: -50px
    }
}

@media (max-width:992px) {
    .c-team-detail__content {
        padding-top: 6rem
    }
}

.c-team-detail__insights {
    padding-bottom: 8rem
}

.c-contact__hero {
    padding-top: 8rem
}

@media (min-width:992px) {
    .c-contact__hero {
        padding-bottom: 8rem
    }
}

.c-contact__hero__content h1 {
    font-size: 4.37rem;
    font-weight: 500;
    color: rgb(var(--color-primary));
    margin-bottom: 1rem
}

.c-contact__hero__content p {
    font-size: 2rem;
    line-height: 1.2;

}

.c-contact__hero__content__address {
    margin-top: 3rem;
    font-size: 1.2rem
}

.c-contact__hero__content__address p {
    font-size: inherit
}

.c-contact__hero__content__address p:not(:last-child) {
    margin-bottom: 1.2rem
}

.c-contact__hero__content__social {
    margin-top: 5rem
}

.c-contact__hero__content__social h2 {
    font-weight: 500;
    font-size: 1.2rem
}

.c-contact__hero__content__social .c-social-icons a {
    border-color: rgb(var(--color-primary))
}

.c-contact__hero__form {
    position: relative;
    background-image: -webkit-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -o-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    padding: 4.37rem;
    padding-top: 160px
}

@media (max-width:992px) {
    .c-contact__hero__form {
        padding-left: 2rem;
        padding-right: 2rem
    }
}

.c-contact__hero__form::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 70px;
    background: #fff
}

.c-contact__hero__form form .form-group input,
.c-contact__hero__form form .form-group textarea {
    width: 100%;
    padding: 27px 21px;
    border-bottom: 2px solid #c9c9e9;
    border-image-slice: 1;
    resize: none
}

.c-contact__hero__form form .form-group input:focus-visible,
.c-contact__hero__form form .form-group textarea:focus-visible {
    border-color: #0534da;
    border-image-source: linear-gradient(186deg, #0534da 66%, #c9c9e9 100%)
}

.c-contact__hero__form form .form-group textarea {
    min-height: 200px
}

.c-insights__hero {
    overflow: hidden
}

@media (min-width:992px) {
    .c-insights__hero h1 {
        padding-bottom: 75px
    }
}

.c-insights__hero .c-white-hero__img {
    right: -200px
}

.c-insights__hero .c-white-hero__img img {
    position: relative;
    z-index: 1
}

.c-insights__featured {
    background-image: -webkit-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -o-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%)
}

@media (min-width:992px) {
    .c-insights__featured {
        margin-top: -200px
    }
}

.c-insights__featured__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.c-insights__featured__item__img {
    position: relative
}

.c-insights__featured__item__img img {
    height: 450px;
    object-fit: contain;
}

.c-insights__featured__item__img::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 45px;
    background-color: #f2f2f5;
    opacity: 1
}

.c-insights__featured__item__content h2 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 2rem
}

.c-insights__featured__item__content time {
    font-weight: 500;
    color: #9e9e9e
}

.c-insights__featured__item__content label {
    font-weight: 500;
    color: rgb(var(--color-primary))
}

.c-insights__featured__item__content .btn {
    margin-top: 2rem
}

.c-insights__list {
    margin-top: 3rem;
    margin-bottom: 16rem
}

.c-insights__list__categories {
    gap: 1.2rem;
    margin-bottom: 3rem
}

.c-insights__list__categories a {
    font-size: 1.2rem;
    padding: 10px;
    background-color: #f3f3f6;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.c-insights__list__categories a.active,
.c-insights__list__categories a:hover {
    background-color: rgb(var(--color-primary));
    color: #fff
}

.c-expertise .scroll-on-click {
    margin-top: 7.75rem
}

.c-expertise__banner {
    min-height: 524px;
    position: relative;
    padding: 4rem 0;
    font-size: 1.5rem;
    color: #fff
}

@media (max-width:992px) {
    .c-expertise__banner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.c-expertise__banner .container {
    position: relative;
    z-index: 3
}

.c-expertise__banner__img {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .2
}

.c-expertise__banner__img img {
    width: inherit;
    height: inherit
}

.c-expertise__banner:before {
    content: "";
    position: absolute;
    opacity: 1;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: -moz-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: -o-linear-gradient(45deg, #05053a 40%, #0b0981 100%);
    background-image: linear-gradient(45deg, #05053a 40%, #0b0981 100%)
}

.c-expertise__banner::after {
    content: "";
    position: absolute;
    opacity: 1;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 25%;
    height: 76px;
    background-color: #fff;
    z-index: 4
}

.c-expertise__content {
    margin-top: 5rem
}

.c-expertise__content__items__item {
    margin-bottom: 12rem
}

.c-expertise__content__items__item__head {
    min-height: 470px;
    -webkit-background-size: 60% auto;
    -moz-background-size: 60% auto;
    -o-background-size: 60% auto;
    background-size: 60% auto;
    background-position: right;
    background-repeat: no-repeat;
    padding: 30px 0;
    position: relative;
    z-index: 1
}

@media (max-width:992px) {
    .c-expertise__content__items__item__head {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover
    }

    .c-expertise__content__items__item__head p {
        color: #000 !important
    }

    .c-expertise__content__items__item__head::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, .8);
        z-index: -1
    }
}

.c-expertise__content__items__item__head h2 {
    color: #000;
    margin-bottom: 3rem;
    font-size: 3.5rem
}

.c-expertise__content__items__item__head p {
    margin-bottom: 0;
    color: rgba(0, 0, 0, .5);
    font-size: 1.2rem
}

.c-expertise__content__items__item__content {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid #000;
    font-size: 1.2rem;
    text-align: justify;
}

.c-expertise__content__items__item__content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem
}


.c-expertise__content__items__item__content ul li:not(:last-child) {
    margin-bottom: 1.2rem
}

.template-insight-detail .c-insight-detail__hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background-image: -webkit-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -moz-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: -o-linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    background-image: linear-gradient(45deg, rgba(5, 5, 58, .05) 40%, rgba(11, 9, 129, .05) 100%);
    overflow: hidden;
}

.template-insight-detail .c-insight-detail__hero h1 {
    font-size: 3rem
}

.template-insight-detail .c-insight-detail__hero p {
    font-size: 1.75rem
}

.template-insight-detail .c-insight-detail__hero__img img {
    z-index: 3;
    position: relative
}

@media (min-width:992px) {
    .template-insight-detail .c-insight-detail__hero__img img {
        height: 485px
    }
}

@media (max-width:992px) {
    .template-insight-detail .c-insight-detail__hero__img img {
        width: 100%
    }
}

.template-insight-detail .c-insight-detail__hero__meta {
    background-color: #fff;
    text-align: start;
    height: 100%;
    position: relative;
    margin-top: -60px;
    padding-top: 80px;
    padding-left: 25px
}

.template-insight-detail .c-insight-detail__hero__meta__inner {
    position: relative;
    z-index: 2
}

.template-insight-detail .c-insight-detail__hero__meta__inner label {
    font-weight: 500
}

.template-insight-detail .c-insight-detail__hero__meta__inner p {
    font-size: .875rem;
    margin-bottom: .6rem
}

.template-insight-detail .c-insight-detail__hero__meta__inner time {
    color: #9e9e9e;
    font-weight: 500
}

.template-insight-detail .c-insight-detail__hero__meta::after {
    content: "";
    background-color: #fff;
    right: -1000px;
    width: -webkit-calc(100% + 1000px);
    width: -moz-calc(100% + 1000px);
    width: calc(100% + 1000px);
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 0
}

.template-insight-detail .c-insight-detail__content {
    font-size: 1.2rem;
    margin-top: 4rem;
    margin-bottom: 8rem;
    text-align: justify;
}

.template-insight-detail .c-insight-detail__content a {
    color: #0824a6;
}

.template-insight-detail .c-insight-detail__content h1,
.template-insight-detail .c-insight-detail__content h2,
.template-insight-detail .c-insight-detail__content h3,
.template-insight-detail .c-insight-detail__content h4,
.template-insight-detail .c-insight-detail__content h5,
.template-insight-detail .c-insight-detail__content h6 {
    font-weight: 500
}

.template-insight-detail .c-insight-detail__content h2 {
    font-size: 1.6rem
}

.template-insight-detail .c-insight-detail__content h3 {
    font-size: 2rem
}

.template-insight-detail .c-insight-detail__content h4 {
    font-size: 1.8rem
}

.template-insight-detail .c-insight-detail__content h5 {
    font-size: 1.5rem
}

.template-insight-detail .c-insight-detail__content h6 {
    font-size: 1.2rem
}

.template-insight-detail .c-insight-detail__content img {
    margin: 1rem 0
}

.template-insight-detail .c-insight-detail__related-insights {
    margin-bottom: 10rem
}

.template-insight-detail .c-insight-detail__related-insights h2 {
    margin-bottom: 3rem
}





.PInsightDetail-DownloadReport {
    background-color: #0824a610;
    padding: 30px;
    color: rgb(var(--color-fg));
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #0824a6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.PInsightDetail-DownloadReport>div {
    display: block;
}

.PInsightDetail-DownloadReport a {
    display: block;
    display: flex;
    width: fit-content;
}

.PInsightDetail-DownloadReport svg {
    color: #fff !important;
    margin-left: 15px;
}

.PInsightDetail-DownloadReport .CButton {
    background: #0824a6;
    color: #fff !important;
    padding: 15px;
    border-radius: 15px;
}


.accordion-compatencies button {
    font-weight: bold;
}

.accordion-compatencies {
    font-size: 1rem !important;
}

.accordion-compatencies .accordion-button {
    display: flex;
    justify-content: flex-start;
    padding-left: 0rem;
}

.accordion-compatencies .accordion-button::after {
    order: -1;
    margin-right: 0.5rem;
    margin-left: 0;
}

.accordion-compatencies .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
}

.accordion-compatencies .accordion-button,
.accordion-compatencies .accordion-button:focus {
    box-shadow: none;
}

.accordion-values .accordion-button {
    font-weight: normal;
    font-size: 1.5rem;
}

.accordion-values .accordion-header {
    margin-bottom: 0;
}

.accordion-values .accordion-body {
    padding-top: 0;
    text-align: justify;

}

.accordion-values .accordion-button {
    padding: 35px 0;
}


.c-expertise__banner__img {
    background-attachment: fixed;
}

.c-expertise__banner__img img {
    visibility: hidden;
}


.c-single-page__content {
    text-align: justify;
}


.c-team-detail__content ul li {
    display: list-item !important;
}


.c-insight-box--small .c-insight-box__img {
    height: 300px
}

@media screen and (max-width: 1400px) {
    .c-insight-box--small .c-insight-box__img {
        height: 260px
    }

}

@media screen and (max-width: 768px) {
    .c-insight-box--small .c-insight-box__img {
        height: 400px
    }

    .PInsightDetail-DownloadReport {
        display: block;
    }

    .PInsightDetail-DownloadReport>div {
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 400px) {
    .c-insight-box--small .c-insight-box__img {
        height: 300px
    }

}