@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&subset=latin,cyrillic,latin-ext');

* {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
}
.mt-5 {
    margin-top: 10px;
}
.at-height {
    height: 5px;
    margin-bottom: 10px;
    background-color: #dc3545;
}
.ab-height {
    height: 30px;
    background-color: #dc3545;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #dc3545;
    border-color: #FF603E;
}
.page-item.active .page-link:hover {
    z-index: 1;
    color: #fff;
    background-color: #FF603E;
    border-color: #FF603E;
}
.container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
h1, .lead {
    text-align: center;
}
h1 {
    margin: 0 auto;
}
.panel {
    position: sticky;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 85vh;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    flex: 0.3;
    margin: 2px;
    transition: all 700ms ease-in;
}
.panel h3 {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    opacity: 0;
}
.panel.active {
    flex: 5;
}
.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}
@media (max-width: 480px) {
    .container-fluid {
        width: 500px;
    }
    .panel:nth-last-of-type(6),
    .panel:nth-last-of-type(7) {
        display: none;
    }
}
.form-floating {
    margin: 10px;
}
.goog-te-gadget-simple {
    font-family: 'Roboto Condensed', sans-serif;
    padding-top: 5px;
    margin: 0;
    background: #fff;
}