@media only screen and (max-width: 600px) {
    .sticky .nav__icon {
        color: #000;
    }

    .nav__icon {
        display: block;
        position: relative;
        font-size: 36px;
        color: #000;
        cursor: pointer;
    }

    .navbar {
        position: fixed;
        left: 0;
        top: 100px;
        padding: 0;
        background: linear-gradient(90deg, rgba(6, 68, 103, 1) 0%, rgba(0, 13, 20, 1) 78%, rgba(0, 0, 0, 1) 100%);
        z-index: 100;
        height: calc(100% - 74px);
        overflow: auto;
        width: calc(100% - 100px);
        transition: all 0.3s ease-out;
        transform: translateX(-150%);

    }

    .navbar {
        flex-direction: column;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        float: none;
        margin: 10px !important;
        color: #000;
    }

    .navbar ul ul {
        position: static;
        opacity: 0;
        /* pointer-events: auto; */
        height: auto;
        max-height: 0;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .navbar ul li.active>ul {
        position: relative;
        opacity: 1;
        max-height: 500px;
        margin-bottom: auto;
    }

    .navbar ul li.active>ul li a {
        color: #fff;
    }

    #navTrigger:checked~.navbar {
        transform: translateX(0%);
    }

    #navTrigger {
        opacity: 0;
        position: fixed;
        width: 0;
        height: 0;
        margin: 0;
    }

    .nav__button {
        display: none;
    }


    .fa-home {
        display: none !important;
    }

    .fa-bars {
        display: block;
    }

    .top__text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .top__text small {
        width: 90%;
        font-size: 1rem;
        text-align: center;
    }

    .top__text img {
        display: none;
    }

    .top__button button {
        width: 50%;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
    }

    .civis__three__box {
        position: relative;
        width: 100%;
        z-index: 500;
        top: 65.5%;
    }

    .civis__three__parent {
        display: flex !important;
        flex-direction: column;
        /* top: 5rem; */
        position: relative;
    }

    .video__parent {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .civis__box {
        padding: 0.8rem 0.25rem;
        text-align: center;
        width: 100%;
    }

    .civis__box h2 {
        font-size: 1rem;
    }

    .box__middle {
        justify-content: center;
    }

    .video__section {
        margin-bottom: 15rem;
        margin-top: 10rem;
        height: 100vh;
    }

    .video__left,
    .video__right {
        width: 100%;
    }

    .video__right img {
        width: 100%;
        min-width: 25rem;
    }

    .civis__parent {
        flex-direction: column;
    }

    .civis__center__section {
        height: 45rem;
    }

    .civis__overlay {
        height: 45rem;
    }

    .civis__center__section .video__parent {
        display: flex;
        flex-direction: column;
    }

    .video__content h1 {
        font-size: 1.8rem;
    }

    .video__content h3 {
        margin-bottom: 1.5rem;
    }

    .video__content ul li {
        /* margin-top: 10px; */
        font-size: 20px;
    }

    #civis__center__btn {
        display: flex;
        position: relative;
        margin-top: 30px;
    }

    .civis_mobile {
        height: 45rem;
    }

    .mobile__parent {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile__left {
        margin-bottom: 0;
    }

    .mobile__right {
        margin-bottom: 10rem;
    }

    #testimonial {
        width: 75%;
    }

    .footer__section {
        margin-top: 5rem;
    }

    .footer__parent,
    .footer__menu {
        flex-direction: column;
    }

    .swiper-slide {
        min-width: 25rem;
    }

    .about__features {
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* margin-left: 10px; */
    }

    .about__features__box {
        margin-left: 0;
    }

    .feature__slider {
        display: flex;
        align-items: center;
        width: 100px;
        gap: 20px;
    }

    .swiper-controls {
        display: none;
    }

    /*hmis*/
    .chart {}

    #right {
        display: none;
    }

    .emr__parent {
        flex-direction: column;
        align-items: flex-start;
    }

    .emr__boxed__detail {
        padding-left: 5% !important;
    }

    .emr__boxed__detail img {
        width: 100%;
    }

    #benefits2 {
        flex-direction: column-reverse;
    }

    .banner__space {
        margin-left: 0;
    }

    .civis__banner__parent {
        /* flex-direction: column; */
    }

    .civis__banner__parent {
        padding-left: 5px;
        padding-right: 5px;
        gap: 20px;
    }

    .about__info__detail__2 {
        display: none;
    }

    .about__info__detail__1 {
        width: 100%;
    }

    .about__center__section {
        height: 70dvh;
    }

    .about__center p {
        width: 100%
    }

    .mission__overlay {
        height: 70dvh;
    }

    #mission {
        padding-left: 0 !important;
    }

    .about__parent {
        flex-direction: column;
    }

    .banner__space {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 30px;
    }

    .civis__banner__parent {
        flex-direction: column;
        gap: 10px;
    }

    .civis__banner__parent__left,
    .civis__banner__parent__rights {
        width: 100%;
    }

    .contact__img {
        display: none;
    }

    .contact__wrapper {
        top: 10px;
    }

    .civis__commitment {
        height: 35dvh;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        width: 100%;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        z-index: 999;
        background-color: #0F4E71;
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 10px;
    }

    .navbar li {
        width: 100%;
    }

    .fa-home {
        display: none !important;
    }

    .fa-bars {
        display: block;
    }

    .top__text h1 {
        font-size: 2rem;
        text-align: justify;
    }

    .top__text small {
        width: 65%;
        font-size: 1rem;
        text-align: justify;
    }

    .top__button button {
        width: 30%;
        position: absolute;

    }

    .civis__three__box {
        position: relative;
        width: 100%;
        z-index: 500;
        top: 65.5%;
    }

    .civis__three__parent {
        display: flex !important;
        flex-direction: column;
        /* top: 5rem; */
        position: relative;
    }

    .video__parent {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .civis__box {
        padding: 0.8rem 0.25rem;
        text-align: center;
        width: 100%;
    }

    .civis__box h2 {
        font-size: 1rem;
    }

    .box__middle {
        justify-content: center;
    }

    .video__section {
        margin-bottom: 15rem;
        margin-top: 5rem;
        height: 70dvh;
    }

    .video__left,
    .video__right {
        width: 100%;
    }

    .video__right img {
        width: 100%;
        min-width: 25rem;
    }

    .civis__parent {
        flex-direction: column;
    }

    .civis__center__section {
        height: 45rem;
    }

    .civis__overlay {
        height: 45rem;
    }

    .civis__center__section .video__parent {
        display: flex;
        flex-direction: column;
    }

    .video__content h1 {
        font-size: 1.8rem;
    }

    .video__content h3 {
        margin-bottom: 1.5rem;
    }

    .video__content ul li {
        /* margin-top: 10px; */
        font-size: 20px;
    }

    #civis__center__btn {
        display: flex;
        position: relative;
        margin-top: 30px;
    }

    .civis_mobile {
        height: 50dvh;
    }

    .mobile__parent {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .mobile__left {
        margin-bottom: 0;
    }

    .mobile__right {
        margin-bottom: 10rem;
    }

    .footer__section {
        margin-top: 5rem;

    }

    .footer__parent,
    .footer__menu {
        flex-direction: column;
        /* align-items: center; */

    }

    .swiper-slide {
        min-width: 25rem;
    }

    .about__features {
        flex-direction: column;
        align-items: center;
        /* margin-left: 10px; */
    }

    .about__features__box {
        margin-left: 0;
    }

    .feature__slider {
        display: flex;
        align-items: center;
        width: 100px;
        gap: 20px;
    }

    .swiper-controls {
        display: none;
    }

    /*hmis*/
    .chart {}

    #right {
        display: none;
    }

    .emr__parent {
        flex-direction: column;
        align-items: flex-start;
    }

    .emr__boxed__detail {
        padding-left: 5% !important;
    }

    #benefits2 {
        flex-direction: column-reverse;
    }

    .banner__space {
        margin-left: 0;
    }

    .civis__banner__parent {
        /* flex-direction: column; */
    }

    .civis__banner__parent {
        padding-left: 5px;
        padding-right: 5px;
        gap: 20px;
    }

    .about__info__detail__2 {
        display: none;
    }

    .about__info__detail__1 {
        width: 100%;
    }

    .about__center__section {
        height: 70dvh;
    }

    .mission__overlay {
        height: 70dvh;
    }

    .about__parent {
        flex-direction: column;
    }

    .banner__space {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 30px;
    }

    .civis__banner__parent {
        flex-direction: column;
        gap: 10px;
    }

    .civis__banner__parent__left,
    .civis__banner__parent__rights {
        width: 100%;
    }

    .contact__img {
        display: none;
    }

    .contact__wrapper {
        top: 10px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    body {
        width: 100%;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        z-index: 999;
        background-color: #0F4E71;
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 10px;
    }

    .navbar li {
        width: 100%;
    }

    .fa-home {
        display: none !important;
    }

    .fa-bars {
        display: block;
    }

    .top__text h1 {
        font-size: 2rem;
        text-align: justify;
    }

    .top__text small {
        width: 65%;
        font-size: 1rem;
        text-align: justify;
    }

    .top__button button {
        width: 30%;
        position: absolute;

    }

    .civis__three__box {
        position: relative;
        width: 100%;
        z-index: 500;
        top: 65.5%;
    }

    .civis__three__parent {
        display: flex !important;
        flex-direction: column;
        /* top: 5rem; */
        position: relative;
    }

    .video__parent {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .civis__box {
        padding: 0.8rem 0.25rem;
        text-align: center;
        width: 100%;
    }

    .civis__box h2 {
        font-size: 1rem;
    }

    .box__middle {
        justify-content: center;
    }

    .video__section {
        margin-bottom: 15rem;
        margin-top: 5rem;
        height: 70dvh;
    }

    .video__left,
    .video__right {
        width: 100%;
    }

    .video__right img {
        width: 100%;
        min-width: 25rem;
    }

    .civis__parent {
        flex-direction: column;
    }

    .civis__center__section {
        height: 45rem;
    }

    .civis__overlay {
        height: 45rem;
    }

    .civis__center__section .video__parent {
        display: flex;
        flex-direction: column;
    }

    .video__content h1 {
        font-size: 1.8rem;
    }

    .video__content h3 {
        margin-bottom: 1.5rem;
    }

    .video__content ul li {
        /* margin-top: 10px; */
        font-size: 20px;
    }

    #civis__center__btn {
        display: flex;
        position: relative;
        margin-top: 30px;
    }

    .civis_mobile {
        height: 50dvh;
    }

    .mobile__parent {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .mobile__left {
        margin-bottom: 0;
    }

    .mobile__right {
        margin-bottom: 10rem;
    }

    .footer__section {
        margin-top: 5rem;

    }

    .footer__parent,
    .footer__menu {
        flex-direction: column;
        /* align-items: center; */

    }

    .swiper-slide {
        min-width: 25rem;
    }

    .about__features {
        flex-direction: column;
        align-items: center;
        /* margin-left: 10px; */
    }

    .about__features__box {
        margin-left: 0;
    }

    .feature__slider {
        display: flex;
        align-items: center;
        width: 100px;
        gap: 20px;
    }

    .swiper-controls {
        display: none;
    }

    /*hmis*/
    .chart {}

    #right {
        display: none;
    }

    .emr__parent {
        flex-direction: column;
        align-items: flex-start;
    }

    .emr__boxed__detail {
        padding-left: 5% !important;
    }

    #benefits2 {
        flex-direction: column-reverse;
    }

    .banner__space {
        margin-left: 0;
    }

    .civis__banner__parent {
        /* flex-direction: column; */
    }

    .civis__banner__parent {
        padding-left: 5px;
        padding-right: 5px;
        gap: 20px;
    }

    .about__info__detail__2 {
        display: none;
    }

    .about__info__detail__1 {
        width: 100%;
    }

    .about__center__section {
        height: 70dvh;
    }

    .mission__overlay {
        height: 70dvh;
    }

    .about__parent {
        flex-direction: column;
    }

    .banner__space {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 30px;
    }

    .civis__banner__parent {
        flex-direction: column;
        gap: 10px;
    }

    .civis__banner__parent__left,
    .civis__banner__parent__rights {
        width: 100%;
    }

    .contact__img {
        display: none;
    }

    .contact__wrapper {
        top: 10px;
    }

}

@media screen and (min-width: 320px) and (max-width: 430px) {
    body {
        width: 100%;
    }

    header .logo {
        /* margin-left: 0; */
    }

    .navbar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        z-index: 999;
        background-color: #0F4E71;
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 10px;
    }

    .navbar li {
        width: 100%;
    }

    .fa-home {
        display: none !important;
    }

    .fa-bars {
        display: block;
    }

    .top__text img {
        display: none;
    }

    .top__text h1 {
        font-size: 2rem;
        text-align: center;
        line-height: 2rem;
    }

    .top__text small {
        width: 90%;
        font-size: 1rem;
        text-align: center;
    }

    .top__button button {
        margin-top: 5%;
        width: 50%;
        position: absolute;

    }

    .civis__three__box {
        position: relative;
        width: 100%;
        z-index: 500;
        top: 30%;
    }

    .civis__three__parent {
        display: flex !important;
        flex-direction: column;
        top: 0;
        position: relative;
    }

    .video__parent {
        display: flex !important;
        flex-direction: column-reverse;
    }

    .civis__box {
        padding: 0.8rem 0.25rem;
        text-align: center;
        width: 100%;
    }

    .civis__box h2 {
        font-size: 1rem;
    }

    .box__middle {
        justify-content: center;
    }

    .video__section {
        margin-bottom: 15rem;
        margin-top: 5rem;
        height: 70dvh;
    }

    .video__left,
    .video__right {
        width: 100%;
    }

    .video__right img {
        width: 100%;
        min-width: 0;
    }

    .civis__parent {
        flex-direction: column;
    }

    .civis__center__section {
        height: 45rem;
    }

    .civis__overlay {
        height: 45rem;
    }

    .civis__center__section .video__parent {
        display: flex;
        flex-direction: column;
    }

    .video__content h1 {
        font-size: 1.8rem;
    }

    .video__content h3 {
        margin-bottom: 1.5rem;
    }

    .video__content ul li {
        /* margin-top: 10px; */
        font-size: 20px;
    }

    #civis__center__btn {
        display: flex;
        position: relative;
        margin-top: 30px;
    }

    .civis_mobile {
        height: 50dvh;
    }

    .mobile__parent {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .mobile__left {
        margin-bottom: 0;
    }

    .mobile__right {
        margin-bottom: 10rem;
    }

    .civis__testimonial {
        height: 70dvh;
    }

    .civis__interest__content h2 {
        font-size: 1.5rem;
    }

    .civis__interest__content button {
        width: 50%;
    }

    .about__container {
        width: 90%;
    }

    .about__overlay {
        width: 90%;
    }

    .footer__section {
        margin-top: 5rem;

    }

    .footer__parent img {
        width: 50%;
    }

    .footer__parent,
    .footer__menu {
        flex-direction: column;
        /* align-items: center; */
    }

    .footer__parent__right,
    .footer__parent__left {
        width: 100%
    }

    .swiper-slide {
        min-width: 0;
    }

    .about__features {
        flex-direction: column;
        align-items: center;
        /* margin-left: 10px; */
    }

    .about__features__box {
        margin-left: 0;
    }

    .feature__slider {
        display: flex;
        align-items: center;
        width: 100px;
        gap: 20px;
    }

    .swiper-controls {
        display: none;
    }

    /*hmis*/
    .chart {
        width: 75% !important;
        margin-left: 25px;
    }

    #right {
        display: none;
    }

    .emr__parent {
        flex-direction: column;
        align-items: flex-start;
    }

    .emr__boxed__detail {
        padding-left: 5% !important;
    }

    .emr__boxed__detail img {
        width: 100%;
    }

    #benefits2 {
        flex-direction: column-reverse;
    }

    .banner__space {
        margin-left: 0;
    }

    .civis__banner__parent {
        /* flex-direction: column; */
    }

    .civis__banner__parent {
        padding-left: 5px;
        padding-right: 5px;
        gap: 20px;
    }

    .about__info__detail__2 {
        display: none;
    }

    .about__info__detail__1 {
        width: 100%;
    }

    .about__center__section {
        height: 70dvh;
    }

    .about__center p {
        width: 100%;
    }

    .mission__overlay {
        height: 70dvh;
    }

    #mission {
        padding-left: 0 !important;
    }

    .about__boxed__detail img {
        width: 100%;
    }

    .strategic__boxed__detail img {
        width: 100%;
    }

    .civis__commitment {
        height: 50dvh;
    }

    .about__parent {
        flex-direction: column;
    }

    .banner__space {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 30px;
    }

    .civis__banner__parent {
        flex-direction: column;
        gap: 10px;
    }

    .civis__banner__parent__left,
    .civis__banner__parent__rights {
        width: 100%;
    }

    .contact__img {
        display: none;
    }

    .contact__wrapper {
        top: 10px;
    }

    .form__wrapper p {
        width: 100%;
    }

    header {
        width: 320px;
    }

    .nav {
        display: none;
    }
}

@media screen and (min-width: 1400) and (max-width: 1920) {
    .civis__three__box {
        top: auto !important;
    }
}