/*=======footer================start==========*/
.footer_wrapper {
    background: #2a367d;
    width: 100%;
    margin-top: 150px;
    padding-bottom: 50px;
}

.Footer_topContainer {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .14);
    padding: 40px;
    box-sizing: border-box;
    margin-top: -100px;
    margin-bottom: 40px;
}

.Footer_topContainer h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1.6px;
}

.Footer_topContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Footer_topContainer ul span {
    font-weight: 500;
}

.Footer_topContainer .footer-links ul a {
    color: #858585;
    transition: 0.3s;
    display: inline-block;
    line-height: 16px;
}

.Footer_topContainer .footer-links ul a:hover {
    color: #000;
}

.Footer_imagesContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.Footer_imageBox {
    display: flex;
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
}

.Footer_imageBox img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: all .3s linear;
}

.Footer_nearbyPlacesName {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    width: 84px;
    height: 84px;
    letter-spacing: 1.04px;
    background: rgba(0, 0, 0, .1);
    text-transform: uppercase;
}

.Footer_imagesContainer .Footer_imageBox:hover img {
    transform: scale(1.2);
}

.Footer_footerLogo {
    position: relative;
    margin-bottom: 39px;
}

.Footer_footerLogo:after,
.Footer_footerLogo:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    width: 38%;
    background-color: gray;
}

.Footer_footerLogo:before {
    left: 33px;
}

.Footer_footerLogo:after {
    right: 33px;
}

.Footer_footerLogo .Footer_logoLink {
    display: block;
    text-decoration: none;
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
}

.Footer_footerLogo .Footer_logoLink img {
    width: 100%;
    filter: brightness(0) invert(1);
}


.Footer_mediaIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.Footer_mediaIcons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    background-color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.Footer_mediaIcons a:last-child {
    margin-right: 0;
}


.Footer_mediaIcons a.facebook {
    color: #3b5998;
    border: 1px solid #3b5998;
}

.Footer_mediaIcons a.instagram {
    color: #E1306C;
    border: 1px solid #E1306C;
}

.Footer_mediaIcons a.twitter {
    color: #00acee;
    border: 1px solid #00acee;
}

.Footer_mediaIcons a.linkedin {
    color: #0077B5;
    border: 1px solid #0077B5;
}

.Footer_mediaIcons a.youtube {
    color: #cc181e;
    border: 1px solid #cc181e;
}


.Footer_copyRightText {
    display: flex;
    justify-content: center;
    font-weight: 700;
    line-height: 21px;
    color: #b7b7b7;
    text-align: center;
}


@media only screen and (max-width: 600px) {

    .Footer_footerLogo:after,
    .Footer_footerLogo:before {
        width: 15%;
    }

    .footer-links {
        margin-bottom: 20px;
    }

}

/*=======footer================end==========*/