* {
    scroll-behavior: smooth;
}

.top-picture-div {
    position: relative;
}

.top-picture {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.4); 
}

.top-picture-text {
    position: absolute;
    top: 20%;
    left: 10%;
    color: white;
    font-size: 2rem;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

.picturewrapper {
    overflow: hidden;
}

@keyframes picture-animation {
    0%   {
        transform: scale(2);    
    }
    25%  {
        object-position: top;
    }
    50%  {
        
    }
    100% {
        
    }
}






.about-us-div {
    display: flex;
    width: 80%;
    margin: 0 auto;
    gap: 100px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.about-us-picture-div {
    width: 50%;
}

.about-us-picture {
    width: 100%;
    object-fit: cover;
    background-color: #3361bd3a;
}

.about-us-text {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    width: 50%;
}

.about-us-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-us-text p {
    font-size: 1.2rem;
    line-height: 1.7;
}



.cards-contaienr {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 100px auto;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 410px;
    width: 80%;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    height: 100%;
    transition: 0.3s;
}

.card:hover {
    scale: 1.05;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card img {
    max-width: 315px;
    width: 80%;
    border-radius: 50%;
}

.card h2 {
    margin: 20px 0;
    font-size: 2rem;
    text-align: center;
}

.card p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.card a {
    color: black;
}

.mer-info-elias, .mer-info-filip {
    display: none;
    border: var(--color-main) 1px solid;
    padding: 10px;
    margin-top: 10px;
}

.card .kontakt-meg {
    border: none;
    background-color: var(--color-main);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
}

.card .kontakt-meg:hover {
    background-color: var(--color-main-darker);
}




.middle-picture {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.4); 
}

.middle-picture-div {
    position: relative;
}

.middle-picture-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    line-height: 1.7;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}




.sales-include-div {
    margin: 100px auto;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    gap: 7vw;
    justify-content: center;
}

.include-div {
    max-width: 350px;
    width: 25%;
    min-width: 200px;
}

.sales-include-picture {
    width: 100%;
}

.sales-include-text {
    text-align: center;
    text-wrap: nowrap;
    margin: 20px 0;
}

.sales-include-button-div {
    display: flex;
    justify-content: center;

}

.sales-include-button {
    position: relative;
    background-color: var(--color-main);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.customers {
    margin: 70px 0;
}

.customers h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem;
}

.customers-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 100px;
}

.customers-picture {
    height: 50px;

}

.devider {
    width: 100%;
    height: 15px;
    background-color: var(--color-main);
}




.contact-us-div {
    margin: 100px auto;
    max-width: 700px;
    width: 90%;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label{
  top: -8px;
  left: 10px;
  font-size: 12px;
  opacity: 1;
}

input:focus {
    outline: none;  
}

.inputText {
  font-size: 14px;
  height: 35px;
}

.floating-label {
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 12px;
  transition: 0.2s ease all;
  color: #616161;
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-bottom: solid 1px #808080;
    font-size: 16px;
}

textarea {
    height: 100px;
}

button[type="submit"] {
    background-color: var(--color-main);
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: var(--color-main-darker);
}


.contact-us-text {
    margin-bottom: 20px;
    text-align: center;
}

.contact-us-text h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

/* Add some responsiveness to the form */
@media (max-width: 600px) {
    .form-group {
        width: 100%;
    }
}