/** Filterable Categories **/

.filter {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  position: relative;
  text-align: center;
  background-color: #fff;
  color: #18181d;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #f0f2f3;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 3px 24px rgb(0 0 0 / 4%);
  transition: 0.3s;
}

.filter__item.active {
  background-color: #5191fa;
  color: #fff;
}

.filter__item:not(:last-child) {
  margin-right: 15px;
}

.filter__item i {
  font-size: 20px;
}

.filterable-categories__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filterable-categories-content__item {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transform-style: initial !important;
  transform-style: initial !important;
}

.gallery-item__wrapper {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-item:hover .gallery-overlay-content {
  visibility: visible;
  -webkit-transform: perspective(700px) rotateY(0deg);
  transform: perspective(700px) rotateY(0deg);
}

.gallery-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  -moz-box-flex: column;
  flex-direction: column;
}

.gallery-item:hover .gallery-overlay-content {
  visibility: visible;
  -webkit-transform: perspective(700px) rotateY(0deg);
  transform: perspective(700px) rotateY(0deg);
}

.gallery-item.show {
  -webkit-animation: scale-in 0.4s ease;
  animation: scale-in 0.4s ease;
}

@-webkit-keyframes scale-in {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-in {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gallery-item.hide {
  -webkit-animation: scale-out 0.4s ease;
  animation: scale-out 0.4s ease;
}

@-webkit-keyframes scale-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes scale-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

.gallery-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  padding: 30px;
  -webkit-transform: perspective(700px) rotateY(-90deg);
  transform: perspective(700px) rotateY(-90deg);
}

.gallery-overlay-content__icon-img {
  text-align: center;
  border-radius: 50%;
}

.gallery-overlay-content__title {
  color: #fff;
  margin: 15px 0 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gallery-overlay-content__price {
  font-size: 20px;
  color: #fff;
  margin: 15px 0;
}

.gallery-overlay-content__description {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  font-style: italic;
}

.gallery-overlay-content .add_to_cart_button {
  background-color: #5191fa;
  color: #fff;
}

/** Filterable Categories - End **/

/** Filterable Projects Gallery **/

.projects-filters {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.projects-filter__item {
  display: inline-block;
  position: relative;
  text-align: center;
  background-color: #fff;
  color: #18181d;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #f0f2f3;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 3px 24px rgb(0 0 0 / 4%);
  transition: 0.3s;
}

.projects-filter__item.active {
  background-color: #5191fa;
  color: #fff;
}

.projects-filter__item:not(:last-child) {
  margin-right: 15px;
}

.projects-filter__item span {
  font-size: 18px;
}

.filterable-projects-gallery-content-item__wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.filterable-projects-gallery__content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filterable-projects-gallery-content__item {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transform-style: initial !important;
  transform-style: initial !important;
}

.filterable-projects-gallery-content-item.hide {
  width: 0 !important;
  padding: 0 !important;
}

.filterable-projects-gallery-content-item .gallery-overlay-content {
  background-color: #00000099;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.filterable-projects-gallery-content-item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.filterable-projects-gallery-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.filterable-projects-gallery-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  padding: 30px;
  -webkit-transform: perspective(700px) rotateY(-90deg);
  transform: perspective(700px) rotateY(-90deg);
}

.filterable-projects-gallery-content-item:hover .filterable-projects-gallery-overlay-content {
  visibility: visible;
  -webkit-transform: perspective(700px) rotateY(0deg);
  transform: perspective(700px) rotateY(0deg);
}

.filterable-projects-gallery-content-item:hover .filterable-projects-gallery-overlay-content {
  visibility: visible;
  -webkit-transform: perspective(700px) rotateY(0deg);
  transform: perspective(700px) rotateY(0deg);
}

.filterable-projects-gallery-content-item.show {
  -webkit-animation: scale-in 0.4s ease;
  animation: scale-in 0.4s ease;
}

.filterable-projects-gallery-content-item.hide {
  -webkit-animation: scale-out 0.4s ease;
  animation: scale-out 0.4s ease;
}

.filterable-projects-gallery-content-item__overlay-content {
  -o-transition-property: all;
  -moz-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.filterable-projects-gallery-overlay-content__icon-img {
  text-align: center;
  border-radius: 50%;
}

.filterable-categories-gallery-overlay-content__title {
  color: #fff;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.filterable-categories-gallery-overlay-content__category {
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
}

/** Filterable Projects Gallery - End **/

/** Hero Section **/

.hero__wrapper {
  position: relative;
  height: 50vh;
  color: #fff;
  z-index: 1;
}

.hero__content-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 11;
  align-items: center;
}

.hero__content {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.hero__heading {
  display: block;
  line-height: 1;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero__title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1500px) {
  .hero__title {
    font-size: 3.4em;
  }
}

@media only screen and (max-width: 1200px) {
  .hero__title {
    font-size: 3em;
  }
}

@media only screen and (max-width: 992px) {
  .hero__title {
    font-size: 2.6em;
  }
}

@media only screen and (max-width: 768px) {
  .hero__title {
    font-size: 2em;
  }
}

@media only screen and (max-width: 576px) {
  .hero__title {
    font-size: 1.6em;
  }
}

.hero__subtitle {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: lighter;
  font-size: 15px;
  line-height: 1.6;
}

@media only screen and (max-width: 1500px) {
  .hero__subtitle {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .hero__subtitle {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 576px) {
  .hero__subtitle {
    font-size: 1.2em;
    line-height: 30px;
  }
}

.hero-slider,
.hero-slider__item,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage {
  height: 100%;
}

.hero__search-form {
  width: 75%;
  margin: 0 auto;
}

.main-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-height: 40vh;
  color: #fff;
  padding: 0;
}

.main-product__desc {
  font-size: 1.25em;
  font-style: italic;
  line-height: 1.6;
}

@media only screen and (max-width: 992px) {
  .main-product {
    min-height: 60vh;
    padding: 120px 0;
  }
}

@media only screen and (max-width: 768px) {
  .main-product {
    min-height: 50vh;
  }
}

@media only screen and (max-width: 576px) {
  .main-product {
    min-height: 40vh;
    padding: 0;
  }
}

@media only screen and (max-width: 352px) {
  .main__content {
    padding: 120px 0 0;
  }
}

.main__name {
  display: block;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 100;
  line-height: 1.6;
  text-transform: uppercase;
}

@media only screen and (max-width: 1500px) {
  .main__name {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 992px) {
  .main__name {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .main__name {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 576px) {
  .main__name {
    font-size: 1.4rem;
  }
}

.main__description {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

@media only screen and (max-width: 1500px) {
  .main__description {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .main__description {
    font-size: 1.25em;
  }
}

@media only screen and (max-width: 992px) {
  .main__description {
    text-align: left;
  }
}

@media only screen and (max-width: 768px) {
  .main__description {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .main__description {
    font-size: 1em;
  }
}

.main__link {
  text-align: center;
}

.main__link .custom-btn {
  color: #fff;
}

.main__link .custom-btn:first-child {
  margin-right: 15px;
}

@media only screen and (max-width: 576px) {
  .main__link .custom-btn:first-child {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 398px) {
  .main__link .custom-btn:first-child {
    margin-bottom: 15px;
  }
}

.hero-section__slider {
  z-index: auto !important;
}

.hero-section__slider .owl-dots {
  position: absolute;
  left: 50%;
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 60px;
  z-index: 999;
}

.hero-section__slider .owl-nav {
  position: absolute;
  top: 50%;
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 999;
}

.owl-prev,
.owl-next {
  position: absolute;
  width: 0 !important;
  height: 0 !important;
  border-left: none !important;
  border-right: none !important;
  -webkit-transform: rotate(0) !important;
  transform: rotate(0) !important;
  color: #fff;
}

.owl-prev span,
.owl-next span {
  font-size: 90px;
  font-weight: 300;
}

.owl-prev {
  left: 30px;
}

.owl-next {
  right: 30px;
}

/** Hero Section - End **/

/** Parallax Section **/

.parallax-section.jarallax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.parallax-section.jarallax {
  position: relative;
  z-index: 0;
}

.parallax-section.jarallax>.jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.parallax-section.overlay {
  position: relative;
}

.parallax-section.overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.parallax__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}

.parallax__title {
  position: relative;
}

.parallax-section__button {
  position: relative;
  background-color: #00AFF0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  margin: 30px auto 0;
  text-align: center !important;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

/** Parallax Section - End **/

/** Posts Carousel **/

/* Preset 1 */

.posts-carousel {
  position: relative;
  min-height: 1px;
}

.posts-carousel__item {
  overflow: hidden;
}

.posts-carousel__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.posts-carousel__image div {
  background-size: cover;
  background-position: center center;
}

.posts-carousel__title {
  font-family: "Roboto Slab", Sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.25em;
}

.posts-carousel__intro {
  font-family: "Roboto Slab", Sans-serif;
  font-weight: 400;
  line-height: 1.6em;
}

.posts-carousel__btn-holder {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.posts-carousel__btn {
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.posts-carousel .owl-dots {
  overflow: hidden;
}

.posts-carousel .owl-nav .owl-prev,
.posts-carousel .owl-nav .owl-next {
  position: absolute;
  display: inline-block;
  text-align: center;
}

/* Preset 2 */

.post-card {
  position: relative;
  display: block;
  height: 400px;
}

.post-card__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.post-card__title {
  position: relative;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
  z-index: 1;
}

.post-card__title::before {
  background: #cccccc none repeat scroll 0 0;
  border-radius: 50%;
  bottom: -3px;
  content: "";
  display: block;
  height: 5px;
  left: 146px;
  position: absolute;
  width: 5px;
  z-index: 999;
}

.post-card__title::after {
  border-top: 1px solid #cccccc;
  bottom: -2px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 150px;
}

@media only screen and (max-width: 1200px) {
  .post-card__title {
    font-size: 24px;
  }
}

.post-card__desc {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .post-card__desc {
    font-size: 14px;
  }
}

.post-card__btn {
  position: relative;
  z-index: 1;
  margin-top: 15px;
}

.post-card:hover .post-card__content {
  opacity: 1;
  visibility: visible;
}

.owl-theme .owl-dots .owl-dot span{
  display: none !important
}

/** Posts Carousel - End **/

/** Reviews Carousel **/

.owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.review__text {
  font-size: 1.25em;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}

.review-author__name {
  font-size: 1.4em;
  font-weight: 600;
}

.review-author__job {
  font-size: 1.25em;
  color: #0E1563;
}

.owl-prev,
.owl-next {
  -o-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
}

.owl-dots {
  text-align: center;
}

.owl-dot {
  border: transparent;
}

/** Reviews Carousel - End **/

/** Service Block **/

.features__item {
  position: relative;
  overflow: hidden;
}

.features__item:hover .features__item-content h3 {
  position: static;
  background: transparent !important;
}

.features__item-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.features__item:hover .features__item-content {
  right: 0 !important;
}

.features__item-image img {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.features__item-content h3 {
  text-align: center;
  position: absolute;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 2.5;
  padding: 5px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .features__item-content h3 {
    line-height: 1.6;
  }
}

@media only screen and (max-width: 768px) {
  .features__item-content h3 {
    font-size: 16px;
  }
}

.features__item-content p {
  line-height: 1.6;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .features__item-content p {
    padding: 0;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {
  .features__item-content p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 576px) {
  .features__item-content p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 400px) {
  .features__item-content p {
    font-size: 11px;
  }
}

.features__item-content h5 {
  text-align: center;
  line-height: 28px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

/** Animations **/
.img-hover-zoom,
.img-hover-zoom--quick-zoom,
.img-hover-zoom--point-zoom,
.img-hover-zoom--zoom-n-rotate,
.img-hover-zoom--slowmo,
.img-hover-zoom--brightness,
.img-hover-zoom--zoom-n-pan-h,
.img-hover-zoom--zoom-n-pan-v,
.img-hover-zoom--blur,
.img-hover-zoom--colorize {
  overflow: hidden;
}

.img-hover-zoom img,
.img-hover-zoom .ibg {
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.img-hover-zoom:hover img,
.img-hover-zoom:hover .ibg {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.img-hover-zoom--quick-zoom img,
.img-hover-zoom--quick-zoom .ibg {
  -webkit-transition: transform 0.25s, visibility 0.25s ease-in;
  -webkit-transition: visibility 0.25s ease-in, -webkit-transform 0.25s;
  transition: visibility 0.25s ease-in, -webkit-transform 0.25s;
  transition: transform 0.25s, visibility 0.25s ease-in;
  transition: transform 0.25s, visibility 0.25s ease-in, -webkit-transform 0.25s;
}

.img-hover-zoom--quick-zoom:hover img,
.img-hover-zoom--quick-zoom:hover .ibg {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.img-hover-zoom--point-zoom img,
.img-hover-zoom--point-zoom .ibg {
  -webkit-transform-origin: 65% 75%;
  transform-origin: 65% 75%;
  -webkit-transition: transform 0.1s, filter 0.5s ease-out;
  -webkit-transition: -webkit-transform 1s, -webkit-filter 0.5s ease-out;
  transition: -webkit-transform 1s, -webkit-filter 0.5s ease-out;
  transition: transform 1s, filter 0.5s ease-out;
  transition: transform 1s, filter 0.5s ease-out, -webkit-transform 1s, -webkit-filter 0.5s ease-out;
}

.img-hover-zoom--point-zoom:hover img,
.img-hover-zoom--point-zoom:hover .ibg {
  -webkit-transform: scale(5);
  transform: scale(5);
}

.img-hover-zoom--zoom-n-rotate img,
.img-hover-zoom--zoom-n-rotate .ibg {
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.img-hover-zoom--zoom-n-rotate:hover img,
.img-hover-zoom--zoom-n-rotate:hover .ibg {
  -webkit-transform: scale(2) rotate(25deg);
  transform: scale(2) rotate(25deg);
}

.img-hover-zoom--slowmo img,
.img-hover-zoom--slowmo .ibg {
  -webkit-transform-origin: 50% 65%;
  transform-origin: 50% 65%;
  -webkit-transition: transform 5s, filter 3s ease-in-out;
  -webkit-transition: -webkit-transform 5s, -webkit-filter 3s ease-in-out;
  transition: -webkit-transform 5s, -webkit-filter 3s ease-in-out;
  transition: transform 5s, filter 3s ease-in-out;
  transition: transform 5s, filter 3s ease-in-out, -webkit-transform 5s, -webkit-filter 3s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=150%";
  -webkit-filter: brightness(150%);
  filter: brightness(150%);
}

.img-hover-zoom--slowmo:hover img,
.img-hover-zoom--slowmo:hover .ibg {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transform: scale(3);
  transform: scale(3);
}

.img-hover-zoom--brightness img,
.img-hover-zoom--brightness .ibg {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: transform 1.5s, filter 1s ease-in-out;
  -webkit-transition: -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
  transition: -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
  transition: transform 1.5s, filter 1s ease-in-out;
  transition: transform 1.5s, filter 1s ease-in-out, -webkit-transform 1.5s, -webkit-filter 1s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=70%";
  -webkit-filter: brightness(70%);
  filter: brightness(70%);
}

.img-hover-zoom--brightness:hover img,
.img-hover-zoom--brightness:hover .ibg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Brightness=100%";
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.img-hover-zoom--zoom-n-pan-h img,
.img-hover-zoom--zoom-n-pan-h .ibg {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.img-hover-zoom--zoom-n-pan-h:hover img,
.img-hover-zoom--zoom-n-pan-h:hover .ibg {
  -webkit-transform: scale(1.5) translateX(30%);
  transform: scale(1.5) translateX(30%);
}

.img-hover-zoom--zoom-n-pan-v img,
.img-hover-zoom--zoom-n-pan-v .ibg {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.img-hover-zoom--zoom-n-pan-v:hover img,
.img-hover-zoom--zoom-n-pan-v:hover .ibg {
  -webkit-transform: scale(1.25) translateY(-30%);
  transform: scale(1.25) translateY(-30%);
}

.img-hover-zoom--blur img,
.img-hover-zoom--blur .ibg {
  -webkit-transition: transform 1s, filter 2s ease-in-out;
  -webkit-transition: -webkit-transform 1s, -webkit-filter 2s ease-in-out;
  transition: -webkit-transform 1s, -webkit-filter 2s ease-in-out;
  transition: transform 1s, filter 2s ease-in-out;
  transition: transform 1s, filter 2s ease-in-out, -webkit-transform 1s, -webkit-filter 2s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Blur=2px";
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.img-hover-zoom--blur:hover img,
.img-hover-zoom--blur:hover .ibg {
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.img-hover-zoom--colorize img,
.img-hover-zoom--colorize .ibg {
  -webkit-transition: transform 0.5s, filter 1.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
  transition: -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
  transition: transform 0.5s, filter 1.5s ease-in-out;
  transition: transform 0.5s, filter 1.5s ease-in-out, -webkit-transform 0.5s, -webkit-filter 1.5s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Grayscale=100%";
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.img-hover-zoom--colorize:hover img,
.img-hover-zoom--colorize:hover .ibg {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/** Service Block - End **/

/** Team Member Carousel **/

.team-card {
  position: relative;
}

.team-card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-box-flex: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-card__image{
  overflow: hidden;
}

.team-card__image,
.team-card__socials li a:hover {
  position: relative;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-card__cntbox h3 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.25em;
}

.team-card__cntbox h3 span {
  font-size: 0.9em;
  font-weight: 300;
  text-transform: initial;
}

.team-card__phone {
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
}

.team-card__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-card__socials li {
  list-style: none;
  -o-transition: all 0.5s ease calc(0.1s * var(--i));
  -moz-transition: all 0.5s ease calc(0.1s * var(--i));
  -webkit-transition: all 0.5s ease calc(0.1s * var(--i));
  transition: all 0.5s ease calc(0.1s * var(--i));
}

.team-card__socials li a {
  color: #fff;
  font-size: 1.6em;
}

.team-slider{
  padding: 15px 15px 0;
}

.team-slider__button-next,
.team-slider__button-prev {
  top: auto;
  bottom: 0;
  color: #2c48ac;
  z-index: 11;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none !important;
}

.swiper-pagination-bullet {
  opacity: 1;
}

.swiper-pagination{
  position: relative
}

/** Team Member Carousel - End **/

/** Camera Slideshow **/

.camera_wrap {
  bottom: 0;
  left: 0;
  margin-bottom: 0 !important;
  right: 0;
  top: 0;
}

.camera_caption {
  display: block;
  height: auto;
}

.camera-caption__title {
  font-family: "Helvetica", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.camera-caption__text {
  font-family: "Helvetica", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.camera-caption__button {
  display: inline-block;
  font-family: "Roboto", Sans-serif;
  font-size: 18px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0);
  border-width: 2px;
  border-style: solid;
  border-color: #ffffff;
  color: #ffffff;
  padding-top: 10px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-left: 25px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

/** Camera Slideshow - End **/

/** Creative Fallery **/

.creative-gallery {
  background: #fff;
}

.creative-gallery .creative-gallery__row .creative-gallery__item {
  width: 100%;
}

.creative-gallery .creative-gallery__column {
  -webkit-box-flex: 0;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.creative-gallery .creative-gallery__row-inner-fullheight {
  height: 100%;
}

/** Creative Fallery - End **/

/** Testimonials Slider **/

.testimonials-slider {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 60px;
}

.testimonial.swiper-slide-active {
  -ms-filter: blur(0) !important;
  -webkit-filter: blur(0) !important;
  filter: blur(0) !important;
}

.testimonial__content p {
  font-size: 1.1em;
  line-height: 1.6;
  font-style: italic;
}

.details {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.details__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.details__title {
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 1px;
  color: #2c48ac;
  line-height: 1.1em;
}

.details__title span {
  font-size: 14px;
  font-weight: 400;
  color: #050505;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: auto !important
}

/** Testimonials Slider - End **/

/** Feature Modal Block **/

.fullpage__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fullpage__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.fullpage__column:not(:first-child):nth-child(2n + 2) .feature.floated {
  margin-top: 50%;
  margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
  .fullpage__column:not(:first-child):nth-child(2n + 2) .feature.floated {
    margin-top: 0;
  }
}

@media only screen and (max-width: 576px) {
  .fullpage__column:not(:first-child) {
    margin-top: 30px;
  }
}

.fullpage__column:last-child .feature {
  margin-bottom: 0;
}

@media only screen and (max-width: 576px) {
  .fullpage__column {
    -webkit-box-flex: 0;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.feature {
  color: #fff;
  line-height: 1.6;
}

.feature__title {
  margin: 15px 0 5px;
  font-size: 2.4em;
  line-height: 1.25;
}

@media only screen and (max-width: 992px) {
  .feature__title {
    font-size: 2em;
  }
}

@media only screen and (max-width: 768px) {
  .feature__title {
    font-size: 1.8em;
  }
}

@media only screen and (max-width: 576px) {
  .feature__title {
    font-size: 1.6em;
  }
}

.feature__explore {
  cursor: pointer;
  font-size: 1.6em;
  border: 1px solid transparent;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.feature__explore:hover {
  color: #2c48ac;
}

.feature__explore span {
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .feature__explore {
    font-size: 1.4em;
  }
}

@media only screen and (max-width: 576px) {
  .feature {
    margin-bottom: 0;
  }
}

.fullpage {
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

body.admin-bar .fullpage {
  top: 32px;
}

.fullpage__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.fullpage__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.fullpage__column-fullwidth {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

@media only screen and (max-width: 992px) {
  .fullpage__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 47%;
    flex: 0 1 47%;
  }
}

@media only screen and (max-width: 768px) {
  .fullpage__column {
    -webkit-box-flex: 0;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.fullpage__content {
  color: #050505;
  padding: 30px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  -webkit-transition: opacity 0.5s ease-out 0.5s,
    -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s,
    -webkit-transform 0.5s ease-out 0.5s;
  will-change: transform, opacity;
}

.fullpage.open {
  opacity: 1;
  visibility: visible;
  z-index: 999;
  overflow-y: auto;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.fullpage.open .fullpage__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  -webkit-transition: opacity 0.5s ease-out 0.5s,
    -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s,
    -webkit-transform 0.5s ease-out 0.5s;
  will-change: transform, opacity;
}

.fullpage__close {
  position: fixed;
  right: 30px;
  top: 15px;
  z-index: 500;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.fullpage__close:hover {
  color: #2c48ac;
}

.fullpage__slider {
  position: relative;
}

.fullpage-description {
  color: #fff;
}

.fullpage-description__title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 5px;
}

@media only screen and (max-width: 992px) {
  .fullpage-description__title {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 768px) {
  .fullpage-description__title {
    margin-top: 15px;
  }
}

.fullpage-description p {
  font-size: 1.1em;
  line-height: 1.6;
}

@media only screen and (max-width: 992px) {
  .fullpage-description p {
    font-size: 1em;
  }
}

.fullpage-news-carousel {
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
}

.fullpage-news-carousel__button-prev:after,
.fullpage-news-carousel__button-next:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: #fff;
  font-size: 40px;
}

.fullpage-news-carousel__button-prev {
  left: -15px;
}

.fullpage-news-carousel__button-prev:after {
  content: "\f137";
}

@media only screen and (max-width: 576px) {
  .fullpage-news-carousel__button-prev {
    left: 0;
  }
}

.fullpage-news-carousel__button-next {
  right: -15px;
}

.fullpage-news-carousel__button-next:after {
  content: "\f138";
}

@media only screen and (max-width: 576px) {
  .fullpage-news-carousel__button-next {
    right: 0;
  }
}

.fullpage-slide,
.fullpage-slide a {
  color: #fff;
  background: #1F1E2E;
}

.fullpage-slide__content {
  padding: 0 15px 15px;
}

.fullpage-slide__info {
  margin-top: 7px;
}

.fullpage-slide__info li {
  display: inline-block;
  font-size: 12px;
  margin-right: 15px;
}

.fullpage-slide__info li span {
  padding-left: 5px;
}

.fullpage-slide li,
.fullpage-slide li a {
  color: #fff;
  letter-spacing: 0.6px;
}

.fullpage-slide__category {
  text-transform: capitalize;
}

.fullpage-slide__title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 0 0 15px;
}

.fullpage-slide__excerpt {
  font-size: 1.1em;
  line-height: 1.6;
}

.fullpage-slide__more {
  display: block;
  font-size: 1.25em;
  color: #fff;
  margin: 10px 0 0;
}

.section__header-block {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.section__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px auto;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  z-index: 10;
}

.section__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  width: 100%;
  height: 5px;
  background: #E000CF;
  border-radius: 50px;
}

.section__title {
  position: relative;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

/** Feature Modal Block - End **/

/** Creative Service Block **/

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.item {
  height: 100%;
  display: block;
  position: relative;
}
.item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.item__logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 2.5em;
  color: #fff;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.item:hover .item__logo {
  opacity: 1;
  visibility: visible;
}
.services__row.row-rewerse {
  -moz-box-flex: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 992px) {
  .services__row.row-rewerse {
    -moz-box-flex: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) {
  .services__row {
    -moz-box-flex: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}
.services__column {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.33333%;
  flex: 0 1 33.33333%;
}
.services__column_big {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 66.66667%;
  flex: 0 1 66.66667%;
}
@media only screen and (max-width: 1200px) {
  .services__column_big {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .services__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
.services__content {
  padding: 60px;
  background: #fff;
  position: relative;
}
.services__content:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin: 0 0 0 -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .services__content {
    padding: 60px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .services__item {
    height: auto;
    padding: 0 0 70% 0;
  }
}
.services__item_small {
  height: auto !important;
}
@media only screen and (max-width: 992px) {
  .services__item_small {
    padding: 0;
  }
}
.services__image {
  padding: 0 0 37.51% 0;
}
.creative-service-block__title{
  font-family: "PT Serif", sans-serif;
  color: #8C8882;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.6px;
}
.creative-service-block__text{
  color: #3c3c3c;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
.creative-service-block__text::after {
  content: "";
  display: block;
  margin: 30px auto 0 auto;
  width: 50px;
  height: 1px;
  background-color: #8c8882;
}
.dialog-type-lightbox{
  display: none !important
}

/** Creative Service Block - End **/
