@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

body{
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
}

.mouse {
    color: #fff;
    position: absolute;
    z-index: 4;
    bottom: 30px;
    left: auto;
    font-size: 20px;
}

.nav-origin {
    display: block;
    width: 100%;
    top: 0px;
    z-index: 100;
    position: fixed;
    transition: all 0.5s ease-in-out;
}

.nav-origin ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 100px;
    margin: 10px 0px;
    list-style: none;
}

.nav-origin ul li {
    height: auto;
}

.nav-origin  ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease-in-out;
}

.nav-origin  ul li a:hover {
    background-color: rgba(45, 57, 83, 0.5);
}

.nav-origin ul li:first-child a:hover {
    background-color: transparent;
}

.nav-origin  ul li i {
    font-size: 20px;
}

.nav-origin ul li img {
    width: auto;
    max-height: 60px;
}

.nav-scrolled {
    background-color: rgba(45, 57, 83, 0.4);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease-in-out;
}

footer {
    clear: both;
    height: auto;
    background-color: #fbfbfb;
    color: #5f6464;
    font-size: 16px;
    padding: 50px 200px;
}

.info {
    height: 200px;
}

.info ul {
    list-style: none;
    padding: 0;
}

.info ul li {
    padding: 0;
    margin: 10px 0;
}

footer a {
    color: #5f6464;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

footer a:hover {
    color: rgb(45, 57, 83);
}

.linkArea {
    width: 20%;
    height: auto;
    float: left;
}

.logoArea {
    width: 40%;
    height: auto;
    float: right;
}

.logoArea img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: auto auto;
}

.copy {
    clear: both;
    width: 100%;
    height: auto;
    text-align: center;
}

.copy hr {
    margin: 30px auto;
}