html,
body {
  height: 100%;
  font-family: "Josefin Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Play", sans-serif;
}


img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.section-title {
  margin-bottom: 50px;
}
.section-title.center-title {
  text-align: center;
}
.section-title.center-title h2:after {
  right: 0;
  margin: 0 auto;
}
.section-title span {
  color: #adadad;
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Roboto', sans-serif;
}
.section-title h2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 25px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
}
.section-title h2:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: #00bfe7;
  content: "";
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: #D0B1FF;
}

#button {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .5s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 25px;
  line-height: 45px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}
.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 15px;
  font-family: "Play", sans-serif;
  font-weight: 700;
  padding: 14px 32px 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.primary-btn:hover:before {
  height: 100%;
  width: 100%;
}
.primary-btn:hover:after {
  height: 100%;
  width: 100%;
}
.primary-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-left: 2px solid #00bfe7;
  border-top: 2px solid #00bfe7;
  content: "";
  z-index: -1;
  -webkit-transition: all, 0.7s;
  -o-transition: all, 0.7s;
  transition: all, 0.7s;
}
.primary-btn:after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-right: 2px solid #00bfe7;
  border-bottom: 2px solid #00bfe7;
  content: "";
  z-index: -1;
  -webkit-transition: all, 0.7s;
  -o-transition: all, 0.7s;
  transition: all, 0.7s;
}
.site-btn {
  font-size: 11px;
    color: #ffffff;
    background: #00bfe7;
    font-family: "Play", sans-serif;
    font-weight: 700;
    border: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
}

/*---------------------
  Header
-----------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #3c3c3c7a;
  z-index: 9;
}
.header__logo {
  padding: 30px 0;
}
.header__logo a {
  display: inline-block;
}
.header__nav__option {
  text-align: right;
  padding: 28px 0px;
}
.header__nav__menu {
  display: inline-block;
  margin-right: 45px;
}
.header__nav__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 45px;
  position: relative;
}

.header__nav__menu ul li:last-child {
  margin-right: 0;
}

.header__nav__menu ul li a {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  display: block;
  /* text-transform: uppercase; */
  position: relative;
  padding: 6px 0;
}

.slicknav_menu {
  display: none;
}

/*******************************/
/******** bannerCarousel CSS *********/
/*******************************/
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;

}
.carousel {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 170px);
  min-height: 400px; */
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.carousel-item::before{
  content: "";
  position: absolute;
  /* background: rgba(0,0,0, 0.8); */
  /* background: url(images/video/overlay.png) repeat top center #f2f3f5; */
  width: 100%;
  height: 100%;
  /* top: 0%;
  left: 100%;
  z-index: 1; */
  opacity: 3.4;
  /* background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#000000),to(rgba(0,54,161,0))); */
}
.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: rgba(0, 0, 0, .3); */
  background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#000000),to(rgba(0,54,161,0)));
  z-index: 1;
}
.carousel .carousel-caption {
  position: absolute;
  top: 32%;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px;
  left: 7%;
}
.carousel .carousel-caption p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
}

.carousel .carousel-caption h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
  animation: backInLeft;
  animation-duration: 5s;
  font-family: 'Recursive', sans-serif;
}
.carousel .carousel-caption span{
  color: #00bfe7;
}
/* .slider-content-btn .btn-light {
  font-size: 16px;
  background: linear-gradient(#d2ac67, #fde5a4 ,#d3b35b);
  color: #000000;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
  border: none;
  padding: 10px 3%;
  border-radius: 0;
  font-weight: 700;
} */
.carousel .carousel-caption .btn {
  text-transform: uppercase;
  transition: .3s;
  font-size: 16px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
  padding: 10px 33%;
  font-weight: 700;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  border: 1px solid #00bfe7;
}
.carousel-indicators{
  bottom: 50px;
}
/* .carousel .carousel-caption .btn:hover {
  color: #030f27;
  background: #fdbe33;
  border-color: #fdbe33;
} */
.carousel .animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
/*---------------------
  Services
-----------------------*/
.services {
  background-color: #041827;
  /* padding-bottom: 60px;
  padding-top: 110px; */
  padding: 45px 0px;
}
.services__title p {
  margin-bottom: 45px;
}
.services__item {
  margin-bottom: 45px;
  border: 1px solid #99d5ff;
  padding: 20px;
  /* animation: rollIn;
  animation-duration: 10s; */
}
.services__item:hover {
 box-shadow: 0 0 10px rgb(251 251 251 / 50%);
}
 

.services__item:hover .services__item__icon:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.services__item h4 {
  color: #ffffff;
  font-size: 16px;
  /* font-weight: 700; */
  margin-top: 26px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto', sans-serif;
}
.services__item p {
  margin-bottom: 0;
  text-align: justify;
  font-size: 14px;
  color: #adadad;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}

.services__item__icon {
  position: relative;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
}
.services__item__icon:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #00bfe7;
  content: "";
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}
/*---------------------
  Services Page
-----------------------*/
.service_page{
  padding-top: 30%;
}
.service_page_main{
  padding-top: 13%;
}

/************************/
/*why work with us   */
/************************/
.aboutus{
  background-color: #041827;
  /* padding-bottom: 60px;
  padding-top: 50px; */
  padding: 45px 0px;
  }
  .card{
    background-color: transparent;
    border: none;
  }
  .card-icon{
    width: 90px;
    height: 90px;
    margin-right: auto;
    margin-left: auto;
    /* border-radius: 50%; */
    border: 3px solid #00bfe7;
    text-align: center;
  }
  .material-icons-outlined{
    color: #ffffff;
    font-size: 45px;
    line-height: 90px;
  }
  .card-title{
    text-align: center;
    color: rgb(255 255 255);
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
  }

/*---------------------
  Gallery
-----------------------*/
.work {
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 60px;
  padding-top: 50px;
}

.work__gallery {
  margin-right: -10px;
}

.work__item {
  height: 311px !important;
  width: calc(16.67% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  float: left;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.work__item:hover .work__item__hover {
  bottom: 0;
}
.work__item.large__item {
  height: 633px !important;
  width: calc(33.33% - 10px);
}
.work__item.wide__item {
  width: calc(33.33% - 10px);
  height: 311px !important;
}
.work__item .play-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.grid-sizer {
  width: calc(16.67% - 10px);
}

.work__item__hover {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 100%;
  padding: 25px 30px 20px;
  -webkit-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}
.work__item__hover h4 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}
.work__item__hover ul li {
  color: #adadad;
  list-style: none;
  font-size: 16px;
  margin-right: 23px;
  position: relative;
  display: inline-block;
}
.work__item__hover ul li:after {
  position: absolute;
  right: -18px;
  top: 1px;
  content: "/";
}
.work__item__hover ul li:last-child {
  margin-right: 0;
}
.work__item__hover ul li:last-child:after {
  display: none;
}

/*******************************/
/********** oursucess  ***********/
/*******************************/
.timeline{
  background-color: #041827;
  padding: 45px 0px;
}
.timeline .owl-nav{
  display: none;
}
.timelinesection-title h2{
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  /* padding-bottom: 0; */
  color: #d2ac67;
  /* position: relative; */
  /* z-index: 2; */
  text-align: left;
  font-family: 'Playfair Display', serif;
}
.timelinesection-title{
  position: relative;
}
.timelinesection-title span{
  position: absolute;
  top: 10px;
  color: #151517;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  line-height: 0;
  text-align: left;
}
.tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 85%;
  height: 63vh;
  min-height: 100px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;
  cursor: pointer;

}
.tl-item:hover {
  width: 93% !important;
}
.tl-item:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-item:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0) translateY(0);
  transition: opacity 1s ease, transform 1s ease 0.25s;
}
.tl-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transition: filter 0.5s ease;
  filter: grayscale(100%);
}
.tl-item:hover .tl-bg {
  filter: grayscale(0);
}
.tl-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.tl-year p {
  font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.728rem;
  line-height: 0;
}
.tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 55%;
  opacity: 0;
}
.tl-item:hover .tl-content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.75s ease 0.5s;
}
.tl-content h1 {
  font-family: "Pathway Gothic One", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #1779cf;
  font-size: 1.44rem;
  font-weight: normal;
}
.tl-content p{
  line-height: 10px;
  font-size: 10px;
}
.tl-item:after {
  background: rgba(3, 22, 37, 0.85);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.tl-item:before, .tl-item:after {
  transform: translate3d(0, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #99d5ff;
}
#timeline:hover .tl-item {
  width: 23.3333%;
}
#timeline {
  display: flex;
  background-color: #031625;
}
#timeline:hover .tl-item {
  width: 23.3333%;
}

/*---------------------
  Counter
-----------------------*/
.counter {
  background-color: #041827;
  height: 840px;
  padding-top: 380px;
  overflow: hidden;
}

.counter__content {
  padding: 0px 50px;
}

.counter__item {
  background-color: #00bfe7;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 255px;
  width: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.counter__item::before {
  position: absolute;
  left: -1px;
  bottom: -2px;
  height: 636px;
  width: 636px;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  content: "";
  z-index: -1;
}
.counter__item.second__item {
  margin-top: -185px;
}
.counter__item.second__item:before {
  left: -316px;
  bottom: -65px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: none;
  border-top: none;
}
.counter__item.four__item {
  margin-top: -185px;
}
.counter__item.four__item:before {
  left: -380px;
  bottom: -380px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: none;
  border-top: none;
}
.counter__item.third__item:before {
  left: -65px;
  bottom: -317px;
}

.counter__item__text {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.counter__item__text h2 {
  font-size: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
}
.counter__item__text p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
}

/************************/
/*  brand */
/************************/
.popular_brand{
  margin: 45px 0;
  padding: 0;
}
.brand-img{
  margin: auto;
  padding: 30px;
  border-right: 1px solid #eee;
  text-align: center;
}
.brd-btm{
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
.brand-img img{
  display: block;
  margin: auto;
  padding: 10px;

}

/*---------------------
  Testimonial
-----------------------*/
.testimonials {
  background-color: #041827;
  padding-top: 30px;
}

.testimonial{
  border-left: 6px solid #fff;
  box-shadow: 5px 5px 6px #48474624;
  padding: 30px 30px 30px 130px;
  margin: 10px 10px;
  overflow: hidden;
  position: relative;
  text-align: justify;
  background-color: #819498;
  cursor: pointer;
}
.testimonial:before{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 25px solid #fff;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  transform: rotate(-45deg);
  transform-origin: 80% -30% 0;
}
.testimonial .pic{
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 20px;
  width: 16%;

}
.testimonial .pic img{
  width: 100%;
  height: auto;
}
.testimonial .description{
  font-size: 15px;
  /* font-style: italic; */
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 25px;
  margin-bottom: 15px;
}
.testimonial .title{
  display: inline-block;
  font-size: 18px;
  color: #041827;
  font-family: 'Recursive', sans-serif
}
.testimonial .post{
  display: inline-block;
  font-size: 16px;
  color: #041827;
  font-family: 'Recursive', sans-serif
}
.owl-theme .owl-controls .owl-page span{
  border: 2px solid #fff;
  background: #fff;
  opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page:hover span{
  background: #fff;
}



/*---------------------
  Footer
-----------------------*/
.footer {
  /* background-image: linear-gradient(0deg, #000000, #2d2d2d); */
  background-color: #1e1e1e;
}

.footer__top {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top__logo {
  line-height: 40px;
}
.footer__top__logo a {
  display: inline-block;
}

.footer__top__social {
  text-align: right;
}
.footer__top__social a {
  color: #ffffff;
  padding: 14px;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.footer__top__social a:last-child {
  margin-right: 0;
}

.footer__option {
  padding-bottom: 35px;
  padding-top: 75px;
}

.footer__option__item {
  margin-bottom: 35px;
}
.footer__option__item h5 {
  color: #7d7d7d;
  font-weight: 700;
  margin-bottom: 35px;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
}
.footer__option__item p {
 font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  color: #adadad;
}

.footer__option__item ul li {
  list-style: none;
}
.footer__option__item ul li a {
  color: #adadad;
  font-size: 16px;
  line-height: 38px;
  font-family: 'Roboto', sans-serif;
}


.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer__copyright__text {
  margin-bottom: 0;
  font-weight: 300;
  color: #6c6c6c;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}
.info h3{
  color: #adadad;
    font-size: 14px;
    line-height: 32px;
    font-family: 'Roboto', sans-serif;
    margin-right: 8px;
}
address{
  color: #adadad;
  font-size: 14px;
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
}
address h3{
  color: #00bfe7;
  font-size: 16px;
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
}
.info{
  display: flex;
  align-items: center;
}
.info a{
  color: #adadad;
  font-size: 14px;
  line-height: 32px;
  font-family: 'Roboto', sans-serif;
}


/*---------------------
    Blog
-----------------------*/


.blog__item {
  padding: 40px 48px 35px 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
  background-color: #041827;
}
.blog__item:hover {
  border: 1px solid transparent !important;
  background: url(../img/blog/blog.jpg) no-repeat;
  background-size: cover;
}
.blog__item:hover ul li {
  color: #ffffff;
}
.blog__item:hover p {
  color: #ffffff;
}
.blog__item h4 {
  color: #ffffff;
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 18px;
}
.blog__item ul {
  margin-bottom: 20px;
}
.blog__item ul li {
  color: #777777;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
  margin-right: 25px;
  position: relative;
  display: inline-block;
}
.blog__item ul li:after {
  position: absolute;
  right: -16px;
  top: 0px;
  content: "/";
}
.blog__item ul li:last-child {
  margin-right: 0;
}
.blog__item ul li:last-child:after {
  display: none;
}
.blog__item p {
  font-weight: 300;
  line-height: 29px;
  margin-bottom: 22px;
}
.blog__item a {
  font-size: 16px;
  color: #000000;
}
.blog__item a span {
  font-size: 16px;
  color: #000000;
  opacity: 0.5;
  position: relative;
  top: 4px;
  margin-left: 5px;
}
.card-text{
  text-align: justify;
  color: rgb(0, 0, 0);
}
.card-link{
  color: rgb(0 0 0);
  font-size: 16px;
  padding: 10px;
  background-color: #efeeee;
}
.card-link :hover{
  color: #031625;
}
/*---------------------
  Blog page
-----------------------*/

.blog__item_page{
  border: 1px solid #99d5ff;
}

.blog .btn{
  color: white;
  border: 1px solid #99d5ff;
  border-radius: 0;
  /* margin-bottom: 4%; */
  margin: auto;
  margin-bottom: 2%;
  font-size: 15px;
}

/*---------------------
  Blog Details Hero
-----------------------*/
.blog-hero {
  padding: 300px 0 230px;
}

.blog__hero__text {
  text-align: center;
}
.blog__hero__text h2 {
  color: #ffffff;
  font-weight: 700;
  line-height: 47px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog__hero__text ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  position: relative;
}
.blog__hero__text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "/";
}
.blog__hero__text ul li:last-child {
  margin-right: 0;
}
.blog__hero__text ul li:last-child:after {
  display: none;
}
.blog__hero__text ul li span {
  text-transform: uppercase;
}

/*---------------------
  Blog Details
-----------------------*/
.loadmore{

    color: white;
      border: 1px solid #99d5ff;
      border-radius: 0;
      /* margin-bottom: 4%; */
      margin: auto;
      margin-bottom: 2%;
      font-size: 15px;

}
.blog__details__content_page{
  box-shadow: 0 0.5rem 1rem 0 rgb(0 0 0 / 10%);
  background-color: #fff;
  padding: 25px 5%;
}
.blog-details {
  background-color: #041827;
  padding-top: 12%;
  padding-bottom: 5%;
}
.blog-details h4{
  color: #041827;
  font-size: 25px;
  margin-bottom: 2%;
}
.blog-title{
  color: #041827;
}
.blog__details__text {
  margin-bottom: 30px;
}
.blog__details__text p {
  font-size: 16px;
  line-height: 29px;
  /* font-weight: 300; */
  margin-bottom: 20px;
  color: #000;
  text-align: justify;
}
.blog__details__text p:last-child {
  margin-bottom: 0;
}

.blog__details__quote {
  border: 3px solid #00bfe7;
  padding: 35px 90px 35px 40px;
  position: relative;
  margin-bottom: 35px;
}
.blog__details__quote p {
  font-size: 22px;
  font-weight: 300;
  line-height: 35px;
  font-style: italic;
  margin-bottom: 10px;
}
.blog__details__quote h6 {
  font-size: 15px;
  color: #adadad;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}
.blog__details__quote i {
  font-size: 36px;
  color: #00bfe7;
  position: absolute;
  right: 30px;
  bottom: 25px;
}

.blog__details__desc {
  margin-bottom: 50px;
}
.blog__details__desc p {
  font-size: 16px;
    line-height: 29px;
    /* font-weight: 300; */
    margin-bottom: 20px;
    color: #000;
    text-align: justify;
}
.blog__details__desc p:last-child {
  margin-bottom: 0;
}

.blog__details__tags {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 65px;
}
.blog__details__tags span {
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 300;
  margin-right: 25px;
}
.blog__details__tags a {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  display: inline-block;
  margin-right: 11px;
  padding: 8px 15px 7px;
  margin-bottom: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.blog__details__option {
  margin-bottom: 40px;
}

.blog__details__option__item {
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}
.blog__details__option__item h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.blog__details__option__item h5 i {
  font-size: 18px;
  margin-right: 5px;
}
.blog__details__option__item.blog__details__option__item--right h5 {
  text-align: right;
}
.blog__details__option__item.blog__details__option__item--right h5 i {
  margin-right: 0;
  margin-left: 5px;
}
.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__img {
  float: right;
  margin-right: 0;
  margin-left: 25px;
}
.blog__details__option__item.blog__details__option__item--right .blog__details__option__item__text {
  margin-right: 25px;
  text-align: right;
  float: none;
}

.blog__details__option__item__img {
  float: left;
  margin-right: 25px;
}

.blog__details__option__item__text {
  overflow: hidden;
}
.blog__details__option__item__text h6 {
  color: #ffffff;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}
.blog__details__option__item__text span {
  font-size: 14px;
  color: #777777;
  font-weight: 300;
}

.blog__details__recent {
  margin-bottom: 60px;
}
.blog__details__recent h4 {
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.blog__details__recent__item {
  margin-bottom: 30px;
}
.blog__details__recent__item img {
  min-width: 100%;
  margin-bottom: 20px;
}
.blog__details__recent__item h5 {
  color: #000000;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 4px;
}
.blog__details__recent__item span {
  color: #777777;
  font-size: 14px;
  font-weight: 300;
}

.blog__details__comment h4 {
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}
.blog__details__comment form textarea {
  height: 120px;
  width: 100%;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-top: 12px;
  padding-left: 20px;
  font-weight: 300;
  margin-bottom: 14px;
  resize: none;
}
.blog__details__comment form textarea:placeholder {
  color: #adadad;
}

.input__list {
  margin-right: -20px;
  overflow: hidden;
}
.input__list input {
  height: 50px;
  width: calc(33.33% - 20px);
  float: left;
  border: 1px solid rgba(225, 225, 225, 0.5);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-left: 20px;
  font-weight: 300;
  margin-right: 20px;
  margin-bottom: 20px;
}
.input__list input:placeholder {
  color: #adadad;
}
.section-titles{
  text-align: center;
}
.section-titles .blog-title{
  text-align: center;
    color: #041827;
    font-weight: 700;

    text-transform: uppercase;
    padding-bottom: 25px;
}
.section-titles h2:after {
  position: absolute;
  left: 47%;
  bottom: 0;
  height: 5px;
  width: 70px;
  background: #00bfe7;
  content: "";
}
.latest__slider{
  margin-top: 2%;
}


/*---------------------
  blog
-----------------------*/
.latest {
 background-color: #fff;
  padding-bottom: 80px;
  padding: 45px 0px;
}

.blog__item.latest__item {
  margin-bottom: 0;
}
.blog__item.latest__item:hover {
  /* border: 1px solid #00bfe7 !important; */
  background: url(../img/blog/BLOG.png);
  background-size: cover;
}

.latest__slider.owl-carousel .owl-item .col-lg-4 {
  max-width: 100%;
}
.latest__slider.owl-carousel .owl-dots {
  text-align: center;
  padding-top: 35px;
}
.latest__slider.owl-carousel .owl-dots button {
  height: 8px;
  width: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 10px;
}
.latest__slider.owl-carousel .owl-dots button.active {
  background: #00bfe7;
}
.latest__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}









/*---------------------
  Logo
-----------------------*/
/* .logo {
  background: #100028;
  padding: 100px 20px;
} */

.logo__carousel.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

/*---------------------
  Portfolio
-----------------------*/
.portfolio {
 background-color: #041827
}

.portfolio__filter {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.portfolio__filter li {
  list-style: none;
  font-size: 16px;
  color: #adadad;
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
  padding: 6px 22px;
}
.portfolio__filter li.active {
  border: 1px solid #00bfe7;
}
.portfolio__filter li:last-child {
  margin-right: 0;
}

.portfolio__item {
  margin-bottom: 35px;
}
.portfolio__item:hover .portfolio__item__text h4:after {
  opacity: 1;
}

.portfolio__item__video {
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 28px;
}
.portfolio__item__video .play-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.portfolio__item__text {
  text-align: center;
}
.portfolio__item__text h4 {
  color: #ffffff;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}
.portfolio__item__text h4:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #333;
  content: "";
  -webkit-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  opacity: 0;
}
.portfolio__item__text ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  margin-right: 24px;
  position: relative;
  color: #adadad;
}
.portfolio__item__text ul li:after {
  position: absolute;
  right: -16px;
  top: 0;
  content: "/";
}
.portfolio__item__text ul li:last-child {
  margin-right: 0;
}
.portfolio__item__text ul li:last-child:after {
  display: none;
}
.portfolio__item__text span {
  font-size: 16px;
  font-weight: 300;
  color: #adadad;
  display: block;
}

.pagination__option {
  text-align: center;
  padding-top: 20px;
}
.pagination__option.blog__pagi {
  padding-top: 5px;
}
.pagination__option .arrow__pagination {
  font-size: 15px;
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
}
.pagination__option .arrow__pagination.left__arrow {
  margin-right: 26px;
}
.pagination__option .arrow__pagination.right__arrow {
  margin-left: 18px;
}
.pagination__option .arrow__pagination span {
  opacity: 0.5;
}
.pagination__option .number__pagination {
  font-size: 18px;
  color: #ffffff;
  height: 50px;
  width: 50px;
  background: rgba(242, 242, 242, 0.1);
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 6px;
}


/*---------------------
  Contact Widget
-----------------------*/
.contact-widget {
  padding-bottom: 5%;
  background-color: #041827;
  padding-top: 11%;
}

.contact__widget__item {
  margin-bottom: 30px;
}

.contact__widget__item__icon {
  height: 70px;
  width: 70px;
  border: 1px solid rgba(225, 225, 225, 0.5);
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 30px;
}
.contact__widget__item__icon i {
  font-size: 30px;
  color: #ffffff;
}

.contact__widget__item__text {
  overflow: hidden;
  padding-top: 7px;
}
.contact__widget__item__text h4 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}
.contact__widget__item__text p {
  margin-bottom: 0;
  color: #adadad;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;

}
.contact__widget__item__text a{
  font-family: 'Roboto', sans-serif;
  color: #00bfe7;
  font-size: 15px;
}

/*---------------------
  Contact
-----------------------*/
.contact {
  background-color: #041827;
  padding-top: 0;
  padding-bottom: 5%;
  overflow: hidden;
}

.contact__map {
  height: 450px;
}
.contact__map iframe {
  width: 100%;
}

.contact__form h3 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
}
.contact__form form input {
  height: 50px;
  width: 100%;
  border: 1px solid rgb(124 124 124 / 50%);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-left: 20px;
  font-weight: 300;
  margin-right: 20px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  border-radius: 0;
}
.contact__form form input:placeholder {
  color: #adadad;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.contact__form form input:focus {
  border-color: #e1e1e1;
}
.contact__form form textarea {
  height: 110px;
  width: 100%;
  border: 1px solid rgb(124 124 124 / 50%);
  background: transparent;
  font-size: 16px;
  color: #adadad;
  padding-top: 12px;
  padding-left: 20px;
  font-weight: 300;
  margin-bottom: 14px;
  resize: none;
  font-family: 'Roboto', sans-serif;
  border-radius: 0;
  transition: all, 0.3s;
}
.contact__form form textarea:placeholder {
  color: #adadad;
}
.contact__form form textarea:focus {
  border-color: #e1e1e1;
}
.send{
  padding: 10px 30px;
  border: none;
  background-color: #1e1e1e;
  color: #fff;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}



/*===============================================
* Cards
================================================*/
.cards{
  border: 1px solid #efecec;
  margin-bottom: 30px;
}
.cards .card-body .icon-box{
  padding: 20px 0;
  color: #d81b60;
}
.cards .card-body h6{
  padding-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 500;
}
.cards:hover {
  box-shadow: 6px 6px 25px rgb(0 0 0 / 15%);
}


.slicknav_menu .slicknav_menutxt{
  display: none;
}














@media (max-width: 575.98px) {
  .header{
    background: black;
    z-index: 9999;
    position: fixed;
  }
 
  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
    background-color: #000;
    height: 100vh;
  }
  .header__logo{
    padding: 10px 0;
  }
  /* video */
  .carousel .carousel-caption{
    top: 26%;
    text-align: left;
  }
  .carousel .carousel-caption p{
    text-align: left;
    font-size: 14px;
  }
  .carousel-indicators{
    bottom: 20px;
  }
  /* why_work_with_us */
  .card-title{
    font-size: 11px;
  }
  .section-title h2{
    font-size: 25px;
  }
  /* oursucess */
  .tl-item{
    width: 100%;
  }
  /* testimonial */
  .testimonial{
    padding: 20px;
    margin: 10px 10px;
  }
  .testimonial .pic{
    position: relative;
    width: 29%;
    left: 38%;
    top: 0;
  }
  /* blog */
  .blog_page{
    padding-top: 35%;
  }
  /* gallerypage */
  .portfolio__filter li{
    margin-bottom: 10px;
    font-size: 12px;
  }
  /* contactpage */
  .contact-widget{
    padding-top: 30%;
  }
  .contact__widget__item__icon{
    height: 43px;
    width: 45px;
  }
  .contact__widget__item__icon i{
    font-size: 22px;
    position: absolute;
    left: 31px;
    top: 10px;
  }
  
 }
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) { 

 
 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .slicknav_btn {
    position: absolute;
    right: 0;
    top: 26px;
    background: #7b898c;
  }
  .slicknav_menu .slicknav_icon{
    margin: 0;
  }
  /* why work with us */
  .card-title{
    font-size: 10px;
  }
  /* what we do */
  .service_page{
    padding-top: 0;
  }
  /* our sucess */
  .tl-item{
    width: 100%;
  }
  .counter__item__text p{
    font-size: 12px;
  }
  /* testimonial */
  .testimonial{
    padding: 20px;
    margin: 10px 10px;
  }
  .testimonial .pic{
    position: relative;
    width: 29%;
    left: 38%;
    top: 0;
  }
   /*footer*/

  
  .footer__option__item form input{
   width: 50%;
  }
  .footer__option__item form button{
   left: 43%;
  }
  .footer__top__social a {
    padding: 5px;
}
  }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {  
/* our sucess */
  .tl-item{
    width: 100%;
  }
  /* counter */
  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0px 145px 0 50px;
  }

  .counter__item.second__item {
    margin-top: -210px;
  }

  .counter__item.four__item {
    margin-top: -210px;
  }

}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
  .container {
    max-width: 85%;
  }
 }




















 /*--------------------------------- Responsive Media Quaries -----------------------------*/
 @media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__nav__menu {
    margin-right: 25px;
  }

  .header__nav__menu ul li {
    margin-right: 25px;
  }

  .header__nav__social {
    padding-left: 25px;
  }

  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0px 145px 0 50px;
  }

  .counter__item.second__item {
    margin-top: -210px;
  }

  .counter__item.four__item {
    margin-top: -210px;
  }

  .hero__slider.owl-carousel .owl-dots {
    max-width: 930px !important;
  }
}
/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero__slider.owl-carousel .owl-dots {
    max-width: 690px !important;
  }

  .services__title {
    margin-bottom: 50px;
  }

  .counter__item {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    margin-bottom: 30px;
    width: auto;
  }

  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0;
  }

  .counter__item.second__item {
    margin-top: 0;
  }

  .counter__item.four__item {
    margin-top: 0;
  }

  .counter__item__text {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
  }

  .counter {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .team__item.team__item--second {
    margin-top: 0;
  }

  .team__item.team__item--third {
    margin-top: 0;
  }

  .team__item.team__item--four {
    margin-top: 0;
  }

  .team__btn {
    position: relative;
    padding-top: 50px;
  }

  .about__pic {
    margin-bottom: 50px;
  }

  .about__text {
    padding-left: 0;
  }

  .portfolio__filter li {
    padding: 6px 15px;
  }

  .header{
    background: black;
    z-index: 9999;
    position: fixed;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
    background-color: #000;
    height: 100vh;
  }

  .slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 25px 0;
  margin: 0;
  color: #FFF;
  font-weight: 600;
  border-bottom: 1px solid #7d7d7d;
  font-size: 22px;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #00bfe7;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #00bfe7;
  }

  .slicknav_nav {
    background: #222222;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top: 18px;
    background: #000;
  }

  .header .container {
    position: relative;
  }

  .header__nav__option {
    display: none;
  }
}
/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
  .services__title {
    margin-bottom: 50px;
  }

  .counter__item {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
    margin-bottom: 30px;
    width: auto;
  }

  .counter__item::before {
    display: none;
  }

  .counter__content {
    padding: 0;
  }

  .counter__item.second__item {
    margin-top: 0;
  }

  .counter__item.four__item {
    margin-top: 0;
  }

  .counter__item__text {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
        transform: rotate(0);
  }

  .counter {
    height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .team__item.team__item--second {
    margin-top: 0;
  }

  .team__item.team__item--third {
    margin-top: 0;
  }

  .team__item.team__item--four {
    margin-top: 0;
  }

  .team__btn {
    position: relative;
    padding-top: 50px;
  }

  .about__pic {
    margin-bottom: 50px;
  }

  .about__text {
    padding-left: 0;
  }

  .hero__slider.owl-carousel .owl-dots {
    max-width: auto;
    padding: 0 15px;
  }

  .slicknav_menu {
    background: transparent;
    padding: 0;
    display: block;
  }

  .slicknav_nav ul {
    margin: 0;
    padding: 10px 30px;
  }

  .slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 14px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px solid #7d7d7d;
    font-size: 18px;
  }

  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }

  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #00bfe7;
  }

  .slicknav_nav {
    background: #222222;
  }

  .slicknav_btn {
    position: absolute;
    right: 10px;
    top:8px;
    background: #000000;
  }
  .slicknav_menu .slicknav_icon{
    margin: 0;
  }

  .header .container {
    position: relative;
  }
  .footer__option{
    padding-top: 5%;
  }

  .header__nav__option {
    display: none;
  }

  .hero__text h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .grid-sizer {
    width: calc(50% - 10px);
  }

  .work__item.wide__item {
    width: calc(50% - 10px);
  }

  .work__item {
    width: calc(50% - 10px);
  }

  .work__item.large__item {
    width: calc(50% - 10px);
  }

  .footer__top__social {
    text-align: left;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .footer__top__social a{
    padding: 7px;
  }
  .portfolio__filter li {
    margin-bottom: 10px;
  }

  .input__list {
    margin-right: 0;
  }

  .input__list input {
    width: 100%;
    margin-right: 0;
  }

  .contact__map {
    margin-bottom: 40px;
  }

  .team__item {
    margin-bottom: 20px;
  }

  .team .p-0 {
    padding: 0 15px !important;
  }

  .about__pic__item {
    margin-right: 0;
  }

  .blog__details__quote {
    padding: 30px 45px 35px 35px;
  }
}
/* Small Device = 320px */
@media only screen and (max-width: 479px) {
   .hero__text h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .grid-sizer {
    width: 100%;
  }

  .work__item.wide__item {
    width: 100%;
  }

  .work__item {
    width: 100%;
    margin-right: 0;
  }

  .work__item.large__item {
    width: 100%;
  }

  .work__gallery {
    margin-right: 0;
  }

  .pagination__option .arrow__pagination.left__arrow {
    margin-right: 15px;
  }

  .pagination__option .arrow__pagination.right__arrow {
    margin-left: 10px;
  }

  .blog__details__quote {
    padding: 30px 40px 35px 35px;
  } 
}





















/* .swiper-container {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 10px;
 transition: all 0.5s linear;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 420px;
  height: 420px;
  }
  .swiper-slide .number{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  text-shadow: 4px 4px 4px rgba(255,255,255,0.5),
  -5px px 4px rgba(255,255,255,0.5);
  font-size: 100px;
  font-weight: 900;
} */


