* {
    box-sizing: border-box;
}

/* DEFAULT */

body {
    font-family: "Bree Serif", serif;
    color: #333;
}

a,
input {
    color: inherit;
}

input {
    font-family: inherit;
    font-size: inherit;
}

/* COMMON */
.container {
    width: 1200px;
    margin: 0 auto;
}

.wrapper {
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}




/* HEADER */
.header {
    background-color: #cacaca;
}

.header .inner {
    display: flex;
    align-items: center;
    height: 102px;
}

.header .nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
    margin-right: 32px;
}

.header .nav a {
    text-decoration: none;
    font-size: 18px;
}

.header .nav a:hover {
    color: #17678a;
}

.logo {
    height: 70px;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 241px;
    height: 36px;
    padding: 0 8px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: inset 0 1.5px 2px rgba(0, 0, 0, 0.39);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;

}

.search-input::placeholder,
.search-icon {
    color: #999;
}

/* NAVBAR */
.navbar {
    background-color: #14485b;
}

.navbar .nav {
    display: flex;
    align-items: center;
    height: 49px;
}

.navbar .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    padding: 13px;

}

.navbar .nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}