html, body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    
}

.main_container {
    height: 100dvh;
    background-color: #001D5F;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    gap: 0;
    padding-top: 10dvh; 
}

.l-container {
    display: flex;
    flex-direction: column;
    width: 50dvh;
    height: 80%; 
    border: 3px solid white; 
    box-sizing: border-box; 
    border-radius: 30px;
    position: relative;
    overflow: hidden; 
}

.r-container {
    display: flex;
    flex-direction: column;
    width: 45%; 
    height: 80%; 
    position: relative;
    align-items: center; 
    gap: 5dvh;
    justify-content: center;
}


.head {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    width: 100%;
    padding: min(2em, 8%);
    box-sizing: border-box;
}

.head img {
    max-width: 80px; 
    height: auto;
    object-fit: contain; 
}

.map img{
    padding-top: 1dvh;
    width: 100%;
    height: auto;
    max-height: 600px;
}

.text1 {
    position: absolute;
    top: 19%; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 210; 
    width: 70%;
}

.text1 img {
    max-width: 100%;
    width: 120%; 
    height: auto;
}
.mid {
    position: absolute;
    top: 26dvh; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mid1 img {
    height: auto;
    width: 140px;
    max-width: 100%; 
}

.mid2 img{
    height: auto;
    width: 100px;
    max-width: 100%; 
    
}

.text2{
    position: absolute;
    bottom: 6%; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 210; 
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text2  img{
    max-width: 200px;
    width: 100%;
    height: auto;
}

.r-1 img{
    max-width: 380px; 
    height: auto;
    object-fit: contain; 
}

.r-2 img {
    max-width: 230px;
    height: auto;
    object-fit: contain;
}

.button {
    display: flex;
    justify-content: center;
    z-index: 210;
}

.btn {
    padding: 10px 75px;
    background-color: #06aaee;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn:hover {
    background-color: #0690cb;
    transform: scale(1.05);
}

.btn:active {
    background-color: #046087;
    transform: scale(0.95);
}

.reg {
    display: none;
}

@media (max-width: 768px) {
    .main_container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; 
        gap: 40px; 
        min-height: 100dvh;
        padding-top: 0; 
    }

    .r-container {
        order: 1;
        width: 80%;
        padding-top: 10dvh;
        height: auto; 
        display: flex;
        justify-content: center;
    }

    .r-1 {
        display: flex;
        justify-content: center;
        align-items: center; 
        margin: 0;
        padding: 0;
    }

    .r-1 img {
        max-width: 250px;
        max-height: 40dvh;
        height: auto;
        object-fit: contain;
        margin: 0; 
        padding: 0;
    }

    .l-container {
        order: 2;
        width: 80%;
        height: auto;
        border-radius: 20px;
        margin: 0;
        padding: 0;
    }

    .reg {
        order: 3;
        display: flex;
        justify-content: center;
        margin-top: 2dvh;
    }

    .r-2, .button {
        display: none;
    }

    .btn {
        font-size: 22px;
        padding: 15px 80px;
        margin-bottom: 5dvh;
    }

    .mid {
        top: 18dvh;
    }
}

