@font-face {
    font-family: "OpenSans-R";
    src: url("../fonts/OpenSans-Regular.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "PlayfairDisplay-B";
    src: url("../fonts/PlayfairDisplay-Bold.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "PlayfairDisplay-R";
    src: url("../fonts/PlayfairDisplay-Regular.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway-B";
    src: url("../fonts/Raleway-Bold.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway-E";
    src: url("../fonts/Raleway-ExtraBold.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway-L";
    src: url("../fonts/Raleway-Light.ttf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway-R";
    src: url("../fonts/Raleway-Regular.ttf") format("opentype");
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    background: #5c3242;
}

.bt-wht {
    background: #fff;
}

* {
    box-sizing: border-box;
}

a,
button,
path {
    transition: 0.4s;
    outline: none;
    border: none;
    border-radius: none;
    cursor: pointer;
    text-decoration: none;
}

#header {
    position: fixed;
    padding: 1.5vw 12vw;
    background: transparent;
    width: 100%;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 0;
    top: 0;
    z-index: 100;
}

#header.moved .leveler {
    display: none;
}

#header .logo_part {
    transition: 0.4s;
    width: 16%;
}

#header .logo_part img {
    width: 100%;
}

.links_part a {
    color: #fff;
    margin: 0 1.2vw;
    font-family: "PlayfairDisplay-R";
    font-size: 1.1vw;
}

.links_part a.active,
.links_part a:hover {
    opacity: 0.6;
}


#header.moved {
    background: #5c3242;
    padding: 0.5vw 12vw;
}

#header.moved .logo_part {
    width: 15%;
}

.btn {
    background: #fff;
    padding: 1vw 1.4vw;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    align-items: center;
    z-index: 1;
    border-radius: 2vw;
    font-size: 1.7vw;
    color: #784858;
    transition: background-color .3s cubic-bezier(.4, 0, 0, 1), color .3s cubic-bezier(.4, 0, 0, 1);
    width: fit-content;
    position: relative;
    font-family: "Raleway-E";
}

.btn svg {
    width: 1.3vw;
    height: auto;
    margin-right: 0.3vw;
}

.btn:hover,
.btn.invert {
    background: #784858;
    color: #fff;
}

.btn:hover path,
.btn.invert path {
    fill: #fff;
}

.btn.invert:hover {
    color: #784858;
    background: #fff;
}

.btn.invert:hover path {
    fill: #784858;
}

.hero .btn {
    margin-top: 3.5vw;
    float: right;
}

.find_us {
    padding: 3vw 0 4vw;
    background: url('../images/back_location.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

.find_us .title {
    width: 14%;
    text-align: right;
    font-family: "PlayfairDisplay-R";
    color: #000;
    font-size: 2.7vw;
    line-height: 1.1;
}

.find_us .text_part {
    margin: 4vw 4vw 0 10vw;
    font-family: "PlayfairDisplay-B";
}

.find_us .h1 {
    color: #93556a;
    font-size: 1.55vw;
    margin-top: 1vw;
}

.find_us .h1:first-child {
    margin-top: 0;
}

.find_us .h3 {
    font-size: 1.2vw;
    margin-top: 0.2vw;
    line-height: 1.2;
}

.find_us .icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5vw;
    width: 45%;
}

.find_us svg {
    width: 1.7vw;
    height: auto;
}

.find_us .icons a:hover path {
    fill: #93556a;
}

.find_us .map {
    width: 31%;
    margin-top: 4vw;
    border: 0.5vw solid #6d3c4f;
    border-radius: 0.4vw;
    cursor: pointer;
    position: relative;
    background: rgb(219, 212, 212);
    height: 21vw;
}

.map iframe {
    height: 100%;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map p {
    position: absolute;
    left: 50%;
    font-family: "Raleway-B";
    top: 50%;
    transform: translate(-50%, -50%);
    color: #974967;
    font-size: 1.5vw;
    margin: 0;
}

.contact__phone {
    text-decoration: none;
    outline: none;
    color: inherit;
}

footer {
    display: flex;
    padding: 5.5vw 0;
    color: #fff;
    justify-content: center;
    background: #6d3c4f;
    align-items: flex-start;
}

footer .h1 {
    font-family: "Raleway-B";
    font-size: 1.4vw;
    margin-bottom: 0.9vw;
}

footer>div {
    display: flex;
    flex-direction: column;
    margin: 0 1.5vw;
}

footer a {
    font-family: "Raleway-R";
    width: max-content;
    width: fit-content;
    font-size: 1.1vw;
    position: relative;
    color: rgba(255, 255, 255, 0.89);
}

footer a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.4vw;
    border-radius: 50%;
    height: 0.4vw;
    background: #fff;
    transform: translate(250%, -50%);
    opacity: 0;
    transition: 0.4s;
}

footer a:hover {
    color: #fff;
}

footer a:hover::after {
    opacity: 1;
}

footer .logo {
    width: 11%;
    margin-right: 3vw;
}

footer .logo img {
    width: 100%;
}

.quick_links a {
    margin: 0.3vw 0;
}

.pract_area a {
    margin: 0.15vw 0;
}

footer .title {
    font-size: 0.95vw;
    width: 100%;
    font-family: "Raleway-R";
    margin-bottom: 2vw;
    color: rgba(255, 255, 255, 0.89);
}

footer .newsletter {
    width: 21%;
}

footer form {
    display: flex;
    justify-content: center;
}

footer form input,
footer form button {
    margin: 0;
    border: none;
    outline: none;
    height: 3.5vw;
}

footer form input {
    padding-left: 1.5vw;
    font-family: "OpenSans-R";
    font-size: 1vw;
    padding-right: 1.5vw;
    border-radius: 2vw 0 0 2vw;
}

footer form input::placeholder {
    font-style: italic;
    color: #974967;
}

footer form button {
    font-size: 1.7vw;
    font-family: "Raleway-E";
    padding: 0 1.7vw 0 1vw !important;
    border-radius: 0 2vw 2vw 0 !important;
}

footer form button::before {
    background: #5c3242 !important;
}

.under_footer {
    font-family: "Raleway-R";
    background: #5c3242;
    padding: 1.5vw 0;
    text-align: center;
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.89);
}

#ScrollToTop {
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    background-color: #693147;
    width: 4.5vw;
    border: none;
    outline: none;
    height: 4.5vw;
    text-align: center;
    border-radius: 0.4vw;
    position: fixed;
    bottom: 2vw;
    right: 2vw;
    z-index: 8;
}

#ScrollToTop:after,
#ScrollToTop:before {
    content: "";
    position: absolute;
    height: 0.2vw;
    width: 2vw;
    background-color: #fff;
    transform: rotate(-40deg);
    bottom: 2.1vw;
    left: 0.51vw;
}

#ScrollToTop:before {
    right: 0.51vw;
    left: unset;
    transform: rotate(40deg);
}

#ScrollToTop:hover {
    cursor: pointer;
    background-color: #491e2f;
}

#ScrollToTop:active {
    background-color: #000;
}

.show_btn_scroll {
    opacity: 1 !important;
    visibility: visible !important;
}


#header .menu {
    display: none;
}

@media(min-width: 2000px) {
    #header {
        padding: 30px 0;
        width: 100%;
        justify-content: center;
    }

    #header .logo_part {
        width: 230px;
        margin-right: 297px;
    }

    .links_part a {
        margin: 0 24px;
        font-size: 22px;
    }

    #header.moved {
        padding: 10px 0;
    }

    #header.moved .logo_part {
        width: 220px;
    }
    
    .btn {
        padding: 20px 28px;
        border-radius: 40px;
        font-size: 34px;
    }

    .btn svg {
        width: 26px;
        margin-right: 6px;
    }

    .hero .btn {
        margin-top: 70px;
    }

    .find_us {
        padding: 60px 0 80px;
    }

    .find_us .title {
        width: 185px;
        font-size: 54px;
    }

    .find_us .text_part {
        margin: 80px 80px 0 200px;
    }

    .find_us .h1 {
        font-size: 31px;
        margin-top: 20px;
    }

    .find_us .h3 {
        font-size: 24px;
        margin-top: 4px;
    }

    .find_us .icons {
        margin-top: 10px;
    }

    .find_us svg {
        width: 34px;
    }

    .find_us .map {
        width: 620px;
        margin-top: 80px;
        border: 10px solid #6d3c4f;
        border-radius: 8px;
        height: 420px;
    }

    .map p {
        font-size: 30px;
    }

    footer {
        padding: 110px 0;
    }

    footer .h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    footer>div {
        margin: 0 30px;
    }

    footer a {
        font-size: 22px;
    }

    footer a::after {
        width: 8px;
        height: 8px;
    }

    footer .logo {
        width: 220px;
        margin-right: 60px;
    }

    .quick_links a {
        margin: 6px 0;
    }

    .pract_area a {
        margin: 3px 0;
    }

    footer .title {
        font-size: 19px;
        margin-bottom: 40px;
    }

    footer .newsletter {
        width: 420px;
    }

    footer form input,
    footer form button {
        height: 70px;
    }

    footer form input {
        padding-left: 30px;
        font-size: 20px;
        padding-right: 30px;
        border-radius: 40px 0 0 40px;
    }

    footer form button {
        font-size: 34px;
        padding: 0 34px 0 20px !important;
        border-radius: 0 40px 40px 0 !important;
    }

    .under_footer {
        padding: 30px 0;
        font-size: 18px;
    }

    #ScrollToTop {
        width: 90px;
        height: 90px;
        border-radius: 8px;
        bottom: 40px;
        right: 40px;
    }

    #ScrollToTop:after,
    #ScrollToTop:before {
        height: 4px;
        width: 40px;
        bottom: 42px;
        left: 12px;
    }

    #ScrollToTop:before {
        right: 12px;
        left: unset;
    }
}

@media(max-width: 1024px) {
    #header {
        width: 100%;
        justify-content: space-between;
        height: 80px;
    }

    #header.moved + section {
        margin-top: 80px;
    }

    #header .logo_part {
        width: 150px;
    }

    #header .links_part {
        box-sizing: border-box;
        position: absolute;
        height: 100vh;
        width: 40vw;
        display: block;
        top: 100%;
        right: 0;
        transform: translateX(100%);

        background: #5c3242;

        padding-top: 1vw;
        padding-right: 5vw;

        display: flex;
        flex-direction: column;
        align-items: flex-end;

        transition: .4s;
        overflow: scroll;
    }

    #header .links_part.active {
        transform: none;
    }
    #header .links_part a {
        display: block;
        margin-top: 2vw;
        font-size: 2.6vw;
    }

    #header .menu {
        display: block;
        font-family: "BwModelica-R";
        color: #2B2A29;
        box-sizing: border-box;
        width: 4vw;
        height: 2vw;
        position: relative;
        cursor: pointer;
    }

    #header .overflow {
        display: none;
    }

    .menu span {
        position: absolute;
        width: 100%;
        overflow: hidden;
        left: 0;
        background: #fff;
        transition: 0.4s;
        height: 0.2vw;
        border-radius: 0.1vw;
    }

    .menu span:nth-child(1) {
        top: 0;
    }

    .menu span:nth-child(2) {
        top: 50%;
    }

    .menu span:nth-child(3) {
        top: 100%;
    }

    .menu span::after {
        content: '';
        width: 40%;
        transition: 0.3s;
        top: 0;
        position: absolute;
        background: #fff;
        left: -40%;
        height: 100%;
    }

    .menu span:nth-child(2)::after {
        transition-delay: 0.075s;
    }

    .menu span:nth-child(3)::after {
        transition-delay: 0.15s;
    }

    .menu:hover span::after {
        left: 100%;
    }

    .menu.active span {
        width: 70%;
    }

    .menu.active span:nth-child(1) {
        top: 41%;
        left: 15%;
        transform: rotate(135deg) translateY(-50%);
    }

    .menu.active span:nth-child(2) {
        top: 39%;
        left: 15%;
        transform: rotate(-135deg) translateY(-50%);
    }

    .menu.active span:nth-child(3) {
        opacity: 0;
    }

    .overflow.active {
        opacity: 1;
        visibility: visible;
    }

    .overflow {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #00000094;
        transition: .4s;
        opacity: 0;
        visibility: hidden;
        z-index: 5;
    }

    .links_part a {
        margin: 0 6px;
        font-size: 1.7vw;
    }

    #header.moved {
        padding: 10px 5vw;
        box-sizing: border-box;
    }

    #header.moved .logo_part {
        width: 220px;
    }
    
    .btn {
        padding: 1.1vw 3vw;
        border-radius: 40px;
        font-size: 3vw;
    }

    .btn svg {
        width: 2.5vw;
        margin-right: 1.3vw;
    }

    .hero .btn {
        margin-top: 1.2vw;
    }

    .find_us {
        padding: 5vw 0;
        flex-direction: column;
    }

    .find_us .title {
        font-size: 7vw;
        margin-bottom: 3vw;
        width: 100%;
        text-align: center;
    }
    .find_us .text_part {
        width:   100%;
        margin: 0 8vw 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .find_us .h1 {
        font-size: 5vw;
        margin-top: 1.5vw;
    }

    .find_us .h3 {
        font-size: 3.2vw;
        margin-top: 4px;
    }

    .find_us .icons {
        margin-top: 10px;
        margin-right: 0 !important;
        justify-content: center;
    }


    .find_us svg {
        width: 6vw;
        margin: 0 3vw;
    }

    .find_us .map {
        display: none;
    }

    .map p {
        font-size: 4vw;
    }

    footer {
        padding: 7vw 0;
    }

    footer .h1 {
        font-size: 4vw;
        margin-bottom: 2vw;
    }

    footer>div {
        margin: 0 2vw;
    }

    footer a {
        font-size: 3vw;
        margin-bottom: 1vw !important;
    }

    footer a::after {
        width: 8px;
        height: 8px;
    }

    footer .logo {
        width: 30vw;
        margin-right: 3vw;
    }

    .quick_links a {
        margin: 0.3vw 0;
    }

    .pract_area a {
        margin: 0.3vw 0;
    }

    footer .title {
        font-size: 3vw;
        line-height: 1.5;
        margin-bottom: 2.2vw;
        text-align: center;
    }

    footer .newsletter {
        width: 50%;

    }

    footer .newsletter .h1 {
        text-align: center;
    }

    footer form input,
    footer form button {
        height: 6vw;
    }

    footer form input {
        padding-left: 3vw ;
        padding-right: 3vw ;
        font-size: 2.6vw;
        border-radius: 40px 0 0 40px;
    }

    footer form button {
        font-size: 2.5vw !important;
        padding: 0 2.5vw 0 1.5vw !important;
        border-radius: 0 40px 40px 0 !important;
    }

    .under_footer {
        padding: 30px 0;
        font-size: 2vw;
    }

    #ScrollToTop {
        width: 7vw;
        height: 7vw;
        border-radius: 8px;
        bottom: 20px;
        right: 20px;
    }

    #ScrollToTop:after,
    #ScrollToTop:before {
        height: 0.5vw ;
        width: 2.5vw;
        bottom: 3vw;
        left: 1.5vw;
    }

    #ScrollToTop:before {
        right: 1.5vw;
        left: unset;
    }
}

@media(max-width: 768px) {
    #header {
        width: 100%;
        justify-content: space-between;
        height: 90px;
    }

    #header.moved + section {
        margin-top: 90px;
    }

    #header .logo_part {
        width: 150px;
    }

    #header .links_part {
        box-sizing: border-box;
        position: absolute;
        height: 100vh;
        width: 58vw;
        display: block;
        top: 100%;
        right: 0;
        transform: translateX(100%);
        background: #5c3242;
        padding-top: 1vw;
        padding-right: 5vw;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        transition: .4s;
        overflow: scroll;
    }

    #header .links_part.active {
        transform: none;
    }
    #header .links_part a {
        display: block;
        margin-top: 2vw;
        font-size: 3.9vw;
    }

    #header .menu {
        display: block;
        font-family: "BwModelica-R";
        color: #2B2A29;
        box-sizing: border-box;
        width: 7vw;
        height: 4vw;
        position: relative;
        cursor: pointer;
    }

    #header .overflow {
        display: none;
    }

    .menu span {
        position: absolute;
        width: 100%;
        overflow: hidden;
        left: 0;
        background: #fff;
        transition: 0.4s;
        height: 0.5vw;
        border-radius: 0.1vw;
    }

    .menu span:nth-child(1) {
        top: 0;
    }

    .menu span:nth-child(2) {
        top: 50%;
    }

    .menu span:nth-child(3) {
        top: 100%;
    }

    .menu span::after {
        content: '';
        width: 40%;
        transition: 0.3s;
        top: 0;
        position: absolute;
        background: #fff;
        left: -40%;
        height: 100%;
    }

    .menu span:nth-child(2)::after {
        transition-delay: 0.075s;
    }

    .menu span:nth-child(3)::after {
        transition-delay: 0.15s;
    }

    .menu:hover span::after {
        left: 100%;
    }

    .menu.active span {
        width: 70%;
    }

    .menu.active span:nth-child(1) {
        top: 41%;
        left: 15%;
        transform: rotate(135deg) translateY(-50%);
    }

    .menu.active span:nth-child(2) {
        top: 39%;
        left: 15%;
        transform: rotate(-135deg) translateY(-50%);
    }

    .menu.active span:nth-child(3) {
        opacity: 0;
    }

    .overflow.active {
        opacity: 1;
        visibility: visible;
    }

    .overflow {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #00000094;
        transition: .4s;
        opacity: 0;
        visibility: hidden;
        z-index: 5;
    }

    .links_part a {
        margin: 0 6px;
        font-size: 1.7vw;
    }

    #header.moved {
        /* padding: 10px 10vw; */
        box-sizing: border-box;
    }

    #header.moved .logo_part {
        width: 272px;
    }
    
    .btn {
        padding: 1.1vw 5vw;
        border-radius: 40px;
        font-size: 3.2vw;
    }

    .btn svg {
        width: 2.5vw;
        margin-right: 1.3vw;
    }

    .hero .btn {
        margin-top: 1.2vw;
    }

    .find_us {
        padding: 5vw 0;
        flex-direction: column;
    }

    .find_us .title {
        font-size: 7vw;
        margin-bottom: 3vw;
        width: 100%;
        text-align: center;
    }
    .find_us .text_part {
        width:   100%;
        margin: 0 8vw 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .find_us .h1 {
        font-size: 5vw;
        margin-top: 1.5vw;
    }

    .find_us .h3 {
        font-size: 3.2vw;
        margin-top: 4px;
    }

    .find_us .icons {
        margin-top: 10px;
        margin-right: 0 !important;
        justify-content: center;
    }


    .find_us svg {
        width: 6vw;
        margin: 0 3vw;
    }

    .find_us .map {
        display: none;
    }

    .map p {
        font-size: 4vw;
    }

    footer {
        padding: 7vw 0;
    }

    footer .h1 {
        font-size: 4.7vw;
        margin-bottom: 2vw;
    }

    footer>div {
        margin: 0 2vw;
    }

    footer a {
        font-size: 3.8vw;
        margin-bottom: 1vw !important;
    }

    footer a::after {
        width: 8px;
        height: 8px;
    }

    footer .logo {
        width: 30vw;
        margin-right: 3vw;
    }

    .quick_links a {
        margin: 0.3vw 0;
    }

    .pract_area a {
        margin: 0.3vw 0;
    }

    footer .title {
        font-size: 3.8vw;
        line-height: 1.5;
        margin-bottom: 2.2vw;
        text-align: center;
    }

    footer .newsletter {
        width: 50%;

    }

    footer .newsletter .h1 {
        text-align: center;
    }

    footer form input,
    footer form button {
        height: 7vw;
    }

    footer form input {
        padding-left: 3vw;
        padding-right: 3vw;
        font-size: 3.3vw;
        border-radius: 40px 0 0 40px;
    }

    footer form button {
        font-size: 3.3vw !important;
        padding: 0 9.5vw 0 2.5vw !important;
        border-radius: 0 40px 40px 0 !important;
    }

    .under_footer {
        padding: 30px 0;
        font-size: 2.5vw;
    }

    #ScrollToTop {
        width: 10vw;
        height: 10vw;
        border-radius: 8px;
        bottom: 20px;
        right: 20px;
    }

    #ScrollToTop:after,
    #ScrollToTop:before {
        height: 0.7vw;
        width: 4.2vw;
        bottom: 4.5vw;
        left: 1.5vw;
    }

    #ScrollToTop:before {
        right: 1.5vw;
        left: unset;
    }
}




@media screen and (max-width: 600px) {
    .logo_part {
        width: 40vw !important;
    }

    #header.moved {
        justify-content: space-between;
        /* align-items: center; */
        height: 17vw;
    }

    #header.moved + section {
        margin-top: 17vw;
    }

    #header.moved .leveler {
        display: block;
    }

    #header.moved .logo_part {
    }

    #header.moved .leveler,
    #header.moved .menu {
        flex-basis: 8%;
    }

    #header .links_part {
        width: 60%;
    }

    #header .links_part a {
        display: block;
        margin-top: 2vw;
        font-size:4vw;
    }
    #header .menu {
        width: 8vw;
        height: 4vw;
        position: relative;
        cursor: pointer;
    }
    #header .menu span{
        height: 0.5vw;
    }
    .hero .btn {
        margin-top: 3vw;
        margin-bottom: 4vw;
    }
    .btn {
        padding: 2.4vw 5.3vw;
        border-radius: 40px;
        font-size: 4.5vw;
    }

    .btn svg {
        width: 5vw;
        margin-right: 1.3vw;
    }
    .find_us {
        flex-wrap: wrap;
        padding: 12vw 0;
    }

    .find_us > * {
        margin-bottom: 5vw !important;
    }

    .find_us .title {
        font-size: 7vw;
        width: 100%;

        text-align: center;
        margin-bottom: 2vw;
    }

    .find_us .text_part {
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .find_us .text_part .h1 { 
        font-size: 6vw;
        margin-top: 3vw;
    }

    .find_us .text_part .h1:first-child { 
        margin-top: 0;
    }

    .find_us .text_part .h3 { 
        font-size: 3.7vw
    }

    .find_us .icons {
        width: 50%;
        justify-content: space-around;

    }

    .find_us .icons a {
        margin-right: 0;
    }

    .find_us svg {
        width: 8.5vw;
    }

    .find_us .map {
        width: 70vw;
    }

    footer {
        padding: 12vw 0;

        flex-wrap: wrap;
        align-items: baseline;
    }

    footer > *{
        margin-bottom: 5vw !important;
    }

    footer > div {
        margin: 0 4vw;
    }

    footer .logo img  {
        width: 40%;
    }

    footer .h1 {
        font-size: 5.7vw;
        margin-bottom: 2vw;
    }

    footer a {
        font-size: 3.7vw;

        margin-bottom: 1vw !important;
    }


    footer .title {
        font-size: 3.7vw;
        line-height: 1.4;
        margin-bottom: 2.2vw;
    }

    footer .newsletter {
        width: 70%;
        text-align: center;
    }

    footer form input,
    footer form button {
        height: 10vw;
    }

    footer form input {
        padding-left: 4vw ;
        padding-right: 5vw ;
        font-size: 3vw ;
        border-radius: 40px 0 0 40px;
    }

    footer form button {
        font-size: 3vw !important;
        padding: 0 4vw 0 3vw !important;
        border-radius: 0 40px 40px 0 !important;
    }

    .under_footer {
        padding: 30px 0;
        font-size: 2.1vw;
    }

    #ScrollToTop {
        width: 13vw;
        height: 13vw;
        border-radius: 8px;
        bottom: 20px;
        right: 20px;
    }

    #ScrollToTop:after,
    #ScrollToTop:before {
        height: 0.9vw ;
        width: 6vw;
        bottom: 6vw;
        left: 1.5vw;
    }

    #ScrollToTop:before {
        right: 1.5vw;
        left: unset;
    }
}

@media screen and (max-width: 1024px) {
    footer {
        padding: 5vw 0;

        flex-wrap: wrap;
        align-items: baseline;
    }

    footer > *{
        margin-bottom: 3vw !important;
    }

    footer > div {
        margin: 0 2vw;
    }

    footer .logo {
        width: 100%;

        display: flex;
        align-items: center;
    }

    footer .logo img  {
        width: 32%;
        margin: 6vw 0 7vw;
    }

    footer .quick_links, footer .pract_area {
        width: 40%;

        display: flex;
        align-items: center;

        text-align: center;
    }

}