*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: rgba(0, 0, 0, 0.87);
    --color-secondary: rgba(0, 0, 0, 0.54);
    --color-green: #3DD45E;
    --linear-gradient-green: linear-gradient(160.17deg, #3DD35D 1.01%, #05C09F 92.65%);
    --color-grey-primary: #595959;
    --color-grey-secondary: rgba(255, 255, 255, 0.59);
}

body {
    font-family: 'Golos', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

header {
    padding: 0 20px;
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.13);
}

.container {
    background-color: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.navigation_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #CCCCCC;
    padding-top: 20px;
    position: relative;
}

header ul {
    display: flex;
    align-items: center;
    list-style: none;
}

header li:not(:last-child) a {
    margin-right: 5px;
}

header a,
header span {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: var(--color-secondary);
    padding: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px 4px 0 0;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out;
    z-index: 1;
}

header a:hover,
header span:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.navigation_top span {
    padding: 0;
}

.navigation_top span:hover {
    background-color: transparent;
}

.navigation_top a.active {
    /*background-color: rgba(0, 0, 0, 0.03);*/
    color: var(--color-primary);
    position: relative;
}

.navigation_top .desktop a.active:before {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--linear-gradient-green);
    border-radius: 2px;
}

.navigation_top_left > .mobile {
    display: none;
}

.navigation_top_left > .mobile li.active {
    display: flex;
}

.navigation_top_left > .mobile img {
    width: 10px;
    transform: rotate(90deg);
    margin-left: 10px;
}

.navigation_top_right img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.navigation_bottom {
    display: flex;
    padding: 20px 0;
    position: relative;
}

.navigation_bottom a {
    border-radius: 4px;
}

.navigation_bottom__logo {
    align-items: center;
    display: flex;
    margin: 0 10px;
}

.navigation_bottom__logo a {
    padding: 0;
}

.navigation_bottom__logo a:hover {
    background-color: transparent;
}

.navigation_bottom__menu {
    vertical-align: middle;
    overflow-x: hidden;
    width: 100%;
}

.navigation_bottom__menu nav {
    display: flex;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -ms-overflow-style: none;
}

.navigation_bottom__menu a,
.navigation_bottom span {
    color: var(--color-primary);
    border-radius: 4px;
}

.main_nav {
    display: flex;
    flex-grow: 1;
    overflow-x: hidden;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 20px;
    background: rgba(242, 242, 242, 0.98);
    box-shadow: 0 11px 25px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    z-index: 2;
}

.dropdown ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1200px;
    padding: 20px 0;
    margin: 0 auto;
}

.dropdown li:not(:last-child) a {
    margin-right: 0;
}

.more img {
    width: 15px;
}

.visible {
    display: block !important;
    animation: openMenu .3s ease-in-out;
}

.navigation_bottom__online {
    margin: 0 10px;
}

@keyframes openMenu {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .navigation_top_right span {
        display: none;
    }

    .navigation_top_right img {
        width: 17px;
        height: 17px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .mobile_nav {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-right: 10px;
    }

    .navigation_bottom__logo img {
        width: 100px;
    }

    .navigation_bottom__online a {
        font-size: 12px;
    }

    .navigation_top_left > .desktop {
        display: none;
    }

    .navigation_top_left > .mobile {
        display: block;
    }
}

@media (max-width: 375px) {
    .mobile_nav {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-right: 10px;
    }

    .navigation_bottom__logo img {
        width: 100px;
    }

    .navigation_bottom__online a {
        font-size: 12px;
    }

    .navigation_bottom__menu {
        order: -1;
        width: auto;
    }

    .navigation_bottom__online {
        margin-left: auto;
    }
}

footer {
    font-family: 'Golos', sans-serif;
    padding: 40px 20px;
    background-color: var(--color-grey-primary);
    margin-top: auto;
}

footer a {
    display: block;
}

.container {
    background-color: transparent;
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.mobile-app {
    display: flex;
    flex-direction: column;
    max-width: min-content;
}

.mobile-app__title {
    white-space: nowrap;
    /* 18 px */
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    /* identical to box height, or 38px */
    color: #FFFFFF;
    margin-bottom: 10px;
}

.mobile-app__img {
    margin-bottom: 5px;
}

.mobile-app__img a {
    display: flex;
    width: fit-content;
}

.footer-info__social {
    display: flex;
    flex-direction: column;
    max-width: min-content;
    justify-self: center;
}

.footer-info__social > span {
    /* 18 px */
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    /* identical to box height, or 38px */
    color: #FFFFFF;
    white-space: nowrap;
}

.footer-info__social-items {
    display: flex;
    column-gap: 5px;
}

.footer-info__social-item {
    width: 35px;
}

.footer-info__social-item:hover {
   opacity: 0.8;
}

.footer-info {
    display: flex;
    column-gap: 25px;
    justify-self: flex-end;
}

.footer-info__contact {
    display: flex;
    flex-direction: column;
    max-width: 150px;
}

.footer-info__phone {
    display: flex;
    white-space: nowrap;
}

.footer-info__phone > img {
    margin-right: 5px;
}

.footer-info__phone > span {
    font-size: 30px;
    color: white;
    display: flex;
}

.footer-info__phone > span a {
    color: inherit;
    display: inline-block;
}

.footer-info__subtitle {
    font-size: 14px;
    color: var(--color-grey-secondary);
    /* 14 px */
    font-style: normal;
    font-weight: 500;
    line-height: 183.1%;
    margin-top: 5px;
}