:root {
  --white: #ffffff;
  --black: #000000;
  --yellow: #FFC107;
  --blue: #002F6C;
}

/*-------------- Owl crousel ---------------*/
body.home{
  background-color: #fff;
}
/* SLIDER */
#slider {
  position: relative;
  padding: 0px;
}
.carousel-caption {
  position: unset !important;
  bottom: 0px;
  top: 0px;
  height: fit-content;
  margin: auto;
}
.slider-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.slider-main-image{
  height: 800px;
  width: 100%;
  clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 63.24%);
}
.slider-main-image:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}
#slidemainbox{
  top: -5%;
  position: absolute;
}
.slide-small-heading{
  color: var(--yellow);
  font: normal normal bold 19px / 30px var(--pri-font);
}
.slider-para {
  color: #fff;
  width: 81%;
  font-size: 18px;
}
.slider-box{
  padding: 0px 20px;
}
.slidemainbox-col1 {
  position: relative;
  z-index: 3;
  padding: 20% 20px;
}
.slidemainbox-col1:after {
  content: '';
  background: var(--green);
  height: 1200px;
  width: 98%;
  position: absolute;
  top: -250px;
  left: 10px;
  opacity: 0.4;
  z-index: -1;
}
.slide-heading-one {
  animation: moveInLeft 2s ease-out;
}
a.slider-btn.btn {
  background: var(--yellow);
  color: #000;
}
a.slider-btn.btn:hover {
  color: var(--white);
}
a.slider-btn.btn:after{
  background: #000;
}
#slider .call-icon i {
  background: var(--green);
  color: var(--yellow);
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 38px;
  text-align: center;
  font-size: 16px;
  animation: tada 3s linear infinite;
}
#slider .call-title {
  font: normal normal normal 13px / 13px var(--pri-font);
}
#slider .call-number {
  font: normal normal bold 18px / 20px var(--pri-font);
}
.slider-nav-arrow{
  width: fit-content;
  margin: auto;
  position: absolute;
  width: 604px;
  background: var(--green);
  right: 0;
  bottom: 0px;
  height: 220px;
  top: 54%;
  z-index: 1;
  clip-path: polygon(100% 0%, 0% 42%, 100% 100%);
}
.carousel-control-prev {
  left: 20%;
  height: fit-content;
  margin: auto;
  right: -30%;
  opacity: 1 !important;
}
.carousel-control-next {
  right: 5%;
  left: 50%;
  margin: auto;
  opacity: 1 !important;
}
.carousel-control-prev i{
  background: var(--yellow);
  width: 35px;
  height: 35px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  line-height: 35px;
  text-align: center;
  border-radius: 0px !important;
  color: var(--yellow);
}
.carousel-control-next i{
  background: var(--white);
  width: 35px;
  height: 35px;
  clip-path: polygon(0 100%, 0 0, 100% 50%);
  line-height: 35px;
  text-align: center;
  border-radius: 0px !important;
  color: var(--white);
}
.carousel-control-next i:hover{
  background: var(--yellow);
  color: var(--yellow);
}




