@import url('https://fonts.cdnfonts.com/css/helvetica-255');

:root {
    --clr--purple: 193, 167, 248; /* #C1A7F8 */
    --clr--blue: 78, 117, 255; /* #4E75FF */
    --clr--green: 0, 206, 165; /* #00CEA5 */
    --clr--black: 0, 0, 0; /* #000000 */
    --clr--white: 255, 255, 255; /* #ffffff */

    --fnt--helvetica: "Helvetica", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: rgb(var(--clr--white));
    box-shadow: inset 2px 2px 3px rgba(var(--clr--black), 0.1);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: rgb(var(--clr--green));
    box-shadow: inset 0px 0px 8px rgba(var(--clr--black), 0.1);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

html,
body {
    color: rgb(var(--clr--black));
    font-size: clamp(15px, 1vw, 21px);
    font-weight: 400;
    font-family: var(--fnt--helvetica);
    line-height: 1.2;
    background: rgb(var(--clr--white));
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(var(--clr--black));
    font-family: var(--fnt--helvetica);
    margin: 5px 0;
    line-height: 1.1;
    font-weight: 600;
}

h1 {
    font-size: clamp(30px, 2.5vw, 60px);
}

h2 {
    font-size: clamp(22px, 1.8vw, 42px);
}

h3 {
    font-size: clamp(19px, 1.1vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.0vw, 27px);
}

h5 {
    font-size: clamp(16px, 0.9vw, 23px);
}

h6 {
    line-height: 1.3;
}

p,
ul, ol {
    font-size: clamp(18px, 1.2vw, 30px);
    font-weight: 300;
    line-height: 1.3;
}

ul, ol {
    padding-left: 20px;
}

ul.list__horizontal {
    list-style: none;
    line-height: 1;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

ul.list__horizontal li {
    padding-right: 15px;
    border-right: 2px solid rgb(var(--clr--white));
}

ul.list__horizontal li:last-child {
    padding: 0;
    border-right: 0;
}

ul.list__horizontal a {
    color: rgb(var(--clr--white));
    font-size: clamp(16px, 1vw, 22px);
    text-decoration: none;
    padding: 0;
}

ul.list__horizontal a:hover {
    color: rgb(var(--clr--blue));
}

ul.list__vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.list__vertical li p,
ul.list__vertical li a {
    color: rgb(var(--clr--white));
    font-size: 18px;
    text-decoration: none;
    margin: 0;
}

ul.list__vertical li a:hover {
    color: rgb(var(--clr--blue));
}

ul.list__in-copy li {
    margin-top: 15px;
    margin-bottom: 25px;
}

ul.list__in-copy li:last-child {
    margin-bottom: 0;
}

.small,
small {
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px !important;
}

.large-text > p {
    font-size: clamp(19px, 1.3vw, 36px);
}

a {
    color: currentColor;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    width: 100%;
}

.section-row,
.section-row-small,
.section-row-large {
    position: relative;
}

.section-row {
    padding: 5rem 12px;
}

.section-row-small {
    padding: 2rem 12px;
}

.section-row-large {
    padding: 8rem 12px;
}

section {
    position: relative;
}

.gutter-top {
    margin-top: 90px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.cmm-common__titles {
    position: relative;
    margin-bottom: 30px;
}

.cmm-common__titles * {
    color: rgb(var(--clr--black));
    font-weight: 700;
    font-size: clamp(36px, 4.5vw, 100px);
    line-height: 1;
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    -webkit-transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    -moz-transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    -ms-transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    -o-transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

footer .cmm-common__titles * {
    font-size: clamp(36px, 3.5vw, 80px);
    opacity: 1;
    transform: translateY(0);
}

.cmm-common__titles .animate {
    opacity: 1;
    transform: translateY(0);
}

.title-wrapper {
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.title-wrapper .cmm-common__titles {
    margin: 0;
}

.title-highlighter {
    color: rgb(var(--clr--blue));
    font-style: italic;
    font-weight: 400;
}

.cmm-common__titles-small * {
    font-size: clamp(19px, 1.1vw, 36px);
    color: rgba(var(--clr--black), .5);
    text-transform: uppercase;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600,
strong {
    font-weight: 600;
}

.fw700 {
    font-weight: 700;
}

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

/* ====== COLORS ====== */
.clr--purple {
    color: rgb(var(--clr--purple));
}

.clr--blue {
    color: rgb(var(--clr--blue));
}

.clr--green {
    color: rgb(var(--clr--green));
}

.clr--black {
    color: rgb(var(--clr--black));
}

.clr--white {
    color: rgb(var(--clr--white));
}

.bgclr--purple {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--purple));
}

.bgclr--blue {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--blue));
}

.bgclr--green {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--green));
}

.bgclr--black {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
}

.bgclr--white {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

/* Fonts */
.fnt--helvetica {
    font-family: var(--fnt--helvetica);
}

/* Input Fields */
.form-control {
    color: rgb(var(--clr--white));
    font-family: var(--fnt--helvetica);
    font-size: clamp(15px, 1vw, 22px);
    font-weight: 400;
    line-height: 1.1;
    cursor: pointer;
    min-height: 30px;
    padding: 15px 25px;
    background-color: rgba(var(--clr--white), .5);
    border: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: inset 0px 3px 6px rgba(var(--clr--black), 0.15);
}

.form-control:focus {
    color: rgb(var(--clr--white));
    background-color: rgba(var(--clr--white), .2);
    outline: 0;
    border: 0;
    box-shadow: none;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

textarea.form-control {
    min-height: 120px;
}

select.form-control {
    color: rgb(var(--clr--white));
    padding: 16px 45px 17px 25px !important;
    background-image: url("https://d3kkxntbep2emw.cloudfront.net/wp-content/uploads/icon-chevron-down-white.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px);
    background-size: 15px;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
}

select.form-control:hover {
    color: rgb(var(--clr--white));
}

select.form-control option {
    color: rgb(var(--clr--black));
}

.form-control::-webkit-input-placeholder {
    color: rgba(var(--clr--white), .9);
}

.form-control:-ms-input-placeholder {
    color: rgba(var(--clr--white), .9);
}

.form-control::placeholder {
    color: rgba(var(--clr--white), .9);
}

.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control[type=number] {
  -moz-appearance: textfield;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0 solid rgb(var(--clr--white));
    border-bottom: 1px solid rgb(var(--clr--white));
    -webkit-text-fill-color: var(--clr--black);
    box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--white), 0.1) inset;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    width: 100%;
    margin-top: 2px;
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgb(var(--clr--white));
    padding: 5px;
    text-align: left;
    line-height: 1;
    background-color: rgb(255, 17, 0);
    font-weight: 400;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five,
.grid-six,
.grid-seven {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.grid-two > * {
    width: calc((100% / 2) - 8px) !important;
}

.grid-three > * {
    width: calc((100% / 3) - 10px) !important;
}

.grid-four > * {
    width: calc((100% / 4) - 12px) !important;
}

.grid-five > * {
    width: calc((100% / 5) - 12px) !important;
}

.grid-six > * {
    width: calc((100% / 6) - 13px) !important;
}

.grid-seven > * {
    width: calc((100% / 7) - 13px) !important;
}

/* ====== BUTTONS ====== */
.btn {
    font-size: clamp(17px, 1vw, 24px);
    font-weight: 400 !important;
    color: rgb(var(--clr--white));
    line-height: 1.1;
    width: fit-content;
    padding: 10px 60px;
    border: none;
    position: relative;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.btn:hover,
a:hover {
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}

.btn i {
    margin-left: 10px;
}

.primary--btn {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
}

.primary--btn:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
    border: 2px solid rgb(var(--clr--blue));
}

.secondary--btn {
    color: rgb(var(--clr--white));
    background-color: transparent;
    border: 2px solid rgb(var(--clr--white));
}

.secondary--btn:hover {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    border: 2px solid rgb(var(--clr--white));
}

.tertiary--btn {
    color: rgb(var(--clr--white));
    text-decoration: none;
    background-color: transparent;
    padding: 0;
    border: 0;
}

.tertiary--btn:hover {
    color: rgb(var(--clr--white));
    text-decoration: underline;
    background-color: transparent;
    border: 0;
}

/* OWL CAROUSEL */
.owl-loaded {
    width: 100%;
    position: relative;
}

.owl-stage-outer {
    overflow: hidden;
}

.owl-stage {
    display: flex;
}

.owl-item {
    padding: 20px 5px;
    vertical-align: top;
    display: flex;
    justify-content: center;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    font-size: 21px;
    color: rgb(var(--clr--black));
    font-weight: 700;
    background-color: transparent;
    border: 0;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next{
    right: 0;
}

.owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.owl-dots button.owl-dot {
    width: 8px;
    height: 6px;
    background: rgba(var(--clr--blue), .3);
    border: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.owl-dots button.owl-dot.active {
    width: 40px;
    background: rgb(var(--clr--purple));
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.owl-loaded .disabled {
    display: none;
}

.row > * {
    position: relative;
}

.clients-section__testimonials_logos .owl-nav button.owl-prev,
.clients-section__testimonials_logos .owl-nav button.owl-next {
    height: 23px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.clients-section__testimonials_logos .owl-nav button.owl-prev {
    left: -30px;
}

.clients-section__testimonials_logos .owl-nav button.owl-next{
    right: -30px;
}

/* ====== HEADER ====== */
.header {
    width: 100%;
    padding: 25px 0 10px 0;
    /* position: relative;
    z-index: 9; */
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__logo {
    max-width: 200px;
    padding: 10px 0 10px 20px;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header__fixed-header .header__logo {
    opacity: 0;
    pointer-events: none;
}

.header__logo img {
    height: auto;
    position: relative;
    mix-blend-mode: difference;
}

/* ====== NAVIGATION ====== */
.header__navbar--container {
    background: rgba(var(--clr--white), .5);
    backdrop-filter: blur(250px);
    padding: 0 15px;
    border-radius: 50px;
}

.header__navbar_collapse {
    padding-right: 100px;
    justify-content: flex-end;
}

.header__navbar {
    justify-content: space-between;
}

ul.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__navbar_collapse.collapsing {
    height: unset !important;
}

.header__navbar .navbar-nav .nav-link,
.menu-item a {
    color: rgb(var(--clr--black));
    font-size: clamp(18px, 1.1vw, 25px);
    font-weight: 300;
    text-decoration: none;
    padding: 10px 12px;
    display: block;
}

.header__navbar .navbar-nav .active-nav .nav-link,
.header__navbar .navbar-nav .nav-link:hover,
.menu-item.current-menu-item a,
.menu-item:hover a {
    color: rgb(var(--clr--blue));
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav,
ul.header-menu li.menu-item ul.sub-menu {
    min-width: 250px;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgb(226, 226, 226);
    border: none;
    border-radius: 10px;
    position: absolute;
    z-index: 9;
    display: none;
}

.header__navbar .navbar-nav li.nav-item:hover ul.sub-nav,
ul.header-menu li.menu-item:hover ul.sub-menu {
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a,
ul.header-menu li.menu-item ul.sub-menu li a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.header__navbar .navbar-nav li.nav-item ul.sub-nav li a:hover,
ul.header-menu li.menu-item ul.sub-menu li a:hover {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
}

.nav-btn a {
    color: rgb(var(--clr--white)) !important;
    font-weight: 700;
    background-color: rgb(var(--clr--blue));
    padding: 6px 30px !important;
    margin-left: 15px;
    border: 2px solid rgb(var(--clr--blue));
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.nav-btn a:hover {
    color: rgb(var(--clr--blue)) !important;
    background-color: rgb(var(--clr--white));
}

.nav-btn iframe {
    margin-left: 15px;
}

.header__navbar_toggler {
    border: 0;
}

.header__navbar_toggler:focus {
    box-shadow: unset;
}

.header__navbar_icon {
    background-color: rgb(var(--clr--black));
    width: 32px;
    height: 3px;
    margin: 6px 0;
    display: block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
    opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
    opacity: 1 !important;
    transform: rotate(0deg) translate(0px, 0px) !important;
    -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
    -moz-transform: rotate(0deg) translate(0px, 0px) !important;
    -ms-transform: rotate(0deg) translate(0px, 0px) !important;
    -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

/* ====== Alignments ====== */
div[class*="cmm-align-"] {
    display: flex;
    align-items: center;
    gap: 35px;
}

.cmm-align-left {
    flex-direction: row;
}

.cmm-align-right {
    flex-direction: row-reverse;
}

.cmm-align-top {
    flex-direction: column;
}

.cmm-align-bottom {
    flex-direction: column-reverse;
}

.cmm-align-left > *,
.cmm-align-right > * {
    width: calc(50% - 18px);
}

.cmm-align-top > *,
.cmm-align-bottom > * {
    width: 100%;
}

.textimage--main--image {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.column-content {
    background: rgb(var(--clr--white));
    padding: 10px;
}

/* ====== HERO SECTION ====== */
.hero-banner {
    /* height: calc(100vh - 60px); */
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    will-change: opacity;
    opacity: 1;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--clr--white));
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}

.hero-banner > * {
    position: relative;
    z-index: 3;
}

.hero-banner__initials {
    width: 100%;
    max-height: calc(100vh - 90px);
    display: block;
    preserveAspectRatio: xMidYMin slice;
}

.letter {
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    animation: dropIn 0.6s ease-out forwards;
    -webkit-animation: dropIn 0.6s ease-out forwards;
}

.letter-c {
    animation-delay: 0s;
}

.letter-m1 {
    animation-delay: 0.1s;
}

.letter-m2 {
    animation-delay: 0.2s;
}

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.hero-banner__site-logo {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    animation: dropOut 0.6s ease-out forwards;
    -webkit-animation: dropOut 0.6s ease-out forwards;
    animation-delay: 0.05s;
}

@keyframes dropOut {
    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

/* ====== Intro ====== */
.intro-section__video-container {
    padding-block: 2%;
}

.intro-section__video-play {
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.intro-section__video-play {
    width: 100%;
}

/* ====== Projects ====== */
.projects-section__grid-view {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.projects-section__grid-item {
    height: 500px;
    position: relative;
}

.projects-section__grid-item:hover .projects-section__grid-item_wrapper {
    transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.projects-section__grid-item:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 4;
}

.projects-section__grid-item:nth-of-type(2) {
    grid-area: 1 / 4 / 2 / 7;
}

.projects-section__grid-item:nth-of-type(3) {
    grid-area: 2 / 1 / 3 / 7;
}

.projects-section__grid-item:nth-of-type(4) {
    grid-area: 3 / 1 / 4 / 4;
}

.projects-section__grid-item:nth-of-type(5) {
    grid-area: 3 / 4 / 4 / 7;
}

.projects-section__grid-item:nth-of-type(6) {
    grid-area: 4 / 1 / 6 / 7;
}

.projects-section__grid-item:nth-of-type(7) {
    grid-area: 5 / 1 / 6 / 7;
}

/* .projects-section__grid-item:nth-of-type(6) {
    grid-area: 4 / 1 / 5 / 5;
}

.projects-section__grid-item:nth-of-type(7) {
    grid-area: 4 / 5 / 5 / 7;
}

.projects-section__grid-item:nth-of-type(8) {
    grid-area: 5 / 1 / 6 / 7;
} */

.projects-section__grid-item_wrapper {
    height: 500px;
    cursor: pointer;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.projects-section__grid-item img,
.projects-section__grid-item video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.projects-section__grid-item_overlay {
    background-color: rgba(var(--clr--blue), .8);
    width: 100%;
    height: 100%;
    padding: 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.projects-section__grid-item:hover .projects-section__grid-item_overlay {
    opacity: 1;
}

.projects-section__grid-item_overlay * {
    color: rgb(var(--clr--white));
}

.projects-section__grid-item_title {
    font-size: clamp(19px, 1.4vw, 36px);
    font-weight: 600;
    margin: 0;
}

.projects-section__grid-item_subtitle {
    font-size: 18px;
}

.projects-section__grid-item_btn {
    color: rgb(var(--clr--blue));
}

.projects-section__grid-item_btn:hover {
    background-color: rgb(var(--clr--green));
    border-color: rgb(var(--clr--green));
}

.projects-section__grid-item_labels {
    max-width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.projects-section__grid-item:hover .projects-section__grid-item_labels {
    opacity: 0;
}

.projects-section__grid-item_labels > * {
    font-size: clamp(16px, 1vw, 21px);
    background: rgba(var(--clr--white), .8);
    backdrop-filter: blur(100px);
    padding: 5px 15px;
    display: block;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.projects-section__grid-item_label-client {
    font-weight: 700;
}

/* ====== Clients ====== */
.clients-section__testimonials {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.clients-section__testimonials_logos {
    width: 385px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.clients-section__tesimonials_client-logo {
    width: 180px;
    aspect-ratio: 1 / 1;
    padding: 20px;
    background: rgb(242, 242, 242);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.clients-section__tesimonials_client-logo.active {
    padding: 2px;
    background: transparent;
}

.clients-section__testimonials_swipe-area {
    width: calc(100% - 410px);
    touch-action: pan-y;
    background: rgb(242, 242, 242);
    display: flex;
    align-items: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.clients-section__testimonials_panel {
    width: 100%;
    height: 100%;
    position: relative;
}

.clients-section__tesimonials_single-comment {
    height: 100%;
    padding: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    -moz-transition: opacity 0.6s ease, visibility 0.6s ease;
    -ms-transition: opacity 0.6s ease, visibility 0.6s ease;
    -o-transition: opacity 0.6s ease, visibility 0.6s ease;
}

.clients-section__tesimonials_single-comment.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.clients-section__tesimonials_default-heading {
    font-size: clamp(32px, 2.5vw, 62px);
    width: 100%;
    max-width: 380px;
}

.clients-section__tesimonials_quote {
    position: relative;
    margin-bottom: 4%;
}

.clients-section__tesimonials_quote p {
    font-size: clamp(16px, 1.2vw, 28px);
}

.clients-section__tesimonials_quote p:first-child:before {
    content: "“";
}

.clients-section__tesimonials_quote p:last-child:after {
    content: "”";
}

.clients-section__tesimonials_person {
    color: rgb(var(--clr--blue));
}

/* ====== SERVICES CARDS ====== */
.services-section__scroll-tabs-wrapper {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 0;
}

.services-section__scroll-tabs-left {
    width: 30%;
    padding: 2rem;
    color: rgb(148, 148, 148);
    position: sticky;
    top: 100px;
    z-index: 1000;
}

.services-section__cards-container_tabs {
    list-style: none;
    padding: 0;
    position: sticky;
    top: 100px;
}

.services-section__scroll-tabs_single {
    font-size: clamp(18px, 1.1vw, 24px);
    font-weight: 700;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -o-transition: background 0.3s;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    z-index: 1001;
}

.services-section__scroll-tabs_single.active {
    color: rgb(var(--clr--black));
    background: rgb(231, 220, 252);
}

.services-section__scroll-tabs-right {
    width: 70%;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.services-section__cards-container {
    --cardHeight: 600px;
    --cardTopPadding: 1.5em;
    --cardMargin: 4vw;
}

.services-section__cards-container_cards {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(var(--cards), var(--cardHeight));
    gap: var(--cardMargin);
    /* padding-bottom: calc(var(--cards) * var(--cardTopPadding)); */
    margin-bottom: var(--cardMargin);
}

.services-section__cards-container_single {
    order: var(--index);
    position: sticky;
    top: 0;
    z-index: 5;
    padding-top: calc(var(--index) * var(--cardTopPadding));
    pointer-events: none;
}

.services-section__cards-container_card-body {
    box-sizing: border-box;
    padding: 60px 60px 0 60px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    height: var(--cardHeight);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 2;
    position: relative;
    pointer-events: auto;
}

.services-section__cards-container_advocacy .services-section__cards-container_card-body {
    background-color: rgb(var(--clr--purple));
}

.services-section__cards-container_strategic-communication .services-section__cards-container_card-body,
.services-section__cards-container_community-analytics .services-section__cards-container_card-body {
    background-color: rgb(var(--clr--green));
}

.services-section__cards-container_campaign-leadership .services-section__cards-container_card-body {
    background-color: rgb(var(--clr--blue));
}

.services-section__cards-container_creative .services-section__cards-container_card-body {
    background-color: rgb(106, 106, 106);
}

.services-section__cards-container_media-buying .services-section__cards-container_card-body {
    background-color: rgb(234, 234, 234);
}

.services-section__cards-container_col-ltr,
.services-section__cards-container_col-ttb {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.services-section__cards-container_col-ltr {
    flex-direction: row;
}

.services-section__cards-container_col-ltr > * {
    width: 50%;
    height: 100%;
}

.services-section__cards-container_col-ltr .services-section__cards-container_card-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-section__cards-container_col-ttb {
    height: 100%;
    flex-direction: column;
}

.services-section__cards-container_col-ttb > * {
    width: 100%;
    height: 50%;
}

.services-section__cards-container_card-heading {
    font-size: clamp(19px, 2.3vw, 46px);
}

.services-section__cards-container_campaign-leadership .services-section__cards-container_card-heading,
.services-section__cards-container_creative .services-section__cards-container_card-heading {
    color: rgb(var(--clr--white));
}

.services-section__cards-container_media-buying .services-section__cards-container_card-heading {
    font-size: clamp(19px, 1.8vw, 34px);
}

.services-section__cards-container_card-post-title {
    display: none;
    font-size: clamp(15px, 0.9vw, 23px);
    font-weight: 400;
    text-align: center;
    background: rgba(var(--clr--white), .5);
    backdrop-filter: blur(250px);
    width: fit-content;
    max-width: calc(100% - 40px);
    padding: 10px 20px;
    position: absolute;
    left: 20px;
    top: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.services-section__cards-container_card-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.services-section__cards-container_card-image {
    display: flex;
    justify-content: flex-end;
}

.services-section__cards-container_col-ltr .services-section__cards-container_card-image img {
    width: 350px;
    height: auto;
    max-height: 100%;
    /* margin-bottom: -40px; */
}

.services-section__cards-container_col-ttb .services-section__cards-container_card-image img {
    width: 350px;
    height: auto;
    max-height: 100%;
    /* margin-bottom: -60px; */
}

.services-section__cards-container_card-btn {
    font-size: clamp(18px, 1.1vw, 24px);
    padding: 5px 45px 5px 5px;
    margin-block: 35px;
    background: url("https://d3kkxntbep2emw.cloudfront.net/wp-content/uploads/cta-arrow-white.png") no-repeat 100% 100% / 30px;
}

.services-section__cards-container_strategic-communication .services-section__cards-container_card-btn,
.services-section__cards-container_media-buying .services-section__cards-container_card-btn {
    color: rgb(var(--clr--black));
    background: url("https://d3kkxntbep2emw.cloudfront.net/wp-content/uploads/cta-arrow-black.png") no-repeat 100% 100% / 30px;
}

/* ====== CASE STUDIES ====== */
.project-detail__table {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.project-detail__table-title {
    width: 100px;
}

.project-detail__table-title * {
    color: rgba(var(--clr--black), .5);
    font-weight: 700;
}

.project-detail__table-detail {
    width: calc(100% - 110px);
}

.project-detail__table p {
    margin-bottom: 0;
}

.projects-detail__banner-container {
    width: calc(100% + 24px);
    padding: 0;
    margin: 0 -12px -5rem;
    overflow: hidden;
}

.projects-detail__banner-image {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.projects-detail__banner-container img {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.our-approach {
    background-color: rgb(240, 240, 240);
}

.impact-section__list-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.impact-section__list-item:last-child {
    margin-bottom: 0;
}

.impact-section__list-icon {
    width: 140px;
}

.impact-section__list-icon img {
    max-width: 140px;
    max-height: 154px;
}

.impact-section__list-copy {
    width: calc(100% - 170px);
}

.impact-section__list-heading {
    font-size: clamp(24px, 2.5vw, 60px);
    line-height: 1;
    color: rgb(var(--list--clr));
    margin: 0;
}

.impact-section__list-excerpt {
    font-weight: 400;
    margin: 0;
}

.impact-section__container-tdri .impact-section__list-wrapper {
    column-count: 2;
    column-gap: 40px;
    margin-top: 50px;
}

.impact-section__row {
    row-gap: 50px;
    justify-content: flex-end;
}

.impact-section__column-heading {
    order: 1;
}

.impact-section__column-icons {
    order: 3;
}

.impact-section__column-excerpt_ruid {
    order: 2;
}

.impact-section__column-excerpt_rlid {
    order: 4;
}

.col-md-12.impact-section__column-icons .impact-section__list-wrapper {
    column-count: 2;
    column-gap: 40px;
    /* margin-top: 50px; */
}

/* ====== VIDEO PLAYER ====== */
.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-player__full,
.video-player__half {
    width: 100%;
    /* max-width: 450px; */
    margin-inline: auto;
}

.video-player video {
    width: 100%;
    display: block;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.project-detail__video-player video {
    width: auto;
    max-width: 100%;
    max-height: 550px;
    margin-inline: auto;
}

.video-player .video-player__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.video-player .video-player__play-icon.hidden {
    display: none;
}

@media (pointer: coarse) {
    #video-player-button {
        display: none !important;
    }
}

/* ====== GALLERY GRID ====== */
.gallery-grid__wrapper {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.gallery-grid__wrapper-2r31 {
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
}

.gallery-grid__wrapper-3c03 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
}

.gallery-grid__wrapper-2c12 {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 60px;
}

.gallery-grid__wrapper-2r31 .gallery-grid__single-item:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.gallery-grid__wrapper-2r31 .gallery-grid__single-item:nth-of-type(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.gallery-grid__wrapper-2r31 .gallery-grid__single-item:nth-of-type(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.gallery-grid__wrapper-2r31 .gallery-grid__single-item:nth-of-type(4) {
    grid-area: 2 / 1 / 4 / 4;
    height: fit-content;
}

.gallery-grid__wrapper-2c12 .gallery-grid__single-item:nth-of-type(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.gallery-grid__wrapper-2c12 .gallery-grid__single-item:nth-of-type(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.gallery-grid__wrapper-2c12 .gallery-grid__single-item:nth-of-type(3) {
    grid-area: 2 / 2 / 3 / 3;
}

.gallery-grid__single-item img {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.gallery-grid__wrapper-3c03 video {
    aspect-ratio: 29 / 30;
    object-fit: cover;
}

.gallery-grid__wrapper-2c12 video {
    height: 100%;
    object-fit: cover;
}

/* ====== SERVICES PAGE ====== */
.services-hero {
    height: auto;
}

.services-hero__banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgb(var(--clr--blue));
    background: linear-gradient(180deg, rgba(var(--clr--blue), 1) 0%, rgba(var(--clr--white), 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 1s ease, border-radius 1s ease;
    -webkit-transition: transform 1s ease, border-radius 1s ease;
    -moz-transition: transform 1s ease, border-radius 1s ease;
    -ms-transition: transform 1s ease, border-radius 1s ease;
    -o-transition: transform 1s ease, border-radius 1s ease;
    transform-origin: bottom;
    z-index: 10;
}

.services-hero__banner-image {
    width: 90%;
    height: auto;
    max-height: 100vh;
    transition: transform 1s ease;
    -webkit-transition: transform 1s ease;
    -moz-transition: transform 1s ease;
    -ms-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    z-index: 1;
}

.services-hero__banner-text {
    font-size: clamp(24px, 2.5vw, 60px);
    color: rgb(var(--clr--white));
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    -webkit-transition: opacity 0.8s ease, transform 0.8s ease;
    -moz-transition: opacity 0.8s ease, transform 0.8s ease;
    -ms-transition: opacity 0.8s ease, transform 0.8s ease;
    -o-transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: center;
    max-width: 80%;
    z-index: 2;
}

.services-section__accordion-item {
    padding: 20px 0;
    border: 0;
}

.services-section__accordion-header {
    font-size: clamp(21px, 2.5vw, 60px);
    min-height: 100px;
    padding: 20px 40px 20px 135px;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.services-section__accordion-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.services-section__accordion-item:nth-of-type(3n + 1) .services-section__accordion-header:before {
    background-color: rgb(var(--clr--blue));
}

.services-section__accordion-item:nth-of-type(3n + 2) .services-section__accordion-header:before {
    background-color: rgb(var(--clr--green));
}

.services-section__accordion-item:nth-of-type(3n + 3) .services-section__accordion-header:before {
    background-color: rgb(var(--clr--purple));
}

.services-section__accordion-header:after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-size: 36px;
    font-weight: 900;
    color: rgba(var(--clr--black), .8);
    position: absolute;
    right: 5px;
    top: 30px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: ease-in .2s;
    -webkit-transition: ease-in .2s;
    -moz-transition: ease-in .2s;
    -ms-transition: ease-in .2s;
    -o-transition: ease-in .2s;
}

.services-section__accordion-header.collapsed:after {
    color: rgba(var(--clr--black), .4);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.services-section__accordion-body {
    padding: 20px 130px;
}

.services-section__accordion-intro-wrap,
.services-section__accordion-progress-wrap,
.services-section__accordion-detail-wrap {
    background-color: rgb(242, 242, 242);
    min-height: 200px;
    padding: 50px 100px;
    margin-bottom: 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    position: relative;
}

.services-section__accordion-intro-wrap p,
.services-section__accordion-progress-wrap p,
.services-section__accordion-detail-wrap p {
    font-size: clamp(16px, 1.05vw, 24px);
}

.services-section__accordion-intro-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}

.services-section__accordion-badge {
    width: 100px;
}

.services-section__accordion-item:nth-of-type(3n + 1) .accordion-highlight {
    color: rgb(var(--clr--blue));
}

.services-section__accordion-item:nth-of-type(3n + 2) .accordion-highlight {
    color: rgb(var(--clr--green));
}

.services-section__accordion-item:nth-of-type(3n + 3) .accordion-highlight {
    color: rgb(var(--clr--purple));
}

.services-section__accordion-progress-heading {
    font-size: clamp(22px, 1.8vw, 42px);
}

.services-section__accordion-progress-grid {
    margin-top: 35px;
    gap: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
}

.services-section__accordion-grid-single {
    width: calc(100% / var(--progress--count));
    padding: 20px 30px 0 0;
    border-top: 4px solid;
    position: relative;
}

.services-section__accordion-grid-single:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: -9px;
    left: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.services-section__accordion-item:nth-of-type(3n + 1) .services-section__accordion-grid-single {
    border-color: rgb(var(--clr--blue));
}

.services-section__accordion-item:nth-of-type(3n + 1) .services-section__accordion-grid-single:before {
    background: rgb(var(--clr--blue));
}

.services-section__accordion-item:nth-of-type(3n + 2) .services-section__accordion-grid-single {
    border-color: rgb(var(--clr--green));
}

.services-section__accordion-item:nth-of-type(3n + 2) .services-section__accordion-grid-single:before {
    background: rgb(var(--clr--green));
}

.services-section__accordion-item:nth-of-type(3n + 3) .services-section__accordion-grid-single {
    border-color: rgb(var(--clr--purple));
}

.services-section__accordion-item:nth-of-type(3n + 3) .services-section__accordion-grid-single:before {
    background: rgb(var(--clr--purple));
}

.services-section__accordion-grid-single p {
    font-size: 17px;
}

.services-section__accordion-grid-single p.small {
    font-weight: 300;
}

.services-section__accordion-detail-wrap {
    margin-bottom: 0;
}

.services-section__accordion-intro-copy::before,
.services-section__accordion-detail-wrap::before {
    content: "";
    width: 4px;
    height: 100px;
    position: absolute;
    top: 50px;
    left: 75px;
}

.services-section__accordion-with-image .services-section__accordion-intro-copy::before {
    display: none;
}

.services-section__accordion-item:nth-of-type(3n + 1) .services-section__accordion-intro-copy::before,
.services-section__accordion-item:nth-of-type(3n + 1) .services-section__accordion-detail-wrap::before {
    background-color: rgb(var(--clr--blue));
}

.services-section__accordion-item:nth-of-type(3n + 2) .services-section__accordion-intro-copy::before,
.services-section__accordion-item:nth-of-type(3n + 2) .services-section__accordion-detail-wrap::before {
    background-color: rgb(var(--clr--green));
}

.services-section__accordion-item:nth-of-type(3n + 3) .services-section__accordion-intro-copy::before,
.services-section__accordion-item:nth-of-type(3n + 3) .services-section__accordion-detail-wrap::before {
    background-color: rgb(var(--clr--purple));
}

/* ====== SINGLE ARTICLE ====== */
.article-hero {
    background-color: rgb(var(--clr--blue));
    width: 100%;
    max-height: 650px;
    aspect-ratio: 4 / 1.5;
    display: flex;
    align-items: flex-end;
}

.article-hero .cmm-common__titles {
    margin: 0;
}

.article-hero .cmm-common__titles > * {
    color: rgb(var(--clr--white));
}

/* ====== 404 ====== */
.error-message {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.error-message__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.error-message__title {
    color: rgb(var(--clr--blue));
    font-size: clamp(48px, 7.5vw, 120px);
    font-weight: 900;
    animation: colorCycle 10s infinite linear;
    -webkit-animation: colorCycle 10s infinite linear;
}

@keyframes colorCycle {
    0% {
        color: rgb(var(--clr--purple));
    }
    33% {
        color: rgb(var(--clr--blue));
    }
    66% {
        color: rgb(var(--clr--green));
    }
    100% {
        color: rgb(var(--clr--purple));
    }
}

.error-message__button {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--blue));
    border-color: rgb(var(--clr--blue));
}

.error-message__button:hover {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--purple));
    border-color: rgb(var(--clr--purple));
}

/* ====== FOOTER ====== */
.footer {
    background-color: rgb(var(--clr--black));
}

.footer__contents {
    order: 1;
    padding-top: 3rem;
}

.list__horizontal .menu-item.current-menu-item a {
    color: rgb(var(--clr--white));
}

.list__horizontal .menu-item.current-menu-item a:hover {
    color: rgb(var(--clr--blue));
}

.footer__contents_logo {
    display: block;
    width: 100%;
    max-width: 400px;
}

.footer__contact-form {
    position: relative;
    order: 2;
}

.footer__contact-form-title > * {
    color: rgb(var(--clr--white));
}

.footer__contents_subheadings {
    font-size: clamp(16px, 1vw, 22px);
    color: rgb(var(--clr--white));
    font-weight: 700;
    margin: 0 0 8px;
}

.footer__contents_links {
    margin-bottom: 8%;
}

.footer__contents_credentials {
    color: rgb(var(--clr--white));
    margin-top: 35px;
}

.footer__contents_credentials p {
    font-size: clamp(18px, 1.1vw, 27px);
}

.footer__contents_credentials a {
    display: inline-block;
}

.footer__contents_credentials a:hover {
    color: rgb(var(--clr--blue));
}

.contact-form__response {
    margin: 0;
}

.contact-form__response:empty {
    padding: 0;
    border: 0;
}

.footer__contact-form_loader-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(var(--clr--white), .95);
    top: 0;
    left: 0;
    z-index: 9999;
    position: absolute;
}

.footer__contact-form_loader-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer__contact-form_loader {
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    color: rgb(var(--clr--blue));
    border: 4px solid;
    box-sizing: border-box;
    border-radius: 50%;
    background: radial-gradient(circle 5px, currentColor 95%, rgba(var(--clr--blue), 0)), linear-gradient(currentColor 50%, rgba(var(--clr--blue), 0) 0) 50%/4px 60% no-repeat;
    animation: dloader 2s infinite linear;
}

.footer__contact-form_loader:before {
    content: "";
    flex: 1;
    background:linear-gradient(currentColor 50%, rgba(var(--clr--blue), 0) 0) 50%/4px 80% no-repeat;
    animation: inherit;
}

@keyframes dloader {
    100% {transform: rotate(1turn)}
}

.footer__contact-form_loader-wrapper p {
    color: rgb(var(--clr--blue));
}