html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', Verdana, sans-serif;
}

.header {
    background-color: #2b2e31;
}

.column {
    width: 1300px;
    margin: 0px auto;
}

.page .column {
    height: 100vh;
}

#logo_social {
    display: flex;
}

#logo-holder {
    flex-grow: 1;
}

#logo-holder img {
    height: 128px;
    width: 128px;
}

#general-holder {
    flex-grow: 1;
}

.generals img {
    display: block;
    height: 24px;
    width: 24px;
    margin: 0 10px 8px 0;
    float: left;
}

.general-list {
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.general-list > li {
    list-style: none;
    margin: 1px;
}

.general-list > li span {
    color: #ec1f24;
    font-size: 13px;
}

#social-holder {
    flex-grow: 1;
    text-align: right;
}

#social-holder a {
    text-decoration: none;
}

#social-holder a img {
    margin: 5px;
    height: 32px;
    width: 32px;
}

.navbar {
    display: flex;
    overflow: hidden;
    font-size: 18px;
}

.navbar a {
    flex-grow: 1;
    text-align: center;
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #ec1f24;
    transition: 300ms;
}

.navbar a:hover {
    background: #2b2e31;
    color: #fff;
}

.dropdown {
    float: left;
    overflow: hidden;
    flex-grow: 1;
    text-align: center;
}

.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    color: #ec1f24;
    padding: 10px 16px;
    background-color: #2b2e31;
    margin: 0;
}

.dropdown:hover .dropbtn {
    background: #2b2e31;
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-left: 50px;
    font-size: 16px;
    font-weight: bold;
    background-color: #2b2e31;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #ec1f24;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#contact {
    text-align: center;
    background: url(../img/kontakt-background.jpg);
    background-size: cover;
    color: #fff;
}

#contact h2 {
    font-size: 40pt;
    margin-top: 0px;
    padding-top: 40px;
}

.column-contact {
    margin: 0px auto;
    height: 100vh;
}

.contact-container {
    display: grid;
    column-gap: 30%;
    grid-template-columns: auto auto;
}

.contact-form {
    max-width: 600px;
    margin-left: 20px;
    padding: 50px;
    background-color: rgba(255,255,255, 0.3);
}

form div {
    padding: 15px 0;
}

form h3 {
    font-size: 24px;
}

form div label {
    display: block;
    font-weight: bold;
    font-size: 16px;
}

form div input {
    height: 40px;
    width: 65%;
    font-size: 18px;
    padding: 0 10px;
}

form div textarea {
    height: 100px;
    width: 68%;
    font-size: 16px;
}

form div button {
    cursor: pointer;
    padding: 10px 30px;
    font-size: 20px;
}

.map-address {
    padding-bottom: 15px;
    font-size: 24px;
}

.map-address strong {
    color: #ec1f24;
    text-shadow: 2px 2px 4px #000;
}

.map-address p {
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.map-address a {
    color: #fff;
    text-shadow: 2px 2px 4px #000;
}

.footer {
    background-color: #2b2e31;
    border-top: 2px solid white;
    font-size: 13px;
}

.footer > .column {
    display: flex;
}

.footer .footer-column {
    flex-grow: 1;
    flex-basis: 0;
    padding-top: 8px;
}

.footer-column_align-left {
    text-align: left;
}

.footer-column_align-center {
    text-align: center;
    font-size: 16px;
    margin-top: 70px;
    color: #ec1f24;
    text-decoration: none;
}

.footer-column_align-center:hover {
    text-decoration: underline;
}

.footer-column_align-right {
    margin-top: 40px;
    text-align: right;
    font-size: 16px;
}

.footer-left-list {
    display: flex;
    flex-direction: column;
}

.footer-left-list > li {
    list-style: none;
    margin: 8px;
}

.text-in-img span {
    font-size: 14px;
    font-weight: bold;
    color: #ec1f24;
}

.logo-footer > img {
    height: 128px;
    width: 128px;
}

.social-footer {
    text-align: left;
    margin-top: 6px;
    margin-left: 10px;
}

.social-footer a {
    text-decoration: none;
}

.social-footer img {
    height: 32px;
    width: 32px;
}

.red-link {
    color: #ec1f24;
    text-decoration: none;
}

.red-link:hover {
    text-decoration: underline;
}

/* Burger nav */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 30px;
    background: #ec1f24;
    margin: 5px 0;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.navbar--open {
    display: grid;
    transform: translate(0) !important;
}

.hamburger--open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MEDIA QUERY */
@media screen and (min-width: 320px) and (max-width: 485px) {
    
    .header .column {
        margin: 0;
    }

    .column {
        width: 100%;
    }

    #logo-holder img {
        margin-top: 10px;
        height: 96px;
        width: 96px;
    }

    .general-list {
        margin-left: 10px;
        padding-left: 0;
    }

    .general-list > li span {
        font-size: 8px;
    }

    .generals img {
        height: 16px;
        width: 16px;
    }

    #social-holder a img {
        margin: 2px;
    }

    .navbar {
        position: absolute;
        left: 0;
        background-color: #2b2e31;
        width: 100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
    }

    .navbar a {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        font-size: 14px;
    }

    .dropdown .dropbtn {
        font-size: 15px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .hamburger {
        display: flow-root;
        text-align: right;
        margin-left: 10px;
    }

    #contact {
        height: 192vh;
    }

    #contact h2 {
        margin-top: auto;
        font-size: 20pt;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        width: auto;
        margin: 10px;
        padding: 0;
    }

    .contact-form h3 {
        font-size: 18px;
    }

    .contact-form form div {
        padding: 8px 0;
    }

    .contact-form form div input {
        height: 26px;
        width: 70%;
        font-size: 14px;
    }

    .contact-form form div textarea {
        height: 78px;
        width: 76%;
        font-size: 14px;
    }

    .contact-form form div button {
        padding: 6px 18px;
        font-size: 14px;
    }

    .map-address {
        width: 100%;
        font-size: 20px;
        padding-top: 20px;
    }

    .gmap {
        padding-top: 64px;
    }


    .footer .column {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer-column_align-left {
        padding-top: 24px;
    }

    .footer-left-list {
        padding: 0;
    }

    .footer-left-list > li {
        margin: 0;
    }

    .text-in-img > span {
        font-size: 14px;
    }

    .logo-footer > img {
        height: 128px;
        width: 128px;
    }

    .footer-column_align-center {
        margin-top: 34px;
        text-align: center;
        font-size: 10px;
    }

    .footer-column_align-right {
        margin-top: 20px;
        text-align: center;
        font-size: 18px;
    }

    .social-footer {
        text-align: center;
        margin-top: 4px;
        margin-left: 0px;
    }

    .social-footer img {
        width: 32px;
        height: 32px;
    }
}

@media screen and (min-width: 486px) and (max-width: 767px) {

    .column {
        width: 100%;
    }

    #logo-holder img {
        margin-top: 0;
        height: 96px;
        width: 96px;
    }

    #general-holder {
        flex-grow: 0;
    }

    .general-list {
        margin-left: 10px;
        padding-left: 0;
    }

    .general-list > li span {
        font-size: 12px;
    }

    .generals img {
        height: 16px;
        width: 16px;
    }

    #social-holder a img {
        margin: 2px;
    }

    .navbar {
        position: absolute;
        left: 0;
        background-color: #2b2e31;
        width: 100%;
        padding: 10px 0 25px;
        transform: translateX(-100%);
    }

    .navbar a {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        font-size: 14px;
    }

    .dropdown .dropbtn {
        font-size: 15px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .hamburger {
        display: flow-root;
        text-align: right;
        margin-left: 10px;
    }

    #contact {
        height: 154vh;
    }

    #contact h2 {
        margin-top: auto;
        font-size: 20pt;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        width: auto;
        margin: 10px;
    }

    .contact-form h3 {
        font-size: 18px;
    }

    .contact-form form div {
        padding: 8px 0;
    }

    .contact-form form div input {
        height: 26px;
        width: 70%;
        font-size: 14px;
    }

    .contact-form form div textarea {
        height: 78px;
        width: 76%;
        font-size: 14px;
    }

    .contact-form form div button {
        padding: 6px 18px;
        font-size: 14px;
    }

    .map-address {
        width: 100%;
        font-size: 20px;
        padding-top: 20px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 12px;
    }

    .footer-column_align-right {
        margin-top: 20px;
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 22px;
    }

    #general-holder {
        flex-grow: 2;
    }

    .general-list {
        margin-left: 100px;
    }

    #contact {
        height: 164vh;
    }

    #contact h2 {
        margin-top: auto;
        padding-top: 68px;
        font-size: 28pt;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        width: auto;
        margin: 10px;
    }

    .contact-form h3 {
        font-size: 22px;
    }

    .contact-form form div {
        padding: 8px 0;
    }

    .contact-form form div input {
        height: 26px;
        width: 74%;
        font-size: 14px;
    }

    .contact-form form div textarea {
        width: 78%;
    }

    .contact-form form div button {
        padding: 6px 20px;
        font-size: 18px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 24px;
    }

    .general-list > li span {
        font-size: 14px;
    }

    #contact {
        height: 160vh;
    }

    #contact h2 {
        margin-top: auto;
        padding-top: 68px;
        font-size: 28pt;
    }

    .contact-container {
        margin-top: 150px;
        column-gap: 2%;
    }

    .contact-form {
        padding: 16px;
    }

    .map-address {
        font-size: 18px;
    }

    .gmap {
        padding-top: 30px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1299px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 48px;
    }

    .general-list > li span {
        font-size: 14px;
    }

    #contact {
        height: 124vh;
    }

    #contact h2 {
        padding-top: 80px;
        font-size: 28pt;
    }

    .contact-container {
        column-gap: 10%;
        margin-top: 140px;
    }

    .contact-form {
        margin-left: 40px;
        padding: 8px;
    }

    .map-address {
        font-size: 20px;
    }

    .contact-form form div input {
        height: 30px;
        width: 50%;
        font-size: 16px;
    }

    .contact-form form div textarea {
        width: 53%;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1439px) {

    .column {
        width: 100%;
    }

    #logo-holder {
        margin-left: 48px;
    }

    .general-list > li span {
        font-size: 14px;
    }

    #contact {
        height: 120vh;
    }

    #contact h2 {
        padding-top: 80px;
        font-size: 28pt;
    }

    .contact-container {
        column-gap: 20%;
        margin-top: 140px;
    }

    .contact-form {
        padding: 8px;
    }

    .contact-form form div input {
        height: 30px;
        width: 50%;
        font-size: 16px;
    }

    .contact-form form div textarea {
        width: 54%;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {

    #contact {
        height: 120vh;
    }

    #contact h2 {
        padding-top: 80px;
        font-size: 34pt;
    }

    .contact-container {
        column-gap: 24%;
        margin-top: 140px;
    }

    .footer .column {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1799px) {

    #contact {
        height: 120vh;
    }

    #contact h2 {
        padding-top: 80px;
        font-size: 34pt;
    }

    .contact-container {
        margin-top: 140px;
    }

    .footer .column {
        width: auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1800px) and (max-width: 1920px) {

    #contact {
        height: 120vh;
    }

    #contact h2 {
        padding-top: 80px;
        font-size: 34pt;
    }

    .contact-container {
        margin-top: 140px;
    }

    .contact-form {
        max-width: 520px;
        padding: 20px;
    }

    .footer .column {
        width: auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-left-list {
        margin: auto;
        padding: 0;
    }

    .social-footer {
        text-align: right;
        margin-top: 4px;
        margin-left: 0px;
    }

    .footer-column_align-center {
        font-size: 14px;
    }

    .footer-column_align-right {
        margin-top: 22px;
        font-size: 18px;
    }
}