header {
    background-color: #003366;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 15px;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.header-container .logo1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 1rem;
}


.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}


.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}


.carousel-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    display: block;
    margin: auto;
}


.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: rgb(22, 22, 21);
    background-color: rgba(167, 158, 158, 0.5);
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    box-sizing: border-box;
    border-radius: 30px;
    word-wrap: break-word;
}


.transfer-links {
    text-align: center;
    margin-top: 10px;
}

.transfer-links img {
    width: 50px;
    height: auto;
    border-radius: 30px;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}