.footer {
    width: 100%;
    height: 200px;
    background-color: #343535;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__container {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.footer__left {
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.footer__logo {
    width: 162px;
    height: 73px;
}

.footer__logo img {
    width: 162px;
    height: 73px;
}

.footer__mail {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
}

.footer__mail:hover:after {
    width: 100%;
    height: 1px;
    background-color: #f5f4f4;
    content: "";
    left: 0;
    bottom: -2px;
    position: absolute;
}

.footer__mail svg {
    fill: #f5f4f4;
}

.footer__mail p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #f5f4f4;
}

.footer__center {
    width: 100%;
    max-width: 548px;
}

.footer__right {
    width: 100%;
    max-width: 241px;
}

.footer__sub-text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__sub-text p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: #f5f4f4;
}

.footer-menu {
    width: 100%;
}

.footer-menu__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-menu__item a {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
  /* identical to box height */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #f5f4f4;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
    transition: all 0.2s cubic-bezier(0.25, 1.7, 0.35, 0.8);
}

.footer-menu__item a:hover {
    text-decoration: underline;
}

.btn-up {
    width: 53px;
    height: 53px;
    background: rgb(118, 123, 223);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    right: 250px;
    bottom: 176px;
    cursor: pointer;
}

.btn-up svg {
    fill: rgb(255, 255, 255);
}

.btn-up:hover {
    width: 55px;
    height: 55px;
    right: 249px;
    bottom: 176px;
}