:root {
    --night: #0f1334;
    --blue:rgb(91 100 220);
    --blue-electric: rgb(124, 133, 254);
    --grey-blue:#323262;
  }

body{
    background-color: var(--night) !important;
}
.navbar-toggler:focus {
    box-shadow: none !important; 
}

@keyframes navbar {
    0%{
        transform: translateY(-100px);
        opacity: 0 !important;
    }
    50%{
        transform: translateY(3px);
    }
    65%{
        transform: translateY(-3px);
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes popUp {
    0%{
        transform: scale(0.9);
        opacity: 0;
    }
    40%{
        transform: scale(0.9);
        opacity: 0;
    }
    60%{
        transform: scale(1.15);
        
    }
    100%{
        transform: scale(1);
        
    }
}

.navbar-custom{
    position: fixed;
    z-index: 5;
    top : 0px;
    width : 100%;
    padding: 10px;
    animation: navbar 1s;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
}


@media screen and (max-width: 600px) {
    .name{
        font-size: 13px !important;
        color : white !important;
        margin-left: 2px;
    }   
}

@media screen and (min-width: 601px) {
    .name{
        font-size: 1.5rem !important;
        color : white !important;
        margin-left: 10px;
    }   
}

.navbar{
    width:98%;
    border-radius: 15px;
    /* background-color: #f9f9f9 !important; */
    background: var(--blue);
}
.nav-link{
    color : white !important;
    margin-inline: 15px;
}


.navbar-collapse{
    justify-content:flex-end;
}


.t{
    border : red 1px solid;
}

.section1{
    margin-top : 12vh;
}



@keyframes leftpart {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    
    30%{
        opacity: 0.3;
    }

    100%{
        opacity: 1;
    }
}

@keyframes bounce-in {
    0% {
      opacity: 0;
      transform: scale(.6);
    }
    50% {
      opacity: 1;
      transform: scale(1.04);
    }
    70% { transform: scale(.9); }
    100% { transform: scale(1); }
}


.rightpart{
    padding: 30px !important;
    animation: leftpart 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.Pp{

    display: flex;
    justify-content: center;
    align-items: center;
}
.Pp img{
    border-radius: 300px;
    object-fit: cover;
    width: 300px;
    height: 300px;
    animation: popUp 1s;
    transition: .4s;
}



.Pp img:hover{
    transform: scale(1.03);
}


.tag{
    font-size: 24px;
    color : var(--blue-electric);
}

.title{
    margin-top: 8px;
    font-size: 2rem;
    line-height: normal;
    color: rgb(255, 255, 255);
}

.description{
    text-align: justify;
    color: rgb(201, 199, 199);
    font-size: 20px;
    margin-top : 20px;
}

.button{
    display: flex;
}

.button .button{
    font-size: 18px;
    padding: 10px;
    margin : 5px;
    margin-top: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    background-color: var(--blue);
    border-radius: 8px;
    transition: .2s;
}

.button .button:hover{
    background: var(--blue-electric);
    transform: scale(1.04);
}

img{
    width: 70%;
    animation: bounce-in 1s;
}

.img-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

 /* section 2 */

@keyframes toup {
    0%{
        opacity: 0;
        transform: translateY(200px);
    }

}

.section2{
    animation: toup 0.9s;
    padding-top: 50px;
    margin-top: 8vw;
    background-color: #1166dd;
}

.section2 p{
    color : rgb(0, 0, 0);
    background-color: var(--blue);
    padding: 10px !important;
    border-radius: 10px;
}


.wave {
    --size: 50px;
    --R: calc(var(--size)*1.28);
    padding-top: 10vh;
    -webkit-mask:
      radial-gradient(var(--R) at 50% calc(1.8*var(--size)),#000 99%,#0000 101%) 
        calc(50% - 2*var(--size)) 0/calc(4*var(--size)) 100%,
      radial-gradient(var(--R) at 50% calc(-.8*var(--size)),#0000 99%,#000 101%) 
        50% var(--size)/calc(4*var(--size)) 100% repeat-x;
    mask:
      radial-gradient(var(--R) at 50% calc(1.8*var(--size)),#000 99%,#0000 101%) 
        calc(50% - 2*var(--size)) 0/calc(4*var(--size)) 100%,
      radial-gradient(var(--R) at 50% calc(-.8*var(--size)),#0000 99%,#000 101%) 
        50% var(--size)/calc(4*var(--size)) 100% repeat-x;
    background: linear-gradient(to bottom,var(--blue),rgba(0, 0, 255, 0));
}

.description2{
    padding : 60px;
    padding-inline:7vw ;
    text-align: justify;
    font-size : 26px;
}
/* section 3 */
.section3{
    animation : toup 1s;
    color : white;
}

.col-custom{
    padding: 4vw 4vw !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

.col-custom h2{
    text-align: center;
}

li{
    text-align: left;
    color: white;
    font-size: 20px;
}

.col p{
    margin-top: 15px;
}

.description3{
    padding-inline:5vw;
    text-align: justify;
}

/* footer */
.footer{
    margin-top: 50px;
    display: flex;
    align-items: center;
    background-color: var(--grey-blue);
    padding: 40px;
    color: white;
    text-align: center;
}

.footer-text-l{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-l a{
    margin: 10px;
}

.footer-text-r{
    /* border: red 1px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-r a{
    margin: 10px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}