p {
    font-family: roboto, arial;
    margin-top: 0;
    margin-bottom: 0;
}
body {
    padding: 0;
    margin: 0;
    padding-top: 60px;
    background: rgb(52, 7, 214);
}
.header {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(52, 7, 214);
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    width: 100%;
}
.header button {
    background-color: rgb(240, 240, 240);
    width: 60px;
    margin-left: -10px;
    border: none;
    object-fit: cover;
    cursor: pointer;
}
.left-section {
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 100px;
    font-weight: 700;
    color: white;
}
.left-section img {
    width: 40px;
    height: 40px;
    padding-right: 6px;
}
.middle-section {
    display: flex;
    align-items: center;
    flex: 1;
}
.middle-section input {
    border-radius: 2px;
    border-color: transparent;
    background-color: gold;
    height: 36px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    flex: 1;
}
.middle-section input::placeholder {
    color: black;
}
.right-section {
    display: flex;
    align-items: center;
    margin-left: 100px;
    margin-right: 20px;
}
.navbar-services {
    margin-bottom: 10px;
}
.navbar-services ul {
    list-style-type: none;
    background-color: rgb(52, 7, 214);
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.navbar-services a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 14px 16px;
    text-align: center;
    transition: 0.3s;
}
.navbar-services a:hover {
    background-color: rgb(52, 7, 124);
    border: 1px solid white;
}
.navbar-services li {
    float: left;
}
.navbar-right {
    display: inline-block;
    position: absolute;
}

.back {
    position: absolute;
    right: 0;
    outline: 0;
    transform: translateY(-105%);
    border: 2px solid white;
    cursor: pointer;
    padding: 14px 12px;
    color: white;
    background: rgb(52, 7, 214);
    transition: 0.5s;
}
.back:hover {
    background: rgb(52, 7, 124);
    padding: 16px 14px;
}

.dropdown {
    display: inline-block;
    height: 50px;
    align-items: center;
    margin-left: 10px;
}
.dropdown button {
    color: white;
    background-color: rgb(52, 7, 214);
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}
.dropdown button:hover {
    background-color: rgb(52, 7, 124);
    border: 1px solid white;
}
.dropdown a {
    background-color: rgb(52, 7, 214);
    height: 100%;
}
.dropdown .content {
	display: none;
	background-color: rgb(241, 241, 241);
	box-shadow: 2px 2px 5px black;
}
.content {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    transition: 1s;
    z-index: 2;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
}
