.footer-top {
    background: white;
    height: 30px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.footer {
    display: flex;
    flex-direction: row;
    padding: 75px;
    justify-content: space-between;
}

.footer-logo {
    width: 300px;
}

.footer-logo-mob {
    width: 200px;
}

.footer-left{
	min-width: 260px;
}
.footer-left-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-a-link {
    padding-bottom: 1px;
    border-bottom: 1px solid;
    height: fit-content;
}

.footer-copyright-txt {
    font-weight: 200;
}

.footer-right {
    width: 1200px;
    display: flex;
    justify-content: flex-end;
}

.footer-nav-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    padding: 0px 50px;
}

.footer-nav-link {
    padding-top: 10px;
}

footer a:hover {
    text-decoration: none;
    color: white;
}

@media only screen and (max-width: 1025px) {
}


@media only screen and (max-width: 1025px) {
	.footer {
	    flex-direction: column-reverse !important;
	    justify-content: space-between !important;
	    align-items: center !important;
	}

	.footer-left{
		text-align: center;
	}

	.footer-right {
	    width: 100% !important;
	    flex-direction: column;
	    align-items: center;
	}

	.footer-nav-container {
	    flex-direction: column !important;
	    flex-wrap: wrap;
	    text-align: center;
	    align-items: center;
	}

	.footer-nav-column{
	    padding: 0px !important;
	    margin-top: 25px !important;
	}

	.footer-left-content {
	    flex-direction: column !important;
	}

	.footer-left-content button{
		margin-bottom: 25px;
	}
}