html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

body .fixed {
    display: block;
    position: fixed;
    background-color: lightgray;
    z-index: 999;
    padding: 15px 10px;
    left: 0;
    top: 80%;
    border-radius: 0 30px 30px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.fixed a {
    text-decoration: none;
}

.fixed span {
    font-size: 0;
    font-weight: bold;
    transition: .3s all ease;
}

.fixed i {
    transition: .3s all ease;
    color: rgb(33, 172, 33);
}

.fixed:hover span {
    font-size: 1em;
}

.fixed:hover i {
    font-size: 0;
}

.main-nav-holder {
    position: relative;
}

.main-nav-holder .logo {
    width: 150px;
    margin: 0 10px;
    animation-name: fadeInLater;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
}

.mobile-hamburger {
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 5px 10px;
    color: lightgray;
    border: 1px solid lightgray;
    border-radius: 5%;
    transform: translateY(-50%);
    cursor: pointer;
}

.mobile-hamburger i {
    font-size: 3em;
}

.mobile-holder {
    height: 0;
    transition: all .5s ease;
}

.mobile-holder .mobile-items {
    display: none;
    justify-content: space-evenly;
    padding: 10px;
}

.mobile-holder .mobile-items a {
    text-decoration: none;
    text-transform: uppercase;
    color: rgb(77, 77, 77);
    font-family: 'Open Sans Condensed', sans-serif;
}

.visible {
    height: 50px;
}

header {
    position: relative;
    height: 72vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

header .welcome-message {
    position: absolute;
    top: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #fff;
    animation-name: startupHideAnimation;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
}

header .welcome-message .logo-in-startup {
    animation-name: bounceOut;
    animation-duration: 1.2s;
    animation-delay: 1.8s;
}

header .welcome-message .btn, header .welcome-message .welcome-text, header .welcome-message #check-offer-btn {
    display: none;
}

hr {
    border: 0;
    height: 1px;
    width: 60%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

section {
    padding: 20px 50px;
    margin: 20px 0;
    text-align: center;
}

.services-card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-card-row .service-img {
    width: 175px;
}

.services-card-row .card-text p {
    text-align: center;
}

#about {
    background-color: rgb(241, 241, 241);
}

#about .about-content .profile {
    display: none;
}

#about .about-content .profile-description {
    width: 100%;
}

#about .about-content .profile-description p {
    text-align: center;
}

/* #about img {
    width: 100%;
    height: 100%;
} */

#projects {
    padding: 5% 0;
    margin-bottom: 0;
}

#projects .projects-content {
    padding: 0 20%;
}

#contact {
    color: #fff;
    margin-bottom: 0;
    margin-top: 5px;
    background-image: url('../img/webp/contact-bg.webp');
    background-size: cover;
    background-attachment: fixed;
}

#contact-form {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

#contact-form input[type=text] {
    line-height: 2.5;
    margin-bottom: 20px;
    margin-top: 3px;
}

#submit-button {
    width: 50%;
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 10px;
    text-transform: uppercase;
    color: #fff;
    margin: 20px auto;
}

h1 {
    font-size: 1.7em;
}

h1, h2, p {
    text-align: center;
}

hr {
    border: 0;
    height: 1px;
    width: 80%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#submit-button {
    outline: none;
    cursor: pointer;
}

footer {
    position: relative;
    min-height: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 15px;
    background: #000000;
    color: #fff;
}

.footer__column {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    list-style: none;
    margin: 20px 0;
}

.footer__column ul {
    list-style: none;
    padding: 0;
}

.footer__column .fa-linkedin-in {
    font-size: 34px;
}

.wrapper {
    display: none;
}

.icon-item {
    list-style: none
}

.blue-icon {
    color: blue;
}

.blue-icon:nth-child(1) a:hover:before {
    background: white !important;
}

.blue-icon .icon-link:hover {
    color: blue;
}

.blue-icon .icon-link::before {
    background-color: #fff;
}

.icon-link {
    display: inline-flex;
    font-size: 3rem;
    text-decoration: none;
    color: var(--color-icon);
    width: 6rem;
    height: 6rem;
    transition: .5s linear;
    position: relative;
    z-index: 1;
    margin: auto
}

.icon-link:hover {
    color: #fff;
}

.icon-link i {
    margin: auto;
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 6rem;
    height: 6rem;
    background: #ff8401;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.3s cubic-bezier(.95, .32, .37, 1.21);
}

.icon-link:hover::before {
    transform: scale(1);
}

.icon-item:nth-child(1) a:hover:before {
    background: greenyellow;
}

@keyframes startupHideAnimation {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInLater {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

/* SLIDESHOW */

.slideshow {
    list-style-type: none;
    margin: 0;
}

.slideshow,
.slideshow:after {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 0;
}

.slideshow li span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s;
}



.slideshow li:nth-child(1) span {
    background-image: url('../img/webp/header-img1.webp');
}

.slideshow li:nth-child(2) span {
    background-image: url('../img/webp/header-img2.webp');
    animation-delay: 6s;
}

.slideshow li:nth-child(3) span {
    background-image: url('../img/webp/header-img3.webp');
    animation-delay: 12s;
}

.slideshow li:nth-child(4) span {
    background-image: url('../img/webp/header-img4.webp');
    animation-delay: 18s;
}

.slideshow li:nth-child(5) span {
    background-image: url('../img/webp/header-img5.webp');
    animation-delay: 24s;
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    17% {
        opacity: 1
    }

    25% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


@keyframes titleAnimation {
    0% {
        opacity: 0
    }

    8% {
        opacity: 1
    }

    17% {
        opacity: 1
    }

    19% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


.no-cssanimations .cb-slideshow li span {
    opacity: 1;
}