@charset "UTF-8";

:root {
    --black: #000;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --primary: #0d6efd;
    --light: #f8f9fa;
    --dark: #212529;
    --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --body-font-family: var(--font-sans-serif);
    --body-font-size: 1.25rem;
    --body-font-weight: 400;
    --body-line-height: 1.6;
    --body-color: #212529;
    --body-bg: var(--gray-200);
    --heading-color: inherit;
    --border-color: var(--gray-400);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
    margin: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--body-color);
    background-color: var(--body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1 {
    color: var(--heading-color);
    font-size: calc(1.375rem + 1.5vw);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.display-1 {
    font-size: calc(1.5rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-1 {
        font-size: 4.5rem;
    }
}

/* || ===== Layout ===== */
.container {
  --gutter-x: 3rem;
  --gutter-y: 2.5rem;
  width: 100%;
  background-color: var(--white);
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  padding-top: calc(var(--gutter-y) * 0.5);
  padding-bottom: calc(var(--gutter-y) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* || ===== Header ===== */
header {
    margin-bottom: 1rem;
    text-align: center;
}

/* || ===== Image Slider ===== */
.slider {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .slider {
        height: 600px;
    }
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-container {
    position: relative;
    padding: 1rem;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.slider-track {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: left 300ms ease-in-out;
}

.slider-control-prev,
.slider-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    color: #fff;
    text-align: center;
    background-color: var(--primary);
    border: 0;
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 300ms ease;
    cursor: pointer;
}

.slider-control-prev:hover,
.slider-control-next:hover {
    opacity: 1;
}

.slider-control-prev {
    left: -15px;
    display: none;
}

.slider-control-next {
    right: -15px;
}

.slider-control-prev-icon,
.slider-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.slider-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.slider-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/* || ===== Text ===== */
#text {
    padding: 1.5rem 0 0 0;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.lead {
    font-size: 1.375rem;
}

/* || ===== Table ===== */
table {
    max-width: 800px;
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
    vertical-align: top;
    border-color: var(--border-color);
    margin: 0 auto 2rem auto;
}
  
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
  
thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    border: 1px solid var(--border-color);
}

table > tbody {
    vertical-align: inherit;
}

table > thead {
    vertical-align: bottom;
}

table > tbody > tr:nth-of-type(odd) > * {
    background-color: var(--gray-100);
}

/* || ===== Footer ===== */
footer {
    padding: 3rem 0;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    gap: 1rem;
}

footer a {
    color: var(--white);
    text-decoration-color: rgba(255,255,255, 0.3);
}

footer,
footer address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-style: normal;
}

footer address {
    gap: 1rem;
}

@media (min-width: 768px) {
    footer .container,
    footer address {
        font-size: 1.3rem;
    }

    footer .container {
        flex-direction: row;
    }

    footer address {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    footer .container,
    footer address {
        flex-direction: row;
        gap: 2rem;
        font-size: 1.5rem;
    }

    footer svg {
        width: 20px;
        height: 20px;
        margin-top: 5px;
    }
}

.contact-item {
    font-size: 1.375rem;
    display: flex;
    gap: 1rem;
    margin: 0;
}

.contact-item-info {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
