

/*
DESIGN NOTES
primary: #081b29
secondary:  #007dae
var(--yellow)
 
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
   
    --primary: #081b29;
    --secondary:  #007dae;
    --accent1: #eb8e1b;
    --accent2: #ededed;
    --accent3:#020609f7;

}


body{
    /* background:#081b29; */
    color: #ededed;
    
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background:rgba(10, 11, 10, 0.359);
    /* background: transparent; */
    display:flex;
    justify-content:space-between;
    align-items: center;
    /* z-index:100; */
}




.logo--desktop{
    position: relative;
    font-size: 35px;
    /* color: #ededed; */
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;

}

.logo--desktop::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    /* margin-left: 35px; */
    transition: .3s;
    padding: 0 150% 0 0rem;
}

.navbar a:hover, 
.navbar a.active{
    color: #00abf0 !important;

}

.home{
    /* background:url('rod-sidhaya.jpg') no-repeat; */
    background-image:linear-gradient(to right top,#020609, #007dae23),url('rod-sidhaya.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 110% 20%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content{
    /* background:yellowgreen; */
    max-width: 600px;

}

.home-content h1{
    /* position: relative; */
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}


.home-content h1::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1s;
}



.home-content h3{
    position:relative;
    font-size: 32px;
    font-weight: 700px;
    /* color: #00abf0; */
    color: var(--accent2);
}


.home-content h3::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.3s;
}

.home-content p{
    position:relative;
    font-size: 16px;
    margin: 20px 0 40px;
}


.home-content p::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 1.6s;
}

.home-content .btn-box{
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 345px;
    height: 50px;
    /* background: yellowgreen; */
}


.home-content .btn-box::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    /* background: #081b29; */
    background: var(--primary);
    animation: showRight 1s ease forwards;
    animation-delay: 2.5s;
    z-index:2;
}
.btn-box a{
    position: relative;
    display: inline-flex;
    width: 150px;
    height: 100%;
    /* background: #00abf0;  */
    
    

    /* border: 2px solid #00abf0; */
    border: 2px solid var(--accent1); 

    border-radius: 8px;
    font-size: 19px;
    /* color: #081b29; */
    color:var(--accent2);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    justify-content:center;
    align-items: center;
    z-index:1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover{
    /* color:#00abf0; */
    color:var(--accent2);
}


.btn-box a:nth-child(2){
    background: transparent;
    /* color: #00abf0; */
    color:var(--accent2)
}



.btn-box a:nth-child(2):hover{
    color: var(--accent2);

}

.btn-box a:nth-child(2)::before{
    /* background: #00abf0; */
    background:var(--primary);
   
}


.btn-box a::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 100%;
    /* background:red; */
    background: #081b29;
    z-index: -1;
    transition:.5s;
   
}

.btn-box a:hover::before{
    width: 100%;
}


.home-sci{
    position:absolute;
    display:flex;
    bottom: 40px;
    width: 170px;
    /* background:orangered; */
    justify-content:space-between;
}


.home-sci::before{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 2.5s;
    z-index:2;
}

.home-sci a{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width: 40px;
    height: 40px;
    background:transparent;
    /* border:2px solid #00abf0; */
    border:2px solid var(--accent1); 
    border-radius: 50%;
    /* color: #00abf0; */
    color: var(--accent2);
    text-decoration: none;
    z-index: 1;
    overflow:hidden;
    transition: .5s;
}

.home-sci a:hover{
    color:#081b29;
}


.home-sci a::before{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    /* width: 100%; */
    width: 0;
    height: 100%;
    /* background:orangered; */
    background:#00abf0;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before{
    width: 100%;
}


.home-imgHover{
    position:absolute;
    top:0;
    right: 87px;
    width: 500px;
    height: 100%;
    background:transparent;
    /* border: 2px solid red; */
    transition: 3s;
    animation: manipActiveHover .1s forwards;
    animation-delay: 4s;
    pointer-events:none;

}


.home-imgHover:hover{
    background:#081b29;
    opacity:.8;
}


.home-imgHover::after{
    content: '';
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background:red; */
    background: #081b29;
    animation: showRight 1s ease forwards;
    animation-delay: 3s;
    z-index:100;
}

/**ANIMATION**/

@keyframes showRight {
    100%{
        width: 0;
    }
}

@keyframes manipActiveHover{
    100%{
        pointer-events:auto;
    }
}

/**MEDIA QUERRIES**/

/**NAV**/

@media only screen and (max-width: 600px) {
    .header{
        background:rgba(21, 22, 21, 0.93);
        z-index: 100;
    }

     .navbar a{
       padding: 0;
     }
    
    .logo--desktop {
      font-size: 10px;
    }

    .home{
        /* background:url('rod-sidhaya.jpg') no-repeat; */
       
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 90% 120%;
        height: 100vh;
        display: flex;
        align-items: center;
        padding: 0 0;
    }

    .home-content{
        max-width: 400px;
       position: relative;
       top:30%;
       left: 50%;
       transform: translate(-50%, -50%);
    }
    
    
.home-content h1{
    /* position: relative; */
    
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}



    .home-sci{
        top: 90%;
        left: 50%;
        transform:translate(-50%, -50%);
        /* width: 50%; */

    }


  }


