/*-- Slider
    ========================*/

#header-slider .slide {
    width: 100%;
    height: 70vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#header-slider .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-1 {
    background-image: url(../img/slider/banner1.jpg);
}

.slide-2 {
    background-image: url(../img/slider/banner2.jpg);
}

.slide-3 {
    background-image: url(../img/slider/banner3.jpg);
}

.slide-content {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 0 3rem;
    margin: 0 auto;
    width: 100%;
}

.slide-content h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 1.35rem;
}

#header-slider .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 2%;
}

@media (max-width: 960px) {
    .slide-content h1 {
        font-size: 2.6rem;
    }
    .slide-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    #header-slider .slide {
        height: 50vh;
    }
    #header-slider .slide::before {
        height: 50vh;
    }
    .slide-content {
        padding: 0 1rem;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}
#portfolio-items .item {
    padding: 30px 0px;
    margin: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
