@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Tilt Neon', cursive;
    box-sizing: border-box;
}

.text-justify {
    text-align: justify;
}

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: url(./images/img2.jpg);
    opacity: .92;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}

.logo {
    color: #dcdcdc;
    font-size: 70px;
    letter-spacing: 1px;
    cursor: pointer;
}

span {
    color: rgb(190, 16, 16);
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
    font-size: 25px;
}

nav ul li a {
    color: #dcdcdc;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover {
    color: rgb(190, 16, 16);
    transition: 1s;
}

h2 {
    color: white;
    margin: 20px 0px 20px;
    font-size: 40px;
}

h2 span {
    color: rgb(190, 16, 16);
}

.content {
    position: absolute;
    transform: translateY(-50%);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: 40%;
    width: 100%;
    color: #fff;
    animation-name: color;
    animation-duration: 10s;
}

.content p{
    position: absolute;
    font-size: 60px;
    opacity: 0;
    animation: text 1s;
    animation-duration: 5s;
}

.content p:nth-child(1) {
    animation-duration: 5s;
    animation-delay: 0s;
}

.content p:nth-child(2) {
    animation-duration: 5s;
    animation-delay: 3s;
}

.content p:nth-child(3) {
    animation-duration: 5s;
    animation-delay: 6s;
}

.content p:nth-child(4) {
    animation-duration: 5s;
    animation-delay: 9s;
}

.content p:nth-child(5) {
    animation-duration: 5s;
    animation-delay: 12s;
}

.content p:nth-child(6) {
    animation-duration: 5s;
    animation-delay: 15s;
}

.content p:nth-child(7) {
    animation-duration: 5s;
    animation-delay: 18s;
}

@keyframes text {
    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width:576px) {
    nav {
        padding-top: 0;
    }
    nav ul {
        display: none;
    }
    .logo {
        margin: 20px auto;
        font-size: 60px;
    }
    .content p {
        font-size: 36px;
        margin: 0 15px;
    }
}

#about {
    padding-top: 50px;
    background: linear-gradient(75deg, rgb(251, 211, 211), rgb(0, 0, 0));
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;

}

.circle {
    width: 400px;
    height: 400px;
    background: linear-gradient(75deg, rgb(239, 84, 84), rgb(36, 36, 36));
    border-radius: 50%;
    position: relative;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, .7);
    margin-bottom: 3%;
    margin-top: 8%;
    transition: 1s;
}

.circle img {
    position: absolute;
    height: 300px;
    width: 300px;
    top: -20%;
    left: 50px;
    border-radius: 50%;
    filter: drop-shadow(0px 30px 15px rgba (0, 0, 0, .6));
    transition: 1s;
}

.circle:hover {
    width: 700px;
    height: 400px;
    border-radius: 10px;
    transition: 1s;
}

.circle:hover img {
    position: absolute;
    top: 2%;
    left: 2%;
    transition: 1s;
}

.circle:hover .content {
    position: absolute;
    left: 48%;
    color: #000;
    width: 50%;
    opacity: 1;
    transition: 1s;
}

.circle .content {
    opacity: 0;
}

@media screen and (max-width:767px) {
    .circle {
        width: 90%;
        height: auto;
        border-radius: 10px;
        text-align: center;
        padding: 15px;
    }

    .circle img {
        position: unset;
        width: 160px;
        height: auto;
    }

    .circle:hover img {
        position: unset;
    }

    .circle:hover {
        width: 90%;
        height: auto;
    }

    .circle:hover .content {
        position: unset;
        width: 100%;
    }

    .circle .content {
        opacity: unset;
        position: unset;
        transform: none;
    }
}

#client {
    padding: 30px 15px 80px;
}

#client h2 {
    color: #000;
}

#client .client-content {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

#client .client-img {
    margin: 8px;
    align-self: center;
}

#client .client-img img {
    width: 140px;
}

@media screen and (min-width:768px) {
    #client .client-content {
        max-width: 80%;
    }
}

@media screen and (min-width:992px) {
    #client .client-content {
        max-width: 60%;
    }
}

/* Our Project Section */

/* #projects {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3%;
    background: linear-gradient(75deg, rgb(132, 220, 255),rgb(245, 123, 245));
}


iframe {
    width: 100%;
    height: 100%;
    position: fixed;

} */

button span {
    color: #fff;
    font-size: 20px;
    font-weight: 1000;
}

.service {
    background: #282828;
    width: 100%;
    padding: 100px 0px;
}

.title h2 {
    color: white;
    font-size: 75px;
    /* width: 1130px; */
    margin: 30px auto;
    text-align: center;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    flex-wrap: wrap;
}

.card {
    height: 465px;
    width: 350px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card i {
    font-size: 50px;
    display: block;
    text-align: center;
    margin: 25px 0px;
    color: #f9004d;
}

h5 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
}

.pra {
    color: #fcfc;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 50px;
}

.card .button {
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: 1s;
}

.card .button:hover {
    background-color: transparent;
    border: 2px solid #efeded;
    cursor: pointer;
}

/* Footer */

footer {
    position: relative;
    width : 100%;
    height: 500px;
    background: #101010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

footer h4 {
    color: white;
}

footer h4 span {
    color: #f9004d;
}

.contact {
    font-size: 30px;
    color: rgb(239, 84, 84);;

}


.social {
    display: flex;
}

.social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(239, 84, 84);
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.social a:hover {
    transform: scale(1.3);
    transition: .3s;
}

.end {
    position: absolute;
    color: rgb(239, 84, 84);
    bottom: 30px;
   font-size: 14px;
}

@media screen and (min-width:768px) {
    .end {
        bottom: 35px;
        right: 15px;
    }
}

@media screen and (max-width:576px) {
    .title h2 {
        font-size: 50px;
    }
}