#header {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;

    .navbar {
        border-color: transparent;
        background-color: #ffffff;
        border-radius: 0px;

        .navbar-brand {
            padding: 0;
        }

        .collapse {
            margin-top: 10px;

            ul {
                margin-left: 20px;
                margin-top: -5px;

                li {
                    a {
                        border-bottom: 3px solid transparent;

                        &:hover {
                            border-bottom: 3px solid #fcac45;
                            color: #fcac45;
                        }
                    }
                }

            }

        }
    }

}

body {
    background-color: #f9fafc;
}

#lan{
    width: 100%;
    float: left;
    padding-top: 1rem;
    img{
        width: 100%;
        object-fit: cover;
    }
}

.teamkg1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    float: left;

    .teamkg1tx1 {
        font-size: 20px;
        font-weight: bold;
    }

    .teamkg1tx2 {
        font-size: 12px;
        cursor: pointer;

        &:hover {
            color: #2b51fa;
        }
    }

    @media screen and(max-width:648px) {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 17px;
                }

                .teamkg1tx2 {
                    font-size: 9px;
                }
            }
        
    }

    @media screen and(max-width:570px) {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 18px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }
    }

    @media screen and(max-width:480px) {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 16px;
                }

                .teamkg1tx2 {
                    font-size: 8px;
                }
            }
    }

    @media screen and(max-width:440px) {
            #teamkg1 {
                .teamkg1tx1 {
                    font-size: 14px;
                }

                .teamkg1tx2 {
                    font-size: 6px;
                }
            }
        
    }
}

#footer {
    background-color: #222;
    padding: 3rem 0;
    margin-top: 3rem;
    float: left;
    width: 100%;

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .left,
        .right {
            width: 50%;
        }

        .left {
            color: #b2b2b2;
            font-size: 1.2rem;

            span {
                font-family: OSBold;
            }
        }

        .right {
            text-align: right;

            a {
                display: inline-block;
                width: 35px;
                height: 35px;
                border: 3px solid #b2b2b2;
                border-radius: 50%;
                margin-right: 10px;
                transition: all 0.3s linear;

                &:hover {
                    box-shadow: 0px 0px 10px #b2b2b2;
                    transform: translateY(-10px);
                }

                img {
                    float: left;
                    margin-top: 6px;
                    margin-left: 7px;
                }
            }
        }
    }

    @media screen and (max-width: 665px) {
        .container {
            flex-wrap: wrap;

            .left,
            .right {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
            }
        }
    }
}