/* ====== FONTS ====== */
@import url("https://use.typekit.net/bnk5pbr.css");

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

::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: var(--quaternary--color);
    box-shadow: inset 2px 2px 3px rgba(23, 23, 23, 0.4);
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: rgb(201, 201, 201);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    box-shadow: inset 0px 0px 8px #ffffff60;
}

:root {
    --primary--color: #C63663;
    --secondary--color: #29B1BD;
    --tertiary--color: #F9F7F0;
    --quaternary--color: #000000;
    --quinary--color: #FFFFFF;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--quinary--color);
    color: var(--quaternary--color);
    font-size: 16px;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: "omnes-pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 5px 0;
    line-height: 1.1;
    font-weight: 700;
}
h1{
    font-size: clamp(30px, 2.5vw, 2.5rem);
}
h2{
    font-size: clamp(20px, 2.3vw, 2rem);
}
h3{
    font-size: clamp(18px, 2.3vw, 30px);
}
p,li{
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 500;
}
li{
    list-style: none;
    margin-bottom: 5px;
}
a:hover{
    color: var(--secondary--color);
}
.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;
}

.titles {
    padding: 10px 0;
    position: relative;
}

.section-row {
    padding: 3% 0px;
    position: relative;
}

section {
    position: relative;
}

.fw100 {
    font-weight: 100;
}

.fw300 {
    font-weight: 300;
}

.fw400 {
    font-weight: 400;
}

.fw500 {
    font-weight: 500;
}

.fw600 {
    font-weight: 600;
}

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

.fw900 {
    font-weight: 900;
}

.ls {
    letter-spacing: 1.5px;
}

.italic {
    font-style: italic;
}

/* ====== COLORS ====== */

.primary--color {
    color: var(--primary--color);
}

.secondary--color {
    color: var(--secondary--color);
}

.tertiary--color {
    color: var(--tertiary--color);
}

.quaternary--color {
    color: var(--quaternary--color);

}

.quinary--color {
    color: var(--quinary--color);
}

.primary--bgcolor {
    background-color: var(--primary--color);
}

.secondary--bgcolor {
    background-color: var(--secondary--color);
}

.tertiary--bgcolor {
    background-color: var(--tertiary--color);
}

.quaternary--bgcolor {
    background-color: var(--quaternary--color);
}

.quinary--bgcolor {
    background-color: var(--quinary--color);
}



/* ====== HEADER ====== */

.logo {
    width: 30vw;
    min-width: 160px;
    max-width: 280px;
}

header {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    background-color: var(--quinary--color);
    z-index: 999;
    box-shadow: 0px 8px 12px #0000001A;
}


/* ====== NAVIGATION ====== */

.navbar-light .navbar-nav .nav-link {
    color: var(--quinary--color);
    font-size: 18px;
    padding: 10px 25px;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
    color: var(--primary--color);
}

.navbar-icon {
    background-color: var(--quinary--color);
    width: 25px;
    height: 3px;
    margin: 4px 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;
}

.navbar-toggler.cross .navbar-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary--color);
}

.navbar-toggler.cross .navbar-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.cross .navbar-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--primary--color);
}


.navbtn {
    padding: 5px 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: var(--quaternary--color);
    border: 2px solid var(--quaternary--color);
    width: max-content;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
}

.navbtn:hover {
    background-color: transparent;
    border: 2px solid var(--quaternary--color);
}

/* ====== BUTTONS ====== */

.btn {
    font-weight: 700 !important;
    color: var(--quinary--color);
    line-height: 1.1;
    transition: ease-in .4s;
    -webkit-transition: ease-in .4s;
    -moz-transition: ease-in .4s;
    -ms-transition: ease-in .4s;
    -o-transition: ease-in .4s;
    width: 100%;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border: none;
    text-transform: uppercase;
    position: relative;
}
a{

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

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

button:focus {
    outline: none;
}

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

.primary--btn:hover {
    background-color: transparent;
    border: 2px solid var(--primary--color);
    color: var(--primary--color);
}

.small--btn {
    font-size: 18px;
    padding: 8px 20px !important;
    min-width: 200px
}

.normal--btn {
    font-size: 22px;
    padding: 12px 40px;
}

.secondary--btn {
    background-color: #FEC324;
    border: 2px solid #FEC324;
    color: var(--quaternary--color);
}

.secondary--btn:hover {
    background-color: transparent;
    border: 2px solid #FEC324;
    color: #FEC324;
}

/* ====== BANNER ====== */

.hero--banner {
    position: relative;
    z-index: 99;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--secondary--color);
}


/* ====== ROLLING BANNER ====== */

.rollingbanner {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    z-index: 99;
}

.scrolling {
    display: inline-block;
    padding: 0 200px;
    font-size: 17px;
    font-weight: bold;
    color: var(--quaternary--color);
    animation: marquee 20s linear infinite;
    -webkit-animation: marquee 20s linear infinite;
}

/* Pause on hover */
.rollingbanner:hover .scrolling {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}

.scrolling span {
    font-size: 15px;
    font-weight: lighter;
}

.scrolling span a {
    color: var(--quaternary--color);
}

.scrolling span a::after {
    content: " >";
}

.scrolling span a:hover {
    color: var(--primary--color);
}

/* ====== SIGN - MAIN ====== */

.section--main {
    position: relative;
}

.main-title-row {
    display: flex;
    flex-direction: row;
    padding: 0 10%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.main--section--wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--tertiary--color);
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    padding: 2.5vmax;
}
.main--content ul {
    margin-left: -30px;
}
.main--content ul li::before{
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    position: relative;
    color: var(--secondary--color);
    margin-right: 10px;
}
.main--content {
    max-width: 700px;
    margin: auto;
    position: relative;
}

.main-content-copy {
    margin: 0 auto;
    position: relative;
    padding: 5%;
}

.main-content-copy .takethequiz-btn {
    margin-top: 5%;
}

.main--content p span {
    font-weight: 700;
}

.main--content--row {
    display: flex;
}

.main-content-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.main-content-bottom-row .main-content-bottom-cols:nth-child(1) {
    width: 60%;
}

.main-content-bottom-row .main-content-bottom-cols:nth-child(2) {
    width: 40%;
}

.main-content-bottom-cols {
    position: relative;
}


.petition--form {
    margin: 0;
    position: relative;
    padding: 1.5rem 2.5rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: var(--secondary--color);
    max-width: 480px;
    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;
}

.petition--form p {
    color: var(--quinary--color);
    margin-bottom: 0;
    margin-top: 10px;
    text-align: center;
}

.petition--form--container {
    width: 50%;
    position: relative;
    border-radius: 5px;
    z-index: 8;
}

.petition--form textarea {
    max-height: 150px;
}

.req {
    display: block;
    width: max-content;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--quinary--color);
    font-weight: 300;
}

form .row {
    padding: 0px 0 10px 0;
}

form {
    position: relative;
    z-index: 9;
    margin: 10px auto;
}

hr:not([size]) {
    background: #D1D1D1;
    height: 1px;
    opacity: 1;
    margin: 10px 0;
}

.pr {
    padding-right: 5px;
}

.pl {
    padding-left: 5px;
}

.form-control {
    background: var(--quinary--color) 0% 0% no-repeat padding-box;
    border: none;
    font-size: 16px;
    color: var(--quaternary--color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: thin solid #D1D1D1;
    box-shadow: inset 0px 3px 2px #00000018;
}

.form-control:focus {
    outline: 0;
    transition: ease-in .3s;
    -webkit-transition: ease-in .3s;
    -moz-transition: ease-in .3s;
    -ms-transition: ease-in .3s;
    -o-transition: ease-in .3s;
    border: thin solid var(--primary--color);
}

.formpetition {
    overflow: hidden;
}

.form input,
.form select {
    padding: 10px 20px;
    min-height: 30px;
    font-size: 17px;
}

.OSX select {
    outline: none;
    outline-offset: -1px;
    border: 0px;
    height: 45px;
}

.form input::-webkit-input-placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
}

.form input:-ms-input-placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
}

.form input::placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
}

.form textarea::-webkit-input-placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
    text-indent: 0px;
}

.form textarea::-ms-input-placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
    text-indent: 0px;
}

.form textarea::placeholder {
    color: var(--quaternary--color);
    font-weight: 500;
    text-indent: 0px;
}

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

/* 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: thin solid var(--primary--color);
    -webkit-text-fill-color: var(--quaternary--color);
    box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
    width: 100%;
    margin-top: 2px;
    font-size: 13px;
    color: var(--quinary--color);
    background-color: #e40838;
    padding: 5px;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.valid-feedback,
.cmm-mp-return-message.success {
    width: 100%;
    margin-top: 2px;
    font-size: 13px;
    color: var(--quinary--color);
    background-color: #198754;
    padding: 5px;
    font-weight: 500;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.invalid-feedback.choice_error {
    text-align: center;
}

.small-para {
    font-size: 14px;
    padding: 10px 0px;
    font-weight: normal;
    margin: 0;
}

.small-para a {
    text-decoration: underline;
    white-space: nowrap;
    color: var(--quinary--color);
}

.small-para a:hover {
    color: #ccc;
}

.takethequiz-btn {
    position: relative;
    z-index: 1;
}


/* Radio Button */

.optionbox {
    padding: 10px 0;
}

.optlable {
    text-align: center;
    color: var(--quaternary--color);
    font-size: 16px;
    font-weight: 600;
}

.country--info {
    position: relative;
    z-index: 8;
}

.optionradio {
    display: flex;
    align-items: center;
}

.countrylabel {
    flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin: 0 auto 0;
    color: var(--quinary--color);
}

.radioButtongrp {
    flex: 3;
    text-align: center;
    display: flex;
    justify-content: space-around;
    width: 250px;
    margin: 10px auto;
}

.radioButtongrp .contain {
    margin: 0;
    font-weight: 300;
    font-size: 16px;
    color: var(--quinary--color);
}

.radioButtongrp .contain {
    width: auto;
}

.contain {
    display: inline-block;
    position: relative;
    padding: 0 10px 0 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.contain input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--quinary--color);
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.contain:hover input~.checkmark {
    background-color: var(--quinary--color);
}


/* When the radio button is checked, add a blue background */

.contain input:checked~.checkmark {
    background-color: transparent;
    border: 1px solid var(--quinary--color);
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.contain input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.contain .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: var(--primary--color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}




.form-question {
    background-color: var(--quaternary--color);
    padding: 15px 10px;
    width: 100%;
    margin: 5px 0;
    text-align: center;
    font-size: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.main--content--btnset {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.main--content--btnset .takethequiz-btn {
    flex: 1;
}

.main-content-copybox {
    position: relative;
    z-index: 9;
}

.main--content--btnset .winDiv {
    flex: 1;
}



.petition--form--container .progress-bar {
    background-color: var(--quaternary--color);
}

.counter {
    width: 100%;
    display: block;
    padding: 10px 0;
}

.counter span {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    line-height: 1;
}

.counter span {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.counter span.ppl {
    font-weight: 700;
    font-size: 18px;
}

.counter {
    background-color: rgba(var(--counter--bgcolor), 0.5);
    padding: 5% 10%;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}


.section--cards--row {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    justify-content: space-between;
    margin: auto;
    gap: 5%;
}

.section--cards {
    width: 100%;
    margin: 20px auto;
}


.clearfix {
    clear: both;
    height: 70px;
}

/* ====== PETITION ====== */


.petition--section--wrapper {
    display: flex;
    flex-direction: row;
    gap: 5%;
    padding: 5% 0;
}

.petition--form--container {
    width: 45%;
}

.petition--content {
    width: 55%;
}

.signing-boxes {
    padding: 20px 30px;
    margin: 5px auto;
    font-size: 16px;
}

.signing-boxes .time {
    font-size: 15px;
    font-weight: 500;
    margin: 0 10px;
    display: block;
}

.signing-details-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.signing-boxes .name {
    font-size: 15px;
    font-weight: 500;
    display: block;
}

.signing-details-cols a {
    color: var(--quaternary--color);
    font-size: 20px;
    margin: 0 5px;
}

.signing-section {
    padding-right: 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.signing-box-wrapper {
    max-height: 150px;
    overflow-y: auto;
}

.signed {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signed label {
    font-size: 18px;
}

.signed .time {
    font-weight: 300;
    margin: 0 20px;
}

.petition--user {
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #6C6C6E;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10% 0;
    min-height: 300px;
}

.petition--quote {
    position: relative;
    z-index: 2;
    color: var(--quaternary--color);
    font-weight: 500;
    padding: 0 5%;
    width: 60%;
    font-size: 15px;
}


/* ====== factpack ====== */
.factpack--section {
    overflow: hidden;
}

.factpack--main--image {
    position: absolute;
    z-index: 0;
    right: -4%;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 60%;
}

.factpack--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px auto;
    position: relative;
    z-index: 2;
    gap: 5%;
}

.factpack--img {
    flex: 1;
    max-width: 600px;
    margin: auto;
}

.factpackContentBox {
    flex: 1;
    max-width: 650px;
}

.factpackContentBox li {
    color: var(--quinary--color);
    margin-bottom: 1rem;

}

/* ====== union--section ====== */

.union--content {
    margin: 1rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.uc--cols {
    padding: 1rem 1.5rem;
    max-width: 300px;
    width: 25%;
    margin-bottom: .5rem;
    text-align: center;
}

.union-thumbs {
    width: 100%;
}

.uc--cols p {
    font-size: 16px;
}

.union--content--box {
    padding: 1rem;
    background-color: var(--secondary--color);
    max-width: 850px;
    margin: 1rem auto;
}

.union--content--box .titles {
    max-width: 500px;
    margin: auto;
}


.cta--button {
    background-color: var(--primary--color);
    margin: .5rem auto;
    padding: 1rem;
    max-width: 650px;
    text-align: center;
    color: var(--quinary--color);
    font-weight: 400 !important;
    font-size: 16px;
    text-transform: none;
}

.cta--button a {
    color: var(--quinary--color);
}

/* ====== letter--content ====== */
.letter--section--wrapper {
    min-height: 70vh;
    display: flex;
    gap: 5%;
    align-items: center;
}

.letter--content {
    width: 50%;
}

.letter--box {
    width: 50%;
}

.middle--banner--section {
    min-height: 30vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.primary--overlay {
    background-color: rgba(242, 97, 1, 0.905);
}
.secondary--overlay {
    background-color: rgba(52, 62, 74, 0.547);
}
.middle--banner--section--content {
    position: relative;
    z-index: 9;
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 0 1rem;
}

.btn--set {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.btn--set span {
    position: relative;
    z-index: 3;
}

.btn--progress {
    position: absolute;
    height: 100%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #ffffffd8;
    box-shadow: 2px 0px 20px #00000024;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    -webkit-border-radius: 2px;
    padding: 5px;
}

.btn--progress span {
    font-size: 14px;
    z-index: 5;
    color: var(--secondary--color)
}




/* CUSTOM CHECKBOX */

.form-check-input[type=radio] {
    border: 2px solid var(--secondary--color);
    background: transparent;
    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;
}

label.form-check-label {
    font-size: 20px;
    margin-left: 10px;
    font-weight: 400;
}

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

.form-check-input:checked[type=radio] {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-color: var(--primary--color);
    border: 2px solid var(--primary--color);
}
.fap--form{
    background-color: var(--secondary--color);
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    position: relative;
    margin-top: 10%;
}
.fap--form .form{
    padding: 2rem 3vmin 1rem;
}
.fap--form .heading{
    position: absolute;
    font-weight: 700;
    color: var(--quaternary--color);
    background-color: #FEC324;
    margin: auto;
    display: block;
    width: max-content;
    padding: 5px 25px;
    left: 0;
    right: 0;
    top: -20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 5px 10px #0000002d;
}
.sponsors--section{
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sponsors--content{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.sponsors--logos{
    width: calc(100% / 4 - 20px);
}
.sponsors--logos img{
    width: 100%;
}
footer {
    padding: 2rem 0;
    background-color:var(--tertiary--color);
}
.footer-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5%;
}
.footer--content p{
    color: var(--quaternary--color);
    font-weight: 500;
    text-align: right;
    font-size: clamp(15px, 2.2vw, 18px);
}
.footer--content h3{
    text-align: right;
}
.footer--content a{
    color: var(--quaternary--color);
    font-weight: 500;
    text-align: right;
}
.form-container {
    max-width: 700px;
    margin: auto;
}
.footer-content {
    max-width: 1000px;
    margin: auto;
}
.footer--logo{
    width: 30%;
}
.footer--content{
    width: 70%;
}
.social--footer {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    padding-top: 20px;
}
.social--footer a {
    color: var(--tertiary--color);
}
.social--footer a:hover {
    color: var(--secondary--color);
}
.social--footer a i{
    font-size: 1.5rem;
}
.form-newsletter{
    display: flex;
    justify-content: center;
}
form.form-newsletter input.form-control{
    border-radius: 50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
    -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
    -o-border-radius: 50px 0 0 50px;
}
form.form-newsletter .btn{
    border-radius: 0 50px 50px 0;
    -webkit-border-radius: 0 50px 50px 0;
    -moz-border-radius: 0 50px 50px 0;
    -ms-border-radius: 0 50px 50px 0;
    -o-border-radius: 0 50px 50px 0;
    width: 150px;
}
footer .accordion-button{
    font-weight: 600;
}
footer .accordion-button {
    color: #ffffff;
    background-color: transparent;
}
footer .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: thin solid var(--tertiary--color);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
footer .accordion-button:not(.collapsed) {
    color: var(--secondary--color);
    background-color:transparent;
}
.accordion-button:focus{
    border: none;
    box-shadow: none;
}
.accordion-body{
    color: var(--tertiary--color);
}
.accordion-body ul li a{
    font-size: 17px;
    color: var(--tertiary--color);
}
.accordion-button::after {
    filter: invert(100%);
}
.accordion-button:not(.collapsed)::after {
    filter: grayscale(100%);
}
.accordion-button:not(.collapsed){
    box-shadow: none;
}
