* {
    font-family: archivo;
}
body{
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      to right,
      orange 0%,
      orange 50%,
      white 50%,
      white 100%
    );
}
nav {
    color: white;
}
@media screen and (max-width: 768px) {
    .card-podpis {padding-bottom: 20%;}
    .card-podpis {padding-top: 0%;}
}
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;
}
.list-group-item {
    width: 60%;
    left: 18%;
}
.list-group {
    border-radius: 10px;
}
.center {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    margin-top: 50px;
}
.popup {
    width: 400px;
    height: 410px;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 15px;
    box-sizing: border-box;
    z-index: 2;
    text-align: center;
    opacity: 0;
    top: -50%;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 300ms ease-in-out, top 1000ms ease-in-out, transform 1000ms ease-in-out;
}
.popup-open {
    opacity: 1;
    position: absolute;
    top: 200%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 300ms cubic-bezier(0.18, 0.89, 0.43, 1.19);
}
@media screen and (max-width: 767px) {
    .popup-open {top: 680%;}
}
@media screen and (max-width: 575px) {
    .popup-open {top: 670%;}
}
@media screen and (max-width: 555px) {
    .popup-open {top: 660%;}
}
@media screen and (max-width: 535px) {
    .popup-open {top: 650%;}
}
@media screen and (max-width: 525px) {
    .popup-open {top: 640%;}
}
@media screen and (max-width: 515px) {
    .popup-open {top: 630%;}
}
@media screen and (max-width: 505px) {
    .popup-open {top: 620%;}
}
@media screen and (max-width: 485px) {
    .popup-open {top: 610%;}
}
@media screen and (max-width: 465px) {
    .popup-open {top: 600%;}
}
@media screen and (max-width: 445px) {
    .popup-open {top: 590%;}
}
@media screen and (max-width: 430px) {
    .popup-open {top: 580%;}
}
@media screen and (max-width: 410px) {
    .popup-open {top: 570%;}
}
.popup-title {
    margin: 5px 0px;
    font-size: 30px;
    font-weight: bold;
}
.popup-text {
    font-size: 18px;
    padding: 5px;
    font-family: teko;
}
.dismiss-btn {
    margin-top: 15px;
}
#dismiss-popup-button {
    padding: 10px 50px;
    background-color: orange;
    border: 0;
    font-weight: bold;
    border-radius: 10px;
    transition: all 300ms ease-in-out;
}
#dismiss-popup-button:hover {
    background-color: rgb(209, 136, 0);
}
.navbar {
    color: white;
    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;
}
.navbar-toggler:focus, .btn-close:focus {
    box-shadow: none;
    outline: none;
}
.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;
    }
}
.main-image {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    animation: fadein 2s;
    transition: all 0.3s;
}
.main-image:hover {
    transform: scale(1.1);
}
.img-paragraph {
    padding-top: 10px;
    font-weight: bold;
    animation: fadein 2s;
}
.card {
    animation: fadein 2s;
    border: 0;
    border-radius: 30px;
}
.card-image {
    transition: all 0.3s;
}
.card-image:hover {
    transform: scale(1.1);
}
#menu {
    padding-right: 50px;
}
@keyframes img-slide{
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes slide{
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
#container{
    padding-top: 50px;
}
h2{
    text-align: center;
}
