:root {
    --primary-color: #4bb4b7;
    --text-color: #36485b;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    color: var(--text-color) !important;
    font-size: 16px;
    font-weight: 600;
}

.desktop-menu {
    gap: 2rem;
}

.desktop-menu li a {
    display: block;
    /* text-transform: uppercase; */
}

button {
    cursor: pointer !important;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
}

.mobile-menu li a {
    display: block;
    padding: 1rem;
}

.translate-x-custom {
    transform: translateX(-100%);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--text-color) !important;
}

.hero {
    display: flex;
    width: 100%;
    background: linear-gradient(90deg, rgb(237, 252, 255) 60%, rgba(0, 0, 0, 0) 100%);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: 70% !important;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    aspect-ratio: 1/1;
    background-image: linear-gradient(90deg, rgb(237, 252, 255) 0%, rgba(0, 0, 0, 0) 25%), url(../images/hero-image.webp);
    background-position: 0% 0%;
    background-size: cover;
}

.review-card {
    width: 100%;
    border: 1px solid var(--color-gray-300);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    border-radius: 1rem;
}

.review-card a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--color-white);
    border-radius: 1rem;
}

.pageheader {
    display: flex;
    width: 100%;
    background: linear-gradient(90deg, rgb(237, 252, 255) 60%, rgba(0, 0, 0, 0) 100%);
}

article {
    display: grid;
    gap: 2rem;
}

article * {
    text-align: justify;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
    font-weight: bold;
    font-size: 1.2rem;
}