.main-container{
    margin: 0 auto;
	overflow: hidden;
    max-width: 100%;
    padding: 87px 0px;
    width: 100%;
    height: 100%;
    background-color: #CBD6D4;
}

.logo img{
    /* height: 100%; */
    max-width: 100%;
    height: auto;
    padding-bottom: 20px;
}
.rainbow img{
    /* height: 100%; */
    max-width: 100%;
    height: auto;
    padding-bottom: 20px;
}
.address-section h6{
    font-weight: 600;
    padding-bottom: 20px;
    color: #415DAD;
}
.option-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.content{
    background-color: transparent;
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    background-image: linear-gradient(180deg, #FCFEFF 0%, #ABC1BD 100%);
    border-radius: 35px;
    padding: 50px;
    margin: 30px;
}
.content a{
    text-decoration: none;
    color: #000;
}
@keyframes pulse-grow {
    to {
        transform: scale(1.1);
    }
}

.pulse-hover:hover {
    animation-name: pulse-grow;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    display: inline-block; /* ensures transform works properly */
}
@media (max-width: 767px) {
    .option-section {
        flex-direction: column !important;
    }
}
