.bd {
    border: 1px solid #eee;
}

.bs {
    box-shadow: 0px 5px 15px 5px #dfdfdf
}

.top-menu {
    box-shadow: 0px 5px 15px 5px #dfdfdf;
}

a {
    font-size: 18px !important;
    text-decoration: none;
}

.block-btn {
    color: #fff;
    background-color: #274E13;
    padding: 10px 20px;
    border: none;
}

.hero-area {
    overflow-x: hidden;
}

.hero-img {
    margin-right: -21%;
}

.features {
    background-color: #274E13;
    color: #fff;
    box-shadow: inset 0px 5px 5px 0px #000000;
}

.quotation {
    color: #274E13;
    box-shadow: 0px 5px 15px 5px #000000;
}

/* start dashboard sidebar */
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.sidebar {
    position: sticky;
    /* top:0; */
    left: 0;
    bottom: 0;
    width: 90px;
    /* height: 180vh; */
    height: 100%;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.5s linear;
    background: #274E13;
}

.sidebar:hover {
    width: 240px;
    transition: 0.5s;
}

.sidebar a {
    color: #fff;
}

.sidebar-menu {
    position: relative;
    list-style: none;

}

.sidebar-menu li {
    padding: 0px 10px;
    margin: 8px 0;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
}

.sidebar-menu li:hover,
.active {
    background-color: #e0e0e058;
}

.sidebar-menu a {
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sidebar-menu a span {
    overflow: hidden;

}

.sidebar-menu a i {
    font-size: 30px;
}

.exam-statistics {
    min-height: 500px;
}

/* end dashboard sidebar */

/* for profile page */
.gradient-custom {
    /* fallback for old browsers */
    background: #f6d365;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right bottom, rgb(15, 78, 18), rgb(0, 0, 0));

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right bottom, rgba(15, 78, 18, 1), rgba(0, 0, 0, 1))
}

/* end profile page */


/* start contact page */
.contact-page input[type="text"], .contact-page input[type="email"], .contact-page input[type="tel"], .contact-page textarea {
    border: none;
    border-bottom: 2px solid rgb(128, 126, 126);
    background: transparent;
    outline: none;
    width: 100%;
    text-transform: capitalize;
    padding: 1rem 0.4rem;
  }
.contact-page .aside {
    background-image: linear-gradient(
      to left bottom,
      #24aa09,
      #2e770c,
      #1c5f0b,
      #27550c,
      #274E13
    );
    animation: animateClr 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99);
    background-size: 400%;
  }
  
  @keyframes animateClr {
    0% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  
    100% {
      background-position: 0% 50%;
    }
  }
  
.contact-icon {
    border: 1px solid currentColor;
    border-radius: 20%;
    padding: 1rem;
  }
/* end contact page */

/* start public subjects page */
.subject_card_wrapper{
    position: relative;
    height: 300px;
}
.single_subject_card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background: #000;
}
.single_subject_card .subject_feature_image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.single_subject_card .subject_feature_image img {
    width: 100%;
    transition: .5s;
    height: 100%;
}
.single_subject_card:hover .subject_feature_image img {
    opacity: .5;
    transform: translateX(30%);/*100%*/
}
.single_subject_card .subjects_card_details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    background: #274E13;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.single_subject_card:hover .subjects_card_details {
    transform: perspective(2000px) rotateY(0deg);
}
.single_subject_card .subjects_card_details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.single_subject_card .subjects_card_details .center h1 {
    margin: 0;
    padding: 0;
    color: #ff3636;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.single_subject_card .subjects_card_details .center h1 span {
    font-size: 14px;
    color: #262626;
}
.single_subject_card .subjects_card_details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}

/* end public subjects page */

/* start student exam page */
.single-question label {
    display: block;
    margin-bottom: 10px;
}

.single-question input[type="radio"] {
    margin-right: 5px;
}
#timer{
    font-size: 45px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: #1c5f0b;
    color: #fff;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    padding: 62px 0px 0px 20px;
    text-shadow: 1px 10px 10px black;
    box-shadow: inset 0px -9px 20px 10px #000;
}

/* end student exam page */

/* start student result page */
.exam-result-icon {
    font-size: 100px;
    color: #274e13;
}
.exam-result h1{
    font-size: 80px;
    font-weight: 900;
}
/* end student result page */