footer {
    width: 100%;
    display: flex;
    padding: 5% 0;
    flex-direction: column;
    align-items: center;
}

#footer-cnt {
    width: 50%;
}

#footer-cnt .nav-menu-cnt {
    width: 100%;
    justify-content: center;
}


.menu-footer-menu-container {
    width: 100%;
    margin-bottom: 5%;
}

.menu-footer-menu-container ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.menu-footer-menu-container ul li {
    display: inline-flex;
}

.menu-footer-menu-container ul li:first-child {
    padding-right: 3%;
}

.menu-footer-menu-container ul li:not(:first-child):not(:last-child) {
    padding: 0 3%;
}

.menu-footer-menu-container ul li:last-child {
    padding-left: 3%;
}

.current-menu-item a {
    font-weight: bold;
}

#footer-links {
    width: 100%;
    display: flex;
    flex-direction: row;
}

#footer-links div {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#footer-links P {
    margin: 0;
}

#footer-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5%;
}

#footer-links img {
    width: 100%;
}

#footer-link-1 {
    justify-content: flex-end;
    border-right: solid 0.05vw rgba(255, 255, 255, 0.562);
}

#footer-links #footer-link-1 > * {
    margin-right: 5%;
}

#footer-link-2 {
    justify-content: start;
    border-left: solid 0.05vw rgba(255, 255, 255, 0.562);
}

#footer-links #footer-link-2 > * {
    margin-left: 5%;
}

#main-typeForm-cnt {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0; 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background-color: #161e3569;
}

#typeForm-cnt {
    width: 80%;
    height: 80%;
    position: relative;
}

#typeForm-cnt > div, #typeForm-cnt > div > div {
    height: 100% !important;
}

#request-close-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
}

#request-close-btn::before, #request-close-btn::after {
    position: absolute;
    content: ' ';
    height: 23px;
    width: 2px;
    background-color: black;
    border-radius: 25px;
}

#request-close-btn::before {
    transform: rotate(45deg);
}

#request-close-btn::after {
    transform: rotate(-45deg);
}

#main-typeForm-cnt .tf-v1-widget-fullscreen {
    position: relative !important;
}

#main-typeForm-cnt .tf-v1-widget-fullscreen .tf-v1-widget-close {
    display: none;
}

@media (max-width: 727px) {

    #footer-cnt {
        width: 90%;
    }

    #footer-links {
        flex-direction: column;
    }

    #footer-links div {
        width: 100%;
    }

    #footer-link-1, #footer-link-2 {
        border: none;
        justify-content: center;
    }

    #footer-link-2 > * {
        padding-left: 0;
        padding-right: 5%;
    }
}