html {
    scroll-behavior: smooth;
    height: 100%;
}

::-webkit-scrollbar
{
    width: 12px;
}
::-webkit-scrollbar-thumb
{
    background: linear-gradient(#7bff00,#00d300);
    border-radius: 6px;
    animation: animate 5s linear infinite;
}

@keyframes animate
{
    0%,100%
    {
        filter: hue-rotate(0deg);
    }
    50%
    {
        filter: hue-rotate(360deg);
    }
}


body{
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right,#001b00,#0074195e 70%);
}

section{

    min-height: 100vh;
    padding: 4rem 0% 2rem;
}


section p {
    color: rgb(0, 255, 136);
}

section  h3{
    color: rgb(0, 255, 115);
}

section h1 {
    color: rgb(0, 255, 115);
}

section a {
    text-decoration: none;
    
}

button {
    margin: 0 4px;
    font-family: "Source Sans Pro";
    font-size: 16px;
    padding: 8px 30px;
    letter-spacing: 3px;
    border-radius: 2px;
    color: rgb(9, 255, 0);
    background: transparent;
    border: 1px solid rgb(34, 216, 14);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);
    transition: .5s ease;
}


button:hover {
    color: black;
    background: rgb(51, 255, 0);
    transform: scale(1.04);
  }




.header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to right,#003d00,#007419 70%);
    border: 1px solid rgb(30, 255, 0);
}

.header .sticky {
    border-bottom: .1rem solid #00d300;
}

.header h1 {
    background: linear-gradient(90deg,#00ff00,#00ff95);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 4rem;

}

.logo {
    font-size: 50px;
    color: chartreuse;
    font-weight: 600;
    cursor: default;
    text-decoration: none;
    font-style: oblique;
}

.navbar a {
    font-size: 1.7rem;
    color: rgb(0, 0, 0);
    margin-right: 4rem;
    transition: .3s;
    text-decoration: none;
    font-style: oblique;

}

.navbar a:hover,
.navbar a.active {
    background: linear-gradient(90deg,#00ff00,#00ff95);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1rem chartreuse;
    display: inline-block;


}

#menu-icon {
    font-size: 3.6rem;
    color: chartreuse;
    display: none;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img{
    width: 30vw;
    right: 100;
    animation: floatImage 4s ease-in-out infinite ;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2.4rem);
    }
    100% {
        transform: translateY(0);
    }
}

.home-content h3{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;

}

.download-btn {
    margin: 0 4px;
    font-family: "Source Sans Pro";
    font-size: 16px;
    padding: 8px 30px;
    letter-spacing: 3px;
    border-radius: 2px;
    color: rgb(9, 255, 0);
    background: transparent;
    border: 1px solid rgb(30, 255, 0);
    transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);

}

.download-btn:hover {
    color: black;
    background: rgb(51, 255, 0);
  }



.home-content a{
    color: chartreuse;
    
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;

}

span {
    color: chartreuse;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: chartreuse;
    border-radius: 4rem;
    box-shadow: 0 0 1rem chartreuse;
    font-size: 1.6rem;
    color: chartreuse;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover {
    box-shadow: none;

}

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgb(34, 34, 34);
}

.about-img img{
    width: 30vw;
}

.about-content a {
    color: chartreuse
 
}

.heading {
    text-align: center;
    font-size: 4.5rem;
}

.about-content h1{
    text-align: left;
    line-height: 1,2;
}

.about-content h3 {
    font-size: 2.6rem;

}

.about-content button {
    margin: 0 4px;
    font-family: "Source Sans Pro";
    font-size: 16px;
    padding: 8px 30px;
    letter-spacing: 3px;
    border-radius: 2px;
    color: rgb(9, 255, 0);
    background: transparent;
    border: 1px solid rgb(30, 255, 0);
    transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);
}

.about-content button:hover {
    color: black;
    background: rgb(51, 255, 0);
  }

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;

}


.social-media a {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid chartreuse;
    border-radius: 50%;
    font-size: 2rem;
    color: chartreuse;
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.social-media a:hover{
    background: chartreuse;
    color: darkgreen;
    box-shadow: 0 0 1rem chartreuse;
}




video{
    width: 100%;
    height: 100%;
    right: 0;
    position: absolute;
    object-fit: cover;
    display: flex;
    align-items:flex-end;
    justify-content: center;
    transition: all 0.6s linear;
    z-index: -10;
    filter:brightness(30%);
    
}

.video1{
    opacity: 1;
    
}

.video2{
    opacity: 0;
}

.video3{
    opacity: 0;
}
.video4{
    opacity: 0;
}



.services {
    background: linear-gradient(90deg,#01440c,#028002);
    
}


.services h2 {
    margin-bottom: 6rem;
}


.services-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}


.services-container2 .services-box2 {
    padding: 3rem 0.2rem 6rem;
    display: inline-block;
    background:linear-gradient(90deg, #218f00, #0c2c00);
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    text-align: center;
    border: .01rem solid rgb(0, 0, 0);
    transition: .5s ease;
}

.services-container2 .services-box2:hover {
    border: .2rem solid rgb(81, 255, 0);
}

.services-box2 i {
    font-size: 3rem;
    color: rgb(0, 0, 0);
}

.services-box2 h3 {
    font-size: 2.6rem;
}

.services-container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.services-container1 .services-box1 {
    padding: 3rem 7rem 1rem;
    display: inline-block;
    background:linear-gradient(90deg, #218f00, #0c2c00);
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    text-align: center;
    border: .01rem solid rgb(0, 0, 0);
    transition: .5s ease;
}

.services-container1 .services-box1:hover {
    border: .2rem solid rgb(81, 255, 0);
}

.services-box1 i {
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

.services-box1 h3 {
    font-size: 2.6rem;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.services-container .services-box {
    padding: 3rem 3rem 3rem;
    display: inline-block;
    background:linear-gradient(90deg, #218f00, #0c2c00);
    width: 20%;
    height: 60%;
    border-radius: 1rem;
    text-align: center;
    border: .01rem solid rgb(0, 0, 0);
    transition: .5s ease;
}

.services-container .services-box:hover {
    border: .2rem solid rgb(81, 255, 0);
}

.services-box i {
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

.services-box h3 {
    font-size: 2.6rem;
}

.services-box button {
    font-family: "Source Sans Pro";
    border-radius: 1px;
    color: rgb(9, 255, 0);
    font-size: 16px;
    letter-spacing: 3px;
    background: transparent;
    border: 1px solid rgb(9, 255, 0);
	cursor: pointer;
    overflow: hidden;
	transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);
    transition: .5s ease;

}

.services-box button:hover {
    color: black;
    background: rgb(51, 255, 0);
    transform: scale(1.04);

}

.services h2 {
    background: linear-gradient(90deg,#5eff00,#1eff00);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    text-decoration: none;
    font-style: oblique;

}

.services h2 span {
    background: linear-gradient(90deg,#1cff1c,#00ff95);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    text-decoration: none;
    font-style: oblique;
}

.art {
    justify-content: center;
    align-items: center;
    background: transparent
}


.video7{
    width: 100%;
    height: 130%;
    filter:brightness(40%);
    margin-bottom: 100%;
}


.art h2 {
    margin-bottom: 4rem;
    background: linear-gradient(90deg,#00ff00,#00ff95);
    text-shadow: 0 0 1rem chartreuse;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    text-decoration: none;
    font-style: oblique;
    margin-top: 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.art-container {
    display: grid;
    align-items: center;
    gap: 4rem;
    margin-left: 4%;
    margin-right: 5%;
}

.art-container .art-box {
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0 1rem chartreuse;
    overflow: hidden;
    display: flex;
    background: linear-gradient(90deg, #1e8100, #0d3000);
}

.art-box img {
    width: 35%;
    transition: .5s ease;
}

.art-box:hover img {
    transform: scale(1.05);
}

.art-box .art-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.art-layer h4 {
    font-size: 3rem;
    background: linear-gradient(90deg,#5eff0088,#7bff00);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    text-decoration: none;
    font-style: oblique;
}

.art-layer p {
    font-size: 0.93rem;
    margin: 1rem 0 1rem;
    color: #00ff95;
}

.art-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 5rem;
    background: chartreuse;
    border-radius: 50%;
}

.art-layer a i {
    font-size: 2rem;
    color: rgb(0, 0, 0);
}


.contact h2 {
    margin-bottom: 3rem;
    background: linear-gradient(90deg,#00ff00,#00ff95);
    text-shadow: 0 0 1rem chartreuse;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
    text-decoration: none;
    font-style: oblique;
    margin-top: 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
} 

.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: #00ff00;
    background: #007419;
    border-radius: .8rem;
    border-color: rgb(115, 255, 0);
    margin: .7rem 0;
}

.contact form .input-box input{
    width: 49%;
}

.contact form textarea {
    resize: none;
}

.contact form .btn{
    margin: 0 4px;
    box-shadow: 0;
    font-family: "Source Sans Pro";
    font-size: 16px;
    padding: 8px 30px;
    letter-spacing: 3px;
    color: rgb(9, 255, 0);
    background: transparent;
    border: 1px solid rgb(34, 216, 14);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);
    transition: .5s ease;
}

.contact form .btn:hover {
    color: black;
    background: rgb(51, 255, 0);
    transform: scale(1.04);
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.2rem 2%;
    background: #00d30085;
}


.footer-text p {
    font-size: 1.3rem;
    color: black;
}

.footer-iconTop a {
    margin: 0 4px;
    font-family: "Source Sans Pro";
    font-size: 1rem;
    padding: 8px 30px;
    border-radius: 1rem;
    color: rgb(9, 255, 0);
    background: transparent;
    border: 1px solid rgb(34, 216, 14);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.6s ease-out, transform 0.4s ease-in;
    transform: scale(1, 1);
    transition: .5s ease;
}

.footer-iconTop a:hover{
    color: black;
    background: rgb(51, 255, 0);
    transform: scale(1.04);
}

.footer-iconTop a i {
    color: black;
    transform: scale(1.04);
}

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 973px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .services {
        padding-bottom: 7rem;
    }

    .art {
        padding-top: 0.1rem;
    }

    .contact {
        min-height: auto;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 874px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: rgba(0, 255, 115, 0.329);
        border-top: .1rem solid black;
        box-shadow: 0 .5rem 1rem black;
    }

    .navbar .active {
        display:block;
    }

    .navbar a {
        display: block;
        font-size: 2.7rem;
        margin: 1rem 0;
        
    }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img img {
        width: 40vw;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about-img {
        width: 50vw;
        margin-top: 4rem;
    }

    .services h2 {
        margin-bottom: 3rem;
    }

    .art h2 {
        margin-bottom: 3rem;
    }

    .art-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .video7 {
        width: 160%;
        height: 70%;
    }
}



@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .contact form .input-box input {
        width: 100%;
    }
}

@media (max-width: 365px) {
    .home-img img {
        width: 40vw;
    }

    .footer {
        flex-direction: column-reverse;
    }
}