

.map {
    position: relative;
}

.map__Content {
    background-color: #23335e;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25%;
    padding: 25px;
    border-radius: 30px;
    z-index: 30;
    max-height: 90%;
}

.contactpage .contact__icons {
    gap: 1rem;
}

.contactpage .contact__icons .contact__icon{
    position: relative;
    border-radius: 50%;
    border: 1px solid #eee;
    padding: 40px;
    height: 70px;
    width: 70px;
    display: inline-block;
}

.contactpage .contact__icons .contact__icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color:#53af32;
    font-size: 40px;
}

.contactpage .contact__icons .contact__icon:hover {
    background-color: #53af32;
    border-color: #53af32;
}

.contactpage .contact__icons .contact__icon:hover i {
    color:white;
}

@media screen and (max-width: 320px){
    .contactpage .contact__icons .contact__icon {
        padding: 25px;
    }
}

@media screen and (max-width: 767.89px){
    .map__Content{
        position: relative;
        width: 90%;
        bottom: 20px;
        left: 5%;
        transform: none;
    }

    .contactpage .contact__icons{
        text-align: center;
    }

    .contactpage .contact__icons .contact__icon i{
        font-size: 35px;
    }

    .contactpage .contact__icons .contact__icon{
        padding: 30px;
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 991.98px) {
    .map__Content{
        width: 35%;
    }
}

