#nav_head {
    background-color: white;
    z-index: 98;
    position: fixed;
    width: 100vw;
    padding: 10px 0;
    box-shadow: 0 11px 35px 5px rgb(196 196 196 / 21%);
}
#nav_head .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #555;
}
#nav_head .wrapper a.navbar-brand {
    padding: 10px 15px;
}
#nav_head .wrapper a.navbar-brand img {
    width: 120px;
}
#nav_head .wrapper a.navbar-brand .slogan {
    font-size: 0.85rem;
    font-weight: 900;
    color: #fcb701;
}
#nav_head .wrapper .header_bar {
    font-size: 28px;
    cursor: pointer;
    display: none;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 15px;
}
#nav_head .wrapper nav.navigation {
    padding: 0 20px;
    flex-grow: 1;
}
#nav_head .wrapper nav.navigation > ul {
    /* list-style-type: none; */
    text-align: left;
    padding-left: 0;
}
#nav_head .wrapper nav.navigation > ul > li.cross {
    display: none;
    cursor: pointer;
    z-index: 98;
}
#nav_head .wrapper nav.navigation > ul > li:not(.cross):hover > a {
    color: #2dd4bf;
    top: revert;
    left: revert;
}
#nav_head .wrapper nav.navigation .sub-menu > li:not(.cross):hover > a {
    text-decoration: none;
    color: #2dd4bf;
    top: revert;
    left: revert;
}
/* #nav_head .wrapper nav.navigation ul > li:last-child a {
    color: #f3bb2b;
    border-right: none;
    font-size: 19px;
    padding: 0.3rem 1.8rem;
    border-radius: 10px;
    color: #fff;
    background-image: linear-gradient(to right, #E39C82, #EA6385);
    text-decoration: none;
    left: 16px;
    top: -5px;
} */
/* #nav_head .wrapper nav.navigation ul > li:last-child:hover a {
    color: white;
    border-right: none;
    padding: 0.3rem 1.8rem;
    left: 17px;
    top: -4px;
} */
#nav_head .wrapper nav.navigation > ul > li {
    display: inline-block;
}
#nav_head .wrapper nav.navigation > ul > li > a {
    padding: 15px;
    text-decoration: none;
    font-size: 17px;
    vertical-align: middle;
    color: #000c35;
    transition: all .2s linear;
}
#nav_head .wrapper nav.navigation .sub-menu {
    border: 1px solid #e5e5e5;
    position: absolute;
    padding: 15px 0;
    width: 150px;
    background: white;
    box-shadow: 0 5px 10px -5px grey;
    border-radius: 5px;
    margin-top: 5px;
    display: none;
}
#nav_head .wrapper nav.navigation > ul > li:hover > .sub-menu {
    display: block;
    animation: show-menu 300ms;
    animation-fill-mode: forwards;
}
@keyframes show-menu {
    0% {
        margin-top: 5px;
    }
    100% {
        margin-top: 10px;
    }
}
.mobile-navigation {
    position: fixed;
    z-index: 20;
    width: 100vw;
    min-height: 300px;
    background: white;
    box-shadow: 0 0 15px -10px;
    transition: all .5s;
    margin-top: -500px;
}
.mobile-navigation.show {
    margin-top: 74px;
}
.mobile-navigation ul {
    list-style: none;
    padding-top: 10px;
}
.mobile-navigation ul li {
    text-align: left;
    padding: 10px 0;
}
.mobile-navigation ul li a {
    font-size: 15px;
    color: #000c35;
}
@media (min-width: 993px) {
    .mobile-navigation {
        display: none !important;
    }
}
#nav_head .wrapper nav.navigation .sub-menu li {
    padding: 10px 20px;
    text-align: left;
}
#nav_head .wrapper nav.navigation .sub-menu li a {
    font-size: 17px;
    color: #000c35;
    transition: all .2s linear;
}
#header {
    padding-top: 108px;
}
.auth-btn {
    font-size: 15px;
    padding: 10px 20px;
    background: linear-gradient(160deg,#2DD4BF,#2DD4BF,#52E0CD,#52E0CD,#2DD4BF,#2DD4BF);
    background-size: 300% 100%;
    color: #fff;
    transition: all .4s ease-in-out;
    border-radius: 3px;
    border: 2px solid transparent;
}
a.auth-btn {
    left: 0 !important;
    top: 0 !important;
    text-decoration: none;
}
.auth-btn:hover {
    background-position: 100% 0;
    transition: all .4s ease-in-out;
    color: #fff;
}
.wrapper {
    max-width: 1320px;
    margin: 0 auto;
}
.nav_move {
    bottom: 0 !important;
}

.bar_move {
    transform: rotateX(-180deg);
}

@media screen and (max-width: 992px) {
    #nav_head {
        border-top: 1px solid #607efc;
    }
    #nav_head .wrapper {
    position: relative;
    justify-content: space-between;
    }
    #nav_head .wrapper a.navbar-brand {
        padding: 5px 15px;
    }
    #nav_head .wrapper > a.navbar-brand img {
    height: 43px;
    width: auto;
    }
    #nav_head .wrapper > a.navbar-brand span.slogan {
    display: none;
    }
    #nav_head .wrapper .header_bar {
    display: block;
    transition: 0.5s;
    color: #2648c8;
    }
    #nav_head .wrapper > nav.navigation {
    position: fixed;
    transition: 1.2s;
    height: 200vh;
    width: 100vw;
    right: 0vw;
    bottom: -200vh;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 99;
    }
    #nav_head .wrapper > nav.navigation ul {
    margin-top: 100vh;
    transition: 1s;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    #nav_head .wrapper > nav.navigation ul > li.cross {
    display: block;
    text-align: right;
    position: absolute;
    top: 0px;
    right: 0px;
    }
    #nav_head .wrapper > nav.navigation ul > li.cross i {
    font-size: 26px;
    padding-left: 10px;
    padding-right: 10px;
    transition: 0.6s;
    }
    #nav_head .wrapper > nav.navigation ul > li.cross i:hover {
    transform: rotate(90deg);
    }
    #nav_head .wrapper > nav.navigation ul > li:not(.cross) {
    padding: 20px 0;
    }
    #nav_head .wrapper > nav.navigation ul > li:not(.cross) a {
    border-left: solid 1px #666;
    border-right: solid 1px #666;
    }
    #nav_head .wrapper > nav.navigation ul > li:not(.cross):hover a {
    border-left: solid 1px #00B08F;
    }
    #nav_head .wrapper > nav.navigation ul > li {
    display: block;
    text-align: center;
    }
    #nav_head .wrapper > nav.navigation ul > li > a {
    color: #333;
    border: none;
    font-size: 1.3rem;
    }
    #nav_head .wrapper > nav.navigation ul > li:last-child a {
    color: #f2b412;
    border-right: solid 1px #f2b412;
    border-left: solid 1px #f2b412;
    background-image: none;
    border-radius: 0;
    left: 0;
    bottom: 0;
    }
    #nav_head .wrapper > nav.navigation ul > li:last-child:hover a {
    color: #f2b20e;
    border-right: solid 1px #f2b20e;
    border-left: solid 1px #f2b20e;
    left: 1px;
    }

    #header {
    padding-top: 65px;
    }
    #header .drawback {
    width: 100%;
    }
    #header .drawback > .title {
    border-radius: 0;
    }

    #section_strength .title {
    width: 95%;
    }
    #section_strength .strength {
    width: 95%;
    box-shadow: 0px 25px 15px -15px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    margin-top: 60px;
    top: -20px;
    }
    #section_strength .strength .sub_title, #section_strength .strength .article {
    width: 100%;
    }
    #section_strength .strength .article {
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    }
    #section_strength .strength .sub_title {
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    }
}
@media screen and (max-width: 768px) {
    footer#footer .container .user_feedback .button {
    padding-left: 10px;
    padding-right: 10px;
    }
    footer#footer .container .user_feedback .button .words > span {
    font-size: 20px;
    }
    footer#footer .container .user_feedback .button:hover .words span {
    letter-spacing: 4px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 600px) {
    #section_strength > .button i, #section_strength > .button h1#reg {
    font-size: 18px;
    }
    #section_strength > .button h1#reg {
    box-shadow: 2px 2px #333;
    }
}

/* rewrite bootstrap style */

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}  