/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.woff') format('woff'), url('../fonts/Helvetica-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.woff') format('woff'), url('../fonts/Helvetica.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/* ====== SCROLL ====== */

::-webkit-scrollbar {
    width: 5px;
}

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

::-webkit-scrollbar-thumb {
    background-color: rgb(var(--clr--purple));
    border-radius: var(--border-radius--edges);
    -webkit-border-radius: var(--border-radius--edges);
    -moz-border-radius: var(--border-radius--edges);
    -ms-border-radius: var(--border-radius--edges);
    -o-border-radius: var(--border-radius--edges);
}

.purple--bgcolor ::-webkit-scrollbar-thumb {
    background-color: rgb(var(--clr--white));
    border: 1px solid rgb(var(--clr--black));
}

.black--bgcolor ::-webkit-scrollbar-thumb {
    background-color: rgb(var(--clr--black));
}

:root {
    --clr--purple: 51, 14, 152; /* #330E98 */
    --clr--lightblue: 148, 213, 231; /* #94D5E7 */
    --clr--lightgray: 238, 238, 238; /* #EEEEEE */
    --clr--white: 255, 255, 255; /* #ffffff */
    --clr--black: 0, 0, 0; /* #000000 */

    --fnt--anton: 'Anton', sans-serif;
    --fnt--helvetica: 'Helvetica';

    --border-radius--edges: 15px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    background-color: rgb(var(--clr--white));
    font-size: 15px;
    line-height: 1.3;
    scroll-behavior: smooth;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--fnt--anton);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

h1.xl {
    font-size: 17rem
}

h2.xl {
    font-size: 5rem
}

.link {
    text-decoration: underline;
    text-transform: uppercase;
    line-height: 1.5;
}

.link:hover {
    text-decoration: none;
}

h1,
h2 {
    font-size: clamp(24px, 2.3vw, 3rem);
}

h3 {
    font-size: clamp(22px, 1.7vw, 2.2rem);
}

h4 {
    font-size: clamp(21px, 1.5vw, 1.8rem);
}

h5,
p,
li {
    font-size: clamp(15px, 1vw, 18px);
}

p,
li {
    font-family: var(--fnt--helvetica);
}

.main--font {
    font-family: var(--main-font);
}

.title--font {
    font-family: var(--title-font)
}

ul {
    margin-left: -30px;
    margin-bottom: 0px;
}

ul li {
    list-style: none;
    padding: 5px 0;
}

img {
    max-width: 100%;
}

a {
    color: currentColor;
    text-decoration: underline;
    display: inline-block;
}

a:hover {
    color: rgb(var(--clr--purple));
}

.small,
small {
    font-size: 1em;
}

.fw100 {
    font-weight: 100;
}

.fw200 {
    font-weight: 200;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

.fw700,
strong {
    font-weight: 700;
}

.fw800 {
    font-weight: 800;
}

.fw900 {
    font-weight: 900;
}

/* BUTTONS */
.btn {
    font-family: var(--fnt--anton);
    font-weight: 400;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    border-radius: var(--border-radius--edges);
    -webkit-border-radius: var(--border-radius--edges);
    -moz-border-radius: var(--border-radius--edges);
    -ms-border-radius: var(--border-radius--edges);
    -o-border-radius: var(--border-radius--edges);
    line-height: 1;
    min-width: 100px;
}

.btn:active,
.btn:focus {
    border: none;
    box-shadow: none;
}

.btn:hover {
    background-color: transparent;
}

.btn--primary {
    padding: 15px 25px;
    font-size: 25px;
}

.btn--secondary {
    padding: 10px 25px;
    font-size: clamp(17px, 1vw, 21px);
}

.btn--tertiary {
    padding: 10px 35px;
    font-size: clamp(21px, 1.7vw, 2.2rem);
}

.purple--btn {
    background-color: rgb(var(--clr--purple));
    color: rgb(var(--clr--white));
    border: 3px solid rgb(var(--clr--purple)) !important;
}

.purple--btn:hover {
    color: rgb(var(--clr--purple));
    background-color: rgb(234, 247, 250);
    border: 3px solid rgb(var(--clr--lightblue)) !important;
}

.lightblue--btn {
    background-color: rgb(var(--clr--lightblue));
    color: rgb(var(--clr--purple));
    border: 3px solid rgb(var(--clr--lightblue)) !important;
}

.lightblue--btn:hover {
    color: rgb(var(--clr--purple));
    background-color: rgb(234, 247, 250);
    border: 3px solid rgb(var(--clr--lightblue)) !important;
}

.black--btn {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--black));
    border: 3px solid rgb(var(--clr--black)) !important;
}

.black--btn:hover {
    color: rgb(var(--clr--white)) !important;
    background-color: rgb(234, 247, 250);
    border: 3px solid rgb(var(--clr--lightblue)) !important;
}

.white--btn {
    color: rgb(var(--clr--purple)) !important;
    background-color: rgb(var(--clr--white));
    border: 3px solid rgb(var(--clr--purple)) !important;
}

.white--btn:hover {
    color: rgb(var(--clr--purple)) !important;
    background-color: rgb(234, 247, 250);
    border: 3px solid rgb(var(--clr--lightblue)) !important;
}

.disabled--btn{
    background-color: #606669;
    color: #888a8b;
    cursor:unset;
}
.disabled--btn:hover{
    background-color: #606669;
    color: #888a8b;
    cursor:unset;
}

/* COLORS */
.black--bgcolor {
    background-color: rgb(var(--clr--black));
}

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

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

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

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

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

.lightblue--bgcolor {
    background-color: rgb(var(--clr--lightblue));
}

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

.lightgray--bgcolor {
    background-color: rgb(var(--clr--lightgray));
}

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

/* GRID */
.grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.grid-2-items > * {
    width: calc((100% / 2) - 24px);
}

.grid-3-items > * {
    width: calc((100% / 3) - 24px);
}

.grid-4-items > * {
    width: calc((100% / 4) - 24px);
}

/* HEADER */
.logo {
    max-width: 200px;
    display: block;
}

.cosboa-logo {
    max-width: 420px;
}

.top--section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1rem;
}

.cosboa--top--section {
    max-width: 970px;
    width: 100%;
    padding: 1rem 0 3.2rem;
    margin-inline: auto;
}

.top--section--btn {
    font-size: clamp(25px, 2.3vw, 3.1rem);
    font-weight: 400;
    text-transform: uppercase;
    padding: 25px 40px;
}

.top--section .header-text {
    width: calc(100% - 650px);
}

.top--section .header-text.cosboa-header-links {
    margin-top: 40px;
    margin-right: 20px;
}

.top--section .header-title {
    color: rgb(var(--clr--purple));
    font-size: clamp(18px, 1.9vw, 2.5rem);
    font-weight: 400;
    text-transform: uppercase;
}

.cosboa--top--section .cosboa-header-links ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cosboa--top--section .cosboa-header-links ul.cosboa-contacts {
    gap: 8px;
}

.cosboa--top--section .cosboa-header-links ul.cosboa-social-icons {
    margin-bottom: 7px;
}

.cosboa--top--section .cosboa-header-links ul a {
    color: rgb(47, 84, 150);
    font-size: 18px;
    !;!i;!;
    text-decoration: none;
    white-space: nowrap;
}

.cosboa--top--section .cosboa-header-links ul.cosboa-contacts li {
    padding-left: 10px;
    border-left: 2px solid rgb(47, 84, 150);
}

.cosboa--top--section .cosboa-header-links ul.cosboa-contacts li:first-child {
    border-left: 2px solid transparent;
}

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

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

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.nav-link {
    font-size: clamp(18px, 1.5vw, 1.5rem);
    font-family: var(--title-font);
}

.navbar-nav li {
    padding: 0.5rem 2rem;
    list-style: none;
}

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-icon {
    background-color: rgb(var(--clr--white));
    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;
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-icon:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.navbar-light .navbar-toggler.collapsed .navbar-icon {
    opacity: 1;
    transform: rotate(0deg) translate(0px, 0px);
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    -moz-transform: rotate(0deg) translate(0px, 0px);
    -ms-transform: rotate(0deg) translate(0px, 0px);
    -o-transform: rotate(0deg) translate(0px, 0px);
}

/* HERO */
.header--section {
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 115vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hero--banner,
header {
    position: relative;
    z-index: 2;
}

.hero--banner--row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1rem;
}

.hero--col--text {
    padding: 3rem;
}

.hidden-part {
    position: absolute;
    visibility: hidden;
}

.hero--col--sides .tough-choices-img {
    max-width: 450px;
}

.visible-part {
    display: inline;
}

.title-stripe {
    color: rgb(var(--clr--purple));
    text-transform: uppercase;
    background: rgb(var(--clr--lightblue));
    width: fit-content;
    padding: 5px 20px;
    display: block;
}

.title-stripe-large {
    color: rgb(var(--clr--white));
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 2rem;
    margin-left: -1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stripe-heading {
    font-size: clamp(21px, 1.9vw, 2.7rem);
}

.stripe-heading-large {
    font-size: clamp(28px, 3.5vw, 4.5rem);
    background: rgb(var(--clr--purple));
    padding: 3px 20px;
    margin-bottom: 5px;
    display: inline-block;
}

.hero-heading {
    text-transform: uppercase;
    font-size: clamp(32px, 3.5vw, 4.5rem);
    line-height: 1;
}

.hero-main-btn {
    text-transform: uppercase;
    width: 100%;
    max-width: 440px;
    padding: 15px;
    border: 0 !important;
}

.hero-main-btn:hover {
    border: 0 !important;
}

.hero--choices--cols--button .btn {
    font-size: clamp(16px, 1.4vw, 27px);
    text-transform: uppercase;
    padding: 20px 25px;
}

/* BODY */
.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

section {
    position: relative;
    z-index: 1;
}

.landing--page {
    position: relative;
    z-index: 9;
}

.title {
    text-transform: uppercase;
    padding-top: 0rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 9;
}

.highlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.highlight .red_circle_1 {
    position: absolute;
    width: 110%;
    z-index: 8;
}

.highlight span {
    position: relative;
    z-index: 9;
}

.hero--col--sides {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 50%;
}

.hero--img--bg {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero--col--dynamics {
    justify-content: space-between;
}

.video-title-wrapper {
    padding: 20px;
}

.hero--video--title {
    padding: 1.5rem;
    position: relative;
    padding: 0;
}

.video--title {
    font-family: var(--fnt--helvetica);
    font-size: 27px;
    font-weight: 700;
}

.news--topline {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
    align-items: center;
}

.hero--video {
    position: relative;
    flex-grow: 1;
}

.date--live {
    font-family: var(--fnt--helvetica);
    font-size: 17px;
    font-weight: 400;
    padding-block: 5px;
}

.logo-news {
    max-width: 180px;
}

.logo-news img {
    width: 100%;
}

.video--container {
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    top: 0;
    left: 0;
}

.hero--col--video {
    height: calc(100% - 140px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.video--container video {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    background: rgb(var(--clr--black));
}

.video--container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 355px;
}

.video--container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn i {
    font-size: 3rem;
    color: #fff;
}

span.play-btn {
    cursor: pointer;
    background: #ffffff3d;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

span.play-btn:hover {
    background: #ffffff66;
}

.iframe-poster {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
}

.iframe-poster.fade-out {
    opacity: 0;
}

.iframe-poster.hidden {
    display: none;
}

.hero--col--choices {
    background-color: rgb(var(--clr--white));
    padding: 2rem;
    display: flex;
    color: rgb(var(--clr--purple));
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    border: 3px solid rgb(var(--clr--purple));
}

.hero--col--choices .hero--choices--title {
    font-size: clamp(25px, 2.7vw, 3.9rem);
    font-weight: 400;
    text-transform: uppercase;
}

.hero--choices--cols {
    width: 50%;
    /* min-width: 270px; */
}

.hero--choices--cols--button {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section--row {
    padding: 1rem 0 0;
}

div#landing_footer {
    margin-top: 2rem !important;
}

.common--header {
    padding: 1.5rem 2.25rem;
}

.section-title {
    color: rgb(var(--clr--purple));
    font-size: clamp(21px, 1.7vw, 2.5rem);
    text-transform: uppercase;
}

.grid--rows {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: stretch;
}

.grid--cols {
    width: 50%;
    padding: 1rem;
}

.about--section .grid--rows .grid--cols:last-child {
    padding-right: 0;
}

.stats--container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4rem 2rem;
    background-color: rgb(var(--clr--lightgray));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    width: calc((100% / 3) - 50px);
}

.stat-item .item-value span {
    font-family: var(--fnt--anton);
    font-size: clamp(36px, 4.5vw, 5.5rem);
    color: rgb(var(--clr--purple));
    text-transform: uppercase;
    margin: 0;
}

.stat-item-1 .item-value span,
.stat-item-3 .item-value span {
    font-size: clamp(36px, 3.1vw, 4.5rem);
}

.stat-item-2 .item-value span {
    font-size: clamp(28px, 2.6vw, 3.5rem);
}

.stat-item .item-description {
    font-family: var(--fnt--anton);
    font-size: clamp(18px, 1.5vw, 2.2rem);
    text-transform: uppercase;
}

.stat-item .item-description-small {
    font-size: clamp(18px, 1.1vw, 2.2rem);
}

.stat-item .item-description-medium {
    font-size: clamp(18px, 1.8vw, 2.2rem);
}

.stat-item .item-description-large {
    font-size: clamp(18px, 2vw, 2.7rem);
}

.stat-item p {
    margin-bottom: 0;
    font-family: var(--title-font);
    line-height: 1.2;
}

.poll--grid--rows {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 1rem;
}

.poll--grid--cols {
    width: 50%;
}

.poll--image {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.poll--content {
    padding: 3rem;
    background-color: rgb(var(--clr--lightblue));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poll--content--box {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poll--grid {
    color: rgb(var(--clr--white));
    padding: 0 !important;
}

.poll--grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poll--grid .counter {
    margin-bottom: 60px;
}

.poll--grid .progress {
    background-color: rgb(var(--clr--white));
    margin: 25px 0 15px;
}

.poll--grid .progress-bar {
    background-color: #B1B1B1;
}

.poll--grid .ppl {
    font-family: var(--fnt--anton);
    font-size: 24px;
    font-style: italic;
}

.poll--grid .poll--text p {
    font-size: clamp(18px, 1.2vw, 24px);
    font-weight: 400;
    margin-block: 25px;
}

.poll-submit-btn {
    width: 100%;
    max-width: 360px;
    margin-top: 30px;
    border: 3px solid rgb(var(--clr--white)) !important;
}

.poll-submit-btn:hover {
    border: 3px solid rgb(var(--clr--white)) !important;
}

.button--set {
    margin: 2rem 0 0;
    display: flex;
    gap: 1rem;
}

.button--set button {
    flex: 1;
}

.survey--content {
    padding: 2rem;
    background: rgb(var(--clr--white));
    background: -moz-linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.30575980392156865) 100%);
    background: -webkit-linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.30575980392156865) 100%);
    background: linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.30575980392156865) 100%);
}

.survey--quiz--number {
    color: rgb(var(--clr--purple));
}

.survey--box {
    border: 4px solid rgb(var(--clr--purple));
}

.survey--view {
    padding: 5rem;
    display: flex;
    align-items: flex-start;
    gap: 10%;
}

.survey--form {
    padding: 2rem;
}

.survey--question--cols {
    width: 50%;
}

.survey--text p {
    color: rgb(var(--clr--black));
    font-size: clamp(18px, 1.2vw, 24px) !important;
    font-weight: 400;
}

.survey--question--number {
    margin-bottom: 1rem;
    color: rgb(var(--clr--lightblue));
}

div#survey_end .survey--text {
    width: 100%;
}

.choices {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 400px;
}

.choices .form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.survey--choices .btn {
    max-width: 200px;
    width: 100%;
    margin: 15px 0 0 auto;
    display: block;
}

.form-control {
    font-family: var(--fnt--helvetica);
    font-size: 16px;
    padding: 5px 20px;
    border: 1px solid rgb(var(--clr--lightgray));
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: inset 0px 3px 2px rgba(var(--clr--black), 0.16);
}

.form-control:focus {
    border: 1px solid rgba(var(--clr--purple), .25);
    box-shadow: none !important;
}

.textarea-wrapper {
    padding: 10px;
    border: 2px solid rgb(var(--clr--purple));
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.textarea-wrapper > textarea {
    padding: 0 10px 0 10px !important;
    border: 0 !important;
    box-shadow: inset 0px 3px 2px transparent;
}

/* CUSTOM RADIO */

.form-check-input[type=radio] {
    border: 1px solid rgb(var(--clr--black));
    background-color: rgb(var(--clr--lightblue));
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    width: 25px;
    height: 25px;
    margin-top: 2px;
    cursor: pointer;
    position: relative;
}

label.form-check-label {
    font-family: var(--fnt--helvetica);
    font-size: clamp(18px, 1.5vw, 1.3rem);
    font-weight: 400;
    cursor: pointer;
    margin-left: 15px;
    margin-top: 3px;
}

.form-check-input:focus {
    box-shadow: none;
}

/* CUSTOM CHECKBOX*/
.form-check-input:checked[type=radio] {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-color: rgb(var(--clr--white));
    border: 1px solid rgb(var(--clr--purple));
}

.form-check-input[type=checkbox] {
    border: 1px solid rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
    width: 25px;
    height: 25px;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.form-check-input[type=checkbox]:checked {
    background-color: rgb(var(--clr--purple));
    border: thin solid rgba(var(--clr--white), 0.5);
}

.form-check-input[type=radio]:checked::before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background-color: rgb(var(--clr--purple));
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.share--your--story--content {
    margin-top: 1rem;
    display: flex;
    padding: 3rem;
    gap: 2rem;
    align-items: center;
}

.shareyourstory--section .row {
    position: relative;
}

.shareyourstory--section .modal {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffffd7;
}

.shareyourstory--section .modal.show .modal-dialog {
    transform: none;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 900px;
    text-align: center;
}

.modal-header {
    border: none;
}

.modal-header .btn-close {
    color: rgb(var(--clr--lightblue));
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-title {
    width: 100%;
}

.modal-content {
    padding: 3rem;
    border: thin solid rgb(var(--clr--lightblue))
}

footer {
    background-color: rgb(var(--clr--purple));
    padding: 2rem;
    text-align: center;
}

footer p {
    font-size: 16px;
}

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

footer a:hover {
    color: rgba(var(--clr--white), .65);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: rgb(var(--clr--white));
    font-size: 24px;
    text-decoration: none;
}

.social-icons a:hover {
    color: rgba(var(--clr--white), .5);
}

.testimoials-carousel {
    padding: 5% 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.testimonials-carousel {
    margin-top: 1rem;
}

.hero--banner--row .testimonials-carousel {
    margin-top: 0rem;
}

.hero--banner--row .carousel-inner {
    min-height: 500px;
}

.carousel-item {
    text-align: center;
}

.carousel-item p {
    font-family: var(--main-font);
    font-size: clamp(17px, 1.5vw, 1.5rem);
    color: rgb(var(--clr--white));
    padding: 0 1.5rem;
}

.carousel-item span {
    text-transform: uppercase;
    font-family: var(--title-font);
    color: rgb(var(--clr--white));
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 55px;
    height: 55px;
    padding: 10px;
    opacity: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

img.quote {
    position: absolute;
    margin: auto;
    z-index: 0;
    left: 0;
    right: 0;
    opacity: 0.1;
    width: 60%;
}

.cmm-have-your-say--form {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    background: transparent;
    width: 50% !important;
    max-width: 100% !important;
}

.cmm-have-your-say--form .form-check-label {
    color: rgb(var(--clr--black));
    font-family: var(--fnt--helvetica);
    font-size: 17px;
    margin-left: 5px;
}

.privacy-text {
    color: rgb(var(--clr--black));
    font-family: var(--fnt--helvetica);
    text-align: center;
}

span.seperator {
    padding: 15px;
    display: block;
}

.cmm-have-your-say-message-list {
    /* height: 500px; */
    max-height: unset !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: unset !important;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px !important;
    width: 50% !important;
    max-width: 100% !important;
    background-color: rgb(var(--clr--white));
}

.comments-wrapper {
    height: 460px;
    overflow-y: auto;
    overflow-x: hidden;
}

.single-comment {
    border-bottom: 1px dashed rgba(45, 89, 240, 0.25);
    padding: .5rem;
    margin-bottom: 15px;
}

.single-comment p {
    /* font-style: italic; */
    font-size: 16px;
}

.single-comment p.small {
    line-height: 1;
    display: flex;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .875em;
}

.single-comment p.submitdate {
    text-align: right;
}

.cmm-have-your-say-message-list .cmm-have-your-say-message {
    margin-bottom: 20px;
}

.cmm-have-your-say-message-list .cmm-have-your-say-message .cmm-have-your-say-message-owner-wrap {
    margin-bottom: 10px;
}

.cmm-have-your-say-title {
    color: rgb(var(--clr--purple));
    font-size: clamp(24px, 1.5vw, 2.2rem);
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.cmm-have-your-say--form .cmm-have-your-say-header .header-copy {
    text-align: left !important;
}

.cmm-have-your-say--form {
    padding: 0 20px 0 0;
}

.header-copy p {
    color: rgb(var(--clr--black));
    font-size: 16px;
}

.header-copy li {
    color: rgb(var(--clr--white));
    font-size: 16px;
    line-height: 1.2;
    list-style: disc;
    padding: 3px 0;
}

.header-copy ul {
    margin-left: -12px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    margin: 1rem auto;
    justify-content: center;
    gap: 0;
}

.checkbox-wrap .form-check-input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.cmm-have-your-say-form {
    margin-top: 1rem;
}

a#cmm_have_your_say_submit_button,
a#cmm_mp_submit_button {
    width: fit-content;
    padding-inline: 15px;
}

a#cmm_mp_submit_button {
    text-transform: uppercase;
    width: 100%;
    max-width: 360px;
    border: 3px solid rgb(var(--clr--purple)) !important;
}

a#cmm_have_your_say_submit_button:hover,
a#cmm_mp_submit_button:hover {
    border-color: rgb(var(--clr--purple)) !important;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 120vh;
    bottom: 20%;
    background-size: 90%;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -0;
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
    display: none;
}

.share--content {
    margin-top: 1rem;
    padding: 3rem;
    background-color: rgb(var(--clr--lightblue));
    /* background-image: url('https://d3j7zmdye6pgkt.cloudfront.net/wp-content/uploads/background_pills_01.jpg'); */
    background-size: cover;
    background-position-x: right;
    background-position-y: top;
    position: relative;
}

.share--content .social-icons a {
    margin-top: 1rem;
    color: rgb(var(--clr--lightblue));
}

.share--content .social-icons a:hover {
    color: rgb(var(--clr--black));
}

.overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    position: absolute;
    background: rgb(var(--clr--white));
    background: -moz-linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.5) 100%);
    background: -webkit-linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.5) 100%);
    background: linear-gradient(180deg, rgba(var(--clr--white), 1) 0%, rgba(252, 252, 252, 0.5) 100%);
}

.share--content--box {
    position: relative;
    z-index: 9;
}

.survey_feeback .invalid-feedback {
    font-size: 20px;
    font-weight: 600;
    margin: -5% 0 20px;
    padding: 30px 0;
    line-height: 1;
}

.invalid-feedback {
    font-family: var(--fnt--helvetica);
    color: rgb(var(--clr--white));
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    background: #ed0202;
    padding: 2px 5px;
}

.subscribe--content {
    margin-top: 1rem;
    padding: 3rem;
    background-color: rgb(var(--clr--lightblue));
    position: relative;
}

.subscribe--form .invalid-feedback {
    /* font-size:14px  !important; */
    color: #ffffff !important;
    background-color: #ed0202 !important;
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}

.cmm-have-your-say--form .invalid-feedback {
    font-family: var(--fnt--helvetica);
    font-size: 14px !important;
    color: #ffffff !important;
    background-color: #ed0202 !important;
    width: calc(100% - 2px);
    padding: 3px;
    margin-inline: 1px;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.survey_edm_feeback {
    padding: 15px !important;
    text-align: center !important;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
}

.survey_edm_success,
.survey_success {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400 !important;
    text-align: center;
    background: #198754;
    padding: 15px !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.survey_edm_fail,
.survey_fail {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400 !important;
    text-align: center;
    background: #dc3545;
    padding: 15px !important;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.ref-links a {
    color: #000;
    font-size: clamp(16px, 1.5vw, 1.3rem);
    text-decoration: none;
}

.ref-links a:hover {
    color: #268f92;
    text-decoration: underline !important;
}

.progress-bar {
    background-color: rgb(var(--clr--purple));
    padding: 0 5px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.progress {
    font-size: 14px;
    font-weight: 800;
    width: 100%;
    max-width: 350px;
    background-color: rgb(var(--clr--lightblue));
    margin: 10px auto;
    border: 1px solid rgba(var(--clr--black), .15);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
    -moz-box-shadow: inset 0px 0px 5px 0px rgba(var(--clr--black), 0.2);
}

.progress-yes {
    background-color: #2a9140;
}

.progress-no {
    background-color: #ed0202;
}

div#poll_results_section > .progress {
    max-width: 100%;
    height: 100%;
    margin-top: 25px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

div#poll_results_section > .progress .progress-bar {
    font-family: var(--fnt--anton);
    font-size: 24px;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

span.ppl {
    font-family: var(--fnt--helvetica);
}

/* Checkbox */
.container-check {
    display: block;
    position: relative;
    /* padding-left: 35px; */
    margin-top: 7px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: rgb(var(--clr--white));
    text-align: left;
}

/* Hide the browser's default checkbox */
.container-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgb(var(--clr--white));
}

/* On mouse-over, add a grey background color */
.container-check:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-check input:checked~.checkmark {
    background-color: rgb(var(--clr--black));
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-check input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-check .checkmark:after {
    left: 9px;
    top: 3px;
    width: 8px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* data collection */
#data_collection_page .site-content {
    z-index: 3;
    background-color: #fcfcfcd1;
}

.subscribe--form .valid-feedback {
    font-size: 16px;
    color: #ffffff !important;
    background-color: #198754 !important;
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}

.page--container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.data-collection-link {
    white-space: nowrap;
}

.carousel.pointer-event {
    height: 100%;
}

div#carouselExampleCaptions {
    height: 100%;
}

.articles-row {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin: 15px 0 0;
}

.article-card {
    background-color: rgb(var(--clr--lightgray));
    color: rgb(var(--clr--white));
    padding: 0px;
    overflow: hidden;
    height: 100%;
}

.article-card a {
    font-family: var(--fnt--helvetica);
    font-size: 16px;
    color: rgb(var(--clr--purple));
    padding: 5px 0;
    text-decoration: none;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}

.article-card a::after{
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    display: inline-block;
    margin-left: 8px;
}

.article-card a:hover{
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--purple));
    padding: 5px 10px;
}

.bulk-billing img {
    max-width: 100%;
}

.more-articles {
    font-size: clamp(23px, 1.7vw, 2.1rem);
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    padding: 15px;
}

.articles-sides {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.articles-right .article-titles {
    font-size: clamp(19px, 1.1vw, 1.6rem);
}

.sq-placeholder {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: transparent
}
.cus-placeholder {
    aspect-ratio: 3 / 2;
    width: 100%;
    background-color: transparent
}
.article-image {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: top;
}

.article-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.article-card-content .article-titles {
    color: rgb(var(--clr--purple));
    font-size: clamp(21px, 1.5vw, 1.8rem);
}

.articles-right .article-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.article-card-content .article-excerpt p {
    color: rgb(var(--clr--black));
}

.links {
    font-size: clamp(16px, 1.5vw, 1.3rem);
}

.article-cards {
    display: flex;
}

.articles-sides .article-cards .article-image {
    width: 500px;
}
.article-cards .article-image {
    width: 350px;
}

.article-cards .article-card-content {
    width: 100%;
}
.news-box{
    display: flex;
    flex-direction: column;
    gap:20px;
    margin: 2rem 0;
}
.news-box .article-card-content{
    /* background-color: rgb(var(--clr--lightblue));
    color: rgb(var(--clr--lightblue)); */
    background: rgb(35, 117, 152);
    background: -moz-linear-gradient(180deg, rgba(35, 117, 152, 1) 0%, rgba(60, 155, 159, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(35, 117, 152, 1) 0%, rgba(60, 155, 159, 1) 100%);
    background: linear-gradient(180deg, rgba(35, 117, 152, 1) 0%, rgba(60, 155, 159, 1) 100%);
}
/* .news-box .article-card a{
    color: rgb(var(--clr--lightblue));
} */
/* .articles-right .article-cards {
    height: auto;
} */

.pagination {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    justify-content: space-between;
}
.active>.page-link, .page-link.active{
    border-color: rgb(var(--clr--lightblue));
    background-color: rgb(var(--clr--lightblue));
}
.page-link{
    color: rgb(var(--clr--lightblue));
}
.single-article {
    padding: 2rem;
    background-color: rgb(var(--clr--lightblue));
    margin: 1.5rem auto;
}
.single-article-image img{
    width: 100%;
}
.single-article-content{
    margin: 2rem auto;
}
.single-article-row{
    display: flex;
    align-items: center;
    gap: 20px;
}
.articles-pagination{
    display: flex;
    width: 100%;
    justify-content: space-between;
    border: none;
}
.news--single--wrapper{
    width: 100%;
    margin: auto;
}
.innerpage-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-article-image {
    width: 40%;
}
.single-article-row .title{
    width: 60%;
    color: rgb(var(--clr--lightblue));
    padding: 2rem;
}
.single-article-content p {
    text-align: left !important;
}

/* wordpress menu */
.navbar {
    background-color: rgb(80, 80, 80);
    padding: 0;
    border: 3px solid transparent;
    display: flex;
    justify-content: center;
}

.menu-menu-1-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

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

.header-menu li {
    line-height: 1;
    display: inline;
    padding: .3rem 1.7rem;
    list-style: none;
    border-left: 1px solid rgba(var(--clr--white), .25);
}

.header-menu li:first-child {
    border-left: 1px solid transparent;
}

.header-menu li a {
    color: rgb(var(--clr--white));
    font-size: 16px;
    line-height: 1;
    font-family: var(--fnt--helvetica);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
}

.header-menu li a:hover,
.header-menu li.current-menu-item a,
.header-menu li a:not([href]):not([class]) {
    color: rgb(41, 186, 230) !important;
}

/* wordpress */
.btn a {
    color: rgb(var(--clr--white));
    text-decoration: none;
}
.black--btn:hover a {
    color:rgb(var(--clr--black));
    text-decoration: none;
}
.darkturquoise--btn:hover a{
    text-decoration: none;
    color:rgb(var(--clr--lightblue));
}

a.page-numbers {
    color: rgb(var(--clr--purple));
    font-size: 21px;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 15px;
}

a.page-numbers:hover {
    color: rgb(var(--clr--purple));
    transition: ease-in-out .5s;
    -webkit-transition: ease-in-out .5s;
    -moz-transition: ease-in-out .5s;
    -ms-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
}

.pagination-number {
    display: block;
    margin: 2rem auto;
    width: 100%;
    text-align: center;
}

span.page-numbers.current {
    font-weight: 700;
    background-color: rgb(var(--clr--lightblue));
}

/* Hide page numbers */
.news-pagination .page-numbers {
    display: none;
}

/* Only show the previous and next links */
.news-pagination .prev,
.news-pagination .next {
    display: inline-block;
}

/* Sign Up Form */
.nav-tabs {
    margin: 0;
    border: 0;
}

.nav-tabs .nav-item {
    width: 50%;
    padding: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--purple));
    border: 0;
}

.nav-tabs .nav-link {
    font-family: var(--fnt--anton);
    font-size: clamp(21px, 1.5vw, 1.8rem);
    color: rgb(var(--clr--purple));
    background-color: rgb(var(--clr--lightblue));
    width: 100%;
    padding: 10px 15px;
    border: 0;
}

.counter {
    margin-bottom: 40px;
}

.signup--form {
    padding: 1rem 4rem;
    margin: 0;
    border: 3px solid rgb(var(--clr--purple));
    position: relative;
}

.signup--form input[type="text"],
.cmm-mp--form input[type="text"],
.signup--form select {
    font-weight: 400;
    color: rgb(var(--clr--white));
    background-color: rgb(var(--clr--purple));
    padding: 10px 15px;
    border-color: rgb(var(--clr--purple)) !important;
}

.signup--form select {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--purple)) url(https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/white-arrow-down.svg);
    background-position: calc(100% - 10px) calc(100% - 8px);
    background-repeat: no-repeat;
    background-size: 25px;
}

.signup--form select:hover,
.signup--form select:focus {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--purple)) url(https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/white-arrow-down.svg);
    background-position: calc(100% - 10px) calc(100% - 8px);
    background-repeat: no-repeat;
    background-size: 25px;
}

.signup--form input[type="text"]::placeholder,
.cmm-mp--form input[type="text"]::placeholder {
    color: rgb(var(--clr--white));
}

.cmm-mp--form textarea,
.cmm-mp--form textarea:focus {
    color: rgb(var(--clr--black));
    background-color: rgb(var(--clr--white));
}

.form-submit-btn {
    max-width: fit-content;
    padding-block: 12px;
    margin-bottom: 25px;
}

/* Send a Letter */
.letter--grid--rows {
    margin: 15px 0 0;
}

.letter--grid--rows .grid--cols {
    padding: 0;
    position: relative;
}

.letter--grid--rows .grid--cols.letter--form--grid {
    padding: 3rem;
    border: 3px solid rgb(var(--clr--purple));
}

.send-letter-description {
    margin-bottom: 35px;
}

.send-letter-description .send-letter-title {
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.send-letter-description p,
.send-letter-description ul li {
    /* font-family: var(--fnt--anton); */
    font-size: clamp(16px, 1vw, 1.8rem);
    line-height: 1.3;
}

.send-letter-description ul {
    margin-bottom: 20px;
    margin-left: -10px;
}

.send-letter-description ul li {
    line-height: 1;
    list-style: disc;
}

textarea#mp-message-cmm-mp-readonly {
    font-size: 14px;
    font-weight: 700;
}

.mp-letter {
    font-family: var(--fnt--helvetica);
    font-weight: 400;
}

.copy-stripe {
    color: rgb(var(--clr--purple));
    background: rgb(var(--clr--lightblue));
    padding: 5px 10px;
    margin-block: 20px;
    display: block;
    width: fit-content;
}

.copy-stripe p {
    margin: 0;
}

.send-letter-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 0;
}

.send-letter-badge {
    background: url("https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/send-a-letter-badge.png") no-repeat 0 0 / contain;
    width: 250px;
    aspect-ratio: 1 / 1;
    padding: 50px;
    position: absolute;
    top: -120px;
    right: -150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-letter-badge p {
    font-family: var(--fnt--anton);
    font-size: 21px;
    line-height: 1;
    color: rgb(var(--clr--white));
    text-align: center;
    margin: 0;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
}

.send-letter-badge p span {
    font-size: 48px;
    line-height: 1;
    display: block;
}

/* Take the Poll */
.poll-title-wrapper {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.poll-title-wrapper img {
    max-width: 100%;
}

.poll-title-stripe {
    background: rgb(var(--clr--white));
    padding: 20px 15px;
    margin: 15px 0 0;
    outline: 2px solid rgb(var(--clr--purple));
    outline-offset: -6px;
    transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.poll-title-stripe .poll-stripe-heading {
    font-size: clamp(25px, 2.1vw, 2.7rem);
    color: rgb(var(--clr--purple));
    text-align: center;
}

.petition--btn {
    font-size: clamp(18px, 1.3vw, 28px);
    padding: 15px 35px !important;
}

.cmm-mp-return-message,
.cmm-petition-return-message,
.cmm-have-your-say-return-message,
.cmm-poll-return-message,
.cmm-survey-return-message {
    color: rgb(var(--clr--white)) !important;
    font-family: var(--fnt--helvetica) !important;
    font-size: 16px !important;
    padding: 15px !important;
    background: rgb(42, 145, 64) !important;
}

.cmm-mp-return-message.error,
.cmm-petition-return-message.error,
.cmm-have-your-say-return-message.error,
.cmm-poll-return-message.error,
.cmm-survey-return-message.error {
    background: rgb(202, 49, 49) !important;
}

.cmm-have-your-say-return-message,
.cmm-poll-return-message,
.cmm-survey-return-message {
    margin-top: 25px;
}

.cmm-mp-return-message:is(:empty),
.cmm-petition-return-message:is(:empty),
.cmm-have-your-say-return-message:is(:empty),
.cmm-poll-return-message:is(:empty),
.cmm-survey-return-message:is(:empty),
.cmm-petition-message:is(:empty) {
    padding: 0;
    display: none;
}

.cmm-mp-return-message p,
.cmm-petition-return-message p,
.cmm-have-your-say-return-message p,
.cmm-poll-return-message p,
.cmm-survey-return-message p {
    color: rgb(var(--clr--white));
    font-size: 16px;
    text-align: center;
    margin: 0 !important;
}

/* Our Partners */
.partner-logo-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.partner-logo-carousel.owl-loaded {
    display: block;
}

.partner-logo-carousel > .partner-logo-item {
    width: calc((100% / 3) - 13px);
    min-width: calc((100% / 3) - 13px);
    height: 215px;
    position: relative;
}

.partner-logo-carousel > .partner-logo-item:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(var(--clr--lightgray));
    position: absolute;
    top: 0;
    left: 0;
}

.partner-logo-item img {
    width: 100%;
}

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

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

.owl-stage {
    display: flex;
}

.owl-item {
    padding: 20px 5px;
    vertical-align: top;
    display: flex;
    opacity: .1;
}

.owl-item.active {
    opacity: 1;
}

.owl-nav {
    width: 100%;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next{
    color: rgb(var(--clr--primary--blue));
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 50%;
}

.owl-nav button.owl-prev {
    left: -50px;
}

.owl-nav button.owl-next{
    right: -50px;
}

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

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    background: rgba(var(--clr--lightblue), .6);
    border: 0;
    border-radius: 50%;
}

.owl-dots button.owl-dot.active {
    background: rgb(var(--clr--purple));
}

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

/* News Room */
.newsroom-filter-wrapper {
    margin-block: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}

.newsroom-filter select {
    font-size: 18px;
    font-family: var(--fnt--helvetica);
    color: rgb(var(--clr--purple));
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    padding: 10px 45px 10px 15px;
    max-width: 230px;
    background: rgb(var(--clr--white)) url("https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/purple-arrow-down.svg");
    background-position: calc(100% - 5px) calc(100% - 6px);
    background-repeat: no-repeat;
    background-size: 30px;
    border: 2px solid rgb(var(--clr--purple));
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.newsroom-filter select:hover,
.newsroom-filter select:focus {
    color: rgb(var(--clr--white));
    background: rgb(var(--clr--purple)) url("https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/white-arrow-down.svg");
    background-position: calc(100% - 5px) calc(100% - 6px);
    background-repeat: no-repeat;
    background-size: 30px;
}

.page-media-filter-wrapper {
    display: flex;
    gap: 15px;
}

.page-media-filter-wrapper label {
    font-family: var(--fnt--helvetica);
    font-size: clamp(16px, 1vw, 19px);
}

.newsroom-item {
    background: rgb(var(--clr--white));
    box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.161);
    display: flex;
    flex-direction: column;
}

.newsroom-item .newsroom-image {
    background: url("https://d33p6g727y81fz.cloudfront.net/wp-content/uploads/placeholder.jpg") no-repeat 50%;
    background-size: cover;
    width: 100%;
    height: unset;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.newsroom-item .newsroom-image img {
    width: 100%;
    height: unset;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 0;
}

.newsroom-news {
    text-align: left;
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.newsroom-news a {
    color: rgb(var(--clr--white));
    font-family: var(--fnt--helvetica);
    font-size: clamp(18px, 1vw, 27px);
    font-weight: 700;
    text-decoration: none;
    background-color: rgb(var(--clr--purple));
    padding: 10px;
    border: 2px solid rgb(var(--clr--purple));
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.newsroom-news a:hover {
    color: rgb(var(--clr--purple));
    background-color: rgb(234, 247, 250);
    border: 2px solid rgb(var(--clr--purple));
}

.single-news-item .newsroom-news {
    padding-inline: 0;
}

.newsroom-news .newsroom-item-title {
    font-size: clamp(18px, 1.2vw, 29px);
    line-height: 1.3;
    /* flex-grow: 1; */
    margin-bottom: 20px !important;
}

.newsroom-news p {
    font-size: 16px;
    color: #6E6E6E;
}

.newsroom-news p.newsroom-item-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    flex-grow: 1;
}

.news-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-pagination {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.news-pagination .nav-next a,
.news-pagination .nav-previous a,
a.pagination-next {
    font-size: 21px;
    font-family: var(--fnt--helvetica);
    color: rgb(var(--clr--purple));
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-pagination .nav-previous {
    margin-right: auto;
}

.news-pagination .nav-next {
    margin-left: auto;
}

.news-pagination .nav-next a:hover,
.news-pagination .nav-previous a:hover,
a.pagination-next:hover {
    color: rgb(var(--clr--purple));
}

.news-pagination .page-numbers i,
.news-pagination .pagination-next i {
    color: rgb(var(--clr--white));
    line-height: 35px;
    background-color: rgb(var(--clr--purple));
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    transition: ease-in-out .5s;
    -webkit-transition: ease-in-out .5s;
    -moz-transition: ease-in-out .5s;
    -ms-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
}

.news-pagination .page-numbers:hover i,
.news-pagination .pagination-next:hover i {
    margin-inline: 10px;
}

div#newsroom-kap-grid {
    font-family: var(--fnt--helvetica);
}

/* Single news Item */
.newsroom-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    margin-bottom: 35px;
}

/* Lead Magnet */
.petition-magnet-copy {
    padding: 1rem 3rem 2rem 1rem;
}

.petition-magnet-copy .title h2 {
    font-size: clamp(28px, 1.9vw, 3rem);
}

.petition-magnet-copy + img {
    width: calc(100% - 3rem);
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank--you--row {
    background-color: rgb(var(--clr--lightblue));
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.thanks--col--sides {
    width: 50%;
}

.thanks--col--dynamics {
    width: 60%;
    padding: 4rem 2rem 4rem 3rem;
}

.thanks--col--img {
    padding-top: 2rem;
}

.thanks--col--img img {
    max-width: calc(100% + 40px);
    max-height: 660px;
    margin-left: -40px;
}

.thankyou--choices--cols {
    width: 90%;
    min-width: 250px;
    margin-top: 2.5rem;
}

.thankyou--choices--cols--button {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.thankyou--choices--cols--button .btn {
    font-size: clamp(18px, 1.4vw, 28px);
    text-transform: uppercase;
    width: 50%;
    padding: 10px 25px;
    display: flex    ;
    align-items: center;
    justify-content: center;
}

.thank--you--row ul {
    margin-left: -10px;
    margin-bottom: 15px;
}

.thank--you--row ul li {
    list-style: disc;
}

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

.error-content {
    padding: 25px;
    text-align: center;
    background-color: rgb(var(--clr--lightgray));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.error-title {
    color: rgb(var(--clr--purple));
    font-size: clamp(48px, 5vw, 92px);
}

/* Privacy Policy */
.single-page-item .newsroom-news {
    padding-inline: 0;
}

.single-page-item ul {
    margin-left: -10px;
    margin-bottom: 20px;
}

.single-page-item ul li {
    list-style-type: disc;
}

/* Download Modal */
div#downloadModal {
    background: rgba(var(--clr--black), .5);
}

div#downloadModal .modal-dialog {
    max-width: 550px;
}

div#downloadModal .modal-header,
div#downloadModal .modal-content,
div#downloadModal .modal-body {
    padding: 0;
    border: 0;
}

div#downloadModal .modal-header {
    height: 0;
}

div#downloadModal .modal-header .btn-close {
    color: rgb(var(--clr--white));
    background: transparent;
    padding: 3px;
    border: 2px solid rgb(var(--clr--white));
    position: relative;
    top: 30px;
    right: 25px;
    z-index: 99;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.download-modal-title {
    font-size: clamp(20px, 1.3vw, 2rem);
}

.download-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-modal-copy {
    padding: 20px;
}

.optional-text {
    font-size: 12px;
}

a#cmm_download_submit_button {
    font-size: 21px;
    padding-block: 10px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

div#downloadModal .form-control {
    font-size: 15px;
    padding: 5px 10px;
}