.toggle-menu-btn {
    display: none;
    position: absolute;
    bottom: 25px;
    right: 15px;
    border: 0;
    background: transparent;
    color: #FFF;
    font-size: 28px;
    padding: 0;
    margin: 0;
    z-index: 99;
    cursor: pointer;
}

.toggle-menu-btn .icon-menu {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-style: normal;
}

.toggle-menu-btn .icon-menu:before {
    content: "\f0c9";
}

.toggle-menu-wrapper.open .toggle-menu-btn .icon-menu:before {
    content: "\f00d";
}

.toggle-menu-sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #204776;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

.toggle-menu-wrapper.open .toggle-menu-sidebar {
    width: 100%;
}

.toggle-menu-sidebar .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.toggle-menu-sidebar .menu a {
    color: #fff;
    padding: 10px 20px;
    display: block;
    font-size: 1rem;
}

.service-li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-li2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.service-li2 > div:first-child {
    width: 380px;
}

.service-li2 > div:last-child {
    padding-top: 16px;
}

.service-li strong,
.service-li2 strong {
    color: #12346a;
    font-weight: normal;
}