/*Main Css */
/* google fon link */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root {
    --white-color: #fff;
    --green-color: #99ca3c;
    --blue-color:#00081d;

    --navy-color:#283c92;
    --poppin-font: 'Poppins', sans-serif;
    
  }

::selection {
    background: var(--green-color);
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: var(--green-color);
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}


/* Accordion CSS */

.myaccordion li .faq-opt {
    display: none;
}

.myaccordion li.active .faq-opt {
    display: block;
}

.myaccordion li.active .faq-ang h4:before {
    content: "\f077";
}

body {
    font-family: var(--poppin-font);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: var(--poppin-font);
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
}

a:hover {
    color: #ff5e14;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    background: transparent;
    border: none;
    border-radius: 0px;
    font-family: "Roboto";
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}


/* Padding Classes */

.pad-sec {}

.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}


/* Heading Classes */

.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}

.hding-2 h2 {}

.hding-3 h3 {}

.hding-4 h4 {}

.hding-5 h5 {}

.hding-6 h6 {}

.para {}

.highlighted {
    color: #ff5e14;
}


/* Custom Slick Css */

.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 20px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    padding: 0px;
    background: #d6d6d6;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #f3c919;
    width: 11px;
    height: 11px;
}


/*header css*/

header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    padding: 20px 0 40px;
    position: absolute;
    width: 100%;
    z-index: 1;
   
}

.main-header .menu{
    padding: 20px 0px;
}
.main-header .menu > li:last-child{
    padding: 14px 20px;
    background-color: var(--green-color);
    border-radius: 5px;
    color: var(--white-color);
    margin-left: 30px;
    transition: all 0.5s ease-in-out;
 
}
.main-header .menu > li:last-child a{
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.main-header .menu > li:last-child:hover{
    background-color: var(--white-color);
    color: var(--blue-color);
}

.logo {
    display: inline-block;
    width: 160px;
}

.logo img {
    display: block;
    width: 100%;
}


/* Hamburger Menu */

.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}

.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #0f4c97;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
    top: 0;
}

.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.menu-Bar span:nth-child(3) {
    top: 16px;
}

.menu-Bar.open span {
    background: #b70404;
}

.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}
a{
    text-decoration: none;
}

/* Menu Css */

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 25px;
}

.menu li a {
    display: block;
    color:var(--white-color);
    text-transform: capitalize;
  font-size: 18px;
  font-weight: 300;


}

.menu li:hover a,
.menu li.active a {
    color: var(--green-color)
}


/* Menu menu-item-has-children CSS */

/*.menu-item-has-children-nav {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.menu-item-has-children-nav:hover {
    overflow: visible;
}

ul.menu-item-has-children {
    position: absolute;
    width: 100%;
    left: -0px;
    margin: auto;
    background: #fff;
    padding: 20px;
    text-align: left;
    border-radius: 2px;
    box-shadow: 0 0 10px 3px #00000014;
    opacity: 0;
    animation: btotreverse 0.5s forwards;
}

ul.menu-item-has-children li {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

ul.menu-item-has-children li a {
    padding: 0;
    font-size: 14px;
    color: #000 !important;
    display: block;
    width: 100%;
    margin: 0px 0 15px;
    text-align: center;
    font-weight: 600;
    background: transparent !important;
}

ul.menu-item-has-children li.last a {
    margin-bottom: 0px;
}

ul.menu-item-has-children li a:hover {
    color: #000 !important;
}

.menu-item-has-children-nav:hover ul.menu-item-has-children {
    animation: btot 0.5s forwards;
    z-index: 9;
}*/


/* menu-item-has-children CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}


/* Main Banner CSS */

.mainBanner {
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.aboutBanner{
    background-size: cover;
    background-position: center;
    height: 380px;
    background-repeat: no-repeat;
    background-color: var(--blue-color);
    display: flex;
    align-items: end;
    padding-bottom: 75px;
    position: relative;
}

/* ///banner section/// */
.banner-content .top-head{
    font-size: 56px;
    line-height: 1.95;
    padding-bottom: 0;
}
.banner-content .main-head{
    font-size: 100px;
    line-height: 0.9;
    color: var(--white-color);
}
.banner-content .main-content{
    line-height: normal;
    font-size: 18px;
    color: var(--white-color);
}
.banner-content .themebtn:hover{
    background-color: var(--white-color);
    color: var(--blue-color);
}
/* ///banner section end /// */


/* //commomn things// */
.top-head{
    font-family: var(--poppin-font);
  font-size: 30px;
    font-weight: 500;
    line-height: 0.83;
    color: var(--green-color);
    padding-bottom: 20px;

}
.main-head{
   font-size: 60px;
    font-weight: bold;
    line-height: 1.17;
    color: var(--blue-color);
   
  }
  .main-content{
    font-size: 16px;
    font-weight: 300;
     line-height: 1.88;
    color: var(--blue-color);
    padding-bottom: 35px;
    padding-top: 20px;
  }
  .themebtn{
    padding: 20px 70px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid  var(--green-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 800;
    transition: all 0.5s ease-in-out;
  }
  .banner-content{
    max-width: 100%;
    width: 45%;
  }

/* //commomn things end// */



/* secone strat */
.hm-sec1{
    padding-top: 120px;
    padding-bottom: 100px;
}
.ab-sec1{
    padding-bottom: 100px;
}

.sec1image-section img{
    width: 100%;
   
}
.sec1content-section{
    padding-left: 40px;
}
.sec1content-section .themebtn{
    color: var(--green-color);
    transition: all 0.5s ease-in-out;
}
.sec1content-section .themebtn:hover{
    color: var(--white-color);
    background-color: var(--green-color);
}
/* secone end */


/* sectiontwo start */
.hm-sec2{
    background-color: var(--blue-color);
    padding: 80px 0px;
    text-align: center;
}
.sec2-content .main-head{
    color: var(--white-color);
    padding-bottom: 50px;
    text-transform: capitalize;
}
.sec2content-section{
    padding-top: 40px;
}
    .success-head{
    font-size: 25px;
    font-weight: bold;
    color: var(--white-color);
    line-height: normal;
    }
    .sec2-content .top-head{
    padding-bottom: 15px;
    }
    .sec2content-section .main-content{
    color: var(--white-color);
    text-align: center;
    }
/* sectiontwo end */


/* //section three start/// */
.hm-sec3{
    padding: 120px 0px;
}
.sec3-content{
    text-align: center;
}
.sec3-content .top-head{
    padding-bottom: 15px;
  }
  .sec3-content .main-head{
    text-transform: capitalize;
  }
  .card-colum{
    background-color: var(--blue-color);
    padding: 30px 40px;
    text-align: center;
    min-height: 350px;
  }
  .service-content{
  font-size: 19px;
  font-weight: bold;
  line-height: 1.58;
  color: var(--white-color);
  padding-top: 25px;
  }
  .card-content .main-content{
    color: var(--white-color);
    font-size: 14px;
    line-height: 1.79;
    padding-bottom: 20px;
  }
  .card-content .readmore:hover{
    color: var(--white-color) !important;
  }
  .readmore{
    font-size: 17px;
    font-weight: 500;
     color: var(--green-color);
     position: relative;
     line-height: normal;
    transition: all 0.5s ease-in-out
    ;  }
  .readmore:hover{
    color: var(--blue-color);
  }
  .readmore::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
    height: 1px;
    width: 80%;
  }
  .sec3-card{
    padding-top: 80px;
  }

/* //section three end/// */
/* //section four start/// */

.hm-sec4{
    background-color: var(--blue-color);
    padding: 140px 0px;
}
.sec4content-section :where(.main-head,.main-content){
    color: var(--white-color);
}
.sec4content-section .themebtn:hover{
    background-color: var(--white-color);
    color: var(--blue-color);
}
.sec4content-section{
    padding-right: 80px;
}

/* //section four end/// */
/* //section five start/// */
.hm-sec5{
    padding-top: 100px;
    padding-bottom: 100px;
}
.top-section5 .sec3-content{
    text-align: left;
}
.top-section5 .main-content{
    padding-top: 0;
    padding-bottom: 0;
    color: var(--blue-color);
    }
    .sec5-content{
        padding-top: 80px;
    }
    .readmore-sec h6{
    font-size: 22px;
    line-height: normal;
    color: #1f1f1f;
    }
    .readmore-sec{
        display:flex ;
        align-items: center;
        justify-content: space-between;
    }
    .readmore-sec h6 span{
color: #ababab;
    }
    .readmore-sec .readmore{
        font-size: 22px;
    }
    .sec5image-section{
        width: 100%;
        height: 100%;
        position: relative;
    }
    .sec5image-section img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .sec5image-section p{
        font-family: var(--poppin-font);
        font-size: 15px;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        color: var(--white-color);
        text-transform: uppercase;
        padding: 15px 40px;
        background-color: var(--navy-color);
        position: absolute;
        top: 10px;
        left: 0;
    }
    .sec5-bottom{
        padding-top: 40px;
    }
    .sec5-bottom-content {
        padding-top: 20px;
    }
    .sec5-bottom-content .success-head{
       color: #1f1f1f;
        /* font-size: 30px; */
    }
    .sec5-bottom-content .readmore-sec{
        padding-top: 15px;
    }
    .sec5-bottom-content .readmore-sec h6{
        font-size: 17px;
        line-height: 1.43;
    }
    .sec5-bottom-content .readmore-sec a{
        font-size: 17px;
        line-height: normal;
    }
    .sc5b-img{
        position: relative;
    }
    .sc5b-img p{
        font-family: var(--poppin-font);
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        color: var(--white-color);
        padding: 16px 38px;
        position: absolute;
        top: 10px;
        left: 0;
        background-color: var(--navy-color);     
    }
    footer{
        background-color: var(--blue-color);
        /* padding: 35px 60px; */
        
    }
    .first-col .main-content{
        font-size: 14px;
        color: var(--white-color);
        padding-right: 15%;
    }
    footer h6{
        font-size: 19px;
        font-weight: bold;
        font-stretch: normal;
        line-height: 1.58;
        color: var(--white-color);
        padding-bottom: 25px;
    }
    .second-col ul li,.third-col ul li{
    font-family: var(--poppin-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 2.94;
     }
    .second-col ul li a,.third-col ul li a{
        color: var(--white-color);
    }
    .second-col ul li a:hover,.third-col ul li a:hover{
        color: var(--green-color);
    }
    .third-col ul li a{
        display: flex;
        align-items: center;
        gap: 0px 15px;
    }
    .third-col ul li a span{
        color: var(--green-color);
    }
    .four-col ul li{
        display: inline-block;
        padding-right: 16px;
    }
    .four-col ul li a{
        height: 43px;
        width: 43px;
        background-color: var(--green-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white-color);
        transition: all 0.5s ease-in-out;
    }
    .four-col ul li a:hover{
        color: var(--blue-color);
        background-color: var(--white-color);

    }
    .second-col ul li{
        display: inline-block;
        width: 49%;
    }
    #adddress a:hover{
        color: var(--white-color) !important;
    }
    footer :where(.col-md-3,.col-md-2){
        padding-top: 70px;
    }
    .copyright{
        background-color: var(--blue-color);
        text-align: center;
      
        padding: 30px 0px;
    }
    .copyright p{
        color: var(--white-color);
        font-size: 12px;
        font-weight: 300;
    }
    .four-col{
        padding-left: 10px;
    }
    .footer-top{
        padding: 35px 0px 60px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);;
    }
/* //section five end/// */



/* about section start */
.aboutBanner .main-head{
    font-size: 60px;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    color: var(--white-color);
}
.aboutBanner .banner-content{
    width: 100%;
}
/* about section end */
/* success section strt */
.success-parent .sec5content-section{
    padding-left: 80px;
}
.success-parent .sec5-bottom{
    padding-top: 100px;

}
.success-parent .sec5-bottom-content .main-content{
    text-align: left;
    padding-right: 10%;
}
.first-service .hm-sec1{
    padding-bottom: 0;
}
.first-service .hm-sec1 .main-content{
    padding-top: 40px;
}
.first-service .hm-sec3{
    padding-top: 0;
}
/* success section end */



/* form section start */
.form-parent-conatiner {
    padding-top: 100px;
    padding-bottom: 100px;
}
.top-form-section {
    text-align: center;
}
.top-form-section h6 {
  
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    line-height: 0.83;
    text-align: center;
    color: var(--green-color);
  
}
.top-form-section h2 {
    font-size: 60px;
    line-height: 1.15;
    color: #fff;
    padding-bottom: 90px;
     font-weight: bold;
    line-height: 1.21;
    text-align: center;
    text-transform: capitalize;
    color: #1f1f1f;
}

form .col-md-6, form .col-md-12 {
    margin-bottom: 25px;
}
textarea, select, input[type] {
    color: #fff;
    padding: 18px 54px;
    font-family: var(--poppin-font);
    background-color: #33394A;

    font-size: 14px;
  font-weight: 300;
   line-height: 1.79;
}
.form-control:focus {
    background-color: #33394A;
    color: #fff;
    box-shadow: none;
}
.form-section .col-md-12 textarea {
    background-color: #33394A;
    border-radius: 0;
    resize: unset;
    font-family: 'Poppins', sans-serif;
    height: 230px;
    padding: 18px 54px;
}
form .themebtn{
    background-color: var(--green-color);
    color: var(--white-color);
   }
   form .themebtn:hover{
    background-color: var(--white-color);
    color: var(--green-color);
   }
   
/* form section end */


.sec5-content-blog{
    display: none;
    padding-top: 80px;
}
.sh{
    display: block;
}
.financial-freedom{
    padding-top: 100px;
}


/*popup*/
.popup{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 500px;
    height: 700px;
    z-index: 1;
  }
  .pop-inner{
    background-color:var(--navy-color);
    width: 100%;
    height: 700px;
    padding: 35px;
    border-radius: 10px;
  }
  .closePop{
    position: absolute;
    top: -12px;
    right: 0;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .pop-inner h4{
    font-size: 15px;
    font-weight: 500;
    font-weight: normal;
    color: #fff;
    text-align: center;
    padding: 20px 0 10px;
    text-transform: uppercase;
  }
  .pop-inner p{
    font-size: 15px;
    font-weight: 500;
    font-weight: normal;
    color: #fff;
    text-align: center;
    padding:  0 0 60px;
    text-transform: capitalize;
  }
  .pop-inner p span{
    color: var(--green-color);
    font-weight: bolder;
    font-size: 18px;
    padding-right: 10px;
  }
  .pop-inner input,.pop-inner textarea{
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 15px;
    font-family: 'Nunito Sans';
    resize: unset;
  }
  .pop-inner .sbt{
    text-align: center;
  }
  .pop-inner button{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background-color: #fff;
    font-family: 'Nunito Sans';
    font-size: 16px;
    font-weight: normal;
    line-height: 50px;
    letter-spacing: normal;
    color: #26211a;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
    /* box-shadow: 2px 12px 12px -3px rgb(239,182,169,0.7); */
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
  }
  .pop-inner button:hover{
    border: 1px solid #fff;
      background: none;
      color: #fff;
  }
  .pop-overlay{
      display: none;
  }
  .pop-overlay:after {
      content: "";
      position: fixed;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1;
  }
  

  /* revision */
  .sc5b-img img{
    width: 100%;
  }
  .sec5content-section ul li{
    padding-bottom: 10px;
    padding-bottom:20px
  }
  .sec5content-section ul li a{
    color: var(--green-color);
    font-size: 16px;
    padding-left: 20px;
    position: relative;
    
  }
  .sec5content-section ul li a::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;

  }
  .heading-section{
    padding: 50px 0px;
    text-align: center;
  }
  .content-addstaff {
    padding-top: 20px;
  }
 .content-addstaff p{
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
     }
     .addstaff .row{
        justify-content: center;
     }
     .addstaff{
        padding-bottom: 100px;
     }
     .history-sec .main-content{
        padding-bottom: 0;
     }
     .history-sec{
        padding-bottom: 50px;
     }
     .sec3 .hm-sec5{
        padding-bottom: 50px;
        padding-top: 0px;
     }
     /* .sec3 .hm-sec5 .success-parent .sec5content-section{
        padding-left: 20px;
     } */
     .technology .main-head{
        text-align: center;
     }
     .technology ul li .main-content{
        padding: 10px 10px;
        position: relative;
     }
     .technology ul li .main-content::after{
        content: "";
        height: 5px;
        width: 5px;
        border-radius: 50%;
        background-color: var(--blue-color);
        position: absolute;
        top: 20px;
        left: 0;
     }
     .sec4{
        margin-top: 50px;
        margin-bottom: 50px;
     }
     .sec4 .sec4content-section {
        padding-right: 0px;
    }
    
     .sec4 ul li{
        color: var(--white-color);
        font-size: 16px;
        padding-bottom: 10px;
        position: relative;
        padding-left: 15px;
     }
     .sec4 ul li::after{
        content: "";
        width: 5px;
        height: 5px;
        background-color: var(--white-color);
        position: absolute;
        top: 5px;
        left: 0;
        border-radius: 50%;
     }
     .secinvest ul li{
        padding-bottom: 20px;
        font-size: 15px;
       position: relative;
       padding-left: 10px;
     }
     .secinvest ul li::after{
        content: "";
        height: 5px;
        width: 5px;
        border-radius: 50%;
        background-color: var(--blue-color);
        position: absolute;
        top: 5px;
        left: 0;
     }
.box{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 20px;
    height: 300px;
}
   .box .main-head{
    font-size: 25px;
    padding-bottom: 20px;
   }
   .box p{
    font-size: 15px;
    padding-bottom: 15px;
   }
   .history-sec .main-content span{
    font-weight: bold;
   }
   .sec-bus li{
    font-size: 15px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 20px;
   }
   .sec-bus li::after{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
   }
   .sec-bus li .cotentBox{
    padding-left: 10%;
    padding-top: 20px;
    
   }
   .sec-bus li p{
  
    padding-top: 10px;
    
   }
   .sec-bus li p span{
    font-weight: bold;
   }
   .sec-bus .main-head{
    font-size: 25px;
    text-align: center;
       }
       .sec-bus .main-head a{
        color: var(--green-color);
       }
       

   .sec-bus{
    padding-bottom: 50px;
   }
   .planheading-section{
    padding: 100px;
   }
   .planheading-section .main-head{
    font-size: 50px;
    text-align: center;
   }
   .secplan .sec5-content{
    padding-top: 0;
   }
   .secplan .hm-sec5{
    padding-top: 0;
   }
   .plan-image img{
    width: 100%;
   }
   .plan-content{
    padding: 20px 0px;
   }
   .plan-content .main-head{
    font-size: 30px;
   }
   .plan-content span{
    text-align: center;
    font-weight: bold;
   }
   table{
    width: 100%;
    border: 1px solid #000;

   }
 th, td {
    border:1px solid black;
  }
  table{
    border:1px solid black;
    margin-bottom: 30px;
  }
   td>h6{
    font-weight: bold;
    font-size: 18px;
  }
  td>h6 span{
    font-weight: normal;

  }
  td{
    padding: 20px;
  }
  .plan1{
    padding: 100px;
  }
  th{
    font-weight: bold;
    font-size: 20px;
    padding: 20px 30px;
    text-align: center;
  }
  .plan1 .last-head{
    font-weight: bold;
    font-size: 20px;
    padding-top: 30px;
  }
  .images-section{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 0px 20px;
  }
  .images-section img{
    width: 100%;
  }
  .diagramcomp{
    padding: 50px 0px;
  }
  .diagramcomp .main-head{
    padding-bottom: 20PX;
  }
  .plan2{
    padding: 100px 0px;
  }
  .main-content span{
    font-weight: bold;
    color: var(--navy-color);
  }
.plan2 .main-head{
    font-size: 25px;
}
.plan2 .top-head{
    font-size: 20px;
}
.bottom-ins{
    padding: 50px 0px;
}
.bottom-ins .main-content{
    padding-bottom: 0px;
    position: relative;
    padding-left: 20px;
}
.bottom-ins .main-content::after{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--blue-color);
    position: absolute;
    top: 30px;
    left: 0;
    border-radius: 50%;
}
.dirplan .main-head{
    font-size: 40px;
    padding-bottom: 10px;
}
.dirplan{
    padding: 100px 0px;
}
.top-directry{
    padding-bottom: 20px;
}
.dirplan table h6{
    padding-bottom: 20px;
    text-transform: capitalize;
}
.dirplan table p{
    padding-left: 10%;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}
#hidematerial{
    color: var(--white-color);
    display: none;
}
.hideContent{
    display: block !important;
}
.ab-sec1{
    padding: 100px 0px;
}




/* menu-item-has-children css */

.menu>li.menu-item-has-children {
    position: relative;
}

.menu>li.menu-item-has-children::before {
    content: '\f078';
    font-family: "Font Awesome 5 pro";
    font-size: 10px;
    color: #fff;
    position: absolute;
    right: -13px;
    top: 5px;
    margin: auto;
    width: 10px;
}


.menu>li.menu-item-has-children:hover::after {
    height: 130%;
}


/* .menu>li.menu-item-has-children:hover::before {
    content: "";
    width: 100%;
    height: 125%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    cursor: pointer;

} */

.sub-menu {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 60px;
    left: 0;
    width: 220px;
    background-color: rgba(128, 204, 40, 0.8);
    text-align: left;
    /* padding: 35px 25px; */
    right: 0;
    margin: auto;
    transition:visibility 0s linear 0.3s, opacity 0.3s linear;
     z-index: 2; 
}


/* .sub-menu::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #000000 transparent;
    position: absolute;
    top: -10px;
    left: 40px;
} */



ul.menu li.menu-item-has-children:hover .sub-menu {
       visibility:visible;
  opacity:1;
  transition-delay:0s;
  
}

.sub-menu>li {
    margin-left: 0;
    /* margin-bottom: 25px; */
    width: 100%;
    position: relative;
    /* padding: 15px 20px; */
    border-bottom: 1px solid #fff;
}

.sub-menu>li.last {
    border-bottom: none;
    margin-left: 0 !important;
    background-color: rgba(128, 204, 40, 0.8);
    text-align: left !important;
}
.sub-menu>li.last a{
    text-align: left !important;
}
.sub-menu>li.last:hover{
    background-color: rgba(35, 118, 120, 0.8) !important;
}
.sub-menu>li.last a:hover {
    background-color: rgba(35, 118, 120, 0.8) !important;
}

.sub-menu>li>a {
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 20px;
}

.sub-menu>li:hover a {
    color: #fff !important;
}

.sub-menu>li:hover {
    background-color: rgba(35, 118, 120, 0.8);
}

.sub-menu>li::before {
    content: "";
    width: 120%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.more-info h2{
    color: var(--blue-color);
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.more-info  p{
    font-size: 15px;

}
.more-info {
    padding-bottom: 100px;
}

@media (min-width: 1440px){
    .container{
        max-width: 1440px;
    }
 
}
@media (max-width: 1400px){
    .log{
        width: 140px;
    }
    /* .sec1content-section {
    padding-left: 0px;
    } */
    .success-head {
        font-size: 20px;}
    .card-colum {
               padding: 30px 20px;}
    .success-parent .sec5-bottom-content .main-content{
        text-align: left;
    }
    .success-parent .sec5content-section{
        padding-left: 0px;
    }
    /* .sec4content-section{
        padding-right: 00px;
    } */
    .main-head{
    font-size: 50px;
    }
    .banner-content .main-head {
    font-size: 80px;
    }
    .aboutBanner .main-head{
    font-size: 50px;
    }
    .service-content {
    font-size: 16px;
    }
}


@media (max-width: 1200px) {
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #0f4c97;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 100vw;
    }
    ul.menu li {
        display: block;
    }
    ul.menu li a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .logo img {
        max-width: 50%;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li {
        display: block;
        margin: 0px;
        padding: 0;
    }
    header .main-header ul.menu>li a {
    color: #fff;
    }
    header .main-header ul.menu>li a:before {
    display: none;
    }
    .banner-content .top-head {
    font-size: 45px;}
    .banner-content .main-head {
    font-size: 70px;
    }
    .main-head {
    font-size: 45px;
    }
    .sec1content-section {
    padding-left: 0px;
    }
    .success-head {
    font-size: 18px;
    }
    .sec4content-section {
    padding-right: 0px;
    }
    .second-col ul li, .third-col ul li {
    font-size: 14px;}
    .four-col ul li {
        padding-right: 4px;
    }
}

@media (max-width: 992px) {
    .banner-content .top-head {
        font-size: 35px;
    }
    .banner-content .main-head {
        font-size: 60px;
    }
    .main-head {
        font-size: 30px;
    }
}

@media(max-width:767px){
    .banner-content {
        max-width: 100%;
        width: 80%;
    }
    .hm-sec1 {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .sec1content-section {
             padding-top: 30px;
    }
    .hm-sec3 {
        padding: 50px 0px;
    }
    .sec1-content .sec1image-section{
        padding: 50px 0px
    }
    .sec5-content-blog {
               padding-top: 50px;
    }
    .sc5b-img img{
        width:100%;
    }
    .logo img {
        max-width: 80%;
    }
    .sec5content-section{
        padding-top: 50px;
    }
    .sec3-card {
        padding-top: 50px;
    }
    .hm-sec4 {
        background-color: var(--blue-color);
        padding: 50px 0px 0px;
    }
    .hm-sec5 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}