﻿:root {
    --accent-color: #FAA61A;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: var(--default-font);
}

ul {
    list-style-type: none;
}

.about .core-values {
    display: flex;
}

    .about .core-values div {
        margin-right: 1vw;
        margin-bottom: 1vh;
        padding: .25vw 1vw;
        background-color: rgba(0, 0, 0, .03);
        font-family: var(--default-font);
    }

.clients {
    padding: 12px 0;
    text-align: center;
    background-color: #F8F8F8;
}

    .clients img {
        max-width: 45%;
        transition: all 0.4s ease-in-out;
        display: inline-block;
        padding: 15px 0;
        filter: grayscale(100);
    }

        .clients img:hover {
            filter: none;
            transform: scale(1.1);
        }

    .clients .row {
        padding-bottom: unset;
    }

.development-process h3 {
    font-weight: 700;
}

.featured-item p {
    max-width: unset;
}

.footer .copyright {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .logo {
    max-height: 20vh
}

.footer .social-links a {
    transition: unset;
}

    .footer .social-links a img {
        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(80%) contrast(100%);
        height: 16px;
        width: 16px;
    }

    .footer .social-links a:hover,
    .footer .social-links a:hover img {
        filter: invert(50%) sepia(26%) saturate(3725%) hue-rotate(331deg) brightness(107%) contrast(83%);
    }

.header {
    background-color: unset;
    top: 0;
    width: 100%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05)
}

    .header .contact-info a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .header .topbar .social-links a {
        width: 14px;
        height: 14px;
    }

        .header .topbar .social-links a img {
            filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(70%) contrast(100%);
        }

            .header .topbar .social-links a img:hover {
                filter: invert(50%) sepia(26%) saturate(3725%) hue-rotate(331deg) brightness(107%) contrast(83%);
            }

    .header .logo {
        height: 5.5vh;
    }

    .header .branding {
        background-color: rgba(255, 255, 255, 1);
    }

.hero .carousel {
    min-height: 50vh
}

.hero .carousel-item {
    background-image: url('../img/hero/hero.webp');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    color: var(--hero-font-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero .carousel-item:before {
        background: rgba(255, 255, 255, 0);
    }

.hero .carousel-container {
    color: white;
    inset: unset;
    width: 100%;
    text-align: center;
}

    .hero .carousel-container p {
        color: #6d6d6d;
    }

    .hero .carousel-container .btn-get-started {
        box-shadow: 0px 0 25px 0 rgba(0, 0, 0, .1);
        border: 2px solid lightgray;
        background-color: rgba(60, 60, 60, .7);
    }

.portfolio .portfolio-content .portfolio-info .preview-link, .portfolio .portfolio-content .portfolio-info .details-link {
    left: calc(50% - 20px)
}

.portfolio-details .portfolio-details-slider img {
    max-height: 50vh;
    width: auto;
}

.portfolio-details .portfolio-details-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row {
    padding-bottom: 2.5vh;
}

@media (max-width: 1440px) {
    .hero .carousel-item {
        background-image: url('../img/hero/hero-md.webp');
    }
}

@media (max-width: 800px) {
    .hero .carousel-container p {
        max-width: 50vw;
    }

    .hero .carousel-item {
        background-image: url('../img/hero/hero-sm.webp');
    }
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}