* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: url(images/lovrokaskader.jpg);
    background-position: center;
    background-size: cover;
    position: relative;

}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: #233647;

}

nav img {
    width: 200px;
    /*-----mix-blend-mode: multiply; -----*/

}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: rgb(199, 199, 199);
    text-decoration: none;
    font-size: 14px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(199, 199, 199);
    display: block;
    margin: auto;
    transition: 0.25s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    width: 90%;
    color: rgb(199, 199, 199);
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 40px;
    color: rgb(199, 199, 199);
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: rgb(199, 199, 199);
}

.contact {
    display: inline-block;
    text-decoration: none;
    color: rgb(199, 199, 199);
    border: 2px solid rgb(199, 199, 199);
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

.contact:hover {
    border: 2px solid rgb(199, 199, 199);
    background: #233647;
    transition: 0.5s;
}

nav .fa-solid {
    display: none;
}

@media(max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .text-box p {
        font-size: 14px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #233647;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    nav .fa-solid {
        display: block;
        color: rgb(199, 199, 199);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;

    }

    .nav-links ul {
        padding: 30px;

    }
}

body {
    background-color: rgb(199, 199, 199);
}

/*----- about -----*/

.about {
    width: 80%;
    margin: auto;
    margin-top: 50px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    border: 2px solid #233647;
    border-radius: 10px;

}

.about h1 {
    font-size: 36px;
    font-weight: 900;
    color: #233647;
}

.about p {
    color: #233647;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 10px;
}


/*----- works -----*/

.works {
    display: block;
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.works h1 {
    font-size: 36px;
    font-weight: 900;
    color: #233647;
    padding: 20px;
}

.row h3 {
    font-size: 25px;
    font-weight: 600;
    color: rgb(199, 199, 199);
    padding-bottom: 10px;
}

.row h5 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(199, 199, 199);
    padding: 10px 0px;
}

.row p {
    font-size: 14px;
    font-weight: 400;
    color: rgb(199, 199, 199);
    padding: 10px;
}

.work-col {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
    background: #233647;
    color: rgb(199, 199, 199);
}

.swiper {
    width: 100%;
    height: fit-content;
}

.swiper-slide img {
    width: 90%;
    height: 600px;
}

.swiper-slide {
    color: rgb(199, 199, 199);
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    color: rgb(199, 199, 199);
}

.swiper .swiper-pagination-bullet-active {
    background: #233647;
}


@media(max-width: 700px) {
    .swiper-slide img {
        height: 450px;
    }
}


/*----- info -----*/

hr {
    border-color: #233647;
}

.info {
    display: inline-flex;
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding: 20px 10px;
    border-radius: 10px;
    color: #233647;
}

.cinfo {
    float: left;
    width: 50%;
    text-align: center;
}

.social {
    float: right;
    width: 50%;
    text-align: center;
}