#team{
    display: block;
    width: 100%;
    height: 100%;
}

.map-container{
    height: 450px;
}

.map{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
}

.map iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.footer-container{
    background-color: #1D2088;
}

.footer-content{
    max-width: var(--website-content-max-width);
    margin: auto;
    padding: 50px 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-items: center;
    align-items:flex-start;
    position: relative;
}

/* .footer-content::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: 150px;
    content: '';
    background-color: #FFFFFF;

} */
#footer .top-icon{
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translate(-50%,-50%);
}

#footer .top-icon .icon{
    cursor: pointer;
    display: inline-block;
    margin-bottom: 5px;

}

#footer .top-icon .icon img{
    width: 22px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#footer .top-icon .line{
    margin: auto;
    width: 1px;
    height: 150px;
    background-color: #FFFFFF;
}

.footer-content .left-container, .footer-content .right-container{
    width: 50%;
}
.footer-content .left-container{
    padding-right: 100px;
    box-sizing: border-box;
    position: relative;
}
.footer-content .right-container{
    /* padding-top: 30px; */
    padding-left: 100px;
    box-sizing: border-box;
}
.footer-container .contact-title{
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 300;
    margin: 10px 0 30px;
}
#footer .top-icon-box{
display: none;
}
.social-media-box{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.social-media-box a{display: inline-block; margin-right: 10px;}

.copyright{
    padding: 20px 0;
    font-size: 16px;
    color: #FFFFFF;
    margin: auto;
    text-align: center;
}
.copyright p{
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:1100px) {
    .copyright{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width:767px) {
    .copyright{
        display: block;
        flex-direction: column;
    }
}
@media screen and (max-width:550px) {
    .copyright p{
        display: flex;
        flex-direction: column;
    }
}
#footer .subtitle{
    color: #FFFFFF;
    font-size: 22px;
    padding-bottom: 10px;
    text-decoration: underline;

}
#footer .address{
    width: 100% !important;
    font-size: 18px;
    color: #FFFFFF;
}

#footer .address p {
    margin: 5px 0;
    font-size: 16px;
    color: #FFFFFF;
}

#footer div a{
    color: #FFFFFF;
    text-decoration: none;
}

#footer .mb{
    margin-bottom: 10px;
}
@media screen and (max-width:1199px) {
    #footer .footer-content .left-container{
        padding-right: 60px;
    }
    #footer .footer-content .right-container{
        padding-left: 60px;
    }
}

@media screen and (max-width:767px) {
    #footer .footer-content{
        flex-direction: column;
    }
    #footer .footer-content .left-container{
        padding-right: 0px;
        width: 100%;
    }
    #footer .footer-content .right-container{
        padding-left: 0px;
        padding-top: 60px;
        width: 100%;
    }
    .top-icon{
        display: none;
    }
    .top-icon-mobile{
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translate(-50%,-50%);
        display: block;
    }
    .top-icon-mobile .icon img{
        width: 22px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .top-icon-mobile{
        width: calc(100% - 0px);
        height: 1px;
        background-color: #FFFFFF;
    }
    .top-icon-box{
        display: flex !important;
        cursor: pointer;
        position: fixed;
        z-index: 10;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
        background-color: #000000;
        justify-content: center;
        align-items: center;
    }
    .top-icon-box .icon{
        width: 22px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .top-icon-box .icon img{
    }
}
.map-icon{
    max-width: 150px;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
}
.map-icon:hover img{

    transform: scale(1.1);
}
.map-icon img{
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: auto;
}
.right-container .contact-box{
    display: flex;
    gap: 40px;
}
.google-map .google-map-text{
    margin-top: 5px;
    text-align: center;
    color: #FFFFFF;
}
.right-container .contact-box .google-map{
    width: 150px;
}
.address-box{
    /* width: calc(100% - 150px); */
    margin-top: 25px;
    display: flex;
    gap: 5px;
}
.content-line{
    position: relative;
    padding-bottom: 3px;
    overflow: hidden;
}
.content-line::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}
.content-line:hover::after{
    left: 0;
}