/* *{
    border: red 1px solid;
} */
body {
    margin: 0;
    padding-top: 80px;
}

p {
    font-size: larger;
    line-height: 40px;
}

.text-justify {
    text-align: justify;
}

.navbar {
    background-color: white;
    margin-bottom: 100px;
}

.nav-item {
    width: fit-content;
    margin-left: 20px;
    margin-right: 20px;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: transparent 5px solid;
}

.nav-item:hover {
    /* box-shadow: 0 3px 0 0 #3a3a3a; */
    border-bottom: darkblue 5px solid;
    /* font-weight: bold; */
    color: darkblue;
}



.dropdown-menu {
    width: 10vw;
}

.dropdown-menu .dropdown-item {
    color: darkblue;
    padding-left: 10%;
    transition: padding-left 0.5s;
}

.dropdown-menu .dropdown-item:hover {
    padding-left: 20%;
    color: darkblue;
    transition: padding-left 0.5s;
}

.banner {
    text-align: center;
    overflow: hidden;
}

.banner .carousel-item img {
    width: 100vw;
    height: 70vh;
    object-fit: cover;
}


.lang img {
    width: 50px;
}

.container {
    text-align: justify;
}

.container .products-home .pagetop,
.pagetop-index {
    margin-top: 1vh;
    margin-bottom: 5vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.products-title {
    opacity: 1;
    transition: opacity 0.3s;
    font-weight: 400;
}

.pagetop-index:hover .products {

    transform: scale(1.08);

    transition: transform 0.3s;
}

.pagetop-index:hover .products-title {
    opacity: 0;
    transition: opacity 0.5s;
}

.pagetop-index:hover .hoverlink {


    opacity: 0.7;
    width: 200px;
    height: 80px;
    background: white;
    visibility: visible;
    transform: scale(1);


}

.products {
    width: 100%;
    height: 270px;
    margin-right: 20px;
    opacity: 1;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(0px);
    background-size: cover;
    border-radius: 5px;
    box-shadow: 0 9px 9px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media only screen and (max-width: 575px) {
    .products {
        width: 80%;
    }
}


.hoverlink {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    visibility: hidden;
    transform: scale(0);
    opacity: 0.8;
    transition: transform 0.5s, opacity 1s;
    border-radius: 5px;
    font-size: x-large;
    font-weight: 500;
    color: rgb(10, 40, 136);
}

.products a {
    text-decoration: none;
    color: darkblue;
}

.pagetop-index h3 {
    color: darkblue;
    margin-top: 5px;
}


footer {

    margin-top: 5vh;
    background-color: black;
}

.pagebottom {
    padding-top: 5vh;
    color: white;
    height: 350px;

}

.pagetop {
    opacity: 0;
}

/* machinepark */
.machinepark img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(0px);
}

/*uniteler*/
.parcaresim img {
    width: 90%;
}

.referencelogos img {
    width: 300px;
    margin-bottom: 15px;
}

.seperator {
    width: 50% !important;
    align-self: center;
    height: 2px;
    background-color: darkblue;
    margin: 5vh !important;
}

/* scroll slide */
.come-in {
    transform: translateX(150px);
    animation: come-in 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 1;
    transition: opacity 1s;
    transition-delay: 0.5s;
}

.come-in:nth-child(odd) {
    animation-duration: 1s;

}

.already-visible {
    transform: translateX(0);
    /* animation: none; */
    animation: come-in 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 1;
    transition: opacity 1s;
    transition-delay: 0.5s;
}

.lang {
    margin-right: 70px;
    text-align: right;
    /* background-color: white !important;
    color: black !important;
    border-style: none !important; */
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}