* {
    scrollbar-width: none;
}

.mainBody {
    margin: 0px;
    padding: 0px;
    border: border-box;
    font-family: sans-serif;
    background-color: #FCE6E6;
}

.wht {
    background-color: #00ff15;
    overflow: hidden;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    position: fixed;
    bottom: 100px;
    right: 30px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wht:hover {
    box-shadow: 1px 1px 10px #00ff15;

}

.wht a {
    text-decoration: none;
    color: #FEF1E1;
    margin: 0rem 0rem;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    transition: 0.5s;
}

/* .wht a:nth-child(1):hover {
    background-color: #00ff15;
  }
  
  .wht a:nth-child(2):hover {
    background-color: #0a66c2;
  }
  
  .wht a:nth-child(3):hover {
    background-color: #e1002d;
  }
  
  .wht a:nth-child(4):hover {
    background: linear-gradient(#405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
  }
  
  .wht a:nth-child(5):hover {
    background: linear-gradient(#17A9FD, #0165E1);
  }
  
  .wht a:nth-child(6):hover {
    background-color: #000000;
  }
  
  .wht a:nth-child(7):hover {
    background-color: #d93025;
  } */
header {
    overflow: hidden;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0rem;
    z-index: 2;
    backdrop-filter: blur(50px);
}

@keyframes navAni {
    from {
        margin-bottom: 20rem;
        opacity: 0;
    }

    to {
        margin-bottom: 0rem;
        opacity: 1;
    }
}

nav {
    height: 80%;
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #310F11;
    border-radius: 0.7rem;
    box-shadow: 0.1px 0.1px 10px #310F11;
    overflow: hidden;

    animation: navAni 1.5s ease-in-out 0s 1 alternate;
}

nav>a {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 150px;
    background-color: #310F11;
}

nav>a img {
    height: 100%;
    width: 65px;
}

.navBar-options {
    height: 100%;
    /* background-color: #00ff15; */
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navBar-options a {
    /* background-color: blueviolet; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FCE6E6;
    padding: 0rem 1.5rem;
    /* margin: 0rem 0.05rem; */
    font-weight: 600;
    z-index: 1;
}

.clr1 {
    background-color: #EE0100;
    height: 100%;
    left: 52.43%;
    width: 21.95%;
    top: 0;
    position: absolute;
    border-radius: 0.5rem;
    transition: 0.5s;
    box-shadow: 0.1px 0.1px 10px #EE0100;
}

.navBar-options a:nth-child(1):hover~.clr1 {
    left: 0rem;
    width: 17.70%;
}

.navBar-options a:nth-child(2):hover~.clr1 {
    left: 17.70%;
    width: 17.33%;
}

.navBar-options a:nth-child(3):hover~.clr1 {
    left: 35.03%;
    width: 17.40%;
}

.navBar-options a:nth-child(4):hover~.clr1 {
    left: 52.43%;
    width: 21.95%;
}

.navBar-options a:nth-child(5):hover~.clr1 {
    left: 74.38%;
    width: 25.62%;
}

@keyframes serviceAni {
    from {
        opacity: 0;
        margin-top: 10rem;
    }

    to {
        opacity: 1;
        margin-top: 100px;
    }
}

.headOne {
    /* background-color: #00ff15; */
    height: 200px;
    margin: auto;
    margin-top: 100px;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    overflow: hidden;


    animation-name: serviceAni;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0;
    animation-iteration-count: 1;
    /* animation-direction: alternate; */

}

.name {
    /* background-color: #405DE6; */
    height: 100%;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}

.name h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 6rem;
    margin: -1.5rem 0rem;
    padding: 0rem;


    background: linear-gradient(90deg, #ee0100, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    color: transparent;
}

.btn {
    /* background-color: #e1002d; */
    height: 100%;
    width: auto;
    display: flex;
    align-items: self-end;
    justify-content: center;
}

.btn a {
    background-color: #EE0100;
    border: none;
    font-weight: 700;
    color: #FCE6E6;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: 0.5s ease-out;
    height: 3.5rem;
    width: 10rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.1rem;
    /* box-shadow: 0.1px 0.1px 5px #EE0100; */
    box-shadow: 1px 1px 5px #ee0100;

}

.btn a:hover {
    background-color: #ee0100;
    /* opacity: 1; */
    border: none;
    box-shadow: 2px 2px 10px #ee0100;
    /* transform: scale(1.01); */
}

.headTwo {
    /* background-color: #00ff15; */
    height: auto;
    margin: 1rem 0rem;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    /* padding: 0.5rem; */
    overflow: hidden;
}

.headTwo a {
    height: 500px;
    width: 75%;
    overflow: hidden;
    border-radius: 1rem;
}

.headTwo a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* transition: 0.5s; */
    cursor: default;
}

.headTwo h3 {
    /* background-color: #405DE6; */
    color: #310F11;
    /* padding: 1rem; */
    width: auto;
    font-size: 3rem;
    font-family: "Henny Penny", system-ui;
    margin: 0rem;
    margin-top: 1.5rem;
    width: 75%;
    text-align: center;
}

.headTwo h3 span {
    font-weight: 700;
    color: #EE0100;
    opacity: 1;
    text-shadow: 1px 1px 5px #e96262;
}

.headTwo p {
    /* background-color: #FCAF45; */
    color: #310F11;
    opacity: 0.7;
    width: 75%;
    font-family: "Syne Mono", monospace;
    margin: 0rem;
    font-size: 1.2rem;
    /* padding: 0.5rem 0rem; */
    text-align: justify;

}

.headTwo p span {
    font-weight: 700;
    color: #EE0100;
    opacity: 1;
}


.project {
    margin-top: 5rem;
    height: 750px;
    width: 100%;
    /* background-color: #00ff15; */
}

.project h1 {
    /* background-color: #0165E1; */
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3.5rem;
    width: 75%;
    margin: auto;
    padding: 1rem 0rem;
}

.imgContainer {
    background-color: #e1bbc7;
    height: 80%;
    width: 75%;
    border-radius: 1rem;
    margin: 0rem auto;
}

.weOffer {
    margin-top: 5rem;
    height: auto;
    width: 75%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    /* background-color: #00ff15; */
    display: flex;
    flex-direction: column;
}

.weOffer h1 {
    /* background-color: #0165E1; */
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3.5rem;
    width: auto;
    /* margin: auto; */
    padding: 0rem 0rem;
    margin: 0rem;
}

#txtContainer {
    /* background-color: #0165E1; */
    height: auto;
    width: 50%;
    border-radius: 1rem;
    /* margin: 0rem auto; */
    /* padding: 0.5rem; */
    transition: 1s ease-in-out;
    transition: background 1s ease-in-out;
}

#txtContainer p {
    font-family: "Syne Mono", monospace;
    font-size: 1.2rem;
    color: #310F11;
    opacity: 1;
    text-align: justify;
    margin: 0rem;
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: #e1bbc7;
    margin: 0.5rem 0rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

#txtContainer p:hover {
    /* background-color: #f7d1db; */
    box-shadow: 1px 1px 10px #e198af;
    background-color: #e16f74;
    border-radius: 0rem 2rem 0rem 2rem;
    cursor: default;
    color: wheat;
}


.ourProcess {
    margin-top: 5rem;
    height: auto;
    width: 75%;
    /* background-color: #00ff15; */
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.ourProcess h1 {
    /* background-color: #0165E1; */
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3.5rem;
    width: auto;
    /* margin: auto; */
    padding: 0rem 0rem;
    margin: 0rem;
}

#txtContainer2 {
    /* background-color: #0165E1; */
    height: auto;
    width: 60%;
    border-radius: 1rem;
    /* margin: 0rem auto; */
    /* padding: 0.5rem; */
    transition: 1s ease-in-out;
    transition: background 1s ease-in-out;
}

#txtContainer2 p {
    font-family: "Syne Mono", monospace;
    font-size: 1.2rem;
    color: #310F11;
    opacity: 1;
    text-align: justify;
    margin: 0rem;
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: #e1bbc7;
    margin: 0.5rem 0rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

#txtContainer2 p:hover {
    /* background-color: #f7d1db; */
    box-shadow: 1px 1px 10px #e198af;
    background-color: #e16f74;
    border-radius: 0rem 2rem 0rem 2rem;
    cursor: default;
    color: wheat;
}


footer {
    background-color: #310F11;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
}

.connect {
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.txt7 {
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin: 0rem;
    color: #FCE6E6;
}

.socialMedia {
    width: 50rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.socialMedia i {
    font-size: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    border-radius: 1rem;
    border: none;
    color: #FCE6E6;
}

.socialMedia a {
    transition: 0.5s;
    border: 1px solid white;
    opacity: 0.5;
    border-radius: 1rem;

    &:nth-child(1):hover {
        background: linear-gradient(#17A9FD, #0165E1);
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #0165E1;
    }

    &:nth-child(2):hover {
        background-color: #00ff15;
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #00ff15;
    }

    &:nth-child(3):hover {
        background-color: #e1002d;
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #e1002d;
    }

    &:nth-child(4):hover {
        background: linear-gradient(#405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #E1306C;
    }

    &:nth-child(5):hover {
        background-color: #0a66c2;
        box-shadow: 2px 2px 10px #0a66c2;
        opacity: 1;
        border: none;
    }

    &:nth-child(6):hover {
        background-color: #000000;
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #000000;
    }

    &:nth-child(7):hover {
        background-color: #d93025;
        opacity: 1;
        border: none;
        box-shadow: 2px 2px 10px #d93025;
    }
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #FCE6E6;
    opacity: 0.7;
}

/* Responsive */

@media (max-width: 1500px) {
    .navBar{
        width: 90%;
    }
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input[type="email"],
    .newsletter button {
        width: 100%;
        border-radius: 5px;
    }

    .newsletter button {
        margin-top: 10px;
    }
}