@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');

:root {
    --primary: #0d6efd;
    --dark: #21252f;
    --body: #888;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

body {
    min-height: 100vh;
    font-family: Sora, "sans-serif";
    line-height: 1.7;
    color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
    color: var(--dark);
    font-weight: 700;
}

a {
    color: var(--dark);
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    /* padding: 120px 0; */
    padding-top: 50px;
    padding-bottom: 80px;
}

/* footer {
    width: 100%;
} */

.navbar {
    background: rgba(4, 12, 27, 0.92);
    backdrop-filter: blur(6px);
    box-shadow: var(--box-shadow);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.logo {
    max-height: 70px;
}

/* hero */
.hero {
    /* background-image: url('../img/hero.jpg'); */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(19, 27, 43, 0.18), rgba(19, 27, 43, 0.18));
    /* rgba(130, 130, 138, 0.8) */
    z-index: -1;
}

.hero h1,
.hero article,
.hero .btn {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}


/* Blog */
.card-effect {
    box-shadow: var(--box-shadow);
    background-color: #fff;
    padding: 25px;
    transition: all 0.35s ease;
}

.card-effect:hover {
    box-shadow: none;
    transform: translateY(5px);
}


/* footer */
.sticky-footer {
    position: sticky;
    top: 100%;
}

.footer-top {
    padding-bottom: 30px;
    padding-top: 30px;
    background-color: var(--dark);
}

.footer-top a {
    color: var(--body);
}

.footer-top a:hover {
    color: #fff;
}


.map iframe {
    height: 100%;
    width: 100%;
}

.footer-bottom {
    background-color: #242933;
}

/* form login */

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


.form-registration input {
    border-radius: 0;
    margin-bottom: -1px;
}