:root {
    --mainColor: #024f99;
}

* {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.wrapper {
    margin: 0;
    padding: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.navbar {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
    background: #024f99;
}

.navbar ul {
    list-style-type: none;
    height: 100%;
    position: relative;
}

.navbar ul li {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.right {
    float: right;
}

.navbar ul li form {
    position: relative;
    width: 250px;
    padding: 5px;
    height: 50px;
}

.navbar ul li a {
    padding: 16px;
    text-decoration: none;
    font-family: 'Heebo', sans-serif;
    color: white;
}

.navbar ul li a:hover {
    background: #0857a4;
}

.head {
    background: #0a3058;
    position: relative;
    width: 100%;
    height: 400px;
    padding: 15px;
}

.head .search {
    position: absolute;
    width: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.head .search form .inputs {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.head .search form .inputs input {
    border: none;
    outline: none;
    padding: 10px;
    height: 40px;
}

.head .search form .inputs input[type=text] {
    width: 100%;
    border-radius: 5px;
}

.head .search form .inputs a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    color: #333333;
    padding: 10px;
    z-index: 1;
}

.filter {
    background: rgba(0, 126, 196, .9);
    position: relative;
    width: 100%;
    height: 150px;
}

.filter .filterBox {
position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.filter .filterBox .clickableFilter {
    background: #dadce0;
    width: 75px;
    height: 75px;
    display: inline-block;
    margin: 0 20px 0 20px;
    border-radius: 50%;
    top: calc(50% + 15px);
    transform: translateY(-50%);
    position: relative;
}

.filter .filterBox .clickableFilter p {
    position: absolute;
    color: white;
    font-family: 'Heebo', sans-serif;
    top: -30px;
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
}

.filter .filterBox .clickableFilter a {
    color: var(--mainColor);
    position: absolute;
    width: 100%;
    height: 100%;
}

.filter .filterBox .clickableFilter a i {
    top: calc(50%);
    font-size: 1.3rem;
    position: relative;
    left: calc(50%);
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 800px) {
    .head .search {
        width: 90%;
    }

    .filter {
        min-height: 150px;
        height: auto;
        background: none;
    }

    .filter .filterBox {
        width: 100%;
        height: auto;
        background: rgba(0, 126, 196, .9);
    }

    .filter .filterBox .clickableFilter {
        margin: 100px 40% 0 40%;
    }


}