body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'raleway';
    
}

header {
    width: 100%;
    height: 100px;
    box-shadow: 0px 5px 10px #ccc;
}

footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 150px;
    background-color: #333;
}

.navbar-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.navbar-list li {
    list-style: none;
}

.navbar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 0 1.5%;
    padding: 0;
    transition-duration: 0.3s;
    cursor: pointer;
}

.navbar-item a {
    margin: 0 10px;
    color: #444;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
}

.navbar-item-underline {
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #2d8fff;
    transition-duration: 0.3s;
}

.navbar-item:hover .navbar-item-underline {
    width: 100%;
}

.banner-logo {
    width: 300px;
    height: 80px;
}

.banner-logo img {
    width: inherit;
    height: inherit;
}

.download-item {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    margin-right: 5%;
    border: 2px solid #2d8fff;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: 0.2s;
}

.download-btn {
    text-align: center;
    color: #2d8fff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    transition-duration: 0.2s;
}

.download-item:hover {
    background-color: #2d8fff;
}

.download-item:hover .download-btn {
    color: #fff;
}

.download-btn:hover {
    color: #fff;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    margin: 10px;
}

.social-media-container h5 {
    margin: 5px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.social-media-container p {
    color: #fff;
    margin: 5px 0px 15px 0px;
    text-align: end;
    line-height: 20px;
    font-size: 12px;
    font-weight: 400;
}

.social-media-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.social-media-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    list-style: none;
}

.social-media-list img {
    width: 30px;
    filter: brightness(100);
}

.logo-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.logo-container img {
    width: 250px;
    margin: 20px;
}

.information-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    margin: 10px;
}

.information-container h5 {
    margin: 5px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.information-list {
    margin: 0;
    color: #fff;
}

.information-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    list-style: none;
}

.information-list a {
    color: #fff;
    text-align: end;
    text-decoration: underline;
    line-height: 20px;
    font-size: 12px;
    font-weight: 400;
}

@font-face {
    font-family: 'raleway';
    src: url('../fonts/Raleway/Raleway-Thin.ttf');
    font-style: normal;
    font-weight: 100;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-ExtraLight.ttf");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-Light.ttf");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-Medium.ttf");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-SemiBold.ttf");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-Bold.ttf");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-ExtraBold.ttf");
    font-style: normal;
    font-weight: 800;
}

@font-face {
    font-family: 'raleway';
    src: url("../fonts/Raleway/Raleway-Black.ttf");
    font-style: normal;
    font-weight: 900;
}