:root {
    /* colors */
    --dark-blue: #031371;
    --light-blue: #2e74b7;
    --dark-beige: #e9d5bd;
    --light-beige: #f5ebdf;
    --dark-grey: #141414;
    --light-grey: #d3d3d3;
    --off-white: #f9f9f9;
    /* fonts */
    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
    /* breakpoints */
    --screen-xs: 0px;
    --screen-s: 576px;
    --screen-m: 768px;
    --screen-l: 992px;
    --screen-xl: 1200px;
    --screen-xxl: 1400px;
}

.colour-strip {
    display: block;
    background-color: var(--light-beige);
    margin: 0;
    padding: 30px;
}
/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--dark-blue);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}

html {
    background-color: var(--off-white);
    color: var(--dark-blue);
    font-family: var(--secondary-font);
    font-size: 18px;
    height: 100%;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    text-align: center;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: var(--dark-blue);
}

.disabled-link {
    pointer-events: none; /* Disables mouse clicks */
    cursor: default; /* Changes the cursor from a hand to default arrow */
    color: gray; /* Optional: styles the link to look disabled */
    text-decoration: none; /* Optional: removes the underline */
}

strong {
    color: var(--light-blue);
    font-family: var(--secondary-font);
}

/* GRID LAYOUTS */

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 0 auto;
}

.grid-sidebar {
    display: grid;
    grid-template-columns: 20% 1fr;
    grid-template-rows: 1fr;
    width: 100%;
}

@media (max-width: 650px) {
    .grid-sidebar {
        grid-template-columns: repeat(1, 1fr);
    }
}

header {
    background-color: white;
    border: none;
    top: 0;
    text-align: center;
}

.header-logo {
    height: 150px;
}

.hero-section {
    display: block;
    max-width: 100vw;
    height: 80vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../images/hero8.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    /* position: relative; */
}

img {
    height: auto;
    max-width: 100%;
}

button {
    display: inline;
    color: white;
    cursor: pointer;
    background-color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    border-radius: 0px;
    font-family: var(--primary-font);
    font-weight: normal;
    height: min-content;
    width: fit-content;
    padding: 10px;
    text-align: center;
}

button:hover {
    color: var(--dark-blue);
    background-color: var(--dark-beige);
    border: 1px solid var(--dark-beige);
    transition-duration: 0.4s;
}

button.secondary-button {
    background-color: var(--off-white);
    color: var(--dark-blue);
    font-weight: 400;
}

button.secondary-button:hover {
    text-decoration: underline;
    border: 1px solid var(--dark-blue);
    transition-duration: 0.4s;
}

button.tertiary-button {
    background-color: var(--off-white);
    border: none;
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 0.7rem;
}

button.tertiary-button:hover {
    text-decoration: underline;
    transition-duration: 0.4s;
}

footer,
.nav-footer,
.nav-footer a,
.nav-footer a:visited {
    display: block;
    background-color: var(--dark-blue);
    color: white;
    overflow: hidden;
    width: 100%;
}
.nav-footer h3 {
    text-align: left;
}
.sidebar {
    background-color: var(--light-beige);
    padding: 30px;
}

.expert-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-beige);
    height: 200px;
    font:
        normal 40px/50px Montserrat,
        sans-serif;
}

.expert-section p {
    height: 50px;
    float: left;
    margin-right: 0.3em;
}

.expert-section b {
    float: left;
    overflow: hidden;
    position: relative;
    height: 50px;
}

.expert-section .expert-inner {
    display: inline-block;
    color: var(--light-blue);
    position: relative;
    white-space: nowrap;
    top: 0;
    left: 0;
    /*animation*/
    -webkit-animation: move 5s;
    -moz-animation: move 5s;
    -ms-animation: move 5s;
    -o-animation: move 5s;
    animation: move 5s;
    /*animation-iteration-count*/
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    /*animation-delay*/
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-webkit-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-moz-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@-o-keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

@keyframes move {
    0% {
        top: 0px;
    }

    20% {
        top: -50px;
    }

    40% {
        top: -100px;
    }

    60% {
        top: -150px;
    }

    80% {
        top: -200px;
    }
}

.card {
    border: none;
    display: block;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    padding: 30px;
}

.card-header {
    border-bottom: 1px solid var(--dark-blue);
    padding: 0;
}

.card-header > h3 {
    text-align: left;
    margin: 0 0 16px 0;
}

.card-header > h3 > a {
    display: inline-flex;
    float: inline-end;
    justify-content: flex-end;
    align-items: center;
    font-size: medium;
    color: var(--light-blue);
}

.card-content {
    display: block;
}

.card-content ul,
.card-content li {
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
}
.card-footer {
    bottom: 0;
    border-top: 1px solid var(--dark-blue);
    position: absolute;
    width: 100%;
    background-color: var(--light-beige);
    text-align: end;
    padding: 1px;
}

.banner-strip {
    display: block;
    background-color: var(--light-beige);
    padding: 10px;
    text-align: center;
    width: 100%;
}

.dd-section {
    display: block;
    padding: 10px;
    margin: 0 auto;
    width: 80vw;
}

.dd-input {
    display: none;
}

.dd-label {
    background-color: var(--dark-blue);
    color: white;
    cursor: pointer;
    display: block;
    font-family: var(--primary-font);
    margin: 0 0 1px 0;
    padding: 7px;
}

.dd-label:hover {
    background: var(--light-blue);
}

.dd-content {
    padding: 15px;
    border: 1px solid var(--dark-blue);
    margin: 0 0 1px 0;
}

.dd-input + .dd-label + .dd-content {
    display: none;
}

.dd-input:checked + .dd-label + .dd-content {
    display: block;
}

/* REGISTER */

.fs-title {
    font-size: 25px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

#progressbar {
    color: var(--light-blue);
    margin: 0 auto;
    padding: 0;
    width: 90%;
}

#progressbar .active {
    color: var(--dark-blue);
    text-decoration: underline;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33%;
    float: left;
    position: relative;
    font-weight: 400;
    text-align: center;
    line-height: 30px;
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 20px;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#reg-form fieldset:not(:first-of-type) {
    display: none;
}

.form-delete {
    display: inline-block;
    margin: 0 12px;
}

.button-delete {
    display: inline-flex;
    align-items: center;
    font: var(--secondary-font);
    color: var(--light-blue);
    padding: 0;
    background-color: transparent;
    border: none;
}

.page-links {
    display: block;
    height: 100px;
    background-color: white;
    padding: 30px;
    color: var(--dark-blue);
    text-align: center;
}

.price {
    color: var(--light-blue);
    display: inline-block;
    font-size: larger;
    font-weight: bold;
}

.accordion {
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    width: 80%;
}

.accordion-select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.accordion-title {
    position: relative;
}

.accordion-title:not(:nth-last-child(2))::after {
    border: 1px solid transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-title span {
    bottom: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    white-space: nowrap;
    width: 100%;
}

.accordion-content {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    transition: margin 0.3s ease 0.1s;
}

.accordion-select:checked + .accordion-title + .accordion-content {
    margin-bottom: 0;
    margin-right: 0;
}

/* Generated styles starts here */

.accordion {
    border-color: #dedede;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    flex-direction: column;
    height: auto;
}

.accordion-select {
    cursor: pointer;
    margin: 0;
    opacity: 0;
    z-index: 1;
}

.accordion-title {
    position: relative;
}

.accordion-title:not(:nth-last-child(2))::after {
    border: 1px solid transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.accordion-title span {
    bottom: 0px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    white-space: nowrap;
    width: 100%;
}

.accordion-content {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
    transition: margin 0.3s ease 0.1s;
}

.accordion-select:checked + .accordion-title + .accordion-content {
    margin-bottom: 0;
    margin-right: 0;
}

/* Generated styles starts here */

.accordion {
    border-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);

    border-style: solid;
    border-width: 0px;
    flex-direction: column;
    height: auto;
}

.accordion-title,
.accordion-select {
    background-color: #f9f9f9;
    color: #031371;
    width: 100%;
    height: 65px;
    font-size: 18px;
}

.accordion-select {
    margin-bottom: -65px;
    margin-right: 0;
}

.accordion-title:not(:nth-last-child(2))::after {
    border-bottom-color: var(--dark-blue);
    border-right-color: transparent;
}

.accordion-select:hover + .accordion-title,
.accordion-select:checked + .accordion-title {
    background-color: #f5ebdf;
}

.accordion-title span {
    transform: rotate(0deg);
    -ms-writing-mode: lr-tb;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    padding-left: 33px;
    padding-right: 33px;
    line-height: 65px;
}

.accordion-content {
    background-color: #f9f9f9;
    color: #031371;
    height: 200px;
    margin-bottom: -200px;
    margin-right: 0;
    padding: 30px;
    width: 100%;
}
