*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


.active-nav{
    color: yellow;
    background-color: #12cf12;
    border-radius: 40px;
}

 
.program{
    background-color: antiquewhite;
    padding: 40px;
}

.program p{
    margin: 2px;
    padding: 6px;
    margin-left: 10px;
}


.program b{
    color: #2000d6;
    margin-right: 4px;
}

.program span{
    color: #09690e;
    margin-left: 10px;
}



.output{
    margin-top: 25px;
    background: #000;
    padding: 10px;
}

.output p{
    /* border: 2px solid red; */
    margin: 10px;
    color: white;
}



/* csssss */

.output{
    margin-top: 5px;
    background: #302;
    padding: 10px;
}

.test-it-now{
    margin-bottom: 25px;
}
div > b{
    margin-top: 40px;
}
.main h2{
    /* border: 3px solid red; */
    margin-top: 50px;
}












.manage h2{
    margin-top: 40px;
}

.types li{
    margin: 10px;
    font-weight: bold;
}
.types > div{
    margin-bottom: 10px;
}



/* css */




body{
    display: flex;
    flex-direction: column;
    margin: 0;
}

.active-status a{
    color: #302;
    background-color: rgb(201, 192, 192);
}

/* Program, Code CSS Started From Here */
.test-it-now{
    height: 40px;
    background-color: #2fd12f;
    padding: 10px;
}
.program{
    border-left: 5px solid rgb(170, 112, 112);
    margin-bottom: 12px;
}

/* Header1 CSS Started Here */
.header1{
    margin-top: 10px;
    padding: 5px;
    width: 100%;
    background-color: #eee;

}


.header-btn{
    width: 140px;
    border: 4px double #7f994c;
    height: 40px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 5px;
    float: right;

    border-radius: 10px;
    background-color: #566c2b;
    color: rgb(202, 198, 198);

}

/* Search bar started */
.iclass {
    cursor: pointer;
    border-radius: 25px;
  }
  
  #input-id {
    font-size: 14px;
    width: 76%;
    padding: 10px;
    /* margin: 5px; */
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 7px;
    padding: 10px 12px 10px 60px;
    /* border: 3px solid rgb(131, 131, 133); */
    border: 3px solid #302;
    border-radius: 20px;
  }
  
  #input-id:focus {
    outline: 2px solid #f2f2f2;
    border-color: #09690e;
  }
  
  .search {
    /* position: relative; */ 
    display: inline-block;
    /* display: flex; */
  }
  
  .search-content {
    display: none;
    position: absolute;
    background-color: #ddd;
    /* min-width: 230px; */
    overflow: auto;
    border: none;
    z-index: 1;
    border-radius: 25px;
  }
  
  .search-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .search a:hover {
    background-color: #fcfcfc;
  }
  
  .show {
    display: block;
  }
/* Search bar Endeded */

/* Header1 CSS Ended Here */

a{
    text-decoration: none;
}

header{
    font-family: 'Baloo Bhai 2', cursive;
    background: #566c2b;
    display: flex;
    align-items: center;
    padding: 15px 0;
}

header ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header a{
    color: white;
}

#logo{
    margin: 0 auto;
    font-size: 30px;
}

/* Icons hover CSS Started from Here */
.glow-icons {
    font-size: small;
    width: 35px;
    height: 35px;
    text-align: center;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 40px;
}

.glow-icons:before {
    content: '';
    background: linear-gradient(45deg, #1bad16, #33a033, #459745, #2fd12f, #12cf12);
    position: absolute;
    top: -1px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}


.glow-icons:hover:before {
    opacity: 1;
}

.glow-icons:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #566c2b;
    left: 0;
    top: 0;
    border-radius: 20px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/* Icons Hover CSS Ended Here */


#menu li{
    padding: 10px;
}
#social-link ul{
    margin-right: 10px;
}
#social-link ul  li{
    font-size: 16px;
    padding: 8px;
    padding-bottom: 28px;
    margin-left: 10px;
}



#main{
    display: flex;
}

/* Side Bar CSS Started from Here */
aside{
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    flex: 0 0 20vw;
    background: beige;
}
aside ul{
    list-style: none;
    padding-left: 0;
}
aside ul a{    
    padding-top: 1px;
    display: block;
    color: #000;
    font-size: 14px;
    border-top: 1px solid beige;
    border-bottom: 1px solid gray;
    border-left: 15px solid beige;
    padding-left: 5px;
}
.aside-all ul a:hover{
    color: gray;
    border-top: 1px solid #566c2b;
    border-bottom: 1px solid #566c2b;
    border-left: 15px solid #566c2b;
    /* border-top-left-radius: 20px; */
    /* border-bottom-left-radius: 20px; */

    /* Right Border Hover Effect */
    /* border-right: 15px solid #566c2b; */
    /* border-top-right-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
    padding-left: 5px;
}
.headings-aside{
    font-weight: bold;
    font-size: 16px;
    color: rgb(216, 65, 65);
    list-style: none;
}

.headings-aside:before {
    content: '✓ ';
    color: #810808;
  }

  #aside10 ul li a{
      color: rgb(216, 65, 65);
      font-weight: bold;
      font-size: 16px;
  }

  #aside10 ul li a::before{
    font-size: 16px;
    content: '✓ ';
    color: #810808;
      /* list-style: none; */
  }

  .links-headings li {
    content: '✓ ';
    color: #810808;
  }

.aside-all{
    margin-top: 6px;
}

aside img{
    width: 100%;
}


#navbar{
    /* overflow: hidden; */
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}


article{
    padding: 10px;
}

.def-gj{
    list-style: none;
}
.def-gj li{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}
.def-gj-heading{
    margin-top: 40px;
    font-weight: 550;
    font-size: 24px;
}

.def-gj-list{
    list-style: decimal;
    margin-left: 20px; 
    margin-top: 10px; 
}
.def-gj-list li{
    margin-top: 9px;
}

.h2{
    font-size: 40px;
    text-align: center;
}

.services-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-box{
    border: 1px solid #eee;
    flex-basis: 32%;
    max-width: 370px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
.service-box h3{
    margin: 5px 0 10px;
}
.service-box p{
    margin: 0 0 10px;
}

.service-box img{
    width: 100%;
    /* width: 170px; */
}

.call-to-action{
    align-self: flex-start;
    margin-top: auto;
}
.call-to-action a{
    background: gray;
    color: #fff;
    border: 2px solid transparent;
    padding: 8px 13px;
    display: block;
}
.call-to-action a:hover{
    color: gray;
    background: transparent;
    border: 2px solid gray;
}


.hr{
    text-align: center;
    color: #fff;
    background-color: rgb(112, 107, 107);
    margin-top: 140px;
    border: 25px solid rgb(112, 107, 107);
    border-radius: 40px;
}

/* Choty Dabbon ki CSS */
.small-box{
    display: flex;
    flex-wrap: wrap;
    margin-top: 140px;
    margin-left: 22px;
    margin-right: 22px;
    margin-bottom: 22px;
}
.service-topics{
    margin: auto;
    display: flex;
    justify-content: center;
    border: 2px solid #eee;
    border-radius: 10px;
    max-width: 184px;
    padding: 10px;
    margin-bottom: 15px;
    flex-direction: column;
}

.service-topics img{
    width: 140px;
    height: 120px;
}

.service-topics a{
    color: #302;
}

/* Choty dabby Ended Here */




/* Next And Back Buttons CSSS Started From header */
@import url(https://fonts.googleapis.com/css?family=Roboto:700);

#main-next-btn{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 10px;
  opacity: 1;
  margin-top: 140px;
  border-radius: 2px;
}
.button-next {
  background: #256618;
  margin : 20px auto;
  width : 240px;
  height : 50px;
  overflow: hidden;
  text-align : center;
  transition : .2s;
  cursor : pointer;
  border-radius: 40px;
  box-shadow: 0px 1px 2px rgba(0,0,0,.2);
}
.btn-Two {
  position : relative;
  width : 240px;
  height : 100px;
  margin-top: -102px;
  padding-top: 2px;
  background : #256618;
  left : -300px;
  transition : .3s;
}
.btn-Text {
  color : white;
  transition : .3s;
}
.btn-Text2 {
  margin-top : 63px;
  margin-right : -140px;
  margin-left: 12px;
  color : white;
}
.button-next:hover .btn-Two{ /*When hovering over .button change .btn-Two*/
  left: -130px;
}
.button-next:hover .btn-Text{ /*When hovering over .button change .btn-Text*/
  margin-left : 65px;
}
.button-next:active { /*Clicked and held*/
  box-shadow: 0px 5px 6px rgba(0,0,0,0.3);
}
/* Next And Back Buttons CSSS Ended From header */


/* Footer CSS Started Here */
footer{
    background: #566c2b;
    background: #7d7e7c;
    color: #fff;
    text-align: center;
    /* padding: 15px 0; */
    width: 100%;
}

.main-footer{
    padding-top: 25px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.first-footer{
    margin-top: 40px;
    margin-right: 5px;
    margin-left: 13px;
    width: 302px;
}

.footer-button {
    display: inline-block;
    border-radius: 4px;
    background-color: #999290;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 10px;
    transition: all 0.5s;
    cursor: pointer;
    font-size: 14px;
  }
  
  .footer-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .footer-button span:after {
    content: '\2540';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .footer-button:hover span {
    padding-right: 25px;
  }
  
  .footer-button:hover span:after {
    opacity: 1;
    right: 0;
  }

.center-footer{
    margin-top: 140px;
    margin-right: 25px;
}

.main-footer a{
    color: rgb(77, 9, 167);
    padding: 5px;
}
.main-footer a:hover{
    color: rgb(194, 241, 22);
    background-color: rgb(41, 11, 11);
    padding: 5px;
    border-radius: 10px;
}
.email-footer{
    font-size: 25px;
    margin-top: 10px;
    margin-left: 140px;
}
.phone-footer{
    font-size: 25px;
    margin-top: 10px;
}

.third-footer{
    margin-top: 40px;
    margin-right: 10px;
}
.third-footer ul{
    display: flex;
    list-style: none;
}
.third-footer ul li a{
    font-size: 40px;
    margin: 25px;
}


@media screen and (max-width:850px) { 
    .service-box{
        flex-basis: 48%;
    } 
    aside{
        flex-basis: 48%;
        flex: 0 0 30vw;
    }
}
@media screen and (max-width:600px) { 
    header{
        flex-direction: column;
    }
    #logo{
        order: -1;
    }
    #main{
        flex-direction: column;
    }
    article{
        order: -1;
    }
    

    .services-container{
        flex-direction: column;
        align-items: center;
    }
    h2{
        text-align: center;
    }
    .aside-all ul li a{
        border-bottom: 1px solid gray;
        border-left: 40px solid beige;
        border-right: 240px solid beige;
        padding-left: 15px;
        font-size: 15px;
    }
    .aside-all ul li a:hover{
        color: gray;
        border-top: 1px solid #566c2b;
        border-bottom: 1px solid #566c2b;
        border-left: 40px solid #566c2b;
        border-right: 240px solid #566c2b;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        padding-left: 15px;
    }
}


@media screen and (max-width:243px) {
    #menu ul li a{
        font-size: 15px;
    }
    #logo a{
        font-size: 25px;
    }
}

@media screen and (max-width:227px) {
    #menu ul li a{
        font-size: 14px;
    }
    #logo a{
        font-size: 20px;
    }
}


/* Search bar Responsivness Started Here */
@media screen and (max-width:1394px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 75%;
        padding: 10px;
    }
}
@media screen and (max-width:1294px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 72%;
        padding: 10px;
    }
}
@media screen and (max-width:1149px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 71%;
        padding: 10px;
    }
}
@media screen and (max-width:1109px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 69%;
        padding: 10px;
    }
}
@media screen and (max-width:1042px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 67%;
        padding: 10px;
    }
}
@media screen and (max-width:972px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 64%;
        padding: 10px;
    } 
}
@media screen and (max-width:890px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 61%;
        padding: 10px;
    }

    .header-btn{
        width: 130px;
        height: 30px;
        margin-top: 17px;
        margin-left: auto;
        margin-right: 5px;
        float: right;
    }

}
@media screen and (max-width:768px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 57%;
        padding: 10px;
    }

    .header-btn{
        width: 125px;
        height: 30px;
        margin-top: 17px;
        margin-left: auto;
        margin-right: 5px;
        float: right;
    }

}
@media screen and (max-width:672px) {
    #input-id{
        font-size: 14px;
        font-size: 14px;
        width: 59%;
        padding: 10px;
    }

    .header-btn{
        width: 100px;
        height: 30px;
        margin-top: 17px;
        margin-left: auto;
        margin-right: 5px;
        float: right;
    }

}
@media screen and (max-width:600px) {
    #input-id{
        font-size: 14px;
        margin-right: 60px;
        font-size: 14px;
        width: 95%;
        padding: 10px;
    }

    .header-btn{
        width: 140px;
        height: 35px;
        margin-top: 4px;
        margin-bottom: 4px;
        margin-left: 2px;
        margin-right: 5px;
        float: left;
    }
    #header-btn1{
        margin-left: 70px;
    }


    .btn-container{
        display: flex;
        justify-content: center;
    }

}


/* Footer Media Quries */
@media screen and (max-width:907px) {
    .center-footer{
        margin-top: 80px;
        margin-right: 25px;
        order: 1;
    }
    .center-footer div{
        font-size: 25px;
    }
}
@media screen and (max-width:600px) {
    .center-footer div{
        font-size: 19px;
    }
}

