@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppons', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #081b29;
    --second-bg-color: #112e42;
    --text-color: #ededed;
    --main-color: #00abf0;
    --third-bg-color: yellowgreen;
    --fourth-bg-color: yellow;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);

    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.0rem 9%;
    background: rgb(3, 59, 3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: .3s;
}

.header.sticky {
    background: rgb(3, 100, 3);
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.navbar a {
    font-size: 1.7rem;
    color: yellow;
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .3s;
}

/*.navbar ul, .navbar li {
    margin: 0;
    padding: 0;
}

.navbar li {
    float: left;
    position: relative;
    width: auto;
}

.navbar ul {
    background: gray;
    list-style: none;
    width: 100%;
}*/

.navbar a:hover, 
.navbar a.active {
    color: var(--main-color);
}

/*.navbar a {
    background: #30a6e6;
    color: white;
    display: block;
    font-weight: 400;
    font-size: 10px;
    padding: 15px 55px;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.navbar li:hover a {
    background: #112e42;
}

li:hover ul#submenu {
    opacity: 1;
    top: 80px;
    visibility: visible;
}

#submenu {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 35px;
    visibility: hidden;
    z-index: 1;
}

#submenu li {
    float: none;
    width: 100%;
}

/*#submenu a:hover {
    background: #df4b05;
}*/



#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.home {
    display: flex;
    align-items: center;
    padding: 0 9%;
    /*background: url('/images/solar_panels.jpg') no-repeat;*/
    background-size: 65%;
    background-position: right;
    
}

.home-content {
    max-width: 60rem; 
    z-index: 99;
    position: absolute;
    height: 70%;
}

.home-content h1 {
    position: relative;
    display: inline-block;
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
    /*color: rgb(173, 173, 29);*/
}


.home-content .text-animate {
    position: relative;
    width: 32.8rem;
}

.home-content .text-animate h1 {
    font-size: 4.1rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: .7px var(--third-bg-color);
    background-image: linear-gradient(orange, var(--third-bg-color));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -33rem 0;
    animation: homeBgText 6s linear infinite;
    animation-delay: 2s;

}

.home-content .text-animate h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-right: 2px solid var(--third-bg-color);
    z-index: -1;
    animation: homeCursorText 6s linear infinite;
    animation-delay: 2s;
}

.home-content p {
    position: relative;
    font-size: 2.5rem;
    margin: 2rem 0 4rem;
    color: beige;
    list-style: d;
    line-height: 1.5;
}
/*------------------------------------------------------------*/
/* Home Image Slider */
.slider {
    width: 1500px;
    height: 1000px;
    border-radius: 20px;
    position: absolute;
    right: 150px;
    overflow: hidden;
}

.slides {
    width: 500%;
    height: 1000px;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}

.slide img {
    width: 1500px;
    height: 1000px;
    max-width: 100%;
    max-height: 100%;
}

/*For Manual Slider*/
.navigation-manual {
    position: absolute;
    width: 1500px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
   border: 2px solid yellowgreen;
   padding: 5px;
   border-radius: 10px;
   cursor: pointer;
   transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: yellow;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

#radio4:checked ~ .first {
    margin-left: -60%;
}

/* Automatic Slider */
.navigation-auto {
    position: absolute;
    display: flex;
    width: 1500px;
    justify-content: center;
    margin-top: 960px;
}

.navigation-auto div {
    border: 2px solid yellowgreen;
    padding: 5px;
    border-radius: 10px;
    transition: 2s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: yellow
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: yellow
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: yellow
}

#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: yellow
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 34.5rem;
    height: 5rem;
}

.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--third-bg-color);
    border-radius: .8rem;
    font-size: size 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box .btn:hover {
    color: var(--main-color);
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: var(--main-color);
}


.btn-box .btn:nth-child(2):hover {
    color: var(--bg-color);
}

.btn-box .btn:nth-child(2)::before {
    background: var(--main-color);
}

.btn-box .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box .btn:hover::before {
    width: 100%;
}

.home-sci {
    position: absolute;
    bottom: 4rem;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: var(--bg-color);
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}

.home-imgHover {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: transparent;
    transition: 3s;
}

/*.home-imgHover:hover {
    background: var(--bg-color);
    opacity: .8;
}*/

/* values */
/*.values {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: var(--second-bg-color);
    padding-bottom: 6rem;
}*/

.values {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 5rem;
    background: var(--second-bg-color);
}


.values .values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.values-row .values-column {
    flex: 1 1 40rem;
}

.values-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}

/*.services-column .services-box {
    border-left: .2rem solid var(--main-color);
}*/

.values-box .values-content {
    position: relative;
    padding-left: 2rem;
}

.values-box .values-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    /* background: var(--main-color); */
    border-radius: 50%;
}

.values-content .content {
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.values-content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.values-content .content:hover::before {
    width: 100%;
}

.values-content .content .remote {
    font-size: 2.5rem;
    color: yellowgreen;
    padding-bottom: .5rem;
}

.values-content .content h3 {
    font-size: 2rem;
}

.values-content .content p {
    font-size: 2.0rem;
    padding-top: .5rem;
    color: beige;
}


.heading {
    font-size: 5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: yellow;
}

/*span {
    color: var(--main-color);
} */

.about-img {
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.about-img img {
    width: 90%;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
}*/

/*.about-img .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem var(--second-bg-color);
    border-bottom: .2rem var(--second-bg-color);
    border-left: .2rem var(--main-color);
    border-right: .2rem var(--main-color);
}*/

/*.about-content {
    text-align: center;
}

.about-content h3 {
    font-size: 2.6rem;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}*/



.btn-box.btns {
    display: inline-block;
    width: 15rem;
}

.btn-box.btns a::before {
    background: var(--second-bg-color);
}

/*------------------------------------------------------------*/
/* Services Page */

.service-container {
    margin-top: 150px;
}

.service-container h2 {
    /*letter-spacing: 1px;
    font-size: 50px;
    color: yellow;
    padding: 10px;
    border: 2px dashed #0181a0;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-top: 90px;
    margin-left: 375px;*/
    font-size: 5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: yellow;
    
}

.service-post {
    width: 100%;
    max-width: 98rem;
    padding: 5rem;
    background-color: var(--second-bg-color);
    box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    border-radius: .8rem;
    margin: 10px;
}

.service-post_img {
    min-width: 35rem;
    max-width: 35rem;
    height: 30rem;
    transform: translateX(-8rem);
    position: relative;
}

.service-post_img img {
    width: 100%;
    height: 100%;
    border-radius: 2%;
    object-fit: cover;
    display: block;
}

.service-post_img img::before {
    content: '';
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, 0.5);
}

.service-post_date span {
    display: block;
    color: var(--main-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: .5rem 0;
}

.service-post_title {
    font-size: 2.5rem;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color: yellow;
}

.service-post_text {
    margin-bottom: 3rem;
    font-size: 16px;
    color: white;
    line-height: 2rem;
}

/*------------------------------------------------------------*/
/* Leadership Page */

.container {
    margin: 20px 40px;
    color: white;
}

.our-staff {
    font-size: 20px;
    text-align: center;
}

/*.heading-lead {
    font-size: 5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: yellowgreen;
}*/

.profiles {
    display: inline;
    justify-content: space-around;
    margin: 20px 80px;
}

.profile {
    flex-basis:  260px;
}

.profile .profile-img {
    height: 260px;
    width: 260px;
    border-radius:50%;
    filter: grayscale(100%);
    cursor: pointer;
    transition: 400ms;
}

.profile:hover .profile-img {
    filter: grayscale(0);
}

.user-name {
    margin-top: 30px;
    font-size: 35px;
    color: #00abf0;
}

.profile h5 {
    font-size: 18px;
    font-weight: 100;
    letter-spacing: 3px;
    color: yellow;
    
}

.profile p {
    font-size: 17px;
    margin-top: 20px;
    text-align: justify;
    line-height: 2.5rem;
    color: beige;
    
   
}



/*.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    width: 120px;
    height: 120px;
    background: var(--second-bg-color);
    margin: 2px 50px;
    border-radius: 50%;
    border: 3px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 50px rgb(2, 145, 50);
}

.image:hover {
    border: 3px solid yellow;
}

.image-container img {
    width: 116px;
    height: 116px;
    border-radius: 50%;
}

.info-container {
    width: 1100px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 50px rgb(2, 145, 50);
}

.profile {
    width: 250px;
    height: 325px;
    border-radius: 15px;
    padding: 10px;
    margin: 0;
}

.name {
    margin-top: 80px;
    padding: 0px 15px;
    text-align: left;
    font-size: 30px;
    line-height: 20px;
}

.status {
    padding: 0px 20px;
    text-align: left;
    line-height: 35px;
    margin: 0;
    font-size: 15px;
}

.description {
    height: 240px;
    padding: 0px 20px;
    font-size: 1.4rem;
}

.Stitle
{
    text-align: center;   
    font-size: 3.0rem;
    margin: 2rem 0 4rem;
}

.OurStaff {
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}*/

/*------------------------------------------------------------*/
/*Contact Form*/

.contact {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 550px;
    margin: auto;
    margin-top: 2em;
    /*background: linear-gradient(rgba(0, 0, 0, 0.847), rgba(0, 0, 0, 0.6)),
        url(../images/Directors.jpg) no-repeat;
    background-size: cover;
    background-position: center;*/
}

.heading, .sub-heading {
    margin-bottom: .5em;
    font-weight: bold;
}

.sub-heading {
    text-align: left;
    font-size: 2.0rem;
}

.para {
    color: beige;
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.para2 {
    text-align: left;
}

.contactForm {
    display: grid;
    gap: 3em;
    margin-top: 3em;
}

.contactForm .sub-heading {
    color: greenyellow;
}

.contactForm form {
    width: 90%;
}

.contactForm .input {
    width: 100%;
    max-width: 700px;
    border: none;
    font-size: .9rem;
    padding: 1em;
    outline: none;
    margin-bottom: 1em;
    background-color: beige;
    color: black;
    border-radius: 10px;
    border: 1px solid rgb(53, 53, 53);
}

.contactForm .input:focus {
    border: 1px solid var(--bg-color);
}

.contactForm .input::placeholder {
    text-transform: capitalize;
}

.contactForm .reset {
    background-color: yellowgreen;
    border: none;
    color: black;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.contactForm .submit {
    background-color: yellowgreen;
    border: none;
    color: black;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    
}

.mapBg {
    position: absolute;
    background-color: green;
    top: 0;
    right: 0;
    width: 200px;
    height: 90%;
    border-radius: 20px;
}

.map {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 90%;
   
}

.map iframe {
    width: 100%;
    height: 100%;
}

.contactMethod {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    text-align: left;
}

.method {
    display: flex;
    align-items: center;
}

.contactIcon {
    font-size: 2rem;
    color: var(--main-color);
    width: 70px;
}

/*------------------------------------------------------------*/
/* Gallery */

.gallery-container .heading {
    font-size: 4rem;
    margin: 2rem 0;
    text-transform: capitalize;
    color: yellow;
    letter-spacing: .2rem;
    text-align: center;
    text-shadow: 0 .3rem .5rem (0,0,0,.5);
}

.video-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-container .video {
    height: 15rem;
    width: 25rem;
    margin: 2rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5) ;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--bg-color);
}

.video-container .video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    outline: none;
    border: none;
    cursor: pointer;
}

.video-container .video video:hover {
    transition: .2s linear;
    transform: scale(.9);
}

.video-container .video .active {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 80%;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, .7);
    z-index: 1;
}

.video-container .video .active:hover {
    transition: none;
    transform: translate(-50%, -50%) scale(1);
}

.img-gallery {
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.img-gallery img {
    width: 100%;
    cursor: pointer;
}

.img-gallery img:hover {
    transform: scale(0.8) rotate(-5deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68,77,136, 0.2);
}

.full-img {
    width: 100%;
    height:100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 500px;
}

.full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/*------------------------------------------------------------*/
/* Footer */

footer {
    background-color: var(--second-bg-color);
    position: relative;
    width: 100%;
    min-height: 350px;
    padding: 3rem 1rem;
    font-size: small;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col {
    min-width: 250px;
    color: white;
    font-family: poppins;
    padding:0 2rem;
}

.col .logo {
    width: 250px;
    margin-bottom: 25px;
}

.col h3 {
    color: yellow;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.col h3::after {
    content: '';
    height: 3px;
    width: 0px;
    background-color: red;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

.col h3:hover::after {
    width: 30px;
}

.col .social a i {
    color: yellowgreen;
    margin-top: 2rem;
    margin-right: 5px;
    transition: 0.3s ease;
}

.col .social a i:hover {
    transform: scale(1.5);
    filter:grayscale(25);
}

.col .links a {
    display: block;
    text-decoration: none;
    color: beige;
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}

.col .links a:before {
    content: '';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: red;
    transition: 0.5s ease;
    opacity: 0;
}

.col .links a:hover::before {
    opacity: 1;
}

.col .links a:hover {
    transform: translateX(-8px);
    color: red;
}

.col .contact-details {
    display: inline-flex;
    justify-content: space-between;
}

.col .contact-details i {
    margin-right: 15px;
}

.col .contact-details a {
    color: #00abf0;
}

.footer-row .footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    color: gray;
}
/*------------------------------------------------------------*/
/*.footer-row .footer-form input {
    background-color: var(--second-bg-color);
    border: 0;
    outline: none;
    padding: 14px 20px;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-form button {
    padding: 14px 20px;
    border: 0;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: yellowgreen;
    cursor: pointer;
}*/



/*.input-wrapper {
    position: relative;
    margin-block-start: 25px;
}

.input-field {
    background-color: white;
    color: lightgray;
    font-size: small;
    padding: 12px 16px;
    border: 1px solid var(--main-color);
    border-radius: 2%;
    box-shadow:yellowgreen;
    outline: none;
}

.input-field::placeholder { color: inherit; }

.submit-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 2% 2% 0;
    background-color: beige;
    color: black;
    padding-inline: 24px;
    font-weight: bold;
}*/


/* Breakpoints */
@media (max-width: 1200px) {
    html {
        font-size: 50%;
    }


}

@media only screen and (max-width: 1150px) {
    .profiles {
        flex-direction: column;
    }

    .profile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile p {
        text-align: center;
        margin: 20px 60px 80px 60px;
        font-size: 20px;
        line-height: 35px;
    }
    
}

@media only screen and (max-width: 900px) {
    .heading {
        font-size: 40px;
        color: yellow;
        text-align: center;
        margin-top: 100px;
    }

    .profiles {
        margin: 20px 0;
    }

    .profile p {
        margin: 20px 10px 80px 10px;
    }
}

@media (max-width:991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }
}

@media (max-width: 900px) {
    .footer-row {
        flex-direction: column;
    }

    .col {
        width: 100%;
        text-align: left;
        margin-bottom: 25px;
    }
}

@media screen and (min-width:800px) {
    .contact {
        max-width: 1100px;
    }

    .contactForm {
        grid-template-columns: 1fr 1fr;
    }

    .contactMethod {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header {
        background: var(--bg-color);
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        z-index: 1;
        transition: .25s ease;
        transition-delay: .25s;
    }

    .navbar.active {
        left: 0;
        transition-delay: 0s;
    }

    .navbar .active-nav {
        position: absolute;
        top: 0; 
        left: -100;
        width: 100%;
        height: 100%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }

    .navbar.active .active-nav {
        left: 0;
        transition-delay: .25s; 
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25 ease;
        transition-delay: 0s;
    }

    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }
    
    .home-imgHover {
        pointer-events: none;
        background: var(--bg-color);
        opacity: .6;
    }
    
}

@media (max-width: 520px) {
    html {
        font-size: 50%;
    }

    .home-content {
        display: flex;
        flex-direction: column;
    }

    .home-sci {
        width: 160px;
    }

    .home-sci a {
        width: 38px;
        height: 38px;
    }
    
}

@media (max-width: 462px) {
    .home-content h1 {
        font-size: 5.2rem;
    }

    .services {
        padding: 10rem 4% 5rem 5%;
    }

    .contact form .input-box .input-field {
        width: 100;
    }

}
@media (max-width: 371px) {
    .home {
    justify-content: center;
    }

    .home-content {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .home-content {
        font-size: 5rem;
    }
}



/* KEYFRAMES ANIMATION */
@keyframes homeBgText {
    0%,10%,100% {
        background-position: -33rem 0;
    }
    65%,85% {
        background-position: 0 0;
    }
}

@keyframes homeCursorText {
    0%,10%,100% {
        width: 0;
    }
    65%,78%,85% {
        width:100%;
        opacity: 1;
    }

    75%,81% {
        opacity: 0;
    }
}
    

