/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #FFFFFF;
  color: black;
  font-family:'Times New Roman', Times, serif;
}

a {
  color: blue;
  text-decoration: none;
  transition: 0.5s;
}

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

p {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin: 0 0 20px 0;
  padding: 0;
}

#container{
  background-color: #002060;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 120px;
  transition: all 1.5s;
  z-index: 997;
  background: #002060;
}
#header a{
  font-family: Arial, Helvetica, sans-serif;
}
#header #logo img {
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  #header {
    height: 100px;
  }
  #header #logo img {
    max-height: 70px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: MyFont;
  font-size: 18px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  text-align: center;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar li:hover > a {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration-color: #FFFF00;
  -webkit-text-decoration-color: #FFFF00;
  text-decoration-thickness: 3px;
  -webkit-text-decoration-thickness: 3px;
}
.navbar .active {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration-color: #FFFF00;
  -webkit-text-decoration-color: #FFFF00;
  text-decoration-thickness: 3px;
  -webkit-text-decoration-thickness: 3px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #1A1A1A;
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #FFFF00;
  font-size: 44px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #FFFF00;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 999;
  background-color: #002060;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #FFFF00;
  font-size: 64px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  right: 25px;
  left: -5px;
  overflow-y: auto;
  transition: 0.3s;
  background-color: #002060;
  line-height: 2.5rem;
}
.navbar-mobile a, .navbar-mobile a:focus {
  font-size: 24px;
  color: white;
  justify-content: center;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration-color: #FFFF00;
  -webkit-text-decoration-color: #FFFF00;
  text-decoration-thickness: 5px;
  -webkit-text-decoration-thickness: 5px;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 50px;
  padding: 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #002060;
  border: 1px solid white;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 10px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: white;
  text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration-color: #FFFF00;
  -webkit-text-decoration-color: #FFFF00;
  text-decoration-thickness: 5px;
  -webkit-text-decoration-thickness: 5px;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #002060;
  border-bottom: 2px solid white;
}
@media (max-width: 768px) {
  #hero {
    height: 85vh;
  }
}
#hero h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 20px;
}
#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
  line-height: 2.5em;
}
#hero ul i {
  left: 0;
  top: 11px;
  position: absolute;
  font-size: 18px;
  color: white;
}
#hero .btn-get-started, #hero .btn-get-quote {
  font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 5px;
    transition: 0.5s;
    color: black;
    background: #FFFF00;
}
#hero .btn-get-started {
  margin-right: 10px;
}
#hero .btn-get-started:hover, #hero .btn-get-quote:hover {
  background: none;
  border: 2px solid #FFFF00;
  color: white;
}
#hero .image1 {
  display: none;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  #hero .image1 {
    display: none;
  }
}
@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .image1 {
    display: none;
  }
  #hero .image2 {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    text-align: center;
  }
  #hero h1{
    font-size: 28px;
    margin-top: -40px;
  }
  #hero ul {
    text-align: left;
    font-size: 14px;
  }
  #hero .image2 {
    display: none;
  }
  #hero .image1 {
    display: block;
    width: 80%;
  }
  #hero .btn-get-started, #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}
.section-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* About Section
  --------------------------------*/
  #about {
    padding: 60px 0 30px 0;
  }
  #about .about-img {
    overflow: hidden;
  }
  #about .about-img img {
    margin-left: 15px;
    max-width: 100%;
  }
  @media (max-width: 767px) {
    #about .about-img {
      height: auto;
      padding-top: 30px;
    }
    #about .about-img img {
      margin-left: 0;
      padding-bottom: 30px;
    }
  }

  #about h2 {
    color: black;
    font-weight: 900;
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif;
  }
  #about p {
    line-height: 26px;
    margin: 0 0 30px 0;
  }
  #about .content p:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 767px) {
    #about h2 {
      font-size: 18px;
    }
    #about p,ul {
      font-size: 14px;
    }
  }
  #about .content ul {
    list-style: none;
    padding: 0;
  }
  #about .content ul li {
    padding-bottom: 10px;
  }
  #about .content .btn-get-started {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 5px;
  transition: 0.5s;
  color: white;
  background: #002060;
  }
  #about .content .btn-get-started:hover {
    background: #FFFF00;
    color: black;
    border: 2px solid black;
  }
  @media (max-width: 767px) {
    #about .content .btn-get-started {
      padding: 8px 16px;
      font-size: 12px;
    }
  }
  #about li {
    color: black;
    line-height: 2.5em;
  }
  #table {
    margin-left: 14px;
    font-family: Arial, Helvetica, sans-serif;
  }
  @media (max-width: 767px) {
    table {
      font-size: 12px;
      
    }
  }
  #heading{
    background-color: #002060;
    color: white;
    font-weight: bold;
  }
  .warehousing_image1 {
    margin-left: 15px;
  }
  .warehousing_image2 {
    display: none;
  }
  @media (max-width: 767px) {
    .warehousing_image1 {
      display: none;
    }
    .warehousing_image2 {
      display: block;
    }
  }
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
  background-image: url("/assets/img/home-transporting2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.counts .count-box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
}
.counts .count-box span {
  font-size: 44px;
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  font-weight: 900;
  color: black;
  text-align: center;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 767px) {
  .counts .count-box {
    justify-content: center;
  }
  .counts .count-box span, .counts .count-box p {
    text-align: center;
  }
}

     /* Our Team Section
  --------------------------------*/
  #team {
    background: #FAF9F6;
    padding: 30px 0 0 0;
  }
  #team .member {
    text-align: center;
    margin-bottom: 30px;
    background: #002060;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 767px) {
    #team .member {
      box-shadow: none;
    }
  }
  #team .member .pic {
    overflow: hidden;
    text-align: center;
  }
  #team .member .pic img {
    max-width: 100%;
  }
  #team .member .details {
    color: #fff;
    padding: 15px;
    height: 30vh;
  }
  #team .member h4 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
  }
  #team .member span {
    font-family: 'Times New Roman', Times, serif;
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
  }
  #team .details .btn-get-started {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 22px;
    border-radius: 5px;
    transition: 0.5s;
    color: black;
    background: #FFFF00;
    }

    /* About Section
  --------------------------------*/
  #about2 {
    background-color: #002060;
  }
  #about2 .about-img {
    overflow: hidden;
    background: url("/assets/img/home-truck.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  #about2 .about-img img {
    margin-left: 15px;
    max-width: 100%;
    display: none;
  }
  @media (max-width: 767px) {
    #about2 .about-img {
      height: auto;
      padding-top: 30px;
      background: none;
    }
    #about2 .about-img img {
      margin-left: 0;
      display: block;
    }
    #about2 {
      text-align: center;
    }
  }
  #about2 .content {
    padding: 40px 40px;
  }
  #about2 .content h1 {
    color: white;
    font-weight: 900;
    font-size: 44px;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 40px;
  }
  #about2 .content h3{
    color: white;
    font-weight: 200;
  }
  #about2 .content p {
    line-height: 26px;
    color: white;
  }
  #about2 .content p:last-child {
    margin-bottom: 0;
  }
  #about2 .content i {
    font-size: 40px;
    padding-right: 4px;
    color: white;
  }
  #about2 .content ul {
    list-style: none;
    padding: 0;
  }
  #about2 .content ul li {
    padding-bottom: 10px;
  }
  #about2 h4{
    color: white;
  }
/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #00009c;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 28px;
    color: #FFFF00;
    line-height: 0;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  @media (max-width: 767px) {
    .back-to-top {
      display: none;
      visibility: hidden;
      opacity: 0;
    }
    .back-to-top.active {
      display: none;
      visibility: hidden;
      opacity: 0;
    }
  }
    /*--------------------------------------------------------------
    # Contact
    --------------------------------------------------------------*/
    
    #contact {
      background-color: white;
    }
    #contact h1{
      color: black;
      padding-top: 60px;
      text-align: left;
    }
    @media (max-width: 767px) {
      #contact h1 {
        text-align: center;
      }
    }
    .contact .row{
      justify-content: center;
      align-items: center;
      display: flex;
    }
    .contact .info-box {
      text-align: center;
      padding: 20px 0 30px 0;
      background: #002060;
    }
    .contact .info-box i {
      font-size: 32px;
      color: #FFFF00;
      border-radius: 50%;
      padding: 8px;
    }
    .contact .info-box h3 {
      font-size: 20px;
      color: white;
      font-weight: 700;
      margin: 10px 0;
    }
    .contact .info-box p {
      padding: 0;
      line-height: 24px;
      font-size: 10px;
      margin-bottom: 0;
      color: white;
      font-family: MyFont3;
    }
    .contact .info-box a{
      color: white;
      font-family: MyFont3;
    }
    .contact .info-box a:hover{
      color: #FFFF00;
    }
    .contact .php-email-form {
      padding: 30px 30px 30px 30px;
      background: #002060;
      font-family: Arial, Helvetica, sans-serif;
    }
    .contact .php-email-form .error-message {
      display: none;
      color: black;
      background: #FFFF00;
      text-align: left;
      padding: 15px;
      font-weight: 600;
    }
    .contact .php-email-form .error-message br + br {
      margin-top: 25px;
    }
    .contact .php-email-form .sent-message {
      display: none;
      color: black;
      background: #FFFF00;
      text-align: center;
      padding: 15px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .contact .php-email-form .loading {
      display: none;
      background: #FFFF00;
      text-align: center;
      padding: 15px;
    }
    .contact .php-email-form .loading:before {
      content: "";
      display: inline-block;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      margin: 0 10px -6px 0;
      border: 3px solid #FFFF00;
      border-top-color: black;
      -webkit-animation: animate-loading 1s linear infinite;
      animation: animate-loading 1s linear infinite;
    }
    .contact .php-email-form input, .contact .php-email-form textarea {
      border-radius: 5px;
      box-shadow: none;
      font-size: 12px;
    }
    .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
      border-color: #002060;
    }
    .contact .php-email-form input {
      padding: 12px 17px;
    }
    .contact .php-email-form textarea {
      padding: 14px 17px;
    }
    .contact .php-email-form button[type=submit] {
      background: #FFFF00;
      border: 0;
      padding: 10px 25px;
      color: black;
      transition: 0.4s;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 600;
      font-family: Arial, Helvetica, sans-serif;
    }
    @-webkit-keyframes animate-loading {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    @keyframes animate-loading {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #1A1A1A;
  font-size: 14px;
}
.footer .footer-top {
  background-color: #1A1A1A;
  padding: 60px 0 30px 0;
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
  max-height: 110px;
  margin-right: 6px;
}
.footer .footer-top .footer-info p {
  font-size: 11px;
  line-height: 24px;
  margin-bottom: 30px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}
.footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  color: #0748FC;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .footer-top .social-links a:hover {
  color: #FFFF00;
}
.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  font-family: 'Times New Roman', Times, serif;
}
.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFFF00;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.footer .footer-top .footer-contact p {
  line-height: 20px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.footer .footer-top .footer-contact i {
  font-size: 12px;
  color: #FFFF00;
}
.footer .copyright {
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-contact p {
    font-size: 12px;
  }
  .footer .footer-top .footer-links ul li {
    font-size: 12px;
  }
  .footer .copyright {
    font-size: 12px;
  }
}