.wrapper {
    padding: 20px 60px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

h1 {
    color: rgb(1, 1, 49);
    margin: 0%;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
    animation: scaleUp 1.5s ease-in-out;
    /* animation-delay: 0.5s; */
}
@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
p {
    font-weight: 500;

}

.row-1 {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0px 20px;
}
.row-2{
    padding: 0px 30px;
    box-sizing: border-box;
    width: 100%;
}
.contents{
    margin: 40px 0px;
}
h2{
    color: rgb(158, 0, 0);
    margin: 0%;
    font-size: 21px;
}
.content{
    padding-left:  20px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;

}
.content p{
    margin: 0%;
}
.row-3 {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.row-3 p{
    color: rgb(0, 0, 110);
}
.button-download{
    background-color: black;
    text-decoration: none  ;
    color: white;
    padding:10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}
.button-download:hover{
    background-color: #0056b3;
    transform: scale(1.02);
}
@media(max-width:550px){
    .wrapper{
        padding: 20px;
    }
    .contents{
        margin: 20px 0px;
    }

}
.animate {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate2 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate2.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-h3 {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-h3.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-z {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-z.visible {
    opacity: 1;
    transform: scale(1)
}

/* Individual list items */
.animated-list1 p {
    opacity: 0;
    /* Initially hidden */
    animation: fadeInUp 0.8s ease-in-out;
    /* Animation duration and easing */
    animation-fill-mode: forwards;
    /* Retain the final state */
}

/* Sequential delay for list items */
.animated-list1 p:nth-child(1) {
    animation-delay: 0.3s;
    /* Starts animation after 0.2s */
}

.animated-list1 p:nth-child(2) {
    animation-delay: 0.5s;
    /* Starts after 0.4s */
}

.animated-list1 p:nth-child(3) {
    animation-delay: 0.8s;
    /* Starts after 0.6s */
}

.animated-list1 p:nth-child(4) {
    animation-delay: 1.1s;
    /* Starts after 0.8s */
}

.animated-list1 p:nth-child(5) {
    animation-delay: 1.4s;
    /* Starts after 1s */
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* Starts slightly below */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Moves to its original position */
    }
}