/*******************************/
/********* General CSS *********/
/*******************************/
body {
  color: #666666;
  background: #dddddd;
  font-family: 'Poppins', sans-serif;
  font-weight: 400; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #030f27; }

a {
  color: #666666;
  transition: .3s; }

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

.btn:focus {
  box-shadow: none; }

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  background: #ffffff; }

.back-to-top {
  position: fixed;
  display: none;
  background: #fdbe33;
  color: #121518;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 9; }

.back-to-top:hover {
  color: #fdbe33;
  background: #121518; }

.back-to-top i {
  padding-top: 10px; }

.btn {
  transition: .3s; }

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
  position: relative;
  height: 90px;
  background: #fdbe33; }

.top-bar .logo {
  padding: 15px 0;
  text-align: left;
  overflow: hidden; }

.top-bar .logo h1 {
  margin: 0;
  color: #030f27;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700; }

.top-bar .logo img {
  max-width: 100%;
  max-height: 60px; }

.top-bar .top-bar-item {
  display: flex;
  align-items: center;
  justify-content: flex-end; }

.top-bar .top-bar-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center; }

.top-bar .top-bar-icon [class^="flaticon-"]::before {
  margin: 0;
  color: #030f27;
  font-size: 40px; }

.top-bar .top-bar-text {
  padding-left: 15px; }

.top-bar .top-bar-text h3 {
  margin: 0 0 5px 0;
  color: #030f27;
  font-size: 16px;
  font-weight: 400; }

.top-bar .top-bar-text p {
  margin: 0;
  color: #030f27;
  font-size: 13px;
  font-weight: 400; }

@media (min-width: 992px) {
  .top-bar {
    padding: 0 60px; } }
@media (max-width: 991.98px) {
  .top-bar .logo {
    text-align: center; } }
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
  position: relative;
  background: #fdbe33;
  transition: .3s; }

.nav-bar .container-fluid {
  padding: 0; }

.nav-bar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1366px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999; }

.nav-bar .navbar {
  height: 100%;
  background: #030f27 !important; }

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  padding: 10px 10px 8px 10px;
  color: #ffffff; }

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fdbe33;
  transition: none; }

.nav-bar .dropdown-menu {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: #f8f9fa; }

.nav-bar .btn {
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0; }

.nav-bar .btn:hover {
  color: #030f27;
  background: #fdbe33;
  border-color: #fdbe33; }

@media (min-width: 992px) {
  .nav-bar {
    padding: 0 75px; }

  .nav-bar.nav-sticky {
    padding: 0; }

  .nav-bar .navbar {
    padding: 20px; }

  .nav-bar .navbar-brand {
    display: none; }

  .nav-bar a.nav-link {
    padding: 8px 15px;
    font-size: 15px;
    text-transform: uppercase; } }
@media (max-width: 991.98px) {
  .nav-bar .navbar {
    padding: 15px; }

  .nav-bar a.nav-link {
    padding: 5px; }

  .nav-bar .dropdown-menu {
    box-shadow: none; }

  .nav-bar .btn {
    display: none; } }
@media screen and (max-width: 500px) and (min-width: 300px) {
  .top-bar {
    height: 68px; }

  .top-bar .logo {
    padding: 5px 0;
    text-align: center; }

  .nav-bar .navbar {
    padding: 5px 15px; } }
/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden; }

.carousel .carousel-inner,
.carousel .carousel-item {
  position: relative;
  width: 100%;
  height: 100%; }

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

.carousel .carousel-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1; }

.carousel .carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100vh - 170px);
  min-height: 400px; }

.carousel .carousel-caption p {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px; }

.carousel .carousel-caption h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 35px; }

.carousel .carousel-caption .btn {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: .3s; }

.carousel .carousel-caption .btn:hover {
  color: #030f27;
  background: #fdbe33;
  border-color: #fdbe33; }

@media (max-width: 767.98px) {
  .carousel .carousel-caption h1 {
    font-size: 40px;
    font-weight: 700; }

  .carousel .carousel-caption p {
    font-size: 20px; }

  .carousel .carousel-caption .btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0; } }
@media (max-width: 575.98px) {
  .carousel .carousel-caption h1 {
    font-size: 30px;
    font-weight: 500; }

  .carousel .carousel-caption p {
    font-size: 16px; }

  .carousel .carousel-caption .btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0; } }
.carousel .animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s; }

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background: #fdbe33; }

.page-header h2 {
  position: relative;
  color: #030f27;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px; }

.page-header h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  left: calc(50% - 50px);
  bottom: 0;
  background: #030f27; }

.page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
  color: #030f27; }

.page-header a:hover {
  color: #ffffff; }

.page-header a::after {
  position: absolute;
  content: "/";
  width: 8px;
  height: 8px;
  top: -2px;
  right: -7px;
  text-align: center;
  color: #121518; }

.page-header a:last-child::after {
  display: none; }

@media (max-width: 991.98px) {
  .page-header {
    padding: 60px 0; }

  .page-header h2 {
    font-size: 45px; }

  .page-header a {
    font-size: 20px; } }
@media (max-width: 767.98px) {
  .page-header {
    padding: 45px 0; }

  .page-header h2 {
    font-size: 35px; }

  .page-header a {
    font-size: 18px; } }
/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px; }

.section-header p {
  color: red;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px; }

.section-header h2 {
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: 700; }

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 30px; } }
/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
  position: relative;
  margin-bottom: 45px; }

.feature .col-md-12 {
  background: #030f27; }

.feature .col-md-12:nth-child(2n) {
  color: #030f27;
  background: #fdbe33; }

.feature .feature-item {
  min-height: 250px;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start; }

.feature .col-md-12:nth-child(2n) .feature-icon::after {
  background: #fdbe33; }

.feature .feature-text {
  padding-left: 30px; }

.feature .feature-text h3 {
  margin: 0 0 10px 0;
  color: #fdbe33;
  font-size: 20px;
  font-weight: 600; }

.feature .feature-text p {
  margin: 0;
  color: #fdbe33;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px; }

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
  color: #030f27; }

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
  position: relative;
  width: 100%; }

.fact .col-6 {
  display: flex;
  align-items: flex-start; }

.fact .fact-icon {
  position: relative;
  margin: 7px 15px 0 15px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center; }

.fact .fact-icon [class^="flaticon-"]::before {
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  background-image: linear-gradient(#ffffff, #fdbe33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
  background-image: linear-gradient(#ffffff, #030f27); }

.fact .fact-left,
.fact .fact-right {
  padding-top: 60px;
  padding-bottom: 60px; }

.fact .fact-text h2 {
  font-size: 35px;
  font-weight: 700; }

.fact .fact-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase; }

.fact .fact-left {
  color: #fdbe33;
  background: #030f27; }

.fact .fact-right {
  color: #030f27;
  background: #fdbe33; }

.fact .fact-left h2 {
  color: #fdbe33; }

/*******************************/
/********** Our Cert ***********/
/*******************************/
#our-certs {
  padding: 80px 20px;
  background: #eee; }
  #our-certs p {
    color: red;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px; }
  #our-certs h3 {
    color: #030f27;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 39px; }

@media screen and (max-width: 500px) and (min-width: 300px) {
  /*******************************/
  /********* Feature CSS *********/
  /*******************************/
  .feature .feature-item {
    min-height: 200px;
    padding: 0px; }

  .feature .feature-text {
    padding-left: 0px; }

  .feature .feature-text h3 {
    font-size: 18px;
    text-align: center; }

  .feature .feature-text p {
    text-align: center;
    font-size: 15px;
    line-height: 21px; }

  .about {
    padding: 0; }
    .about .about-img {
      margin-bottom: 10px; }
      .about .about-img.home {
        margin-top: -26px; }
    .about .section-header {
      margin-bottom: 5px;
      text-align: center; }
      .about .section-header h2 {
        text-align: center; }
      .about .section-header p {
        text-align: center; }
    .about .about-text p {
      line-height: 20px;
      font-size: 15px;
      text-align: center; }
    .about .about-text a {
      display: block;
      margin-bottom: 10px; }

  .fact .fact-left, .fact .fact-right {
    padding: 20px; }

  .service {
    padding: 20px 0; }
    .service .section-header {
      margin-bottom: 20px; }
    .service .service-item .service-overlay {
      padding: 15px; }
      .service .service-item .service-overlay p {
        font-size: 15px;
        line-height: 20px; }
    .service .service-text {
      height: 40px; }
      .service .service-text h3 {
        font-size: 18px; }
      .service .service-text a {
        height: 40px; }

  #our-certs {
    padding: 20px 0;
    background: #eee; }
    #our-certs p {
      font-size: 15px;
      margin-bottom: 5px; }
    #our-certs h3 {
      font-size: 20px;
      text-align: center;
      margin-bottom: 39px; }
    #our-certs .img-content img {
      display: block;
      margin: auto; } }
/*******************************/
/********** About CSS **********/
/*******************************/
.about {
  position: relative;
  width: 100%;
  padding: 45px 0; }

.about .section-header {
  margin-bottom: 30px; }

.about .about-img {
  position: relative;
  height: 100%; }

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

.about .about-text p {
  font-size: 16px; }

.about .about-text a.btn {
  position: relative;
  margin-top: 15px;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #030f27;
  border-radius: 0;
  background: #fdbe33;
  transition: .3s; }

.about .about-text a.btn:hover {
  color: #fdbe33;
  background: #030f27; }

@media (max-width: 767.98px) {
  .about .about-img {
    margin-bottom: 30px;
    height: auto; } }
/*******************************/
/********** why choose us **********/
/*******************************/
#why-choose-us {
  background: #eee;
  padding: 80px 20px; }
  #why-choose-us .content-why-choose-us {
    clip-path: polygon(95% 0, 95% 46%, 100% 50%, 95% 54%, 95% 100%, 0 100%, 0 0);
    background: #030f27;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    #why-choose-us .content-why-choose-us .content-inner {
      text-align: center;
      width: 80%;
      margin: auto;
      padding-right: 20px; }
      #why-choose-us .content-why-choose-us .content-inner .title h3 {
        color: #eee;
        font-weight: 900; }
      #why-choose-us .content-why-choose-us .content-inner .title p {
        font-size: 14px;
        color: #fdbe33; }
      #why-choose-us .content-why-choose-us .content-inner p {
        font-size: 14px;
        color: #979696; }
  #why-choose-us .why-choose-us-main {
    margin-bottom: -50px; }
    #why-choose-us .why-choose-us-main .content-main {
      margin-bottom: 50px; }
      #why-choose-us .why-choose-us-main .content-main .img img {
        width: 50px; }
      #why-choose-us .why-choose-us-main .content-main p {
        line-height: 20px;
        font-size: 14px; }

/*******************************/
/********** values mission **********/
/*******************************/
#values-mission .col-md-6 {
  padding: 0; }
#values-mission .content-value {
  background: #fdbe33;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  height: 100%; }
  #values-mission .content-value .content-inner {
    width: 100%;
    margin: auto; }
    #values-mission .content-value .content-inner h3 {
      color: #030f27;
      font-size: 37px; }
    #values-mission .content-value .content-inner p {
      color: #030f27;
      margin-bottom: 0;
      line-height: 20px;
      font-size: 14px; }
#values-mission .content-mission {
  background: #030f27;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  height: 100%; }
  #values-mission .content-mission .content-inner {
    width: 100%;
    margin: auto; }
    #values-mission .content-mission .content-inner h3 {
      color: #fdbe33;
      font-size: 37px; }
    #values-mission .content-mission .content-inner p {
      color: #adabab;
      margin-bottom: 0;
      line-height: 20px;
      font-size: 14px; }

/*******************************/
/********** values mission **********/
/*******************************/
.call-to-action-mobile {
  display: none; }

.call-to-action {
  padding: 100px; }

.call-to-action .col-xs-12 {
  width: 100%; }

.call-to-action .col-xs-12 .content {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.call-to-action .col-xs-12 .content .btn {
  border-radius: 0; }

.call-to-action.light {
  background: #eee; }

.call-to-action.light h3 {
  color: #0d1120; }

.call-to-action.light a.btn {
  border: 1px  #0d1120 solid;
  color: #0d1120; }

.call-to-action.dark {
  background: #0d1120; }

.call-to-action.dark h3 {
  color: white; }

.call-to-action.dark a.btn {
  border: 1px white solid;
  color: white; }

@media screen and (max-width: 498px) and (min-width: 300px) {
  .call-to-action {
    display: none; }

  .call-to-action-mobile {
    display: block; }

  .call-to-action.dark {
    padding: 20px; }

  .call-to-action.dark h3 {
    font-size: 15px;
    width: 50%; }

  .call-to-action.dark a.btn {
    padding: 5px 15px;
    font-size: 15px; }

  .call-to-action-mobile.dark {
    background: #212529;
    padding: 20px 10px; }

  .call-to-action-mobile.dark .col-xs-12 {
    display: flex;
    width: 100%; }

  .call-to-action-mobile.dark .content-text {
    display: flex;
    width: 60%;
    align-items: center; }

  .call-to-action-mobile.dark h3 {
    font-size: 15px;
    color: #aaa;
    width: 90%;
    margin-bottom: 0; }

  .call-to-action-mobile.dark .content-link {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center; }

  .call-to-action-mobile.dark a.btn {
    border: 1px solid #aaa;
    border-radius: 0;
    padding: 5px 15px;
    font-size: 15px;
    text-decoration: none;
    color: #aaa;
    margin: auto; } }
.call-to-action {
  padding: 100px; }

.call-to-action .col-xs-12 {
  width: 100%; }

.call-to-action .col-xs-12 .content {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.call-to-action .col-xs-12 .content .btn {
  border-radius: 0; }

.call-to-action.light {
  background: #eee; }

.call-to-action.light h3 {
  color: #0d1120; }

.call-to-action.light a.btn {
  border: 1px  #0d1120 solid;
  color: #0d1120; }

.call-to-action.dark {
  background: #131926; }

.call-to-action.dark h3 {
  color: white; }

.call-to-action.dark a.btn {
  border: 1px white solid;
  color: white; }

@media screen and (max-width: 500px) and (min-width: 300px) {
  .about {
    padding: 20px 0; }
    .about .section-header {
      margin-bottom: 20px; }
      .about .section-header h2 {
        font-size: 20px; }
    .about .about-text p {
      font-size: 15px; }

  #why-choose-us {
    background: #eee;
    padding: 20px 0; }
    #why-choose-us .content-why-choose-us {
      clip-path: polygon(100% 0, 100% 46%, 100% 50%, 100% 54%, 100% 100%, 0 100%, 0 0);
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      #why-choose-us .content-why-choose-us .content-inner {
        text-align: center;
        width: 100%;
        margin: auto;
        padding-right: 0px; }
        #why-choose-us .content-why-choose-us .content-inner .title {
          padding-top: 10px; }
          #why-choose-us .content-why-choose-us .content-inner .title h3 {
            color: #eee;
            font-weight: 900; }
          #why-choose-us .content-why-choose-us .content-inner .title p {
            font-size: 14px; }
        #why-choose-us .content-why-choose-us .content-inner p {
          font-size: 14px;
          color: #979696; }
    #why-choose-us .why-choose-us-main {
      margin-top: 20px;
      margin-bottom: -50px; }
      #why-choose-us .why-choose-us-main .content-main {
        margin-bottom: 40px; }
        #why-choose-us .why-choose-us-main .content-main .img {
          margin-bottom: 10px; }
          #why-choose-us .why-choose-us-main .content-main .img img {
            width: 50px;
            margin: auto;
            display: block; }
        #why-choose-us .why-choose-us-main .content-main p {
          line-height: 20px;
          text-align: center;
          font-size: 14px; }

  #values-mission .content-value {
    background: #030f27;
    padding: 20px; }
    #values-mission .content-value .content-inner h3 {
      color: #fdbe33;
      text-align: center;
      font-size: 20px;
      font-weight: 900; }
    #values-mission .content-value .content-inner p {
      color: #c8c8c8; }
  #values-mission .content-mission {
    background: #fdbe33;
    padding: 20px; }
    #values-mission .content-mission .content-inner h3 {
      font-weight: 900;
      color: #030f27;
      font-size: 20px;
      text-align: center; }
    #values-mission .content-mission .content-inner p {
      color: #030f27; }

  .call-to-action {
    display: none; }

  .call-to-action-mobile {
    display: block; }

  .call-to-action-mobile {
    background: #eee;
    padding: 20px 10px; }

  .call-to-action-mobile .col-xs-12 {
    display: flex;
    width: 100%; }

  .call-to-action-mobile .content-text {
    display: flex;
    width: 60%;
    align-items: center; }

  .call-to-action-mobile h3 {
    font-size: 15px;
    color: #131926;
    width: 90%;
    margin-bottom: 0; }

  .call-to-action-mobile .content-link {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center; }

  .call-to-action-mobile a.btn {
    border: 1px solid #131926;
    border-radius: 0;
    padding: 5px 15px;
    font-size: 15px;
    text-decoration: none;
    color: #131926;
    margin: auto; } }
/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0; }

.service .service-item {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px; }

.service .service-img {
  position: relative;
  overflow: hidden; }

.service .service-img img {
  width: 100%; }

.service .service-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 15, 39, 0.7);
  transition: .5s;
  opacity: 0; }

.service .service-item:hover .service-overlay {
  opacity: 1; }

.service .service-overlay p {
  margin: 0;
  color: #ffffff; }

.service .service-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #030f27;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.service .service-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: #fdbe33;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.service .service-item a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #030f27;
  background: #fdbe33;
  border-radius: 0;
  transition: .3s; }

.service .service-item:hover a.btn {
  color: #ffffff; }

/*******************************/
/********* Service CSS *********/
/*******************************/
#service-intro {
  padding: 50px 20px;
  text-align: center; }
  #service-intro .title {
    margin-bottom: 20px; }
    #service-intro .title p {
      color: #fdbe33;
      font-size: 16px; }
    #service-intro .title h3 {
      color: #030f27;
      font-weight: 800;
      font-size: 35px; }
  #service-intro p {
    color: #030f27;
    font-size: 15px;
    width: 80%;
    margin: auto; }

/*******************************/
/********* Service CSS *********/
/*******************************/
#storage {
  padding: 60px; }
  #storage .title h3 {
    font-weight: 900; }
  #storage p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #storage h5 {
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px; }

#transport {
  background: #eee;
  padding: 60px; }
  #transport .title h3 {
    font-weight: 900; }
  #transport p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #transport h5 {
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 20px; }

#cleaning {
  background: #fff;
  padding: 60px; }
  #cleaning .title h3 {
    font-weight: 900; }
  #cleaning p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #cleaning .list {
    margin-bottom: 2px; }
  #cleaning .plist {
    font-size: 14px;
    margin-bottom: 0; }
  #cleaning .plist.last {
    margin-bottom: 10px; }

#warehouse {
  background: #eee;
  padding: 60px; }
  #warehouse .title h3 {
    font-weight: 900; }
  #warehouse p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #warehouse h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px; }
  #warehouse .list {
    margin-bottom: 2px; }
  #warehouse .plist {
    font-size: 14px;
    margin-bottom: 0; }
  #warehouse .plist.last {
    margin-bottom: 10px; }

#filling {
  background: #fff;
  padding: 60px; }
  #filling .title h3 {
    font-weight: 900; }
  #filling p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #filling h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px; }
  #filling .list {
    margin-bottom: 2px; }
  #filling .plist {
    font-size: 14px;
    margin-bottom: 0; }
  #filling .plist.last {
    margin-bottom: 10px; }

#melting {
  background: #eee;
  padding: 60px; }
  #melting .title h3 {
    font-weight: 900; }
  #melting p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #melting h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px; }
  #melting .list {
    margin-bottom: 2px; }
  #melting .plist {
    font-size: 14px;
    margin-bottom: 0; }
  #melting .plist.last {
    margin-bottom: 10px; }

@media screen and (max-width: 500px) and (min-width: 300px) {
  .service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0; }

  .service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px; }

  .service .service-img {
    position: relative;
    overflow: hidden; }

  .service .service-img img {
    width: 100%; }

  .service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.7);
    transition: .5s;
    opacity: 0; }

  .service .service-item:hover .service-overlay {
    opacity: 1; }

  .service .service-overlay p {
    margin: 0;
    color: #ffffff; }

  .service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }

  .service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }

  .service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s; }

  .service .service-item:hover a.btn {
    color: #ffffff; }

  /*******************************/
  /********* Service CSS *********/
  /*******************************/
  #service-intro {
    padding: 20px 0;
    text-align: center; }
    #service-intro .title {
      margin-bottom: 20px; }
      #service-intro .title p {
        color: red; }
      #service-intro .title h3 {
        font-size: 25px; }
    #service-intro p {
      font-size: 15px;
      width: 100%;
      margin: auto;
      line-height: 20px; }

  /*******************************/
  /********* Service CSS *********/
  /*******************************/
  #storage {
    padding: 20px 0; }
    #storage .title h3 {
      font-size: 20px;
      text-align: center; }
    #storage p {
      text-align: center; }
    #storage h5 {
      text-align: center;
      margin-top: 20px; }

  #transport {
    text-align: center;
    padding: 20px 0; }
    #transport .title h3 {
      font-weight: 900; }
    #transport p {
      line-height: 20px;
      font-size: 14px; }
    #transport h5 {
      font-weight: 600;
      margin-bottom: 0; }

  #cleaning {
    padding: 20px 0; }
    #cleaning .title h3 {
      font-size: 18px;
      text-align: center; }
    #cleaning p {
      text-align: center;
      line-height: 20px;
      font-size: 14px; }
    #cleaning .list {
      margin-bottom: 2px; }
    #cleaning .plist {
      font-size: 14px;
      margin-bottom: 0; }
    #cleaning .plist.last {
      margin-bottom: 10px; }

  #warehouse {
    text-align: center;
    padding: 20px 0; }
    #warehouse .title h3 {
      font-size: 18px; }
    #warehouse p {
      line-height: 20px;
      font-size: 14px; }
    #warehouse h5 {
      font-weight: 700;
      margin-bottom: 5px;
      margin-top: 20px; }
    #warehouse .list {
      margin-bottom: 2px; }
    #warehouse .plist {
      font-size: 14px;
      margin-bottom: 0; }
    #warehouse .plist.last {
      margin-bottom: 10px; }

  #filling {
    text-align: center;
    padding: 20px 0; }
    #filling .title h3 {
      font-size: 18px; }
    #filling p {
      line-height: 20px;
      font-size: 14px; }
    #filling h5 {
      font-weight: 700;
      margin-bottom: 5px;
      margin-top: 20px; }
    #filling .list {
      margin-bottom: 2px; }
    #filling .plist {
      font-size: 14px;
      margin-bottom: 0; }
    #filling .plist.last {
      margin-bottom: 10px; }

  #melting {
    text-align: center;
    padding: 20px 0; }
    #melting .title h3 {
      font-size: 18px; }
    #melting p {
      line-height: 20px;
      font-size: 14px; }
    #melting h5 {
      font-weight: 700;
      margin-bottom: 5px;
      margin-top: 20px; }
    #melting .list {
      margin-bottom: 2px; }
    #melting .plist {
      font-size: 14px;
      margin-bottom: 0; }
    #melting .plist.last {
      margin-bottom: 10px; } }
/*---------------------
  Portfolio
-----------------------*/
#hqse-intro {
  padding: 60px 20px; }
  #hqse-intro .col-5 {
    padding: 0; }
  #hqse-intro .col-7 {
    padding: 0; }
    #hqse-intro .col-7 .content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      background: #030f27; }
      #hqse-intro .col-7 .content .inner {
        width: 80%;
        margin: auto; }
        #hqse-intro .col-7 .content .inner h3 {
          color: #eee;
          line-height: 25px;
          font-size: 25px;
          font-weight: 900; }
        #hqse-intro .col-7 .content .inner p {
          line-height: 20px;
          font-weight: 300;
          margin-top: 15px; }

#main-hqse {
  background: #eee;
  padding: 60px; }
  #main-hqse .title h3 {
    font-weight: 900; }
  #main-hqse p {
    font-weight: 300;
    line-height: 21px;
    font-size: 15px; }
  #main-hqse h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px; }
  #main-hqse .list {
    margin-bottom: 2px; }
  #main-hqse .plist {
    font-size: 14px;
    margin-bottom: 0; }
  #main-hqse .plist.last {
    margin-bottom: 10px; }

@media screen and (max-width: 500px) and (min-width: 300px) {
  #hqse-intro {
    padding: 20px 15px; }
    #hqse-intro .col-md-5 {
      padding: 0; }
    #hqse-intro .col-md-7 {
      padding: 0; }
      #hqse-intro .col-md-7 .content {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background: #030f27; }
        #hqse-intro .col-md-7 .content .inner {
          width: 90%;
          margin: auto;
          margin-top: 10px; }
          #hqse-intro .col-md-7 .content .inner h3 {
            color: #eee;
            line-height: 25px;
            text-align: center;
            font-size: 18px;
            font-weight: 900; }
          #hqse-intro .col-md-7 .content .inner p {
            line-height: 20px;
            font-weight: 300;
            text-align: center;
            margin-top: 15px; }

  #main-hqse {
    padding: 20px 0;
    text-align: center; }
    #main-hqse .content h3 {
      font-size: 20px;
      font-weight: 900; }
    #main-hqse p {
      line-height: 20px;
      font-size: 14px; }
    #main-hqse h5 {
      font-weight: 700;
      margin-bottom: 5px;
      margin-top: 20px; }
    #main-hqse .list {
      margin-bottom: 2px; }
    #main-hqse .plist {
      font-size: 14px;
      margin-bottom: 0; }
    #main-hqse .plist.last {
      margin-bottom: 10px; } }
/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  position: relative;
  width: 100%;
  padding: 45px 0; }

.contact .col-md-6 {
  padding-top: 30px;
  padding-bottom: 30px; }

.contact .col-md-6:first-child {
  background: #030f27; }

.contact .col-md-6:last-child {
  background: #fdbe33; }

.contact .contact-info {
  position: relative;
  width: 100%;
  padding: 0 15px; }
  .contact .contact-info:last-child {
    margin-bottom: 0; }

.contact .contact-item {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2); }

.contact .contact-item {
  margin-bottom: 10px; }
  .contact .contact-item .head {
    color: #e30c00;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 10px; }
  .contact .contact-item p {
    display: flex;
    margin-bottom: 0px; }
    .contact .contact-item p [class^="flaticon-"] {
      color: #fdbe33;
      font-size: 16px; }
      .contact .contact-item p [class^="flaticon-"]::before {
        margin-left: 0;
        margin-right: 10px; }
    .contact .contact-item p span {
      font-size: 14px;
      line-height: 20px; }
    .contact .contact-item p span.flaticon-inn {
      margin-right: 5px; }

.contact .contact-item:last-child {
  margin-bottom: 0; }

.contact .contact-form {
  position: relative;
  padding: 0 15px; }

.contact .contact-form input {
  color: #030f27;
  height: 40px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(4, 15, 39, 0.4);
  background: transparent; }

.contact .contact-form textarea {
  color: #030f27;
  height: 185px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(4, 15, 39, 0.4);
  background: transparent; }

.contact .contact-form input:focus,
.contact .contact-form textarea {
  box-shadow: none; }

.contact .contact-form .form-control::placeholder {
  color: #030f27;
  opacity: 1; }

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #030f27; }

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #030f27; }

.contact .contact-form .btn {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fdbe33;
  background: #030f27;
  border: none;
  border-radius: 0;
  transition: .3s; }

.contact .contact-form .btn:hover {
  color: #030f27;
  background: #ffffff; }

.contact .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }

@media screen and (max-width: 500px) and (min-width: 300px) {
  .contact {
    padding: 45px 0 0 0; }

  .contact .contact-item .head {
    color: #eee;
    line-height: 23px;
    font-size: 18px; } }
/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer-about-mobile {
  display: none; }

.footer {
  position: relative;
  padding-top: 90px;
  background: #030f27;
  color: #ffffff; }

.footer .footer-about img {
  margin-bottom: 20px; }

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px; }

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fdbe33; }

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #fdbe33; }

.footer .footer-link p {
  display: flex;
  margin-bottom: 0px;
  align-items: baseline; }
  .footer .footer-link p .fa {
    margin-right: 5px;
    color: #fdbe33; }
  .footer .footer-link p a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s; }

.footer .footer-link a:hover {
  color: #fdbe33;
  letter-spacing: 1px; }

.footer .footer-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: baseline; }
  .footer .footer-contact p span {
    font-size: 14px;
    line-height: 20px; }
  .footer .footer-contact p .fa, .footer .footer-contact p .fa-inn {
    width: 25px;
    color: #fdbe33;
    margin-right: 8px; }

.footer .footer-social {
  position: relative;
  margin-top: 20px; }

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  transition: .3s; }

.footer .footer-social a i {
  font-size: 15px;
  color: #ffffff; }

.footer .footer-social a:hover {
  background: #fdbe33;
  border-color: #fdbe33; }

.footer .footer-social a:hover i {
  color: #030f27; }

.footer .footer-about a {
  color: #eee; }

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 15px; }

.footer .copyright p {
  margin: 0;
  color: #ffffff;
  text-align: center; }

.footer .copyright p a {
  color: #fdbe33;
  font-weight: 500;
  letter-spacing: 1px; }

.footer .copyright p a:hover {
  color: #ffffff; }

@media (max-width: 768px) {
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center; } }
@media screen and (max-width: 500px) and (min-width: 300px) {
  .footer-about-desk {
    display: none; }

  .footer {
    padding-top: 30px; }
    .footer .footer-about-mobile {
      margin-bottom: 30px;
      display: block; }
      .footer .footer-about-mobile .footer-about img {
        display: block;
        margin: auto;
        margin-bottom: 10px; }
      .footer .footer-about-mobile .footer-about p {
        text-align: center; }
    .footer .footer-link {
      margin-bottom: 10px; }
    .footer .copyright {
      padding: 15px; }
      .footer .copyright .text-center {
        text-align: center; } }

/*# sourceMappingURL=style.css.map */
