html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Georgia", serif;
}

.slideshow {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 2s ease;
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.12), rgba(0,0,0,.22) );
    z-index: 2;
}

    .slide.active {
        opacity: 1;
    }


.content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 850px;
    text-align: center;
    color: white;
    padding: 50px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

.logo-line {
    width: 120px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 30px auto;
}

h1 {
    font-size: 70px;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    font-weight: 300;
    color: #e8d8b4;
    margin-bottom: 30px;
}

p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
    color: #f2f2f2;
}

.divider {
    width: 80px;
    height: 1px;
    background: #d4af37;
    margin: 40px auto;
}

.contacts a {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

    .contacts a:hover {
        color: white;
    }

@media(max-width:768px) {

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }
}