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

a {
    text-decoration: none;
}

.mobileNavigation {
    display: none;
}

.header__container {
    max-width: 1200px;
    width: 100%;
    height: 90px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #FAFAFA;

    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo__btn img {
    margin: 10px;
    width: 50px;
    height: auto;
}

.header__logo__text p {
    font-family: "BalsamqSans", sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: royalblue;
}

.header__search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    margin: 0px 10px;
}

.header__search__form {
    display: flex;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.header__search__btn svg{
    width: 25px;
    height: auto;
}

.header__search__input {
    border: 1px solid #ccc;
    border-radius: 20px;
    width: 100%;
    height: 40px;

    font-family: "BalsamqSans", sans-serif;
    font-size: 15px;
    padding: 8px 40px 8px 15px;
    box-sizing: border-box;
}

.header__search__btn {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
}

.navigation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
}

.navigation__container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.navigation__list {
    padding-left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.navigation__item {
    display: flex;
    flex-shrink: 0;
    width: auto;
}

.navigation__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(51, 51, 51, 0.6);
    gap: 3.5px;
}

.navigation__link :hover {
    color: rgba(65, 105, 225, 0.9);
}

.navigation__link.active {
    color: royalblue;
}

.navigation__image {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: aquamarine;
}

.navigation__text {
    font-size: 15px;
    font-family: "RobotoFlexBold", sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.navigation__svg {
    width: 35px;
    height: 35px;
}

@font-face {
    font-family: "Mulish";
    src: url(~/fonts/Mulish-Bold.ttf);

    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "BalsamqSans";
    src: url("/fonts/BalsamiqSans-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/Inter_28pt-Regular.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "RobotoFlexBold";
    src: url("/fonts/Inter_18pt-Bold.ttf") format("truetype");

    font-weight: bold;
    font-style: normal;
}

@media(min-width:769px) and (max-width:1200px) {

    .header__container {
        width: calc(100% - 26px);
        margin: 0px auto;
        gap: 8px;
    }

    .navigation__image {
        width: 33px;
        height: 33px;
    }

    .navigation__text {
        font-size: 14px;
    }

    .header__logo {
        gap: 1px;
    }

    .header__logo__btn img {
        width: 80px;
        height: auto;
        margin: 0;
        margin: 13px;
    }

    .header__logo__text p {
        font-family: "RobotoFlexBold", sans-serif;
        font-weight: normal;
        font-size: 17px;
        color: royalblue;
    }

    .header__search {
        height: 43px;
        gap: 10px;
        flex: 1;
    }

    .header__search__form {
        max-width: 100%;
    }

    .header__search__input {
        font-size: 14px;
        height: 34px;
    }

    .header__search__btn {
        width: 20px;
        height: 20px;
    }

    .mobileNavigation {
        display: none;
    }

    .navigation__item a svg{
        width: 33px;
        height: 33px;
        color: #666;
        fill: #666;
    }

}

@media(min-width:1200px) {

    .header__container {
        width: calc(100% - 26px);
        margin: 0px auto;
        gap: 8px;
    }

    .navigation__image {
        width: 33px;
        height: 33px;
    }

    .navigation__text {
        font-size: 14px;
    }

    .header__logo {
        gap: 1px;
    }

    .header__logo__btn img {
        width: 80px;
        height: auto;
        margin: 0;
        margin: 13px;
    }

    .header__logo__text p {
        font-family: "RobotoFlexBold", sans-serif;
        font-weight: normal;
        font-size: 17px;
        color: royalblue;
    }

    .header__search {
        height: 43px;
        gap: 10px;
        flex: 1;
    }

    .header__search__form {
        max-width: 100%;
    }

    .header__search__input {
        font-size: 14px;
        height: 34px;
    }

    .header__search__btn {
        width: 20px;
        height: 20px;
    }

    .mobileNavigation {
        display: none;
    }

    .navigation__item a svg{
        width: 30px;
        height: 30px;
        color: #666;
        fill: #666;
    }

}

@media(min-width:0px) and (max-width:769px) {

    .header__container {
        display: none;
    }

    .header__logo {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobileNavigation {
        display: block;
    }

}