/* 
Name: Shree Rupnarayan Secondary School
Version: v1.0
Dynamic Technosoft Pvt. Ltd URL: https://dynamic.net.np/
Frontend-Developer: Rahul Sharma
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
/* navbar logo setting */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

.cursor-pointer {
  cursor: pointer;
}

/* text */
.head-tag {
  font-weight: bold;
}

.para-tag {
  font-size: 16px;
  line-height: 30px;
}

/* padding */
.pad-main {
  padding: 40px 70px;
}

.pad-main-tl {
  padding: 10px 70px;
}

@media (max-width: 768px) {
  .pad-main {
    padding: 20px;
  }
  .pad-main-tl {
    padding: 5px 20px;
  }
}

/* color */
.tx-blue {
  color: #04813e;
}

.bg-blue {
  background-color: #04813e;
}

.tx-gray {
  color: #f8f9fa;
}

.bg-gray {
  background-color: #f8f9fa;
}

.tx-sec {
  color: #0d2c8f;
}

.bg-sec {
  background-color: #0d2c8f;
}

/* icon */
i {
  margin-right: 5px;
}

/* button */
.btn-all {
  width: 150px;
  height: 40px;
  font-size: 16px;
  border-radius: 4px;
  background-color: #04813e;
  color: white;
  border: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn-all a {
  text-decoration: none;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn-all:hover {
  background-color: #0d2c8f;
  color: white;
  -webkit-box-shadow: 3px 3px #04813e;
          box-shadow: 3px 3px #04813e;
}

.btn-all:hover a {
  color: white;
}

@media (max-width: 768px) {
  .btn-all {
    width: 100px;
    height: 30px;
    font-size: 10px;
    border-radius: 4px;
    background-color: #04813e;
    color: white;
    border: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

/* table */
@media (max-width: 768px) {
  .table-res {
    overflow-x: scroll;
  }
}

/* social box */
.social-box a {
  color: white;
  text-decoration: none;
}

.social-box i {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.social-box i:hover {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: #0d2c8f;
}

/* height */
.h-200 {
  height: 200px;
}

.h-300 {
  height: 300px;
}

.h-10 {
  height: 10px;
}

@media (max-width: 768px) {
  .sm-300 {
    height: 300px !important;
  }
}

/* a hfer */
a {
  text-decoration: none;
}

/* card */
.card-body {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 4px;
  background-color: white;
}

.program-home-card .imgBox {
  overflow: hidden !important;
}

.program-home-card .imgBox img {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.program-home-card .imgBox:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.program-home-card .paraBox h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.program-home-card .paraBox p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.program-expand-card .imgBox img {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 300px;
}

.program-expand-card .paraBox {
  padding: auto 20px;
}

/* over flow tx */
.tx-of-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ov-s-hide ::-webkit-scrollbar {
  display: none;
}

.ov-y {
  overflow-y: scroll;
}

/* flickity */
.flickity-button.flickity-prev-next-button.previous,
.flickity-button.flickity-prev-next-button.next {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* admission form*/
.admission-form input, .admission-form select, .admission-form textarea {
  border: 1px solid #04813e;
  border-radius: 2px;
}

/*----gotoTopBtn------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

.scroll-wrapper {
  display: none;
}

.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  height: 50px;
  width: 50px;
  background-color: #0d2c8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.219);
          box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.219);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.scroll-btn i {
  color: white;
  margin: 0;
}

.scroll-btn:hover {
  position: fixed;
  z-index: 1;
  height: 50px;
  width: 50px;
  background-color: #04813e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.219);
          box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.219);
}

.scroll-btn:hover i {
  color: #0d2c8f;
}

/* login dropdown */
/* Dropdown Button */
/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

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

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
/* header navbar */
.header-navbar {
  height: 60px;
}

/* navbar*/
.navbar .navbar-brand img {
  height: 50px;
  width: 50px;
}

.navbar .navbar-collapse ul .dropdown-menu {
  border: none;
  border-radius: 0;
  background-color: #f8f9fa;
}

@media (max-width: 1100px) {
  .header-navbar {
    display: none;
  }
  .navbar .navbar-collapse ul li {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .navbar .navbar-collapse ul li {
    font-size: 16px;
  }
}

/* main slider */
.main-slider .carousel-cell {
  width: 100%;
  height: 100vh;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.main-slider .carousel-cell img {
  height: 100%;
  width: 100%;
}

.bg-slider-body-1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.103)), to(black)), url("../images/slider (1).jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.103), black), url("../images/slider (1).jpg");
  background-size: 100% 100%;
}

.slider-text {
  width: 60%;
  margin-left: 80px;
}

.slider-text p {
  color: white;
}

.main-slider .carousel-cell h1 {
  font-size: 65px;
  color: white;
}

.carousel.is-fullscreen .main-slider .carousel-cell {
  height: 100%;
}

.carousel.is-fullscreen .main-slider .carousel-cell img {
  height: 100%;
  width: 100%;
}

.main-slider .carousel-cell-image {
  display: block;
  max-height: 100%;
}

.main-slider .flickity-button.flickity-prev-next-button.previous,
.main-slider .flickity-button.flickity-prev-next-button.next {
  background-color: transparent;
  outline: none;
}

.main-slider .flickity-button-icon {
  color: white;
}

@media (max-width: 1000px) {
  .main-slider .carousel-cell {
    width: 100%;
    height: 80vh;
  }
  .main-slider .carousel-cell h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .main-slider .carousel-cell {
    width: 100%;
    height: 40vh;
    margin-right: 10px;
  }
  .slider-text {
    width: 100%;
    margin-left: 10px;
  }
  .slider-text p {
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .main-slider .carousel-cell h1 {
    font-size: 25px;
    color: white;
  }
}

@media (max-width: 768px) {
  .flickity-prev-next-button .flickity-button-icon, .flickity-prev-next-button .flickity-button-icon {
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    font-size: 10px !important;
    font-weight: 100 !important;
    height: 15px !important;
  }
}

/* 3 cards */
.three-cards {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(35%, #04813e), color-stop(93%, #0d2c8f));
  background-image: linear-gradient(90deg, #04813e 35%, #0d2c8f 93%);
}

/*-----------------------why choose us-------------------------*/
.whychoseSection {
  padding: 40px 70px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 73, 126, 0.31)), to(rgba(30, 73, 126, 0.277))), url("../asset/bg1.png");
  background-image: linear-gradient(rgba(30, 73, 126, 0.31), rgba(30, 73, 126, 0.277)), url("../asset/bg1.png");
  background-size: 100% 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.whychoseSection .block1 .col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.whychoseSection .block1 .col-12 h1 {
  font-weight: bold;
  font-size: 45px;
  line-height: 50px;
}

.whychoseSection .block1 .col-12 p {
  width: 80%;
  margin: 20px 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.whychoseSection .block2 .slider2 .slick-next:before,
.whychoseSection .block2 .slider2 .slick-prev:before {
  display: none !important;
}

.whychoseSection .block2 .slider2 .slick-next,
.whychoseSection .block2 .slider2 .slick-prev {
  display: none !important;
}

.whychoseSection .block2 .counterCol {
  padding: 20px;
}

.whychoseSection .block2 .counterCol .counterCard {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.whychoseSection .block2 .counterCol .counterCard i {
  margin-top: 5px;
  font-size: 30px;
}

.whychoseSection .block2 .counterCol .counterCard:hover {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #0d2c8f;
  color: white;
  -webkit-box-shadow: 5px 5px #04813e;
          box-shadow: 5px 5px #04813e;
}

.whychoseSection .block2 .counterCol .counterCard:hover i {
  margin-top: 5px;
  font-size: 30px;
}

@media (max-width: 768px) {
  .whychoseSection {
    padding: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 73, 126, 0.31)), to(rgba(30, 73, 126, 0.277))), url("../asset/bg1.png");
    background-image: linear-gradient(rgba(30, 73, 126, 0.31), rgba(30, 73, 126, 0.277)), url("../asset/bg1.png");
    background-size: cover;
    margin-bottom: 20px;
  }
  .whychoseSection .block1 .col-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 10px;
    color: white;
  }
  .whychoseSection .block1 .col-12 h1 {
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
  }
  .whychoseSection .block1 .col-12 p {
    width: 100%;
    margin: 20px 0px;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .whychoseSection .block2 {
    overflow: hidden !important;
  }
  .whychoseSection .block2 .counterCol {
    padding: 10px;
  }
  .whychoseSection .block2 .counterCol .counterCard {
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .whychoseSection .block2 .counterCol .counterCard i {
    margin-top: 5px;
    font-size: 30px;
  }
  .whychoseSection .block2 .counterCol .counterCard:hover {
    height: 150px;
  }
}

/*-----------------------comment-------------------------*/
.commentSection {
  padding: 60px 70px;
  margin: 20px 0px;
}

.commentSection .block0 .titleTag {
  font-weight: 800;
  font-size: 45px;
  line-height: 50px;
  color: #04813e;
}

.commentSection .block0 .paraTag {
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  color: #000000;
  margin-bottom: 20px;
}

.commentSection .block1 .commentCol .card1 {
  background-color: #04813e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 25px;
}

.commentSection .block1 .commentCol .card1 .imgBox {
  margin-bottom: 20px;
}

.commentSection .block1 .commentCol .card1 .imgBox img {
  width: 111.37px;
  height: 110.82px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
}

.commentSection .block1 .commentCol .card1 .paraBox {
  color: white;
}

.commentSection .block1 .commentCol .card1 .paraBox .commentPara {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.commentSection .block1 .commentCol .card1 .paraBox .commentPara i {
  margin-right: 15px;
}

.commentSection .block1 .commentCol .card1 .paraBox .commentTitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}

@media (max-width: 768px) {
  .commentSection {
    padding: 30px 20px;
    margin: 20px 0px;
  }
  .commentSection .block0 .titleTag {
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    color: #04813e;
  }
  .commentSection .block0 .paraTag {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 20px;
  }
  .commentSection .block1 .commentCol .card1 {
    background-color: #04813e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 25px;
  }
  .commentSection .block1 .commentCol .card1 .imgBox {
    margin-bottom: 20px;
  }
  .commentSection .block1 .commentCol .card1 .imgBox img {
    width: 111.37px;
    height: 110.82px;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
  }
  .commentSection .block1 .commentCol .card1 .paraBox {
    color: white;
  }
  .commentSection .block1 .commentCol .card1 .paraBox .commentPara {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
  }
  .commentSection .block1 .commentCol .card1 .paraBox .commentPara i {
    margin-right: 15px;
  }
  .commentSection .block1 .commentCol .card1 .paraBox .commentTitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
  }
}

/* blog social button responsice */
@media (max-width:768px){
   
 .share-buttons a.btn-large {
  padding: 10px !important;

  font-size : 10px !important;
}
}
/*-----------------------footer -------------------------*/
.footer {
  background-color: #04813e;
}

.footer .block1 {
  padding: 70px 70px 10px 70px;
}

.footer .block1 .footerCol {
  color: white;
}

.footer .block1 .footerCol .footerColCard {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.footer .block1 .footerCol .footerColCard .imgBox img {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}

.footer .block1 .footerCol ul {
  padding: 0;
}

.footer .block1 .footerCol ul li {
  list-style: none;
  margin: 20px 0px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer .block1 .footerCol ul li a {
  text-decoration: none;
  color: white;
}

.footer .block1 .footerCol2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
/*  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;*/
       /*    padding-left: 40px;*/
}

.footer .block1 .footerCol2 ul {
  padding: 0;
  /*margin-left: -50px;*/

}

.footer .block1 .footerCol3 {
  padding-left: 100px;
}

.footer .block2 {
  padding: 20px 70px 0px 70px;
  background-color: #0d2c8f;
  text-align: center;
}

.footer .block2 p {
  color: white;
}

.footer .block2 p span {
  margin: 0px 20px;
}

.footer .block2 p span i {
  margin: 0px 5px;
  cursor: pointer;
}

@media (max-width: 786px) {
  .footer .block1 {
    padding: 20px 20px 10px 20px;
  }
  .footer .block1 .footerCol {
    color: white;
  }
  .footer .block1 .footerCol .footerColCard {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
  }
  .footer .block1 .footerCol .footerColCard .imgBox img {
    height: 80px;
    width: 80px;
  }
  .footer .block1 .footerCol ul {
    padding: 0;
  }
  .footer .block1 .footerCol ul li {
    list-style: none;
    margin: 20px 0px;
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer .block1 .footerCol ul li a {
    text-decoration: none;
    color: white;
  }
  .footer .block1 .footerCol2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer .block1 .footerCol2 ul {
    padding: 0;
    margin-left: 0px;
  }
  .footer .block1 .footerCol3 {
    padding-left: 0px;
  }
  .footer .block2 {
    padding: 10px;
    text-align: center;
    background-color: #0d2c8f;
  }
  .footer .block2 p {
    color: white;
  }
  .footer .block2 p span {
    margin: 0px 20px;
  }
  .footer .block2 p span i {
    margin: 0px 5px;
    cursor: pointer;
  }
}

/* breadcrumb global */
.breadcrumb {
  padding: 3% 5%;
  height: 400px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 73, 126, 0.31)), to(rgba(30, 73, 126, 0.277))), url("../images/WhatsApp Image 2022-06-26 at 10.40.58 AM.jpeg");
  background-image: linear-gradient(rgba(30, 73, 126, 0.31), rgba(30, 73, 126, 0.277)), url("../images/WhatsApp Image 2022-06-26 at 10.40.58 AM.jpeg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb h1 {
  margin-bottom: 10px;
  font-weight: 800;
}

.breadcrumb {
  background-color: transparent;
}

.breadcrumb span a {
  color: white;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .breadcrumb {
    height: 150px;
  }
}

/* The radio-wrapper */
.radio-wrapper {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
/* The radio-wrapper */
.radio-wrapper {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* Hide the browser's default radio button */
.radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 1px solid #04813e;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 4px rgba(216, 185, 185, 0.25);
          box-shadow: 0px 4px 4px rgba(216, 185, 185, 0.25);
}

/* On mouse-over, add a grey background color */
.radio-wrapper:hover input ~ .radio-checkmark {
  background-color: #04813e;
}

/* When the radio button is checked, add a blue background */
.radio-wrapper input:checked ~ .radio-checkmark {
  background-color: white;
  border: 0;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-wrapper input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-wrapper .radio-checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #04813e;
}

/* custome checkbox */
/**----- html code eg. 
<label class="check-wrapper">One
  <input type="checkbox" checked="checked">
  <span class="ck-checkmark"></span>
</label>
 -----**/
/* The check-wrapper */
.check-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.ck-checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid #04813e;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.check-wrapper:hover input ~ .ck-checkmark {
  background-color: white;
}

/* When the checkbox is checked, add a blue background */
.check-wrapper input:checked ~ .ck-checkmark {
  background-color: #04813e;
}

/* Create the ck-checkmark/indicator (hidden when not checked) */
.ck-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the ck-checkmark when checked */
.check-wrapper input:checked ~ .ck-checkmark:after {
  display: block;
}

/* Style the ck-checkmark/indicator */
.check-wrapper .ck-checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* primary color elements */
.bg-blue,.footer,.commentSection .block1 .commentCol .card1,.btn-all,.items span.active, .items span:hover

,.newEventMainSection .block1 .recentCol .subscribeRow .col-12{
  background-color: var(--custome-prime-col) !important;
}



/* primary border color elements */

.admission-form input, .admission-form select, .admission-form textarea
{
  border: 1px solid var(--custome-prime-col) !important;
}

.tx-blue ,.titleTag,.contactHead h1 {
  color: var(--custome-prime-col) !important;
}
.radio-checkmark {
                border: 1px solid var(--custome-prime-col) !important;
              }
              
              /* On mouse-over, add a grey background color */
              .radio-wrapper:hover input ~ .radio-checkmark {
                background-color: var(--custome-prime-col) !important;
              }
              .radio-wrapper .radio-checkmark:after {
               
                background: var(--custome-prime-col) !important;
              }
              
              .radio-wrapper input:checked ~ .radio-checkmark {
                background-color: white;
                border: 0 !important;
              }

/* primary hover color elements */
.btn-all:hover{
    box-shadow: 3px 3px var(--custome-sec-col) !important;
}
.counterCard:hover{
            background-color: var(--custome-sec-col) !important;
            box-shadow: 5px 5px var(--custome-prime-col) !important;
        }
        
.scroll-btn{
    background-color: var(--custome-sec-col) !important;
}

.scroll-btn:hover{
    background-color: var(--custome-prime-col) !important;
}

.scroll-btn:hover   i{
        color: var(--custome-sec-col) !important;
    }


/* secondary color elements */
.footer .block2,.newEventMainSection .block1 .recentCol .subscribeRow .col-12 input[type="submit"]{
    background-color: var(--custome-sec-col) !important;
}
.tx-sec{
    color: var(--custome-sec-col) !important;
}
/* linear gradient */
.form-heading {
  background: linear-gradient(to right, var(--custome-prime-col), var(--custome-sec-col)) !important;
}
.three-cards {
  background-image: linear-gradient(90deg, var(--custome-prime-col) 35%, var(--custome-sec-col) 93%) !important;
}


.eventCard.card-body .imgBlock  img{
    height : 200px;
    width :100%;
}
/*# sourceMappingURL=main.css.map */