* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Karla", sans-serif;
    overflow-x: hidden;
}
header {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.wrapper {
    padding-left: 85px;
    padding-right: 85px;
}
h1 {
    font-size: 5vw;
    letter-spacing: 0;
}
h3 {
    font-size: 1vw;
}

menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    height: 50px;
}
menu a {
    text-decoration: none;
    color: rgba(99, 139, 255, 1);
}
menu li {
    cursor: pointer;
    color: #494949;
    transition: 0.3s;
    font-size: 1vw;
}
menu li:hover {
    opacity: 0.7;
    transform: scale(1.02) translateY(-2px);
}
menu .logo {
    color: rgba(99, 139, 255, 1);
    font-weight: 500;
}
menu .phonenumber {
    color: rgba(99, 139, 255, 1);
    font-weight: 700;
}
header h1 {
    color: rgba(99, 139, 255, 1);
    font-size: 12vw;
    font-weight: 400;
}
header span {
    background-color: rgba(99, 139, 255, 1);
    height: 0.4vw;
    width: 66%;
    border-radius: 10px;
}
header h2 {
    font-size: 2.48vw;
    font-weight: 100;
    color: rgba(99, 139, 255, 1);
}
section.list {
    padding-top: 60px;
    padding-bottom: 60px;
}
section.list ul {
    display: flex;
    justify-content: space-around;
    gap: 2vw;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
}
section.list ul li {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    width: 256px;
    gap: 16px;
}
section.list ul li div {
    border-radius: 100%;
    width: 128px;
    height: 128px;
    background-color: #E3EAFF;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: 0.3s;
}
section.list ul li div:hover {
    background-color: rgb(42, 73, 164);
}
section.list ul li div img {
    width: 64px;
    height: 64px;
}
section.list ul li h3 {
    color: #494949;
    text-decoration: underline #494949;
    font-weight: 100;
    cursor: pointer;
    transition: 0.15s;
}
section.list ul li h3 a {
    color: #494949;
    text-decoration: underline #494949;    
}
section.list ul li h3 a:hover {
    transform: scale(1.04);
    color: rgba(99, 139, 255, 1); 
}
section.list ul li h3:hover {
    transform: scale(1.04);
    color: rgba(99, 139, 255, 1);
}
footer {
    display: flex;
    width: 100vw;
    justify-content: space-between;
    background-color: rgba(99, 139, 255, 1);
    padding-right: 85px;
    align-content: center;
    align-items: center;
    padding: 60px;
    gap: 2vw;
}
footer img {
    width: 4vw;
}
footer ul {
    list-style: none;
    font-size: 1.8vw;
    color: white;
}
footer ul .thin {
    font-weight: 100;
}
footer ul .bold {
    font-weight: 700;
}
footer ul .politic {
    color: white;
    text-decoration: underline;
}
footer ul li .maps-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 2vw;
}
footer ul li .maps-links li {
    text-align: center;
    transition: 0.3s;
}
footer ul li .maps-links li:hover {
    transform: scale(1.1);
}
footer ul li .maps-links li a {
    cursor: pointer;
}

menu a.phonenumber {
    text-decoration: none;
    color: rgba(99, 139, 255, 1);
}

menu .additionally:hover ul.additionally {
    display: flex;
}
ul.additionally {
    position: absolute;
    z-index: 100;
    background-color: white;
    border: #E3EAFF solid 2px;
    border-top: none;
    list-style: none;
    padding: 1vw;
    width: 18vw;
    display: none;
    gap: 0.4vw;
    flex-direction: column;
    opacity: 1;
}
menu .about_clinick:hover ul.about_clinick {
    display: flex;
}
ul.additionally li a {
    background-color: white;
    color: rgba(99, 139, 255, 1);
}
ul.about_clinick {
    position: absolute;
    background-color: white;
    border: #E3EAFF solid 2px;
    border-top: none;
    list-style: none;
    padding: 1vw;
    width: 18vw;
    display: none;
    gap: 0.4vw;
    flex-direction: column;
}
ul.about_clinick li a {
    background-color: white;
    color: rgba(99, 139, 255, 1);
}
menu a {
    text-decoration: none;
    color: #494949;
}

.menuButton {
    position: fixed;
    background-color: white;
    padding: 40px;
    padding-top: 20px;
    width: 180px;
    height: 120px;
    border-bottom-left-radius: 70%;
    right: 0;
    top: 0;
    text-align: right;
    border-top: none;
    border-right: none;
    z-index: 1200;
    color: #494949;
    font-size: 44px;
    display: none;
    transition: 0.3s;
    cursor: pointer;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.menuButton:hover {
    color: rgba(141, 170, 255, 1);
}
.phoneMenu {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: normal;
    align-content: left;
    align-items: left;
    padding: 20px;
    position: fixed;
    z-index: 1000;
    border: 2px solid rgba(141, 170, 255, 1);
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateX(-150%);
    left: 0;
    top: 0;
    transition: 0.3s;
    box-shadow: 0 0 25px 0 rgba(141, 170, 255, 1);
}
.phoneMenu.active {
    transform: translateX(0%);
}
.phoneMenu li {
    font-size: 2vh;
    width: 100%;
    padding: 2px;
    border-bottom: 1px solid #494949;
    padding-top: 10px;
}
.phoneMenu li.padding_menu {
    padding-left: 40px;
}
.phoneMenu li:hover {
    background-color: rgba(141, 170, 255, 0.2);
}
.phoneTitle {
    text-align: center;
    font-size: 64px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgba(141, 170, 255, 1);
    display: none;
}

.menuButton div {
    background-color: #494949;
    width: 50px;
    height: 8px;
}
.menuButton .frst {
    transition: 0.3s;
}
.menuButton.active .frst {
    transform: rotate(45deg) translateX(25%);
}
.menuButton .scnd {
    transition: 0.3s;
}
.menuButton.active .scnd {
    transform: rotate(-45deg) translateX(25%);
    transition: 0.3s;
}
.map {
    height: 40vw;
    padding: 0;
    width: 100%;
}
.map iframe {
    border: none;
    height: 100%;
    width: 100%;
}
menu.mainMenu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}
@media (max-width: 1000px) {
    .menuButton {
        display: flex;
    }
    header {
        display: none;
    }
    menu.wrapper {
        display: none;
    }
    h1.phoneTitle {
        display: block;
    }
    section.pros {
        display: none;
    }
    section.services .consult {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        text-align: center;
        padding: 60px 80px;
    }
    section.services .consult h2 {
        font-size: 48px;
        width: 100%;
    }
    section.services .consult button {
        font-size: 36px;
        padding: 20px 40px;
    }
    section.services .services {
        flex-direction: column;
    }
    section.services .services div.service {
        width: 100%;
        height: 20vh;
    }
    section.services .services div.service h2 {
        font-size: 52px;
    }
    section.services .services div.service a {
        opacity: 1;
        font-size: 40px;
        padding: 20px;
    }
    section.services .services div.right_services {
        display: flex;
        flex-direction: column;
    }
    section.about h3 {
        font-size: 32px;
    }
    form.mainForm {
        width: 100%;
        height: 70%;
    }
    body form.mainForm button {
        font-size: 32px;
        padding: 40px;
    }
    body form.mainForm button.close {
        font-size: 32px;
        padding: 40px;
        width: 200px;
    }
    body form.mainForm input {
        padding: 20px;
        font-size: 32px;
    }
    body form.mainForm label {
        font-size: 36px;
    }
    body form.mainForm h4 {
        font-size: 32px;
        margin-left: 50px;
    }
    body form.mainForm div input {
        transform: scale(2);
    }
    body li.service_variant {
        background-color: white;
        border-radius: 40px;
    }
    body section.services div ul.wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
    body section.services li.service_variant div h2 {
        font-size: 40px;
    }
    body section.services li.service_variant ul.included li {
        font-size: 32px;
    }
    body img.bcg {
        display: none;
    }
    body section.list ul li h3 {
        font-size: 24px;
    }
    * {
        animation: none !important;
    }
    body footer {
        flex-direction: column;
    }
    footer ul li {
        font-size: 24px;
    }
}