:root{
    --primary-color : #000563;
    --secondary-color : #0C0F36;
    --accent-color : #3B2A98;
    --dot-bg: #0c0f36;
    --dot-color: #ffffff55;
    --dot-size: 4px;
    --dot-space: 20px;
}
button{
    width: fit-content;
    padding: 10px 50px;
    background: var(--accent-color);
    border-radius: 6px;
}
.btn-2{
    background: var(--primary-color);
}
nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 15px 30px;
    box-shadow: 0px 5px 20px #00000041;
    img{
        width: fit-content;
        height: 50px;
    }
    .a1{
        display: flex;
        align-items: center;
        gap: 30px;
        .buttons{
            display: flex;
            align-items: center;
        }
    }
    button{
    padding: 8px 35px;
    color:#FFFFFF;
    transition: all 0.3s ease;
    }
    button:hover{
        opacity: 0.8;
    }
    .btn-1{
        background: var(--accent-color);
        border-radius: 60px 0 0 15px;
    }
    .btn-2{
        background: var(--primary-color);
        border-radius: 0 15px 60px 0;
    }
}

#drawer-right-example{
    ul{
        width: 100%;
        margin-top: 10vh;
        li{
            cursor: pointer;
            border-bottom: 1px solid #ffffff65;   
            transition: all 0.4s ease;
            padding: 20px 10px;
        }
        li:hover{
            background: #ffffff0d;
        }
        .li-last{
            border-bottom: none;
        }
        .actions{
            display: none;
            align-items: center;
            gap:10px;
            justify-content: center;
            margin-top: 30px;
            
        }
        button{
            width: 100%;
        }
    }
}
footer{
    background: var(--secondary-color);
    color: #FFFFFF;
    padding: 5vw;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    .shape-1{
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 300px;
        height: 300px;
        border: 50px solid #22223571;
        border-radius: 100%;
    }
    .shape-2{
        user-select:contain;
        position: absolute;
        right: -100px;
        top: -100px;
        width: 300px;
        height: 300px;
        background:
		linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
		linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
		var(--dot-color);
        opacity: 0.4;
    }
    .a1{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        .b1{
            width: 100%;
            max-width: 400px;
            img{
                width: 150px;
            }
            p{
                padding-top: 20px;
                opacity: 0.8;
                width: 100%;
                text-align: justify;
            }
        }
        .b2{
            padding: 60px 0;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            flex-wrap: wrap;
            gap:30px;
            width: 50%;
            .c1 , .c2{
                width: 150px;
                h3{
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 10px;
                }
                ul li a{
                    color: #ffffffab;
                    transition: all 0.3s ease;
                }
                ul li a:hover{
                    color: var(--accent-color);
                }
            }
        }
    }
    .a2{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4vw 0;
        color: #ffffffab;
        a{
            transition: all 0.3s ease;
        }
        a:hover{
            color: var(--accent-color);
        }
    }
}
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width:700px) {
    nav .a1 .buttons{
        display: none;
    }
    #drawer-right-example ul .actions{
        display: flex;
    }
}