/* this style for carousel  */
.slider{
    /* background-color: var(--primary-d); */
    /* max-width: 1400px; */
    color: #fff;

    grid-template-columns: 35% 65%;
    position: relative;
    /* display: grid; */

}

.slider .content_container{
    /* padding: 40px 100px; */
    margin-top: auto;
    margin-bottom: auto;
    font-size: 30px;
}

.slider .slides{
    overflow-y: auto;
    max-height: 360px;
    scrollbar-width: none;
}

.slider .slides::-webkit-scrollbar{
    display: none;
}

.slider .slides .slide{
    /* min-height: calc(100% - 80px); */
    min-height: 360px;
    background-color: var(--primary-d);
    display: flex;
    padding: 40px;
    color: white;
    align-items: center;
    font-size: 20px;
}

.slide_navigation{
  position: absolute;
  right: 0;
  list-style: none;
  top:30%;
}

@media screen and (max-width: 768px) {
  .slider .slides{
    max-height: 250px;
}

  .slider .slides .slide{
    /* min-height: calc(100% - 80px); */
    min-height: 250px;
  }
}

.slide_navigation li{
  /* display: inline-block; */
  
  width: 10px;
  background-color: black;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
}

.slide_navigation .active_slider{
  background-color: white;
}

/* end carousel style  */

/* start service section  */
.section {
  padding: 5px 0 20px 0;
  overflow: hidden;
  display: block;
}

.services .icon-box {
  padding: 50px 20px 5px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  max-height: 460px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

.services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: .2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: var(--secondary-d);
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

.services .icon-box:hover .icon{
  background: #fff;
  border: 4px solid var(--primary-d);
}
/* end srvice section  */
.started ul{
  list-style-type: none;
}

.started ul li{
  margin-bottom: 15px;
}
.started ul li::before{

  content: '\2713';
  color: #fff;
  background: var(--primary-d);
  border-radius: 100px;
  height: 20px;
  width: 20px;
  display: inline-block;
  padding: 0 5px;
  margin-right: 5px;
}