html {
    scroll-behavior: smooth;
}
/* fonts  */

.font-SFTSchriftedSans {
    font-family: "SFTSchriftedSans", sans-serif;
}

@font-face {
    font-family: "SFTSchriftedSans";
    font-style: normal;
    font-weight: 400;
    src: url("./Assets/Font/SFTSchriftedSansTRIAL-Regular-BF6413e2027be50.ttf") format("truetype");
}

@font-face {
    font-family: "SFTSchriftedSans";
    font-style: normal;
    font-weight: 600;
    src: url("./Assets/Font/SFTSchriftedSansTRIAL-DemiBoldComp-BF6413e2032b4eb.ttf") format("truetype");
}

@font-face {
    font-family: "SFTSchriftedSans";
    font-style: normal;
    font-weight: 700;
    src: url("./Assets/Font/SFTSchriftedSansTRIAL-BoldComp-BF6413e202f0835.ttf") format("truetype");
}


/* header  */

.header {
    background-color: #003333;
    background-image: url('./Assets/Images/Home/SVG/bg-dot.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}


/* small navbar  */

.small-overlay {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #dff4e0;
    display: none;
    z-index: 99;
}

@media only screen and (max-width: 600px) {
    .small-overlay {
        top: 80px;
    }
}



/* company  */
.company {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 16px 10px;
    white-space: nowrap;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* portfolio  */

.portfolio {
    background-color: #003333;
    background-image: url('./Assets/Images/Home/SVG/bg-dot.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}


/* success  */

.success {
    background-color: #003333;
    background-image: url('./Assets/Images/Home/2x/hash.png');
    background-size: auto;
    background-position: left bottom;
    background-repeat: no-repeat;
}