
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar {
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    /*opacity: 0.85;*/
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
    column-gap: 20px;
}

.logo {
    order: 1;
    font-size: 2.3rem;
    width: 208px;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-weight: bold;
    font-size: 17px;
}

    .navbar a:hover {
        color: #117964;
    }

@media (max-width: 1235px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

        .navbar-container input[type="checkbox"] {
            position: absolute;
            display: block;
            height: 32px;
            width: 30px;
            top: 20px;
            left: 20px;
            z-index: 5;
            opacity: 0;
            cursor: pointer;
        }

        .navbar-container .hamburger-lines {
            display: block;
            height: 28px;
            width: 35px;
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

            .navbar-container .hamburger-lines .line {
                display: block;
                height: 4px;
                width: 100%;
                border-radius: 10px;
                background: #333;
            }

            .navbar-container .hamburger-lines .line1 {
                transform-origin: 0% 0%;
                transition: transform 0.3s ease-in-out;
            }

            .navbar-container .hamburger-lines .line2 {
                transition: transform 0.2s ease-in-out;
            }

            .navbar-container .hamburger-lines .line3 {
                transform-origin: 0% 100%;
                transition: transform 0.3s ease-in-out;
            }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        width: 250px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 21px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

        .navbar .menu-items li {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            font-weight: 500;
        }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
}

@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }
}



.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    grid-gap: 30px;
    align-items: stretch;
}

    .grid > article {
        /*border: 1px solid #ccc;*/
        box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        background: white;
       position: relative;

    }

        .grid > article img {
            max-width: 100%;
            display: flex;
            margin: 0 auto;
            padding: 21px;
            height: 100px;
        }

    .grid .text {
        padding: 16px;
        text-align: center;
    }

.atm {
    font-size: 13.5px;
    font-weight: 800;
    color: #040404 !important;
}

h5 {
    color: black !important;
}

.back-image1 {
    background-image: url('assets/Business Plan/Rectangle 1.png');
    padding-top: 12px;
    padding-bottom: 50px;
    margin-top: 8%;
}


@media only screen and (max-width: 1393px) and (min-width: 1250px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 1253px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 1080px) {
    .menu-items {
        column-gap: 2px !important;
    }
}

.back-color {
    background-color: #fbcb15;
}

.img-si {
    display: flex;
    margin: 0 auto;
}

.financial_text {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 900;
    font-size: 34px;
    line-height: 51px;
    /* identical to box height */
    text-align: center;
    color: #007F00;
    -webkit-text-stroke: 0.04vw #fff;
}
.dropbtn {
  color: white;
  /*padding: 16px;*/
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
      padding: 4px 16px;
  text-decoration: none;
  display: block;
  font-size:15px;
}

/*.dropdown-content a:hover {background-color: #fff;}*/

.dropdown:hover .dropdown-content {
    display: block;
    background: #E59E28;
    border: 1px solid #E59E28;
    border-radius: 22px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    text-align: start;
    color: #FFFFFF;
    z-index: 11;
}

/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/

.card__:hover {
  transform: scale(1.1);
}
.card__ {
  transition: transform 0.5s;
}


  .ribbon {
         position: absolute;
         right: -5px;
         top: -5px;
         z-index: 1;
         overflow: hidden;
         width: 93px;
         height: 93px;
         text-align: right;
     }

         .ribbon span {
             font-size: 9px;
             color: #fff;
             text-transform: uppercase;
             text-align: center;
             font-weight: bold;
             line-height: 32px;
             transform: rotate(45deg);
             width: 125px;
             display: block;
             background: #79a70a;
             background: linear-gradient(#9bc90d 0%, #79a70a 100%);
             box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
             position: absolute;
             top: 17px;
            
         }

             .ribbon span::before {
                 content: '';
                 position: absolute;
                 left: 0px;
                 top: 100%;
                 z-index: -1;
                 border-left: 3px solid #79A70A;
                 border-right: 3px solid transparent;
                 border-bottom: 3px solid transparent;
                 border-top: 3px solid #79A70A;
             }

             .ribbon span::after {
                 content: '';
                 position: absolute;
                 right: 0%;
                 top: 100%;
                 z-index: -1;
                 border-right: 3px solid #79A70A;
                 border-left: 3px solid transparent;
                 border-bottom: 3px solid transparent;
                 border-top: 3px solid #79A70A;
             }