style1.css

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.section{
  background: url("images/bg-1.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.wrapper{
  padding: 20px 50px;
}
.wrapper .title{
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.wrapper p{
  text-align: justify;
  padding-bottom: 20px;
}
.counter-up{
  background: green;
  min-height: 50vh;
  background-size: cover;
  background-attachment: fixed;
  padding: 0 50px;
  position: relative;
  display: flex;
  align-items: center;
}
.counter-up::before{
  position: absolute;
  content: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.8);
}
.counter-up .content{
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.counter-up .content .box{
  border: 1px dashed rgba(255,255,255,0.6);
  width: calc(25% - 30px);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 20px;
}
.content .box .icon{
  font-size: 48px;
  color: #e6e6e6;
}
.content .box .counter{
  font-size: 50px;
  font-weight: 500;
  color: #f2f2f2;
  font-family: sans-serif;
}
.content .box .text{
  font-weight: 400;
  color: #ccc;
}
@media screen and (max-width: 1036px) {
  .counter-up{
    padding: 50px 50px 0 50px;
  }
  .counter-up .content .box{
    width: calc(50% - 30px);
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 580px) {
  .counter-up .content .box{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .wrapper{
    padding: 20px;
  }
  .counter-up{
    padding: 30px 20px 0 20px;
  }
}


/*style 2  */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: Noto Sans CJK SC;
}

.header {
    border-bottom: 3px solid #ededed;
    background-color: #ffffff;
    min-height: 68px;
    display: flex;
}

.hidden {
    display: none;
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

    /* Mobile menu styles */
    .header .header-row .mobile-menu {
        position: absolute;
        background-color: #2376ad;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 3px solid #e9900a;
    }

    .header .header-row .mobile-menu {
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
    }

        .header .header-row .mobile-menu ul {
            list-style: none;
        }

            .header .header-row .mobile-menu ul li {
                margin-bottom: 10px;
            }

                .header .header-row .mobile-menu ul li:hover {
                    background-color: rgba(222, 225, 226, 0.466);
                }


                /* Mega menu styles */
                .header .header-row .mobile-menu ul li.mega-menu {
                    position: relative;
                }

                    .header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper {
                        display: none;
                    }

                .header .header-row .mobile-menu ul li a {
                    text-decoration: none;
                    display: block;
                    font-size: 14px;
                    font-weight: 600;
                    color: rgb(128, 131, 131);
                    padding-top: 8px;
                    padding-bottom: 8px;
                    padding-left: 8px;
                }

                .header .header-row .mobile-menu ul li.mega-menu:hover .mega-menu-wrapper {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    padding: 20px;
                }

                .header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col {
                    margin-bottom: 20px;
                }

                    .header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col h5 {
                        font-weight: 800;
                        text-transform: uppercase;
                    }

                    .header .header-row .mobile-menu ul li.mega-menu .mega-menu-wrapper .mega-menu-col ul li a {
                        font-weight: 400;
                    }



                /* Simple drop down menu */
                .header .header-row .mobile-menu ul li.dropdown {
                    position: relative;
                }

                    .header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper {
                        display: none;
                    }

                        .header .header-row .mobile-menu ul li.dropdown .sub-menu-wrapper ul li a {
                            font-weight: 400;
                            padding-left: 15px;
                        }

                    .header .header-row .mobile-menu ul li.dropdown:hover .sub-menu-wrapper {
                        display: block;
                    }


/* Hide desktop menu on mobile up to 48em */
@media (max-width: 48em) {
    .header .header-row .header-right .main-menu {
        display: none;
    }
}


/* Show menu on desktop 48em and above */
@media (min-width: 48em) {

    .header {
        border-bottom: 3px solid #ededed;
        background-color: #ffffff;
    }

        .header .header-row {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
        }

        .header .mobile-toggler {
            display: none;
        }

        .header .header-row .header-right .main-menu {
            display: flex;
        }

            .header .header-row .header-right .main-menu li.menu-item {
                display: block;
            }

            .header .header-row .header-right .main-menu li.dropdown {
                position: relative;
            }

            .header .header-row .header-right .main-menu li.menu-item:not(:last-child) {
                margin: 0 20px 0 0;
            }

            .header .header-row .header-right .main-menu li.menu-item > a {
                font-size: 13px;
                font-weight: 600;
                line-height: 20px;
                color: #444444;
                padding: 40px 14px 40px 14px;
                display: inline-block;
                text-decoration: none;
                text-transform: uppercase;
            }

            .header .header-row .header-right .main-menu li.menu-item a.active {
                color: #e9900a;
            }

            .header .header-row .header-right .main-menu .sub-menu-wrapper {
                position: absolute;
                text-align: left;
                margin: 0;
                z-index: 111;
                min-width: 100%;
                line-height: 20px;
                display: none;
            }

            /* Show dropdown menu on hover */
            .header .header-row .header-right .main-menu > li.menu-item:hover .sub-menu-wrapper {
                display: block;
            }

            .header .header-row .header-right .main-menu .dropdown ul.sub-menu {
                background-color: #ffffff;
                border-top: 3px solid #e9900a;
                min-width: 200px;
                padding: 0px 0;
                box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
                text-transform: none;
            }

            .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item {
                padding: 0;
                margin-right: 0;
            }

                .header .header-row .header-right .main-menu li.menu-item:hover .sub-menu-wrapper li.menu-item > a {
                    padding: 8px;
                    display: block;
                    text-transform: none;
                    color: #6d6c6c;
                    font-size: 14px;
                    font-weight: 400;
                }

            .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:not(:last-child) {
                border-bottom: 1px solid rgba(204, 204, 204, 0.432);
            }

            .header .header-row .header-right .main-menu .sub-menu-wrapper ul li:hover {
                background-color: #ededed;
            }


            /* Mega menu styles */
            .header .header-row .header-right .main-menu .mega-menu .mega-menu-wrapper {
                position: absolute;
                left: 0px;
                display: none;
                padding: 20px 25px;
                background-color: #ffffff;
                border-top: 3px solid #e9900a;
                width: 100%;
                box-shadow: 0 5px 8px rgb(0 0 0 / 15%);
            }


            /* Show mega menu on hover */
            .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
            }

                .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col h5 {
                    text-transform: uppercase;
                    margin-bottom: 15px;
                    padding-left: 8px;
                }

                .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul {
                    list-style: none;
                    margin-left: 0px;
                    margin-right: 20px;
                }

                    .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li a {
                        text-decoration: none;
                        padding: 8px;
                        display: block;
                        font-size: 14px;
                        color: rgba(149, 151, 151, 1);
                    }

                    .header .header-row .header-right .main-menu li.mega-menu:hover .mega-menu-wrapper .mega-menu-col ul li:hover a {
                        background-color: rgba(222, 225, 226, 0.466);
                    }
}






.header .mobile-toggler {
    color: #ffffff;
    background-color: #0088cc;
    cursor: pointer;
    padding: 7px 13px;
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    margin: 8px 0 8px 1em;
    line-height: 20px;
}




.hero {
    background: rgb(5,146,200);
    background: linear-gradient(107deg, rgba(5,146,200,1) 0%, rgba(15,113,117,1) 100%);
    padding: 50px 20px;
    min-height: 80vh;
    color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 40px;
}

@media (min-width: 48em) {
    .hero {
        font-size: 60px;
    }
}

/* Container styles */
.container {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 36em) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 36em) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 48em) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 62em) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 75em) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 87.5em) {
    .container {
        max-width: 1380px;
    }
}

/*end of style 2  */

/*start index css  */

#div1 {
    position: relative;
    margin: auto;
    padding: 10px;
    border: 1px solid black;
}

#div2 {
    padding: 50px;
    position: absolute;
    border: 1px solid black;
    background-color: red;
}



/* Remove default list styles (bullets) and align list items to the left */

footer h5 {
    text-align: left;
    color: black;
    font-weight: 900;
}

.custom-list1 {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    /* Optional: Add some left padding to create indentation */
    .custom-list1 li {
        padding-left: 0px;
        font-size: smaller;
        text-align: left;
        color: #999999;
        padding-top: 15px;
        padding-bottom: 15px;
    }


.counter-up {
    background: black;
    /* This is a color for the counter up */
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
}




    .counter-up .content {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

.content .box {
    width: calc(25%-50px);
    border: 1px dashed #fff;
    border-radius: 5px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    flex-direction: column;
}


#logo {
    background-image: url('../package/Image9.svg');
    width: 100px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}


.navbar .navbar-brand img {
}

@media screen and (min-width: 768px) {
    .navbar-collapse {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .navbar .navbar-brand img {
        max-width: 6em;
    }
}



.multicolumn {
    width: 460px !important;
    left: 300px;
    margin-bottom: 20px;
    overflow: hidden;
}

    .multicolumn li {
        float: left;
        display: inline;
    }

�@�@.multicolumn li {
    width: 50%;
    /* width: 33%; */
    /* for 3 columns */
    /* width: 25%; */
    /* for 4 columns */
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            /*background-color: #f1f1f1*/
        }


.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.navbar .megamenu {
    position: static;
}

    .navbar .megamenu ul.megamenu_content {
        margin-top: 0px;
        border-radius: 0;
        columns: 1;
        padding: 10px;
        left: 0;
        padding-right: 100%;
    }

        .navbar .megamenu ul.megamenu_content li {
            flex: 1;
            list-style: none;
        }

            .navbar .megamenu ul.megamenu_content li a,
            .navbar .megamenu ul.megamenu_content li:hover > a {
                color: #013289;
            }

                .navbar .megamenu ul.megamenu_content li a:hover,
                .navbar .megamenu ul.megamenu_content li .active,
                .navbar .megamenu ul.megamenu_content li .active:hover {
                    color: #4154f1;
                }



.navbar .dropdown ul {
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 5px 5px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover,
        .navbar .dropdown ul .active:hover,
        .navbar .dropdown ul li:hover > a {
            color: #4154f1;
        }

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}


.flex {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid red;
}

.item {
    width: 50px;
    height: 50px;
    margin: 5px;
    border: 2px solid blue;
}

.line-break {
    width: 100%;
}

#content1 {
    display: grid;
    grid-template-columns: 63% 10% 27%;
    max-width: 100vw;
    margin: 0 auto;
}


#content2 {
    display: grid;
    grid-template-columns: 79% 10% 11%;
    max-width: 100vw;
    margin: 0 auto;
}



@media only screen and (max-width: 992px) {

    #content1 {
        display: flex;
        flex-direction: column;
        max-width: 100vw;
    }

        #content1 div a {
        }
}

/* Assuming "carousel-controls" is the class of the parent container */
.carousel-controls {
    /* If you want to use float, set float property */
    /* float: left; */
    /* Using Flexbox to align items to the left */
    display: flex;
    justify-content: flex-start;
    /* If you want to add some space between the button and its sibling elements (if any) */
    /* margin-right: 10px; */
}

/* Custom class for the next button */
.custom-next-button {
    /* If you want to use float, set float property */
    /* float: left; */
    /* Using Flexbox to align the button to the left */
    margin-right: auto;
}

.move-me {
    position: relative;
}

.move-absolute {
    position: absolute;
    top: 180px;
    right: 120px;
    padding: 15px;
}

section.case .card_container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

section.case .card {
    gap: 20px;
}

@media (max-width: 575px) {
    section.case .card {
        width: calc(100% - 40px);
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    section.case .card {
        width: calc(50% - 40px);
    }
}

@media (min-width: 992px) {
    section.case .card {
        width: calc(33% - 40px);
    }
}

section.case .card h4 {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

section.case .card p {
    padding-left: 20px;
    padding-right: 20px;
}

section.case .card a {
    padding-left: 20px;
    padding-right: 20px;
    // margin-top: auto;
    margin-bottom: 20px;
}


section.case .all_service_button {
    margin-top: 100px;
    margin-bottom: 30px;
}

    section.case .all_service_button a {
        width: 30%;
        max-width: 150px;
        height: 50px;
        line-height: calc(50px - 6px - 6px);
        display: block;
        margin-left: auto;
        margin-right: auto;
        color: #406C9F;
    }