body {
    margin: 0;
    padding: 0;
}

a {
    color: rgb(18, 83, 186);
    text-decoration: none;
}

h3,
p {
    margin: 0;
    padding: 0;
}

/*nav*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.8s;
    height: 105px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;

}

.navbar.scrolled {
    background-color: white;

    box-shadow: 0 10px 14px #e8e2ff87;
}

.navbarLi {
    color: white;
}

.navbarLi.scrolled {
    color: black;
    transition: 0.8s;
}

.navbar li {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid rgb(255, 255, 255, 0);
}

.navbar_active {
    border-bottom: 2px solid rgb(57, 134, 255) !important;
    color: rgb(57, 134, 255) !important;
    transition: 400ms;
}

.language_active {
    color: rgb(57, 134, 255) !important;
    transition: 400ms;
}

nav {
    z-index: 999999;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
}

nav li {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

.other_bg {
    /* position: relative; */
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: rgb(18, 83, 186);
    display: flex;
    justify-content: center;
    align-items: center;
}

.other_bg h2 {
    font-size: 60px;
    color: #fff;
}

/*footer*/
.company_information_bg {
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.information_card {
    width: calc(100% / 4);
    background-color: rgb(23, 37, 42);
    border-left: 1px solid grey;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.information_card_copyright {
    width: calc(100% / 4);
    background-color: rgb(18, 83, 186);
    border: 1px solid rgb(18, 83, 186);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information_card_copyright p {
    color: #fff;
}

.icon_group {
    width: 100%;
    display: flex;
    justify-content: center;
}

.p_group {
    width: 100%;
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

.icon_group p {
    margin: 0;
}

.information_card_left {
    margin: 0;
    font-size: 18px;
    width: 100%;
    
}

.information_card a {
    display: block;
    font-size: 18px;
}

.information_card p {
    color: rgb(121, 140, 139);
    line-height: 30px;
    text-align: center;
}

.information_card_email {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information_card_email a:nth-child(2) {
    margin-top: 39px;
}

.information_card_email a:nth-child(3) {
    margin-top: 10px;
}

.phone_menu_btn {
    display: none;
    background-color: transparent;
    border: 0;
}

.phone_menu_btn img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .information_card {
        width: calc(100% / 1);
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid grey;
    }

    .information_card_copyright {
        width: calc(100% / 1);
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .information_card_left {
        text-align: center;
    }

    .navbarLi {
        display: none;
    }

    .navbar {
        padding: 0 15px;
    }

    .logo img {
        height: 22px;
    }

    .phone_menu {
        width: 100%;
        top: 105px;
        padding: 10px;
        background-color: #fff;
        position: fixed;
        box-sizing: border-box;
        z-index: 1000;
    }

    .phone_menu_btn {
        display: block;
    }

    .phone_menu li {
        text-align: center;
        padding: 25px 0;
        font-size: 18px;
    }

    .other_bg h2 {
        font-size: 52px;
    }
}