@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 {
    box-shadow: var(--box-shadow);
}

.nav-link {
    color: #000;
}

.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-color: rgba(125, 125, 136, 0.61);
    /* rgba(130, 130, 138, 0.8) */
    z-index: -1;
}


/* 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;
}

.rounded-3 {
    border-radius: 0.75rem !important;
}
.rounded-4 {
    border-radius: 1rem !important;
}

