﻿@import url('https://fonts.googleapis.com/css2?family=Gugi&family=Yusei+Magic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

.creative
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    background: #FFF;
    margin-top: -6rem;
}

.creative h2
{
    position: relative;
    font-size: 8vw;
    color: #FFF;
    -webkit-text-stroke: 0.01vw #333F50;
    text-transform: uppercase;
    font-family: 'Gugi', cursive;
}


.creative h2::before
{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #333F50;
    -webkit-text-stroke: 0.01vw #333F50;
    border-right: 4px solid #333F50;
    overflow: hidden;
    animation: animate 8s linear infinite;
}
@keyframes animate
{
    0%,10%,100%
    {
        width: 0;
    }
    70%,90%
    {
        width: 100%;
    }
}

/*parallax*/

.parallax
{
    background-image: url(Images/Img-3.jpg);
    height: 70vh;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax h1
{
    text-align: center;
    padding-top: 11%;
    color: #FFF;
    font-size: 4rem;
    font-family: 'Gugi', cursive;
    letter-spacing: 1px;
}

.parallax p
{
    text-align: center;
    padding-top: 1%;
    padding-right: 10%;
    padding-left: 10%;
    color: #FFF;
    font-size: 1rem;
    font-family: 'Gugi', cursive;
    letter-spacing: 1px;
}

/*clients*/

.Slider
{
    max-width: 1040px;
    margin: 0 auto;
}

.logo-slider img {
    width: 100%;
    height: 100%;
    padding: 30px;
}

.logo-slider .img1
{
    margin-top: 10%;
}

.logo-slider .img2
{
    margin-top: 8%;
}

.logo-slider .img6
{
    margin-top: 4%;
}

/*Footer*/

footer
{
    background: #111;
    height: auto;
    width: auto;
    font-family: 'Gugi', cursive;
    padding-top: 40px;
    color: #fff;
}

.footer-content
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3
{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p
{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials
{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li
{
    margin: 0 10px;
}

socials a
{
    text-decoration: none;
}

socials a i
{
    font-size: 1.1rem;
    transition: color .4s ease;
}

socials a:hover i
{
    color: #FF0000;
}

.footer-bottom
{
    background: #000;
    width: auto;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p
{
    font-size: 14px;
    word-spacing: 2px;
}