/* FOOTER */
footer {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 400px;
    background-color: #1A1A1A;
    padding: 50px 20px;
}
footer .left {
    display: flex;
    flex-direction: column;
    width: 500px;
    color: white;
    margin-right: 20px;
}
footer .left img.logo {
    width: 100px;
}
footer .left p.subtext {
    width: 500px;
    color: #F8F9FA;
}
footer .left ul {
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    gap: 10px;
    color: white;
    list-style-type: none;
    transition: all 0.1s;
    border-bottom: 2px solid #013A6E;
}
footer .left ul.navbar {
    cursor: pointer;
}
footer ul.chris {
    margin: 0;
    gap: 5px;
    border: none;
    flex-direction: column;
}
footer ul.kontaktt {
    margin-left: 10px;
}
footer ul.chris p {
    margin: 0px 0 0 0;
    color: #F8F9FA;
    font-weight: 100;
}
footer .left li:hover:not(.chris li) {
    transition: all 0.1s;
    text-decoration: underline;
}
footer .objektivne {
    margin: 0;
}
footer h4 {
    margin-bottom: 20px;
    font-size: 2rem;
    margin: 0 0 30px 0;
}
footer .left .links img {
    background-color: black;
}
footer .left ul li a {
    text-decoration: none;
}
footer .left a p {
    color: white;
}

footer .right h3 {
    color: white;
    text-align: start;
    font-size: 3rem;
    margin: 0;
}
footer .right p {
    margin-left: 15px;
    color: #F8F9FA;
    font-weight: lighter;
}
footer .right {
    display: flex;
    flex-direction: column;
    width: 620px;
}
footer .right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer .right input.long {
    width: 95%;
    background-color: transparent;
    outline: 1px solid #013A6E;
    border: 1px solid #013A6E;
    padding: 20px 35px;
    border-radius: 15px;
    color: #F5E8E2;
    font-size: 1.3rem;
}
footer .right input.long::placeholder {
    color: #F5E8E2;
    font-size: 1.3rem;
}
footer .right textarea {
    background-color: transparent;
    outline: 1px solid #013A6E;
    border: 1px solid #013A6E;
    padding: 20px 35px;
    border-radius: 15px;
    color: #F5E8E2;
    font-size: 1.3rem;
    min-height: 250px;
    max-height: 250px;
    max-width: 590px;
    min-width: 590px;
}
footer .right textarea::placeholder {
    color: #F5E8E2;
    font-size: 1.3rem;
}
.button {
    width: 100%;
}
footer .right button {
    border: none;
    border-radius: 15px;
    font-size: 1.5rem;
    padding: 10px 80px;
    color: white;
    transition: all 0.3s;
}
footer .right button:hover {
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.394); 
}
@media screen and (max-width: 1580px) {
    footer {
        justify-content: space-around;
        gap: 0px;
    }
}
@media screen and (max-width: 1400px) {
    footer iframe {
        max-width: 500px;
    }
}
@media screen and (max-width: 1274px) {
    footer .right input.long {
        width: 500px;
    }
    footer .right textarea {
        max-width: 500px;
        min-width: 500px;
    }
}
@media screen and (max-width: 1132px) {
    footer .right input.long {
        width: 300px;
    }
    footer .right textarea {
        max-width: 300px;
        min-width: 300px;
    }
}
@media screen and (max-width: 931px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    footer .right {
        align-items: center;
    }
    footer .left {
        margin: 0;
        width: 90vw;
    }
    footer .left p.subtext {
        width: 80vw;
    }
}
@media screen and (max-width: 450px) {
    footer .right h3 {
        font-size: 3rem;
    }
}
@media screen and (max-width: 446px) {
    footer .left li:not(.chris li) {
        font-size: 14px;
    }
}
@media screen and (max-width: 401px) {
    footer .right input.long {
        width: 70vw;
    }
    footer .right textarea {
        max-width: 70vw;
        min-width: 70vw;
    }
}
@media screen and (max-width: 668px) {
    footer .right {
        width: 99vw;
    }
    footer iframe {
        width: 90vw;   
    }
}
footer .left svg {
    fill: white;
    stroke: white;
    transition: all 0.15s;
}
footer .left svg:hover {
    fill: #014A8B;
    stroke: #014A8B;
    transition: all 0.15s;
}