body {
    --bright-cyan: #40cceb;
    --cyan: #00b5e5;
    --strong-cyan: #0090b7; /* Not WCAG accessible, must be at least #00607A on white bg */
    --dark-cyan: #006c89;
    --dark-blue: #006e97;
    --sea-blue: #006387;
    --light-orange: #ffc734;
}

.fas {
    color: var(--strong-cyan);
}

.carousel {
    /* position: relative; */
    /* overflow: hidden; */
    /* width: 100%; */
    margin: 0 1rem;
}

.carousel picture {
    display: block;
    width: 100%;
    height: auto;
}

.carousel button.slick-arrow::before {
    color: var(--strong-cyan);
}

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

li.dot {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.25;
}

li.dot::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 1rem;
}

li.dot--orange::before {
    border-radius: 50%;
    transform: translateY(-50%);
}

li.dot--rhombus::before {
    border-radius: 0;
    transform: translateY(-50%) rotate(45deg);
}

li.dot--cyan::before {
    background-color: var(--cyan);
}

li.dot--orange::before {
    background-color: var(--light-orange);
}

.business-hours, .location-sites {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.image__container img {
    border-radius: 2rem;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

*::selection {
    color: white;
    background-color: var(--strong-cyan);
}

h1,
h2 {
    font-weight: bold;
    color: var(--dark-cyan);
}

h3 {
    color: var(--strong-cyan);
}

div + h3 {
    margin-top: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

h2 {
    text-transform: uppercase;
}

body {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

section {
    padding: 1rem;
}

header {
    /* border-bottom-left-radius: 2rem; */
    /* border-bottom-right-radius: 2rem; */
}

footer {
    /* border-top-left-radius: 2rem; */
    /* border-top-right-radius: 2rem; */
}

header,
footer {
    color: white;
    padding: 1rem;
    background-color: var(--dark-blue);
}

header a {
    color: white;
    text-decoration: none;
    padding: 0.25rem;
}

header a:hover {
    text-decoration: none;
}

header a:focus-visible {
    outline: 0.125rem solid white;
    outline-offset: 0.125rem;
    border-radius: 0.125rem;
}

header a:active {
    color: red;
}

#dental_office {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

#dental_office iframe {
    border-radius: 1rem;
    width: 100%;
}

#languages {
    display: flex;
    color: white;
    padding: 0.5rem 1rem;
    background-color: var(--sea-blue);
    border: solid 1px white;
    border-radius: 0.5rem;
    cursor: pointer;
}

.icon {
    fill: var(--dark-cyan);
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.icon__phone {
    background-image: url('../media/svg/phone.svg');
}

.icon__envelope {
    background-image: url('../media/svg/envelope.svg');
}

.icon__map {
    background-image: url('../media/svg/map.svg');
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--strong-cyan);
    color: white;
    border: solid0.5rem var(--dark-cyan);
    width: 4rem;
    height: 4rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 2rem;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;

    display: grid;
    place-items: center;
    padding: 0;
}

.back-to-top:hover {
    background-color: var(--cyan);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

nav > ul {
    display: flex;
    flex-direction: column;
    @media (min-width: 768px) {
        justify-content: space-between;
        flex-direction: row;
    }
    justify-content: center;
    align-items: center;
}

nav > ul > li {
    display: flex;
    font-size: 1.5rem;
    padding: 1rem;
    justify-content: center;
}

nav > ul > li > a::after {
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background-color: white;
    transition: width 0.3s cubic-bezier(0, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    margin: 0px auto;
}

nav > ul > li > a:hover::after {
    width: 80%;
}

img.logo__full {
    height: 150px;
    width: 300px;

    @media (min-width: 768px) {
        height: 250px;
        width: 500px;
    }

    @media (min-width: 1200) {
        height: 350px;
        width: 700px;
    }
}

.feedback {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 1rem;
    background-color: var(--dark-blue);
}

.feedback .feedback__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-style: italic;
    color: white;
}

.feedback .feedback__content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: white;
    text-align: center;
}
