/* Container styles */
.container {
    padding-top: 50px;
    padding-right: 50px;
    padding-left: 50px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.container1 {
    background-color: #262626;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    width: 46%;
}

/* Header styles */
.header1 {
    border-left: 4px solid lime;
    padding-left: 10px;
    margin-bottom: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}

.header2 {
    border-left: 4px solid #2a1ec5;
    padding-left: 10px;
    margin-bottom: 20px;
    height: 40px;
    display: flex;
    align-items: center;
}

/* Content styles */
.content {
    margin-bottom: 20px;
}

.content div {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem .6rem;
    margin-bottom: .3rem;
}

.content div p {
    white-space: nowrap;
}

.content div p:first-child {
    font-weight: 600;
}

/* Footer styles */
.footer1 {
    position: absolute;
    bottom: 0;
    right: .5rem;
}

.footer1 img {
    display: inline-block;
    width: 50px;
    height: 50px;
}

/* Main body styles */
#mainBody p {
    color: #eee;
    font-family: "Poppins";
}

/* Google Maps wrapper styles */
.google-maps-wapper {
    background-color: #262626;
    width: 90%;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.google-maps-wapper .google-maps {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    height: 400px;
    border-radius: 5px;
}

.google-maps-wapper .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Responsive styles for small screens */
@media only screen and (max-width: 600px) {
    .container {
        flex-direction: column;
    }
    
    .container1 {
        width: -moz-fit-content !important;
        width: fit-content !important;
    }
}
