body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    font-size: 16px;
    background-color: #F3F4F6;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333333;
}

ul, li {
    display: block;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.container {
    width: 1170px;
    margin: 0 auto; 
}

.header {
	background-color: white;
}

.header-title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.nav {
    padding-top: 25px;
    padding-bottom: 18px;
    display: flex;
}

.menu a{
    padding: 2px 10px;
}

.menu a:hover{
    background-color: #F3F4F6;
    border-radius: 10px;
}

.custom-select {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.custom-select select {
    display: none;
}

.select-selected {
    color: rgba(17, 24, 39, var(--tw-bg-opacity));
    font-weight: 400;
    border-radius: 5px;
    height: 42px;
    padding: 10px 16px;
    background-color: white;
    border: 1px solid;
    border-color: rgba(209, 213, 219, var(--tw-bg-opacity));
    cursor: pointer;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
}

.select-selected.select-arrow-active:after {
    top: 7px;
}

.select-items div {
    color: rgba(17, 24, 39, var(--tw-bg-opacity));
    font-weight: 400;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent transparent;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.select-items {
    margin-top: 3px;
    position: absolute;
    background-color: white;
    border-radius: 5px !important;
    border: 1px solid;
    border-color: rgba(229, 231, 235, var(--tw-bg-opacity));
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover, .select-items div:active, .same-as-selected {
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

#content {
    display: none;
}
