/**
 * Created by Rikesh Maharjan
 * Email : rikeshmaharjan.c4@gmail.com
*/
/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
.ex-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ex-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.ex-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ex-transition {
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.ex-transition-medium {
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.ex-transition-large {
  -webkit-transition: all 1.8s ease;
  transition: all 1.8s ease;
}

/*--------------------------------------- Mixins Ends -------------------------------------*/
/*-------------------------------- Content Wrapper Starts ---------------------------------*/
#content-wrapper #home-page .banner-section .banner-item {
  width: 70%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

#content-wrapper #home-page .banner-section .banner-item .image-container {
  width: 100%;
}

#content-wrapper #home-page .banner-section .banner-item .image-container img {
  width: 100%;
}

#content-wrapper #home-page .banner-section .banner-item .image-container-mobile {
  display: none;
  width: 100%;
}

#content-wrapper #home-page .banner-section .banner-item .image-container-mobile img {
  width: 100%;
}

#content-wrapper #home-page .banner-section .banner-item .content-container {
  position: absolute;
  right: 10px;
  bottom: 0px;
  z-index: 9999;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:nth-of-type(1) {
  font-weight: 600;
  color: white;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:nth-of-type(2) {
  padding: 5px;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:nth-of-type(2) img {
  width: 70px;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:nth-of-type(3) {
  padding: 5px;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:nth-of-type(3) img {
  width: 80px;
}

#content-wrapper #home-page .banner-section .banner-item .content-container ul li:not(:last-child) {
  margin-right: 10px;
}

/*--------------------------------- Content Wrapper Ends ----------------------------------*/
/*# sourceMappingURL=thestyles.css.map */