@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* --------------------------navbar--------------------------- */

nav {

    border-bottom: 2px solid rgb(0, 0, 0, .1);
    text-transform: uppercase;
    /* color: white; */
}

.nav-bg {
    background-color: white;
    transition: 1s ease-in;


}

nav ul li {

    margin-left: 14px;

}

nav ul li .link-a {
    font-size: 18px;
    font-weight: 680;
    color: rgb(255, 250, 250);


}

header {
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 253, 253);
    opacity: .9;
    position: relative;

}

header .img img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;

}

/* Overline Reveal */
nav ul li a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

nav ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    background: rgb(0, 129, 53);
    height: 4px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

nav ul li a:hover:before,
nav ul li a:focus:before,
nav ul li a:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);

}

/* --------------------content------------------------ */
header .content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(to right,red,green); */

}

header .content-head h1 {
    color: rgb(255, 241, 241);
    font-weight: 800;
    text-shadow: 1px 2px 5px black;
    margin-left: 90px;
    /* -webkit-text-stroke: 2px rgb(255, 249, 249);
  color: transparent; */

}

.title-word {
    animation: color-animation 4s linear infinite;
}

.title-word-1 {
    --color-1: rgb(16, 193, 247);
    --color-2: rgb(16, 231, 247);
    --color-3: #099715;
}

.title-word-2 {
    --color-1: #d8a91b;
    --color-2: #fffaf5;
    --color-3: #ffffff;
}

.title-word-3 {
    --color-1: #d8a91b;
    --color-2: #f2feff;
    --color-3: #ffe7e7;
}

.title-word-4 {
    --color-1: rgb(16, 231, 247);
    --color-2: rgb(16, 231, 247);
    --color-3: #24a50b;
}

@keyframes color-animation {
    0% {
        color: var(--color-1)
    }

    32% {
        color: var(--color-1)
    }

    33% {
        color: var(--color-2)
    }

    65% {
        color: var(--color-2)
    }

    66% {
        color: var(--color-3)
    }

    99% {
        color: var(--color-3)
    }

    100% {
        color: var(--color-1)
    }
}

header .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 105px;
    text-transform: uppercase;
    text-shadow: 3px 5px 8px black;
}


@media (min-width:576px) and (max-width:767px) {
    header .title {
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        font-size: 60px;
        text-transform: uppercase;
    }

    header .content-head h1 {
        color: rgb(255, 241, 241);
        font-weight: 800;
        font-size: 28px;
        text-shadow: 1px 1px 5px black;
        margin-left: 0px;


    }
}

@media (max-width:575px) {
    header .title {
        font-family: "Montserrat", sans-serif;
        font-weight: 800;
        font-size: 60px;
        text-transform: uppercase;
    }

    header .content-head h1 {
        color: rgb(255, 241, 241);
        font-weight: 800;
        font-size: 27px;
        text-shadow: 1px 1px 5px black;
        margin-left: 0px;


    }
}




/* --------------------about---------------------------- */

.index-about {
    background-color: rgb(238, 241, 242);
}

/* ====================blob service====================== */
.blob-top {
    position: relative;
}

.blob-head {
    width: 50%;
    position: absolute;
    opacity: .2;
    color: rgb(179, 174, 174);
    top: 60%;
    z-index: -1;
}

.blob-head2 {
    width: 50%;
    position: absolute;
    opacity: .2;
    top: 0;
    left: 5px;
    z-index: -1;

}

@media (min-width:768px) and (max-width:992px) {
    .blob-head2 {
        width: 80%;

    }

}