* {
    font-family: archivo;
}
iframe {
    border-radius: 20px;
    border: 0;
    width: 80%;
}
@media screen and (max-width: 992px) {
    iframe{width: 100%;}
    .contact-text {width: 100%;}
}
.map {
    margin: auto;
}
.contact-text {
    font-size: 22px;
}
.pinezka {
    text-shadow: 0px 0px 5px rgb(255, 1, 1);
}
.list-group-item {
    left: 18%;
    width: 60%;
}
.list-group {
    border-radius: 10px;
}
.navbar {
    background-color: #fff;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
}
.navbar-brand {
    padding-left: 50px;
    width: 30px;
    transition: transform 0.3s;
    animation: 0.5s ease-in 0s 1 slide;
}
.navbar-logo {
    width: 30px;
    margin-left: 10px;
    transition: transform 0.3s;
}
.navbar-logo:hover {
    transform: scale(1.3);
}
.navbar-toggler {
    border: none;
    font-size: 1.25rem;
    color: #fff;
}
.navbar-toggler:focus, .btn-close:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon {
    color: #fff;
}
.nav-link {
    position: relative;
    font-weight: bold;
}
@media (min-width: 400px) {
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #fff;
        visibility: hidden;
        transition: 0.3 ease-in-out;
    }
    .nav-link:hover::before, .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}
.nav-link:hover, .nav-link.active {
    color: #000;
}
.hero-section::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.hero-section .container {
    height: 100vh;
    z-index: 1;
    position: relative;
}
.hero-section h1 {
    font-size: 1.5em;
}
.about-section h1 {
    font-size: 3em;
}
.about-section p {
    font-size: 1.3em;
}
#menu {
    margin-right: 50px;
}
@keyframes slide{
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
}