@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?orkqwr');
  src: url('fonts/icomoon.eot?orkqwr#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?orkqwr') format('truetype'),
    url('fonts/icomoon.woff?orkqwr') format('woff'),
    url('fonts/icomoon.svg?orkqwr#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}








.icon-search:before {
  content: "\e900";
}

.icon-shopping-bag:before {
  content: "\e901";
}

.icon-location:before {
  content: "\e902";
}

.icon-email:before {
  content: "\e903";
}

.icon-facebook-app-symbol:before {
  content: "\e904";
}

.icon-instagram:before {
  content: "\e905";
}

.icon-twitter:before {
  content: "\e906";
}

.icon-play-button:before {
  content: "\e907";
}

.icon-payment:before {
  content: "\e908";
}

.icon-delivery-man:before {
  content: "\e909";
}

.icon-cruise:before {
  content: "\e90a";
}

.icon-plane:before {
  content: "\e90b";
}

.icon-truck:before {
  content: "\e90c";
}

.icon-train:before {
  content: "\e90d";
}

.icon-air-freight:before {
  content: "\e90e";
}

.icon-shield:before {
  content: "\e90f";
}

.icon-world-wide-web:before {
  content: "\e910";
}

.icon-user-avatar:before {
  content: "\e911";
}

.icon-rating:before {
  content: "\e912";
}

.icon-delivery-man-1:before {
  content: "\e913";
}

.icon-packaging:before {
  content: "\e914";
}

.icon-box:before {
  content: "\e915";
}

.icon-user:before {
  content: "\e916";
}

.icon-chat:before {
  content: "\e917";
}

.icon-next:before {
  content: "\e918";
}

.icon-right-arrow:before {
  content: "\e919";
}

.icon-paper-plane:before {
  content: "\e91a";
}

.icon-data-warehouse:before {
  content: "\e91b";
}

.icon-phone-call:before {
  content: "\e91c";
}

.icon-link:before {
  content: "\e91d";
}

.icon-reputation:before {
  content: "\e91e";
}

.icon-google-docs:before {
  content: "\e91f";
}

.icon-share:before {
  content: "\e920";
}

.icon-calendar:before {
  content: "\e921";
}

.icon-user-1:before {
  content: "\e922";
}

/* =========================
   SERVICES SECTION (MIN CSS)
========================= */

/* Container */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Layout helpers */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.relative { position: relative; }
.absolute { position: absolute; }

.text-white { color: #fff; }

/* Section background */
.services-sec {
  position: relative;
  background: url('../../images/services-bg.png') no-repeat center/cover;
  background-attachment: fixed;
  padding: 100px 0;
}
/* Top Right Shape */
.shape-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  z-index: 10;
}

.shape-top-right img {
  width: 100%;
  height: 100%;
}

/* Bottom Left Shape */
.shape-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  z-index: 10;
}

.shape-bottom-left img {
  width: 100%;
  height: 100%;
}
/* Decorative shapes */
.shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
}

.shape-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
}

/* Title */
.services-title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
}

/* Button */
.services-btn {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s;
}

.services-btn:hover {
  background: #fff;
  color: #141414;
}

/* =========================
   SWIPER MINIMAL
========================= */

.swiper {
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

/* Pagination */
.services-swiper-pagination {
  text-align: center;
  margin-top: 20px;
}

.services-swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50px;
  background: #fff;
  opacity: 1;
  margin: 0 4px;
  transition: 0.3s;
}

.services-swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
  color: #fff;
}

.service-number {
  color: #f8ac3c;
  margin-bottom: 8px;
}

/* Divider line */
.service-line {
  height: 1px;
  width: 100%;
  background: #454343;
  position: relative;
  margin-bottom: 8px;
}

.service-line span {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: 0.5s;
}

.service-card:hover .service-line span {
  width: 100%;
}

/* Icon */
.service-icon {
  margin-bottom: 32px;
}

/* Content */
.service-content {
  min-height: 150px;
}

.service-content h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-content p {
  color: #fff;
}

/* =========================
   BUTTON (EXPAND EFFECT)
========================= */

.service-btn-circle {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 8px;
  overflow: hidden;
  transition: 0.5s;
}

.service-card:hover .service-btn-circle {
  width: 100%;
  background: url('../images/service-nav-bg.jpg') no-repeat center/cover;
}

.service-btn-circle span {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow animation */
.service-btn-circle img {
  width: 16px;
  transform: rotate(-45deg);
  transition: 0.3s;
}

.service-card:hover .service-btn-circle img {
  transform: rotate(0deg);
}
.italic {
    font-style: italic;
}
.font-playfair {
    font-family: Playfair Display, serif;
}
.font-normal {
    font-weight: 400;
}