* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poiret One", sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

span {
    font-style: italic;
}

#preloader {
    background-color: #000;
    height: 100%;
    width: 100%;

    position: fixed;
    z-index: 99;
}

#main {
    background-color: black;
    background-size: cover;
    background-position: top;
    width: 100%;
    overflow-x: hidden;

    position: relative;
}

.top {
    background-image: url("https://images.pexels.com/photos/9965979/pexels-photo-9965979.jpeg");
    background-size: cover;
    
}

.runner {
    background-color: rgb(238, 173, 45); 
    color: #000;   
    width: 100%;
    overflow: hidden;
    white-space: nowrap;

    display: flex;
}

 .runner .runnerHeading {
        font-size: 20px;
        font-weight: 900;
        margin-right: 30px;
        text-transform: uppercase;
        animation: moveLToR 20s linear infinite;
 }

 .runner span {
    padding: 0 25px 0 15px;
 }
 
 @keyframes moveLToR {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

/* Navbar */

.nav-container {

    display: flex;
    justify-content: center;
}

/* nav {
    background-color:white;
    border-radius: 50%;
    height: 100px;
    margin: 20px 30px;
} */

.nav-container img {
    border: 2px solid rgb(238, 173, 45);
    border-radius: 50%;
    height: 100px;
    margin: 20px 30px;
    object-fit: contain;
    /* padding: 10px 30px; */
}

/* Banner */

.banner {
    height: 80vh;
    padding: 0 0 3rem;

    display: flex;

    position: relative;
}

.inner-banner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 29;

    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-banner h1 {
    background-color: rgb(0, 0, 0, 0.5);
    color: white;
    font-size: 4rem;
    padding: 20px 40px;
    text-align: center;
    text-transform: uppercase;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.inner-banner span {
    color:rgb(238, 173, 45);
    font-style: italic;
    margin: 0 0 0 15px;
}

.banner img {
    border-radius: 20px;
    height: 100%;
    width: 350px;
    margin-right: 20px;
    object-fit: cover;

    animation: flow 20s linear infinite;
}

@keyframes flow {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(calc(-419% - 20px));
    }
}

/* About */

.about {
    height: 100%;
    background-color: rgb(238, 173, 45);
    margin: 2.9rem 6rem 2.9rem;

    display: flex;
}

.about-left, .about-right {
    width: 50%;
}

.about-left img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.about-right {
    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-right-first h1 {
    color: #000;
    font-size: 3rem;
    font-weight: 900;
}

.about-right p {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.about-right-second {
    height: 40px;

    display: flex;
    gap: 20px;
}

.about-right-second img {
    height: 100%;
}

/* services */

.services {
    margin: 0rem 6rem 2.9rem;

    columns: 3;

}

.services-heading {
    color: white;
    font-size: 3rem;
    padding: 1rem 6rem 2rem;
}

.services-heading span {
    color: rgb(238, 173, 45);
}

.style {
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.style:hover img {
    transform: scale(1.4);
}

.style img {
    transition: all 0.5s ease;
    width: 100%;
}


.services-over {
    background-color: rgb(0,0,0,0.6);
    padding-bottom: 20px;
    width: 100%;
    transition: all 0.6s ease;

    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 20;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.services-over h1 {
    color: white;
    padding-top: 8px;
    text-align: center;
}

.services-over button {
    background-color: transparent;
    border: 3px solid rgb(238, 173, 45);
    border-radius: 50px;
    color: rgb(238, 173, 45);
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: all 0.5s ease;

    display: flex;
    align-items: center;
    gap: 5px;   
}

.services-over button:hover {
    background-color: rgb(238, 173, 45);
    color: black;
}

/* aside */

.aside-container {
    color: #fff;
    margin: 0rem 6rem 2.9rem;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.aside-container h1 {
    font-size: 2.5rem;
    text-align: center;
}

aside {
    background-color: red;
    height: 400px;
    width: 70%;
}

/* Footer */

footer {
    border-top: 2px solid rgb(51, 51, 51);
    /* height: 500px; */
    margin: 0rem 6rem 2.9rem;
    overflow: hidden;

    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
}

.f-mid {
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-mid h2{
    color: gray;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

footer h1 {
    color:  rgb(238, 173, 45);
    font-size: 6rem; 
    white-space: nowrap;
    
    /* position: absolute;
    bottom: 0;
    right: 0; */
}

form {
    height: 100%;
    width: 100%;
    margin-bottom: 20px;

    display: flex;    
    align-items: center;
    justify-content: center;
    gap: 10px;
}

input {
    height: 60px;
    width: 30%;
    font-size: 18px;
    font-weight: 900;

    padding: 0 5rem;
}

form button {
    background-color: transparent;
    border: 2px solid  rgb(238, 173, 45);
    color: white;
    cursor: pointer;
    font-size: 18px;
    height: 60px;
    width:20%;
}

input::placeholder {
    color: black;
    font-size: 18px;
    font-weight: 900;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-logo {
    height: 100px;
    
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo img {
    height: 80px;

    display: flex;
    justify-content: space-between;
}

.footer-logo h2 {
    color: rgb(238, 173, 45);
    font-size: 20px;
    font-weight: 900;
    font-weight: 300;

    display: flex;
    align-items: flex-end;
}


/*         Media-Queries         */

@media screen and (min-width: 1200px) {
    .inner-banner h1 {
        transform: translateY(-19%);
    }

    .about-right-second {
        margin-bottom: 35px;
    }

    .about-right-second img {
        margin-top: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .inner-banner h1 {
        font-size: 5vw;
        transform: translateY(-15%);
        width: 80%;
    }

    .about {
        margin: 2.9rem 3rem 2.9rem;
    }

    .about-right-second {
        margin-bottom: 35px;
    }

    .about-right-second img {
        margin-top: 20px;
    }
    
    .services {
        margin: 0rem 3rem 2.9rem;

        columns: 2;
    } 

    .services-heading {
        color: white;
        font-size: 2rem;
        padding: 1rem 3rem 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .inner-banner h1 {
        font-size: 3rem;
        transform: translateY(-15%);
        width: 80%;
    }

    .about {
        margin: 2.9rem 3rem 2.9rem;

        flex-direction: column;
    }

    .about-left {
        height: 300px;
        width: 100%;
    }

    .about-right {
        margin-bottom: 20px;
        width: 100%;
        gap: 40px;
    }

    .about-right-first h1 {
        line-height: 50px;
        margin-bottom: 20px;
    }

    .services {
        margin: 0rem 3rem 2.9rem;

        columns: 2;
    }

    .services-heading {
        color: white;
        font-size: 2rem;
        padding: 1rem 3rem 2rem;
    }

}

@media screen and (max-width: 768px) {
    
    .inner-banner h1 {
        font-size: 3rem;
        transform: translateY(-15%);
        width: 80%;
    } 

    .about {
        margin: 2.9rem 3rem 2.9rem;

        flex-direction: column;
    }

    .about-left {
        height: 300px;
        width: 100%;
    }

    .about-right {
        margin-bottom: 20px;
        width: 100%;
        gap: 40px;
    }

    .about-right-first h1 {
        line-height: 50px;
        margin-bottom: 20px;
    }

    .services {
        margin: 0rem 3rem 2.9rem;

        columns: 1;
    }

    .aside-container {
        margin: 0rem 3rem 2.9rem;
    }

    .aside-container h1 {
        line-height: 58px;
    }

    aside {
        width: 100%;
    }

    .services-heading {
        color: white;
        font-size: 2.5rem;
        padding: 1rem 3rem 2rem;
    }
}


@media screen and (max-width: 425px) {
    
    .inner-banner h1 {
        font-size: 2rem;
        padding: 20px 0;
        transform: translateY(-20%);
        width: 80%;

     
    }

    .about {
        margin: 2.9rem 2rem 2.9rem;

        flex-direction: column;
    }

    .about-left {
        height: 300px;
        width: 100%;
    }

    .about-right {
        margin-bottom: 20px;
        width: 100%;
        gap: 40px;
    }

    .about-right-first h1 {
        font-size: 3rem;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .services {
        margin: 0rem 2rem 2.9rem;

        columns: 1;
    }

    .services .style {
        margin-bottom: 30px;
    }

    .aside-container {
        margin: 0rem 2rem 2.9rem;
    }

    .aside-container h1 {
        line-height: 58px;
    }

    aside {
        width: 100%;
    }

    .services-heading {
        color: white;
        font-size: 2rem;
        padding: 1rem 2rem 2rem;
        text-align: center;
    }

    footer {
        margin: 0 1rem 2.9rem;
    }

    footer h1 {
        color: white;
        font-size: 1.6rem; 
        padding: 20px 0 20px;
        text-align: center;
    }   

    .f-mid h2{
        color: gray;
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    form {
        gap: 4px;
    }
    
    input {
        height: 40px;
        width: 30%;
    
        padding: 15px 5rem;
    }
    
    form button {
        font-size: 12px;
        height: 40px;
        width:40%;
        padding: 0 10px;
        white-space: nowrap;
    }

    input::placeholder {
        font-size: 12px;
    }

    
    .footer-logo {
        margin: 40px 0 20px;
        
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-logo h2 {
        font-size: 13px;
        font-weight: 900;
        text-align: center;
    }

}

/* 
footer {
    border-top: 2px solid rgb(51, 51, 51);
    margin: 0rem 6rem 2.9rem;
    overflow: hidden;

    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
}

.f-mid {
    margin-bottom: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-mid h2{
    color: gray;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

footer h1 {
    color: white;
    font-size: 6rem; 
    white-space: nowrap;
}

form {
    height: 100%;
    width: 100%;
    margin-bottom: 20px;

    display: flex;    
    align-items: center;
    justify-content: center;
    gap: 10px;
}

input {
    height: 60px;
    width: 30%;

    padding: 15px 5rem;
}

form button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    font-size: 16px;
    height: 60px;
    width:20%;
}

input::placeholder {
    font-size: 16px;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-logo {
    height: 100px;
    
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo img {
    height: 80px;

    display: flex;
    justify-content: space-between;
}

.footer-logo h2 {
    color: white;
    font-size: 16px;
    font-weight: 300;

    display: flex;
    align-items: flex-end;
} */
