
/*CREATED BY MOHAMMED THARIF ON 11/01/2024 */

/*#home-banner{
	background-image: url('../../assets/img/slide/VT-Technologies-Private-Limited-Home-Page-Banner-BG.png');
	background-repeat: no-repeat; 
	background-size: auto;
	height: 600px;
}*/
*{
  line-height: 2.1;
  font-family: "Open Sans", sans-serif;;
}
#home-banner{
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	height: 725px;
/*	overflow-x: hidden;*/
}
.banner-img img{
	width: 100%;
	height: 725px;
}
.home-banner .banner-txt{
	position: absolute;
	width: 100%;
	top: 150px;
/*	left: 50px;*/
/*	height: auto;*/
}
.home-banner .banner-txt .top{
	width: 100%;
	text-align: center;
	/*position: absolute;
	top: 180px;
	left: 50px;*/
}
.home-banner .banner-txt .top h3{
	color: #bdf347;
	font-family: "Open Sans", sans-serif;
	font-weight: 550;
}
.home-banner .banner-txt .top h6{
	color: #fff;
	font-family: "Open Sans", sans-serif;
	padding-top: 15px;
/*	font-weight: 500;*/
}
.home-banner .banner-txt .middle{
	margin-top: 100px;
	margin-left: 60px;
}
.home-banner .banner-txt .middle h5{
 	font-family: "Open Sans", sans-serif;
 	line-height: 2;
 	color: #bdf347;
 	font-weight: lighter;
 	font-size: 1.30rem;
}
.home-banner .banner-txt .bottom{
	margin-top: 20px;
	margin-left: 60px;
	display: inline-flex;
}
.home-banner .banner-txt .bottom h6{
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-size: 23.5px;
	font-weight: lighter;
	line-height: 2;
	padding-top: 20px;
	padding-right: 20px;
}
.home-banner .banner-txt .bottom img{
	width: 120px;
	height: 120px;
	margin-top: 25px;
}
.home-banner .banner-txt .play-store-bottom{
	margin-left: 60px;
	margin-top: 20px;
}
.home-banner .banner-txt .play-store-bottom .btn-gplay{
/*	background-color: #000;*/
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-weight: 550;
	font-size: 15px;
	/*border-radius: 22px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 15px;
	padding-right: 15px;*/
/*	border: 1px solid #fff;*/
	
}
.home-banner .banner-txt .play-store-bottom .btn-instant-demo{
  margin-left: 20px;
}
.home-banner .banner-txt .instant-demo .btn-instant-demo{

}
.home-banner .banner-txt .instant-demo .btn-instant-demo img{
  width: 150px;
}
.home-banner .banner-txt .play-store-bottom .btn-gplay img{
	width: 155px;
}

.home-banner .banner-txt .demo-bottom{
/*	width: 100%;*/
	text-align: center;
	position: absolute;
	bottom: 0%;
	left: 45%;
	z-index: 1;
}
.home-banner .banner-txt .instant-demo{
    position: absolute;
    top: 45%;
    left: 44%;
}

.request-loader {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 125px;
  width: 125px;
  border-radius: 100%;
  background: #000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  opacity: 0.8;
  margin-bottom: 8px;
}
.book-text{
	font-size: 18px; 
	color: #fff;
	font-family: "Open Sans", sans-serif;
/*	font-weight: 550;*/
	padding-top: 10px;
  text-align: center;
  margin-left: -20px;
}
.request-loader span {
  position: relative;
  font-size: 72px;
  top: 5px;
  left: -5px;
}
.request-loader::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  /*top: -8px;
  left: -8px;*/
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(0, 0, 0, 0.2);
/* border: 8px solid #ddd;*/
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.request-loader::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
 /* top: -8px;
  left: -8px;*/
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
          animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

/*HOME PAGE*/
.intro{
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.intro .intro-title{

}
.intro .intro-title h2{
 /* font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;*/
    font-size: 14px;
  font-weight: 500;
  /*padding: 0;*/
  line-height: 28px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  /*color: #aaaaaa;*/
  color: #000 !important;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.intro .intro-title h2:before{
  content: "";
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #000;
    margin: 4px 10px;
}
.intro-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #000;
}
.intro .intro-left{
  padding-top: 25px;
  padding-bottom: 25px;
}
.intro .intro-left p{
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  text-align: justify;
  font-size: 16px;
}

.intro .intro-right{
  text-align: center;
  margin-top: -100px;
  position: relative;
}

.intro .intro-right .shape1{
  position: absolute;
  left: 0px;
  top: 0;
}

.intro .intro-right .shape2{
  position: absolute;
  right: 0;
  bottom: 0;
}
.intro .intro-right .top-dance{
    animation: dance 2s infinite alternate;
    -webkit-animation: dance 2s infinite alternate;
}

.intro .intro-right .bottom-dance{
    animation: dance2 3s infinite alternate;
    -webkit-animation: dance2 3s infinite alternate;
}

.intro .intro-right img.choose{
  width: 79%;
  border: 6px solid #ddd;
  border-radius: 50%;
  z-index: 2;
  margin-left: 20px;
}

@keyframes dance{
0%{
  transform:scale(.8);
  -webkit-transform:scale(.8);
  }
to{
  transform:scale(1);
  -webkit-transform:scale(1);
  }
}
@-webkit-keyframes dance{
0%{transform:scale(.8);
  -webkit-transform:scale(.8)
  }
to{
  transform:scale(1);
  -webkit-transform:scale(1)}
}

.dance2{
  animation:dance2 4s infinite alternate;
  -webkit-animation:dance2 4s infinite alternate
}

@keyframes dance2{
  0%{
    transform:translateZ(0);
    -webkit-transform:translateZ(0)
    }
  50%{
    transform:translate3d(15px,-15px,0);
    -webkit-transform:translate3d(15px,-15px,0)
    }
  to{
    transform:translate3d(0,-15px,15px);
    -webkit-transform:translate3d(0,-15px,15px)
    }
  }
@-webkit-keyframes dance2{
  0%{
    transform:translateZ(0);
    -webkit-transform:translateZ(0)
    }
  50%{
    transform:translate3d(15px,-15px,0);
    -webkit-transform:translate3d(15px,-15px,0)
  }
  to{
    transform:translate3d(0,-15px,15px);
    -webkit-transform:translate3d(0,-15px,15px)
    }
  }

.intro .intro-left a{
  border: 2px solid #bdf347; 
  margin-top: 20px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-size: 16px;
  border-radius: 20px;
  display: inline-flex;
  background-color: #bdf347;
  padding-top: 10px;
  padding-bottom: 10px;
}

.intro .intro-left a:hover{
  background-color: transparent;
  transition: all 0.3s;
}
.intro .intro-left a i{
  padding-left: 5px; 
  font-size: 25px;
  transition: all 0.3s linear;
}
.intro .intro-left a:hover > i {
    transition: all 0.3s linear;
    transform: translateX(10px);
}

.intro .home-about-content p{
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  text-align: justify;
  font-size: 16px;
}

.intro .home-mission{
  display: inline-flex;
  margin-top: 50px;
  margin-bottom: 60px;
}

.intro .home-mission .home-about-first-left{
  text-align: center;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  border: 6px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
}

.intro .home-mission .home-about-first-right{
/*  align-items: center;*/
  vertical-align: middle;
  padding-left: 50px;
  padding-right: 0px;
  margin-top: 50px;

}

.intro .home-mission .home-about-first-left img{
/*  border: 6px solid #ddd;*/
  width: 55%;
 
}

.intro .home-mission .home-about-first-right h4{
   font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  font-weight: 550;
}

.intro .home-mission .home-about-first-right p{
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  text-align: justify;
  font-size: 16px;
}

.about-boxes-main{
  display: contents;
  margin-top: 80px !important;
  margin-bottom: 90px;
  padding-top: 30px;
  position: relative;
}
.intro .about-boxes-main .about-boxes{
  border: 1px solid #ddd;
 /* padding-left: 0px;
  padding-right: 0px;*/
  padding: 20px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  margin-bottom: 35px;
  margin-top: 10px;
  border-bottom: 4px solid #bdf347;
}
.intro .about-boxes-main .about-boxes h4{
   font-family: "Open Sans", sans-serif;
  color: #000;
/*  line-height: 2.1;*/
  font-weight: 550;
  padding-top: 12px;
}
.intro .about-boxes-main .about-boxes p{
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  text-align: justify;
  font-size: 16px;
  padding-top: 10px;
}
.intro .about-boxes-main .about-boxes img{
  position: absolute;
  width: 43px;
  height: 43px;
  right: 35px;
  top: 22px;
}
#about .home-about-content{
  margin-top: 50px;
  margin-bottom: 50px;
}
#about .home-about-content p{
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 2.1;
  text-align: justify;
  font-size: 16px;
  padding-top: 10px;
}



/*DEMO NOW*/
.banner-txt .middle-demo-now a.call{
  color: #fff;
  text-decoration: underline;
}
.banner-txt .middle-demo-now a.call:hover{
  color: #bdf347;
  transition: all 0.3s linear;
}
.banner-txt .middle-demo-now h5{
  color: #fff !important;
  font-weight: 550 !important;
}
.banner-txt .middle-demo-now a.mail{
  color: #fff;
  text-decoration: underline;
}
.banner-txt .middle-demo-now a.mail:hover{
   color: #bdf347;
  transition: all 0.3s linear;
}
.banner-txt .bottom-demo-now{
  margin-top: 60px;
  display: inline-flex;
  width: 60%;
/*  margin-left: -50px;*/
}
.banner-txt .bottom-demo-now .logo-vt{
  margin-left: 60px;
  padding-left: 0px;
  width: 20%;
}
.banner-txt .bottom-demo-now .logo-vt img{
  width: 100%;
/*  border: 1px solid #bdf347;*/
  border: 1px solid #fff;
  padding: 12px;
}
.banner-txt .bottom-demo-now .logo-vt a:hover > img{
  border: 1px solid #bdf347;
  transition: all 0.3s linear;
}
.banner-txt .bottom-demo-now .address{
  padding-top: 25px;
  color: #fff;
  line-height: 2.1;
  padding-left: 30px;
}
.banner-txt .bottom-demo-now .address h5{
  font-weight: 550;
  font-family: "Open Sans", sans-serif;
}
.banner-txt .bottom-demo-now .address p{
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0px;
  font-size: 17px;
/*  line-height: 2;*/
}

.modal{

}
.modal h6{
  font-family: "Open Sans", sans-serif;
}
.modal .fa-ico{
  font-size: 1.5rem;
  color: #0e73e4 !important;
}
/*.close .fa-ico{
  color: #03228f !important;
}*/
#modalBookDemo{
  font-family: "Open Sans", sans-serif;
  margin-top: 80px;
}
#modalBookDemo label{
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
#modalBookDemo input[type="text"], input[type="email"]{
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
#modalBookDemo .select2{
  font-family: "Open Sans", sans-serif;
  font-size: 14px !important;
/*  display: block;*/
  width: 100% !important;
  height: 35px !important;
  border-color: #ced4da !important;
  border-radius: 0.25rem !important;

}
#modalBookDemo .select2 option{
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
}
#modalBookDemo #book_now{
  border: 1px solid #bdf347;
  padding: 10px;
/*  padding-top: 5px;*/
/*  padding-bottom: 5px;*/
/*  height: 45px;*/
  width: 145px;
  text-transform: uppercase;
  border-radius: 5px;
  background-color: #bdf347;
  vertical-align: middle;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  display: inline-flex;
  font-size: 14.5px;
}
#modalBookDemo #book_now i{
  font-size: 21px;
/*  margin-top: 5px;*/
}
#modalBookDemo .modal-header{

}
#modalBookDemo .modal-header h6{
  padding-left: 15px;
  padding-top: 2px;
}
#modalBookDemo .modal-dialog{
  border-radius: 0.4rem;
}
#modalBookDemo .fade{
  opacity: 0.3 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  margin-top: 0px !important;
  padding-top: 5px !important;
}
.select2-container .select2-selection--single{
  height: 35px !important;
/*  border: unset !important;*/
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  height: 35px !important;
  line-height: 35px !important;
/*  border: unset !important;*/
}
.select2-container--default .select2-results>.select2-results__options{
  font-size: 14px !important;
  font-family: "Open Sans", sans-serif !important;
/*  border: unset !important;*/
}
/*PRODUCTS*/
#modalProducts{
  margin-top: 80px;
}
#modalProducts .modal-header h6 {
    padding-left: 15px;
    padding-top: 2px;
}
#modalProducts .modal-body{
  text-align: center !important;
  padding-top: 38px;
  padding-bottom: 38px;
}
#modalProducts .modal-body .product-left-box{
  text-align: center;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  margin: 5px;
  border-radius: 8px;
  height: auto;
  color: #000;
  padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
}
#modalProducts .modal-body .product-right-box{
  text-align: center;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  margin: 5px;
  margin-left: 20px;
  border-radius: 8px;
  height: auto;
  color: #000;
   padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
}
#modalProducts .modal-body .product-left-box img{
  width: 95%;
}
#modalProducts .modal-body .product-right-box img{
  width: 95%;
}
#modalProducts .modal-body .product-left-box h5, #modalProducts .modal-body .product-right-box h5{
  padding-top: 15px;
  font-family: "Open Sans", sans-serif !important;
}
#modalProducts .modal-body .product-left-box:hover, #modalProducts .modal-body .product-right-box:hover{
  color: #03228f;
  transition: all 0.3s;
  border: 1px solid #3b58bf;
}

/*ABOUT OUR ERP*/
#page-banner{
  padding: unset;
  position: relative;
}
#page-banner .page-banner-img{
  width: 100%;
}
#page-banner .page-banner-img img{
  width: 100%;
}
.page-banner .banner-txt{
  position: absolute;
  width: 100%;
  top: 135px;
/*  left: 50px;*/
/*  height: auto;*/
}
.page-banner .banner-txt .top{
  width: 100%;
  text-align: center;
  /*position: absolute;
  top: 180px;
  left: 50px;*/
}
.page-banner .banner-txt .top h3{
  color: #bdf347;
  font-family: "Open Sans", sans-serif;
  font-weight: 550;
}
.page-banner .banner-txt .top h6{
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding-top: 15px;
/*  font-weight: 500;*/
}
.page-banner .banner-txt .instant-demo .btn-instant-demo img{
  width: 150px;
}
.page-banner .banner-txt .demo-bottom{
/*  width: 100%;*/
  text-align: center;
  position: absolute;
/*  bottom: 1%;*/
  top: 100%;
  left: 45%;
  z-index: 1;
  margin-top: 20px;
}
.page-banner .pages-bread{
  position: absolute;
/*  bottom: 0%;*/
  top: 100%;
  left: 42%;
/*  width: 100%;*/
  text-align: center;
  padding-top: 25px;
}
.page-banner .pages-bread ul{
  padding-inline-start: 0px;
}
.page-banner .pages-bread li{
  list-style: none;
  display: inline-block;
  color: #fff;
  font-size: 15px;
}
.page-banner .pages-bread li a{
/*  color: #bdf347;*/
  color: #fff;
  font-size: 15px;
}
.page-banner .pages-bread li a:hover{
  color: #bdf347;
  transition: all 0.3s;
}
.about{
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.about .intro-title{

}
.about .intro-title h2{
 /* font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;*/
    font-size: 14px;
  font-weight: 500;
  /*padding: 0;*/
  line-height: 28px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  /*color: #aaaaaa;*/
  color: #000 !important;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.about .intro-title h2:before{
  content: "";
    width: 60px;
    height: 2px;
    display: inline-block;
    background: #000;
    margin: 4px 10px;
}
.about .intro-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #000;
}
.about .about-top{
  padding-top: 25px;
  padding-bottom: 25px;
}
.about .about-top p{
  color: #000;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
}

.about .about-middle{
  width: 100%;
/*  align-items: center !important;*/
/*  text-align: center;*/
  padding-left: 0px;
  padding-right: 0px;
  display: contents;
}
.about .about-middle .col-md-4{
/*  padding-left: 0px;*/
/*  padding-right: 0px;*/
}
.about .about-middle .about-boxes-erp{
  border: 1px solid #ddd;
/*  background-color: #f6f6f6;*/
  height: 310px;
  text-align: center !important;
/*  display: contents;*/
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
/*  padding-bottom: 15px;*/
/*  border-radius: 12px;*/
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  border-bottom: 4px solid #bdf347;
}
.about .about-middle .about-boxes-erp h6{
  color: #000;
/*  color: #03228f;*/
  font-family: "Open Sans", sans-serif;
  font-weight: 550;
  padding-top: 15px;
  padding-bottom: 5px;
  font-size: 1.1rem;
}
.about .about-middle .about-boxes-erp img{
  width: 68px;
  height: 68px;
}
.about .about-middle p{
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
/*  text-align: justify-all;*/
}

.about-products{
  margin-bottom: 20px;
}

.about-products .product-left-box{
  text-align: center;
  border: 1px solid #ddd;
/*  background-color: #f5f5f5;*/
  margin: 5px;
/*  border-radius: 8px;*/
  height: auto;
  color: #000;
  padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
}
.about-products .product-right-box{
  text-align: center;
  border: 1px solid #ddd;
/*  background-color: #f5f5f5;*/
  margin: 5px;
  margin-left: 20px;
/*  border-radius: 8px;*/
  height: auto;
  color: #000;
   padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
}
.about-products .product-left-box img{
  width: 95%;
}
.about-products .product-right-box img{
  width: 95%;
}
.about-products .product-left-box h5, .about-products .product-right-box h5{
  padding-top: 15px;
  font-family: "Open Sans", sans-serif !important;
}
.about-products .product-left-box:hover, .about-products .product-right-box:hover{
  color: #03228f;
  transition: all 0.3s;
  border: 1px solid #3b58bf;
}


/*PRODUCTS - SCHOOL ERP*/

.school-erp .about-middle .about-boxes-erp{
  border: 1px solid #ddd;
  height: 300px;
  text-align: center !important;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  border-left: 4px solid #bdf347; 
  position: relative;
  padding-left: 20px;
}
.school-erp .about-middle .about-boxes-erp h6{
  text-align: left;
}
.school-erp .about-middle .about-boxes-erp p{
  text-align: left;
}
.school-erp .about-middle .about-boxes-erp .icon{
  position: absolute;
  right: 5%;
  top: 6%;
  font-size: 38px;
/*  opacity: 0.2;*/
/*  color: #000;*/
/*  color: #0654E7;*/
  color: #11B6A2;
}
/*CUTSOM BULLETS*/

.school-erp .about-middle .about-boxes-erp ul {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px;
  line-height: 1.5em;
  margin: 15px 5px 15px;
  padding: 0;
  text-align: left;
}
.school-erp .about-middle .about-boxes-erp ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 2.2;
  font-family: "Open Sans", sans-serif !important;
  text-align: justify;
}

.school-erp .about-middle .about-boxes-erp ul.checkmark li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 11px;
  border: solid #ff6600;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.school-erp .about-middle .about-boxes-erp ul.circle-checkmark li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  border: solid 8px #ff6600;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.school-erp .about-middle .about-boxes-erp ul.circle-checkmark li::after {
  content: "";
  position: absolute;
  left: 0.25%;
  top: 10px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*END CUSTOM BULLETS*/

.school-erp-choose-us{

}
.school-erp-choose-us .choose-main{
  display: contents;
}
.school-erp-choose-us .choose-main .choose-boxes{
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  margin-top: 60px;
  margin-bottom: 30px;
  padding-top: 35px;
  padding-bottom: 5px;
  border-bottom: 4px solid #bdf347;
}
.school-erp-choose-us .choose-main .choose-boxes h6{
  font-family: "Open Sans", sans-serif;
  padding-bottom: 10px;
  padding-top: 10px;
  font-weight: 550;
  color: #000;
}
.school-erp-choose-us .choose-main .choose-boxes p{
  font-family: "Open Sans", sans-serif;
}
.school-erp-choose-us .choose-main .choose-boxes .icon{
  color: #3b58bf;
  font-size: 40px;
}
.school-erp .content-box{
  text-align: center;
  padding-top: 35px;
}
.school-erp .content-box h6{
  line-height: 2.2;
  font-family: "Open Sans", sans-serif !important;
  color: #000;
  font-size: 17.5px;
  font-weight: 550;
}

/*PRODUCTS - COLLEGE ERP*/

.college-erp .about-middle .about-boxes-erp{
  border: 1px solid #ddd;
  height: 255px;
/*  height: auto;*/
  text-align: center !important;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  border-left: 4px solid #bdf347; 
  position: relative;
  padding-left: 20px;
}
.college-erp .about-middle .about-boxes-erp h6{
  text-align: left;
}
.college-erp .about-middle .about-boxes-erp p{
  text-align: left;
}
.college-erp .about-middle .about-boxes-erp .icon{
  position: absolute;
  right: 5%;
  top: 6%;
  font-size: 38px;
/*  opacity: 0.2;*/
  color: #11B6A2;
/*  color: #000;*/
}
.college-erp-services{

}
.college-erp-services .service-content{
  padding-top: 15px;
}
.college-erp-services .service-content p{
  font-family: "Open Sans", sans-serif;
  line-height: 2.1;
}
.college-erp-services .choose-main{
  display: contents;
}
.college-erp-services .choose-main .choose-boxes{
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  margin-top: 25px;
  margin-bottom: 30px;
  padding-top: 35px;
  padding-bottom: 5px;
  border-bottom: 4px solid #bdf347;
}
.college-erp-services .choose-main .choose-boxes h6{
  font-family: "Open Sans", sans-serif;
  padding-bottom: 10px;
  padding-top: 10px;
  font-weight: 550;
  color: #000;
}
.college-erp-services .choose-main .choose-boxes p{
  font-family: "Open Sans", sans-serif;
}
.college-erp-services .choose-main .choose-boxes .icon{
  color: #3b58bf;
  font-size: 40px;
}



/*CUTSOM BULLETS*/

.college-erp .about-middle .about-boxes-erp ul {
  font-family: "Open Sans", sans-serif !important;
  font-size: 16px;
  line-height: 1.5em;
  margin: 15px 5px 15px;
  padding: 0;
  text-align: left;
}
.college-erp .about-middle .about-boxes-erp ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 2.2;
  font-family: "Open Sans", sans-serif !important;
  text-align: justify;
}

.college-erp .about-middle .about-boxes-erp ul.checkmark li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 11px;
  border: solid #ff6600;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.college-erp .about-middle .about-boxes-erp ul.circle-checkmark li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  border: solid 8px #ff6600;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.college-erp .about-middle .about-boxes-erp ul.circle-checkmark li::after {
  content: "";
  position: absolute;
  left: 0.25%;
  top: 10px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.college-erp .content-box{
  text-align: center;
  padding-top: 35px;
}
.college-erp .content-box h6{
  line-height: 2.2;
  font-family: "Open Sans", sans-serif !important;
  color: #000;
  font-size: 17.5px;
  font-weight: 550;
}
/*END CUSTOM BULLETS*/


/*COMMON*/

.products-stick{
  width: 40px;
  height: 40px;
  position: fixed;
  left: 0;
  top: 80%;
  background-color: #000;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 3px;
  padding-right: 3px;
  border: 1px solid #fff;
}
.products-stick .icon{
  font-size: 27px;
  color: #bdf347;
  margin-top: 0px;

}

.ask-demo{
  display: inline-flex;
  top: 100% !important;
  left: 38% !important;
  margin-top: 120px;
}
.ask-demo .demo-now{
/*  margin-left: -80px !important;*/
}
.ask-demo .book-demo{
  margin-left: 80px !important;
}

/*CONTACT US*/
.contact{
  padding-left: 60px;
  padding-right: 60px;
}
.contact-boxes-two{
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
}
.contact-boxes-two .form-control{
  margin-bottom: 25px !important;
}

/*FOOTER*/
#footer-vt{
/*  height: 95px;*/
  height: auto;
  background-color: #000;
  width: 100%;
/*  align-items: center;*/
/*  vertical-align: middle;*/
  padding-top: 70px;
  padding-bottom: 0px;
  font-family: "Open Sans", sans-serif;
}

.footer-vt .copyright-left{
/*  text-align: center;*/
padding-left: 42px;
}
.footer-vt .copyright-left ul{
    padding-inline-start: 0px;
}
.footer-vt .copyright-left ul li:first-child{
  margin-left: 0px;
}
.footer-vt .copyright-left ul li{
  list-style: none;
  display: inline-block;
  margin-left: 15px;
}
.footer-vt .copyright-left ul li a{
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
.footer-vt .copyright-left ul li a:hover{
  color: #bdf347;
  transition: all 0.3s;
}
.footer-vt .copyright-middle{
  text-align: center;
}
.footer-vt .copyright-middle a{
  color: #fff;
  margin-left: 10px;
  border: 1px solid #fff;
/*  padding: 3px;*/
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 4px;
  padding-bottom: 1px;
/*  border-radius: 6px;*/
}
.footer-vt .copyright-middle a:first-child{
  margin-left: 0px;
}
.footer-vt .copyright-middle a:hover{
  color: #dca831;
  transition: all 0.3s;
  border-color: #dca831;
}
.footer-vt .copyright-right{
  text-align: center;
  color: #fff;
  font-size: 15px;
}
.footer-vt .copyright-right ul{
  padding-inline-start: 0px;
}
.footer-vt .copyright-right ul li{
  list-style: none;
  display: inline-flex;
  margin-left: 18px;
}
.footer-vt .copyright-right ul li:first-child{
  margin-left: 0px;
}
.footer-vt .copyright-right ul li a{
  color: #fff;
  padding-left: 5px;
/*  padding-top: 4px;*/
}
.footer-vt .copyright-right ul li a:hover{
  color: #bdf347;
  transition: all 0.3s;
}
.fa-ico{
  font-size: 1.2rem;
  padding-top: 5px;
}
.footer-vt .copyright-bottom{
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 25px;
}

