@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/*	
    1. TOP HEADER
    2. NAVBAR
    3. SLIDER
    4. SERVICES
    5. ABOUT-US
    6. WIDE-SECTION / COUNTER / WIDE-SECTION
    7. TESTIMONIALS
    8. FOOTER
*/

/* 
    1. HOME
    2. ABOUT-US
 */
    
/* =====================================
    HOME START
===================================== */
/* =====================================
    1. TOP HEADER.
===================================== */
.top-header {
    /* position: absolute; */
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    transition: background 0.6s ease-in;
    z-index: 2;
    padding: 15px;
    color: #FFF !important;
    font-family: 'Roboto', sans-serif;
    padding: 15px 0px;
    border-bottom: solid 1px rgb(255, 255, 255, 0.2);
}

.top-header .container {
    padding: 0px 30px 0px 20px;
}

.top-social li {
    color: #000;
    display: inline-block;
    margin-right: 15px;
}

.top-social li .fa-facebook-f:hover {
    color: rgb(59, 89, 152);
}

.top-social li .fa-twitter:hover {
    color: #00acee;
}

.top-social li .fa-instagram:hover {
    color: #833AB4;
}

.top-social li .fa-youtube:hover {
    color: rgb(205, 32, 31);
}

ul.top-contact {
    text-align: right;
}

ul.top-contact li {
    font-weight: 600;
    color: #000;
}

ul.top-contact li.phone::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f879";
    margin-right: 10px;
    color:  #E20613;
}

.top-contact li {
    display: inline-block;
    margin-left: 15px;
}

.top-contact li .btn-default {
    display: inline-block;
    margin-left: 20px;
    padding: 6px 18px;
    font-size: 11px;
}

/* =====================================
    2. NAVBAR.
===================================== */
.navbar {
    position: absolute;
    left: 0;
    top: 50px;
    padding: 0;
    width: 100%;
    z-index: 2;
  }
  
  /* .navbar .container {
    padding-top: 15px;
    padding-bottom: 15px;
  } */
  
  /* .navbar .navbar-brand {
    width: 200px;
  } */
  
  .navbar .navbar-brand img {
    width: 100%;
  }
  
  .navbar .navbar-toggler {
    position: relative;
    height: 60px;
    width: 60px;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  .navbar .navbar-toggler .menu-icon-bar {
    position: absolute;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #000;
    opacity: 0;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    transition: all 0.3s ease-in;
  }
  
  .navbar .navbar-toggler .menu-icon-bar:first-child {
    opacity: 1;
    -webkit-transform: translateY(-1px) rotate(45deg);
    -ms-sform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
  }
  
  .navbar .navbar-toggler .menu-icon-bar:last-child {
    opacity: 1;
    -webkit-transform: translateY(-1px) rotate(135deg);
    -ms-sform: translateY(-1px) rotate(135deg);
    transform: translateY(-1px) rotate(135deg);
  }
  
  .navbar .navbar-toggler.collapsed .menu-icon-bar {
    opacity: 1;
  }
  
  .navbar .navbar-toggler.collapsed .menu-icon-bar:first-child {
    -webkit-transform: translateY(-7px) rotate(0);
    -ms-sform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  
  .navbar .navbar-toggler.collapsed .menu-icon-bar:last-child {
    -webkit-transform: translateY(5px) rotate(0);
    -ms-sform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
  }
  
  .navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
  }
  
  .navbar-dark .navbar-nav .nav-link:focus {
    color: #E20613;
  }
  
  .navbar-dark .navbar-nav .show > .nav-link,
  .navbar-dark .navbar-nav .active > .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .navbar-dark .navbar-nav .nav-link.active {
    color: #E20613;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover {
    color: #E20613;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
  }
  
  .navbar .dropdown-menu {
    padding: 0;
    background-color: #fff;
    transition: opacity 0.15s ease-in-out;
  }
  
  .navbar .dropdown-menu .dropdown-item {
    position: relative;
    padding: 10px 20px;
    /* color: var(--paragraph-color); */
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    border-bottom: 1px solid rgb(221, 221, 221, 0.6);
    transition: color 0.2s ease-in;
  }
  
  .dropdown-menu {
    border: none;
    border-radius: 0rem;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
  }
  
  .navbar .dropdown-menu .dropdown-item:focus {
    background: transparent;
  }
  
  .navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .navbar .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #E20613;
  }
  
  .navbar .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 5px;
    background-color: transparent;
    /* navbar dropdowon border left */
    opacity: 0;
    transition: opacity 0.2s ease-in;
  }
  
  .navbar .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
  }
  
  .dropdown-item.active, .dropdown-item:active {
    background-color: #E20613;
    color: #fff;
  }

  .navbar.fixed-top {
    position: fixed;
    top: 0;
    -webkit-animation: fade 0.5s;
    animation: fade 0.5s;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 4px -6px #333;
    -moz-box-shadow: 0 4px 4px -6px #333;
    box-shadow: 0 4px 4px -6px #333;
  }
  
  .navbar.fixed-top.navbar-dark .navbar-brand img{
    width: 70%;
  }
  
  .navbar.fixed-top.navbar-dark .navbar-nav .nav-link {
    font-size: 14px;
    color: #000;
  }
  
  .navbar.fixed-top.navbar-dark .navbar-nav .nav-link:hover {
    font-size: 14px;
    color: #E20613;
  }
  
  /* .navbar.fixed-top.navbar-dark .navbar-brand {
      margin-top: -5px;
    }
     */
  
  .navbar.fixed-top.navbar-dark .container {
    background-color: transparent;
  }
  
  .navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
    color: #E20613 !important;
  }
  
  /* .navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
    background-color: #c0ca33;
  } */
  
  .content {
    padding: 120px 0;
  }
  
  .dropdown-toggle::after {
    transition: transform 0.15s linear;
  }
  
  .show.dropdown .dropdown-toggle::after {
    transform: translateY(3px);
  }
  
  .dropdown-menu {
    margin-top: 0;
  }

/* =====================================
    3. SLIDER.
===================================== */

.home-slider {
    width: 100%;
    height: 95vh;
    position: relative;
    z-index: 0;
}

.hero-slider {
    width: 100%;
    height: 95vh;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-slider .carousel-cell {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.carousel-cell video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.slider-caption {
    position: relative;
    top: 52%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #FFF;
    text-align: left;
    z-index: 3;
}

.slider-caption .subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 10px;
    color: #FFF;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.slider-caption h1 {
    font-size: 60px;
    line-height: 70px;
    width: 80%;
    color: #FFF;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
}

.slider-caption p {
    width: 50%;
    color: #FFF;
    font-size: 18px;
    line-height: 32px;
    margin: 15px 0px 25px 0px;
}

.slider-caption .btn-default {
    margin-top: 30px;
}

.slider-caption .btn:hover {
    background: #fff;
    color: #000;
}

.hero-slider .flickity-prev-next-button {
    background: transparent;
}

.hero-slider .flickity-prev-next-button:hover {
    background: transparent;
}

.hero-slider .flickity-prev-next-button .arrow {
    fill: white;
}

/* =====================================
    4. SERVICES
======================================== */

.services-carousel {
    position: relative;
}

.services-carousel .owl-theme .custom-nav {
    display: none;
}

.services-carousel .owl-carousel .item .thumbnail {
    margin: 0rem 1rem;
}

.services-carousel .owl-dots {
    display: none;
}

.service-box-alt {
    margin: 0px 15px;
}

.sb-thumbnail {
    position: relative;
    cursor: pointer;
}

.sb-thumbnail:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: linear-gradient(transparent, black); */
    opacity: 0.7;
    margin-top: -5px;
    z-index: 1;
}

.sb-caption {
    width: 100%;
    margin: 0px;
    position: absolute;
    bottom: 0px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
}

.sb-caption h3 {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.sbt-icon {
    width: 60px;
    margin: auto;
}

.out-caption {
    text-align: center;
    margin-top: 25px;
    padding: 0px 20px;
}

.sb-thumbnail .bottom-line {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: -3px;
    background-color:  #e20613;
    width: 80px;
    height: 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.sb-thumbnail:hover .bottom-line {
    width: 100%;
    height: 5px;
}

.image-hover .sb-thumbnail {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .sb-thumbnail:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .sb-thumbnail .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .sb-thumbnail:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.wide-info-section {
    background-color: #000;
    background-image: -webkit-linear-gradient(180deg, #000 50%, #FFFF 50%);
    padding: 80px 0px 80px;
}

.wi-parallax {
    background-image: url("https://via.placeholder.com//1200x800");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-left: -120px;
}

.wi-left-layer {
    margin: 0px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-right: 30%;
}

.wi-left-layer .btn-default {
    margin-top: 15px;
}

.wi-badge {
    position: absolute;
    bottom: 70px;
    left: 70px;
}

.wi-badge .popup-youtube {
    margin: 0px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*========== AND ==========*/

.services-thumb {
    margin: 25px 0px;
}

.st-caption {
    background-color: #FFF;
    z-index: 1;
    position: relative;
    margin: -100px 15px auto;
    padding: 25px;
    border-bottom: solid 3px  #E20613;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.st-caption {
    text-align: center;
}

.st-caption h4 {
    font-weight: 600;
    margin-top: 10px;
}

.services-thumb:hover .st-caption {
    margin-top: -110px;
}

/****** Home About ******/

.home-about h2 {
    margin-bottom: 20px;
}

.ha-span-section {
    margin-top: 40px;
}

.ha-icon {
    width: 50px;
    margin-bottom: 10px;
}

.ha-inner {
    display: inline-block;
    margin-right: 35px;
}

.ha-inner h4 {
    font-size: 18px;
    color: #FFF !important;
    margin: 15px 0px 5px;
}

.ha-inner h5 {
    font-size: 18px;
    margin: 15px 0px 5px;
}

.home-about-img {
    position: relative;
}

.ws-box-alt h4 {
    color: #FFF;
    font-size: 18px;
    margin: 10px 0px;
}

.experience-badge {
    width: 80%;
    background-color: #FFF;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    position: absolute;
    bottom: 30px;
    left: -50px;
}

.left-badge {
    background-color:  #E20613;
    float: left;
    width: 25%;
    height: 118px;
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.right-badge {
    background-color: #FFF;
    float: right;
    width: 75%;
    padding: 20px;
}

.left-badge .counter {
    font-size: 60px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #FFF;
    margin: 0px;
    padding: 5px 0px;
}

.right-badge h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.right-badge p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
}

/****** SERVICE PARALLEX ******/

.front-box-layer {
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    margin-top: -110px;
    position: relative;
    z-index: 1;
}

.front-box {
    background: #FFF;
    text-align: center;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
    padding: 40px 20px;
}

.front-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0px 10px;
}

.front-box p {
    margin-bottom: 0px;
}

.front-box-icon {
    width: 60px;
    margin: auto;
}

.about-logistic h2 {
    margin-bottom: 15px;
}

.about-logistic-img {
    position: relative;
}

.service-parallax {
    background-image: url("../../assets/images/commons/mli-6.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0px;
}

.service-parallax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: linear-gradient(to bottom right, #000000, #333333); */
    opacity: 0.9;
}

.service-parallax .section-title h2 {
    position: relative;
    z-index: 1;
    color: #FFF;
}

.service-parallax .out-caption p {
    color: #FFF;
}

.all-service-option {
    color: #FFF;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.all-service-option a {
    color:  #E20613;
}

.wu-box {
    margin-top: 40px;
}

.wu-box .media {
    margin: 20px 0px;
}

.wu-box .mr-3 {
    width: 70px;
}

.wu-box .media-body h5 {
    margin-bottom: 5px;
}

.wu-box .media-body p {
    font-size: 14px;
    line-height: 25px;
}

.why-us-right {
    position: relative;
}

.image-badge {
    background-color: #FFF;
    padding: 35px;
    max-width: 300px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    outline: 1px dashed  #E20613;
    outline-offset: -15px;
    margin-left: -80px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.ib-icon {
    width: 60px;
}

.image-badge h4 {
    margin-top: 15px;
}

.testimonial-banner {
    background-color: #000;
    padding: 80px 0px 200px;
}

.up-testimonial-layer {
    margin-top: -220px;
}

.up-testimonial-layer .section-title h2 {
    color: #FFF;
}

.up-testimonial-layer .section-title h5 {
    color: #FFF;
}

/*====================================================
    5. ABOUT US. 
  ====================================================*/

/****** About Section ******/

.about-feature-img {
    position: relative;
}

.img-lg-line {
    width: 10px;
    height: 160px;
    position: absolute;
    background-color:  #E20613;
    top: 62.1%;
    left: -10px
}

.about-info h2 {
    margin-bottom: 15px;
}

.about-info-banner {
    padding: 25px 50px;
    background-color: rgb(248, 248, 248, 0.9);
    margin-top: 40px;
    margin-left: -120px;
    border-right: solid 10px  #E20613;
}

.ib-box .ha-icon {
    width: 40px;
    margin-bottom: 10px;
}

.ib-box h5 {
    font-size: 18px;
    margin-bottom: 0px;
}

.ib-box p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
}

/****** Wide Section About Section ******/

.wsa-left,
.wsa-center,
.wsa-right {
    height: 550px;
}

.wsa-left {
    background-image: url("https://via.placeholder.com//1200x800");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.wsa-center {
    background-color:  #E20613;
}

.wsa-right {
    background-color: #000;
}

.wsa-content {
    margin: 0px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0px 50px;
    width: 85%;
}

.wsa-content h2 {
    color: #FFF;
    margin-bottom: 15px;
}

.wsa-content p {
    color: #FFF;
}

.wsa-content p strong {
    color: #FFF;
}

.wsa-content .signature {
    margin-top: 35px;
}

.wsa-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0px;
}

.wsa-center-content .counter-box {
    margin: 10px 0px;
}

.wsa-center-content .counter-box .counter-icon {
    width: 45px;
    margin-bottom: 10px;
}

.wsa-center-content .counter-box .counter {
    font-size: 25px;
}

.wsa-center-content .counter-box .counter-caption p {
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    margin-top: 5px;
}

/****** Services About Section ******/

.services-layer {
    padding: 50px 0px;
    background: #000;
    position: relative;
}

.services-left-layer {
    position: relative;
    padding: 20% 0%;
    padding-right: 30px;
}

.services-left-layer h2 {
    color: #FFF;
    margin-bottom: 15px;
}

.services-left-layer p {
    color: #FFF;
}

.services-left-layer .btn-default {
    margin-top: 25px;
}

.service-box {
    background: #FFF;
    padding: 30px;
    margin: 10px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.service-box h4 {
    margin-top: 20px;
}

.service-box h6 {
    margin-top: 20px;
}

.service-box h6 a {
    color:  #E20613;
    text-decoration: none;
}

.service-box h6 a:hover {
    color: #000;
    text-decoration: none;
}

.sb-icon {
    width: 60px;
}

.services-left-layer .btn-default:hover {
    background-color: #000;
    border-color: #000;
}

/* ========== AND ========== */

.about-alt-info h2 {
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
}

.about-alt-info ul li {
    font-family: 'Open Sans', sans-serif;
    list-style: none;
    line-height: 2.5;
    color: #000;
}

.about-alt-info ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f2f6";
    margin-right: 15px;
    color: #000;
}

.about-alt-img {
    position: relative;
    box-shadow: 3px 3px 5px 6px #ccc;
}

.experience-banner {
    position: absolute;
    bottom: 30px;
    background-color: rgb(255, 255, 255, 0.9);
    padding: 30px 20px 25px;
    border-left: solid 5px  #E20613;
}

.experience-banner .media-body {
    padding: 0px;
    margin-top: -10px;
}

.experience-banner .counter {
    font-size: 60px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #000;
    margin-right: 15px;
}

.experience-banner h5 {
    margin-bottom: 0px;
}

.experience-banner p {
    margin-bottom: 0px;
}

.ws-about-layer {
    background-color: #000;
    position: relative;
    height: 650px;
    margin-top: -600px
}

.video-img-bg {
    background-image: url("https://via.placeholder.com//1200x800");
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.video-img-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #000, #000);
    opacity: 0.6;
}

.video-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video-content .popup-youtube {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0%, 0%);
    text-align: center;
    margin-bottom: 70px;
}

.video-content .video-text h2 {
    color: #FFF;
}

.ws-img-bg {
    background-image: url("../images/aboutbg2.png");
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ws-right-layer {
    background-color: #000;
    height: 550px;
    margin-top: 50px;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}

.ws-right-content {
    margin: 0px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0px 60px;
    width: 70%;
}

.ws-right-content h2 {
    color: #FFF;
    margin-bottom: 15px;
}

.ws-right-content p {
    color: #FFF;
}

.ws-right-content .ha-span-section {
    margin-top: 25px;
}

.ws-right-content .ha-span-section h5 {
    color: #000 !important;
}

.ws-right-content .ha-inner h5 {
    color: #FFF;
}

.service-list {
    padding: 100px 0px 80px;
    margin-top: -50px;
    background-image: url("https://via.placeholder.com//1920x1080");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.service-list:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #000, #000);
    opacity: 0.95;
}

.service-list .service-box {
    background-color: #FFF;
    margin: 0px 10px;
    position: relative;
    z-index: 1;
}

.service-list .section-title {
    position: relative;
    z-index: 1;
}

.service-alt-carousel {
    position: relative;
    z-index: 1;
}

.service-alt-carousel .owl-theme .custom-nav {
    display: none;
}

.service-alt-carousel .owl-dots {
    display: none;
}

.service-list .section-title h2 {
    color: #FFF;
}

.counter-bar {
    z-index: 1;
    position: relative;
    margin-top: 45px;
}

/****** Wide Parallax Section ******/

.wide-section-parallax {
    background-image: url("../../assets/images/commons/mli-9.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ws-flyer {
    background-color: #515656
    ;
    padding: 70px 50px;
    margin-top: -300px;
    position: relative;
}

.ws-flyer h2 {
    color: #FFF;
}

.ws-flyer p {
    color: #FFF;
    margin: 30px 0px;
}

.ws-content {
    margin-top: -140px;
}

.ws-content p {
    font-size: 16px;
    line-height: 27px;
    color: #000;
    font-style: italic;
}

.ws-content .fas {
    font-size: 30px;
    color:  #E20613;
    margin-top: 15px;
}

.ws-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: solid 5px #FFF;
    background-color: #000;
}

.user-avatar img {
    border-radius: 50%;
}

.signature {
    width: 200px;
    margin-top: 20px;
}

.company-features li {
    color: #FFF;
    line-height: 30px;
}

.company-features li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f560";
    margin-right: 10px;
    color:  #E20613;
}

.left-line {
    width: 7px;
    height: 80px;
    background-color: #FFF;
    position: absolute;
    left: 0;
    top: 70px;
}

/* =====================================
    6. WIDE SECTION/HOME PAGE #2.
===================================== */

.hs-feature {
    position: relative;
    cursor: pointer;
}

.image-hover .hs-feature {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .hs-feature:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .hs-feature .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .hs-feature:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hs-feature:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(transparent, #000);
    opacity: 0.8;
    margin-top: -5px;
    z-index: 1;
}

.hs-feature-caption {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 1;
}

.hs-feature-caption h4 {
    color: #FFF;
    font-weight: 600;
    margin-top: 10px;
}

.hs-icon {
    width: 45px;
}

.home-service-box {
    margin: 10px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    position: relative;
}

.hs-caption {
    padding: 25px;
}

.hs-caption h6 {
    text-align: left;
    margin-top: 25px;
}

.hs-caption h6 a {
    text-transform: none;
    text-decoration: none;
}

.hs-caption h6::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30b";
    margin-left: 10px;
}

.home-service-box .hs-bottom-line {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80px;
    height: 5px;
    background-color:  #E20613;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.home-service-box:hover .hs-bottom-line {
    width: 100%;
    height: 5px;
}

.services-carousel-2 {
    position: relative;
}

.services-carousel-2 .owl-theme .custom-nav {
    display: none;
}

.services-carousel-2 .owl-dots {
    display: none;
}

.home-about-alt h2 {
    margin-bottom: 15px;
}

.span-bullets {
    margin-top: 30px;
}

.span-bullets ul li {
    line-height: 32px;
}

.span-bullets ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f560";
    margin-right: 10px;
    color:  #E20613;
}

.home-about-alt .hb-banner {
    background-color: #FFF;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    padding: 20px;
    margin-top: 30px;
    border-right: solid 5px  #E20613;
}

.hb-banner .media {
    padding-right: 20px;
}

.hb-banner .mr-3 {
    width: 50px;
}

.hb-banner .media-body h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.hb-banner .media-body p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
}

.ws-features {
    background-image: url("https://via.placeholder.com//1920x1080");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0px;
}

.ws-features:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #000, #000);
    opacity: 0.8;
}

.ws-left-layer h2 {
    color: #FFF;
    margin-bottom: 15px;
}

.ws-left-layer p {
    color: #FFF;
}

.ws-left-layer p strong {
    color: #FFF;
}

.ceo-layer {
    margin-top: 30px;
}

.ceo-layer .mr-3 {
    width: 80px;
    border: solid 2px #FFF;
    border-radius: 50% !important;
}

.ceo-layer .media-body {
    padding-top: 10px;
}

.ceo-layer .media-body h5 {
    color: #FFF;
    margin-bottom: 0px;
}

.ceo-layer .media-body p {
    color:  #E20613;
    margin-bottom: 0px;
}

.ceo-layer .signature {
    margin-top: 20px;
}

.feature-box {
    background-color: #000;
    padding: 20px;
    margin-bottom: 25px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.feature-box .mr-3 {
    width: 60px;
}

.feature-box .media-body h5 {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-box .media-body p {
    font-size: 14px;
    line-height: 22px;
    color: #96bee9;
    margin-bottom: 0px;
}

.bl-feature {
    background-image: url("https://via.placeholder.com//992x660");
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.bl-feature:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right,  #E20613,  #E20613);
    opacity: 0.2;
}

.ws-img-left-layer {
    background-image: url("../../assets/images/commons/mli-8.jpg");
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.ws-info-right-layer {
    height: 550px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    margin-top: 50px;
    margin-left: -100px;
    background-color: #FFF;
    position: relative;
}

.ws-info-right-layer .ws-right-content h5 {
    color:  #E20613;
}

.ws-info-right-layer .ws-right-content h2 {
    color: #000;
}

.ws-info-right-layer .ws-right-content p {
    color: var(--paragraph-color);
}

.counter-layer {
    background-color: #515656;
    padding: 150px 0px 50px;
    margin-top: -200px;
}

.bottom-news-block {
    margin-top: 25px;
}

.blog-news-feature {
    cursor: pointer;
}

.image-hover .blog-news-feature {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .blog-thumb:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .blog-news-feature .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .blog-news-feature:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.image-hover .blog-news-feature {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .blog-news-feature:hover+span {
    bottom: -36px;
    opacity: 1;
}

.blog-thumb {
    cursor: pointer;
    position: relative;
}

.image-hover .blog-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .blog-thumb:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .blog-thumb .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .blog-thumb:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-t-caption h6 {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color:  #E20613;
    margin-bottom: 5px;
}

.blog-t-caption .btn-outline {
    padding: 6px 20px;
    font-size: 12px;
    text-transform: none;
    font-weight: 600;
}

.blog-news-feature {
    position: relative;
}

.blog-news-feature:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(transparent, #000);
    opacity: 0.9;
    margin-top: -5px;
    z-index: 1;
}

.bnf-caption {
    margin: 0px;
    position: absolute;
    bottom: -20px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    z-index: 1;
    padding: 0px 50px;
}

.bnf-caption h3 {
    color: #FFF;
}

.bnf-caption p {
    color: #FFF;
}

.bnf-caption .btn-default {
    text-transform: none;
}

.blog-news-feature .date-layer {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color:  #E20613;
    text-align: center;
    padding: 10px 20px;
    z-index: 1;
}

.span-ws-layer {
    margin-top: 30px;
}

.ws-box-layer-alt {
    margin-top: 40px;
}

.ws-box-layer {
    padding-right: 15px;
}

.ws-box-layer h5 {
    color: #000 !important;
}

.ws-box-alt h4 {
    font-size: 18px;
    color: #FFF;
    margin: 20px 0px 5px;
}

h5.subtitle-alt {
    color: #FFF;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

/* =====================================
    7. TESTIMONIALS.
======================================== */

.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .owl-theme .custom-nav {
    display: none;
}

.testimonials-carousel .owl-dots {
    display: none;
}

.testimonials-carousel .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #FFF;
    border: solid 1px #000;
    margin: 0 3px;
    box-shadow: none;
    border-radius: 50%;
}

.testimonials-carousel .owl-dots button.owl-dot.active {
    background-color: #000;
    width: 15px;
    border: solid 1px #000;
}

.testimonials-carousel .owl-dots button.owl-dot:focus {
    outline: none;
}

.testimonial-text {
    background-color: #FFF;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    padding: 30px;
    margin: 15px;
    text-align: center;
    position: relative;
}

.testimonial-text .fas {
    font-size: 40px;
    color: #000;
    opacity: 0.9;
}

.testimonial-box .bottom-line {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: -5px;
    background-color:  #E20613;
    width: 50px;
    height: 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.testimonial-box:hover .bottom-line {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: -5px;
    background-color:  #E20613;
    width: 100%;
}

.author-avatar {
    width: 100px;
    margin: 35px auto 0px;
}

.author-avatar img {
    border-radius: 50%;
}

.testimonial-box h4 {
    text-align: center;
    font-size: 18px;
    margin: 15px 0px 0px;
}

p.profession {
    text-align: center;
    margin-bottom: 0px;
}

.all-testimonials .testimonial-box {
    margin: 25px 0px;
}

/* =====================================
    8. FOOTER.
===================================== */

footer {
    background: #333333;
    padding: 70px 0px 30px;
}

.fc-circle {
    background:  #E20613;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    margin: auto;
}

.fc-circle .fas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    font-size: 25px;
}

.fc-circle .far {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    font-size: 25px;
}

.fc-caption a {
    font-weight: 500;
    color: #FFF;
    text-align: center !important;
}

.fc-caption a:hover {
    color:  #E20613;
}

.fc-caption h5 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    margin-top: 15px;
}

hr.footer-divider {
    border-top: 1px solid rgba(18, 50, 84, 0.6);
    margin: 10px 0px 10px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 25px;
}

.footer-caption p {
    color: #FFF;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.footer-social {
    margin-top: 30px;
}

.footer-social ul li {
    display: inline-block;
    margin-right: 10px;
    color: #FFF;
    background-color: #D30000;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.footer-social ul li:hover {
    background-color:  #E20613;
}

.footer-social ul li:hover .fab {
    color: #FFF;
}

ul.footer-bulletlist li {
    color: #FFF;
    list-style: none;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
    font-weight: 400;
}

ul.footer-bulletlist li a {
    color: #FFF;
    transition: 0.4s;
}

ul.footer-bulletlist li a:hover {
    color:  #E20613;
    text-decoration: none;
}

.fooler-left-col {
    padding-right: 50px;
}

.footer-col h5 {
    font-weight: 500;
    font-size: 18px;
    color:  #E20613;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    align-items: center;
}

.newsletter {
    max-width: 320px;
    margin-top: 30px;
}

.newsletter .input {
    width: 70%;
    height: 38px;
    background: #e0e6eb;
    border: none;
    font-family: inherit;
    color: #737373;
    letter-spacing: 1px;
    text-indent: 5%;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter .input:focus {
    color: #495057;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.newsletter .button {
    width: 30%;
    height: 38px;
    background-color:  #E20613;
    border: none;
    border-radius: 0 5px 5px 0;
    font-family: inherit;
    color: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    color: #FFF;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

p.newsletter {
    font-size: 13px;
    line-height: 22px;
    color: #FFF;
    font-style: italic;
}

.footer-bootom p{
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.footer-bootom p span{
    text-align: center;
    color: #FFF;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p.footer-bootom {
    text-align: center;
    color: #FFF;
    font-size: 13px;
}

.footer-comp .img-responsive {
    width: 50%;
}

/*====================================================
    4. PAGES HERO. 
  ====================================================*/

.pages-hero {
 background-image: url("../images/commons/global.png");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.pages-hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000, #000);
  opacity: 0.4;
}

.air-freight {
  background-image: url("../images/air-freight/air-freight.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.air-freight:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.ocean-freight {
  background-image: url("../images/ocean-freight/ocean-freight.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.ocean-freight:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.transportation {
  background-image: url("../images/transportation/transportation.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.transportation:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.supply-chain-management {
  background-image: url("../images/supply-chain-management/supply-chain-management.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.supply-chain-management:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.custom-clearance {
  background-image: url("../images/custom-clearance/Custom-clearance.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.custom-clearance:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.warehouse-management {
  background-image: url("../images/warehouse-management/warehouse-management.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.warehouse-management:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.afghan-trade {
  background-image: url("../images/afghan-trade/afghan-trade.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.afghan-trade:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.project-handling {
  background-image: url("../images/project-handling/project-handling.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.project-handling:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.career {
  background-image: url("../images/career/career.jpg");
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.career:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #09192A, #09192A);
  opacity: 0.7;
}

.pages-title {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    margin-bottom: 100px;
}

.pages-title span {
    font-weight: 700;
    font-size: 2rem;
}

.pages-title h1 {
    color: #FFF;
    margin-bottom: 5px;
}

.page-nav {
    margin-top: 5px;
}

.page-nav p {
    color: #FFF;
    font-size: 13px;
    margin-bottom: 0px;
}

.pages-title a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.pages-title a:hover {
    color: var(--main-yellow-color);
    text-decoration: none;
}

/****** Home Services ******/

.home-services-feature {
    position: relative;
}

.image-hover .home-services-feature {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .home-services-feature:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .home-services-feature .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .home-services-feature:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.home-services-feature:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(transparent, #000);
    opacity: 0.7;
    margin-top: -5px;
    z-index: 1;
}

.home-services-feature .bottom-line {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: -3px;
    background-color:  #E20613;
    width: 80px;
    height: 5px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.home-services-feature:hover .bottom-line {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    bottom: -3px;
    background-color:  #E20613;
    width: 100%;
    height: 5px;
}

.section-title-bg {
    background-color: #000;
    padding: 40px;
}

.counter-box {
    padding-top: 20px;
}

.counter-box .counter {
    font-size: 35px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #FFF;
    text-align: center;
}

.counter-caption p {
    color: #FFF;
    text-align: center;
    margin-top: 10px;
}

.counter-icon {
    width: 60px;
    margin: auto auto 20px;
}

.services-title-left h2 {
    color: #FFF;
    font-weight: 600;
    margin-bottom: 0px;
}

.services-title-right p {
    color: #FFF;
    margin-bottom: 0px;
}

/****** Pricing Table ******/

.pricing-table {
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    padding: 50px 35px;
    text-align: center;
}

.pricing-table h3 {
    margin: 15px 0px;
}

.pt-icon {
    width: 60px;
    margin: auto;
}

.feature-list {
    margin: 20px 0px;
}

.feature-list li {
    margin: 10px 0px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}

hr.table-line {
    border-top: 1px solid rgba(204, 204, 204, 0.4);
    margin: 35px 0px;
}

.pricing-table h4 {
    font-size: 50px;
    font-family: 'Open Sans', sans-serif;
}

.pricing-table h4 span-price {
    font-size: 18px;
    position: absolute;
    margin-top: -5px;
    margin-left: -15px;
}

.pricing-table h4 span {
    font-size: 18px;
}

.pricing-table .btn-default {
    margin-top: 20px;
    padding: 6px 20px;
    font-size: 12px;
}

/****** Why Us Section ******/

.ws-why-us {
    background-image: url("../images/whychooseus.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px 0px;
}

.ws-why-us:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #000000, #333333);
    opacity: 0.8;
}

.why-us-content-layer {
    background-color: rgb(255, 255, 255, 0.98);
    position: relative;
    z-index: 1;
    padding: 50px;
}

.why-us-content {
    margin: 0px;
    position: absolute;
    top: 48%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.why-us-content h2 {
    margin-bottom: 15px;
}

.why-us-content .btn-default {
    margin-top: 20px;
}

.why-us-img {
    position: relative;
}

.popup-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/****** Blog News Carousel ******/

.news-carousel {
    position: relative;
}

.news-carousel .owl-theme .custom-nav {
    display: none;
}

.news-carousel .owl-dots {
    display: none;
}

.news-card {
    margin: 15px;
    -webkit-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    -moz-box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
    padding: 30px;
    background-color: #FFF;
}

.news-card .mr-3 {
    width: 60px !important;
}

.news-card .media img {
    border-radius: 50% !important;
}

.news-card .media-body {
    padding: 5px 0px;
}

.news-card .media-body h5 {
    font-size: 18px;
    margin-bottom: 0px;
}

.news-card .media-body p.author-profession {
    font-size: 14px;
    margin: -3px 0 0px;
}

.nc-caption {
    margin-top: 20px;
}

.nc-caption h4 {
    line-height: 28px;
    margin-bottom: 10px;
}

.post-prev-thumb {
    position: relative;
    margin-top: 25px;
}

.date-layer {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color:  #E20613;
    padding: 14px 15px 10px;
    text-align: center;
    border-left: solid 4px #FFF;
    border-bottom: solid 4px #FFF;
}

.date-layer h6 {
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.date-layer p {
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFF;
    margin-bottom: 0px;
}

.image-hover .post-prev-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-hover .post-prev-thumb:hover+span {
    bottom: -36px;
    opacity: 1;
}

.hover-effects .post-prev-thumb .img-hover {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover-effects .post-prev-thumb:hover .img-hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
/* ===== HOME END ===== */



/* =====================================
    EXTRA
===================================== */

.service-parallax .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-parallax .section-title {
    width: 20%;
    margin-left: -10%;
}

.service-parallax .section-title h2 {
    font-size: 50px;
}

.services-carousel {
    width: 80%;
}

.owl-carousel {
    position: relative;
    display: flex;
}

.custom-nav {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.custom-nav [type="button"] {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 25%;
}

.custom-nav i {
    padding: 5px 6px;
    font-size: 26px;
    color: #fff;
}