.main_page_wrap{
  background: #233041;
}
/* hero banner css */
.hero_banner_wrap{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.hero_banner_wrap .banner_col:first-child{
   margin-top:80px;
}
.banner_col, .banner_col_text {
    width: 33%;
}
.banner_col_text p{
    text-align: left;
}
.banner_col_text h3{
    margin-bottom: 0;
}
.banner_col_text h1{
    font-size: 44px;
    text-transform: uppercase;
    color: #aeaeae;
    font-weight: 800;
}
/* hero banner end */

/* banner bottom text start */
/* .bottom_text p:last-child, .static_text p:first-child{
  font-weight: 500;
} */
.bottom_text p:last-child{
    margin-top: 30px;
    /* font-weight: 600; */
  }
/* banner bottom text end */

/* image slider css start */
.image_slider_grid .draggable{
  padding: 0 32% !important;
}
.image_slider_grid .slick-arrow:before{
  content: none;
}
.image_slider_grid .slick-prev {
  left: 15%;
  background: url(../images/left-arrow.svg) no-repeat;
  z-index: 1;
  background-size: contain;
  background-position: center;
}
.image_slider_grid .slick-next {
  right: 15%;
  background: url(../images/right-arrow.svg) no-repeat;
  z-index: 1;
  background-size: contain;
  background-position: center;
}
.image_item.slick-center{
  transition: 0.3s;
}
.image_item:not(.image_item.slick-center){
  transform: scale(0.9);
  opacity: 0.3;
}
/* image slider css end */

/* static text css start */
section.static_text_wrap{
  position: relative;
  padding:100px 0;
}
section.static_text_wrap:before,section.static_text_wrap:after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #4c535b;
  width: 2px;
  height: 80px;
  background-size: contain;
}
section.static_text_wrap:after{
  bottom: 0;
  top:auto;
}
.static_text p:first-child{
  /* font-weight: 700; */
  margin-bottom: 40px;
}
/* static text css end */

/* more work css start */
.more_work{
  background: #151e2a;
}
.work_row_wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  margin-top: 40px;
}
.more_work_wrapper h2{
  font-weight: 400;
}
.work_row_wrap .work_content h3{
  font-weight: 400;
  margin: 20px 0 10px 0;
}
.work_row_wrap .work_content h2{
  font-size: 20px;
}
/* more work css end */

@media screen and (min-width: 767px){
  .banner_bottom_text .container{
    max-width: 80%;
  }
  .static_text_wrap .container{
    max-width: 60%;
}
}
@media screen and (max-width: 767px){
  header{
    border-bottom: 1px solid #aeaeae;
  }
  /* banner css start  */
  .banner_col_text h1{
    font-size: 30px;
  }
  .hero_banner_wrap{
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  .banner_col{
    width: 100%;
    max-width: calc(50% - 10px);
  }
  .banner_col_text{
    width: 100%;
    order: -1;
  }
  .hero_banner_wrap .banner_col:first-child{
    margin-top: 0;
  }
  /* banner css end */

  /* slider css  */
  .image_slider_grid .draggable{
    padding: 0 10% !important;
  }
  /* slider css end */
}