/* Apollo lines Website Style */
:root {
    --bs-worksans: "Work Sans", sans-serif;
    --bs-opensans: "Work Sans", sans-serif;
    --bs-blue: #208bd2;
    --bs-oranage: #f69522;
    --bs-darkblue: #303965;
    --bs-whitesblue: #f7fcff;
    --bs-whitesblue1: #e2f4ff;
    --bs-white: #fff;
    --bs-black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    width: 100%;
    height: 100%;
    font-family: var(--bs-worksans);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }

/* Main Style */
/* Nav */
.home-bg {
  background-color: var(--bs-whitesblue);
}
.navbar {
  background-color: transparent;
}
.nav-div {
  width: 80%;
}
.nav-contact {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.nav-contact-1 {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #FFC62E;
    padding-bottom: 5px;
}
.contact-lsit {
  /*background-color: var(--bs-oranage);*/
  padding: 0px 10px;
}
/*.contact-lsit a {
  color: var(--bs-white) !important;
}*/
.nav-item {
  margin-right: 10px;
}
.nav-link {
  color: var(--bs-white);
  font-weight: 400;
}
.nav-link:hover{
  color: var(--bs-white);
}
.nav-item:last-child {
  margin-right: 0px;
}
.nav-contact-1 {
  color: var(--bs-white);
  font-weight: 400;
}
.nav-link.white1 {
    color: var(--bs-darkblue);
}

.navbar .dropdown .btn {
    background-color: var(--bs-oranage);
    color: var(--bs-white);
    font-family: var(--bs-lato);
}
/* Main Content */
.main-div {
  position: relative;
  width: 100%;
  height: 100vh;
}
.main-bg {
  width: 100%;
  height: 100vh;
  position: relative;
}
.main-bg video {
  width: 100%;
  height: 100vh;
  object-fit: fill;
}
.overlay {
  background-color: #000;
  opacity: 50%;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 1;
}
.main-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 35%;
  z-index: 10;
  text-align: center;
}
.main-content h1 {
  color: var(--bs-white);
  font-size: 64px;
  font-weight: 600;
}
.main-content h1 span {
  color: var(--bs-oranage);
}
.main-content p {
  color: var(--bs-white);
}
.navbar.white {
  background: rgb(255, 255, 255) !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: 500ms ease-in-out;
}
.white1 {
  color: var(--bs-black) !important;
}
.white2 {
  color: var(--bs-black) !important;
}
/* Why */
.why-section {
    width: 90%;
    margin: 100px auto;
}

.why-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-div-1 {
    width: 50%;
}

.why-div-2 {
    width: 50%;
}

.why-div-1 img {
    width: 80%;
}

.why-section h2 {
    font-family: var(--bs-arvo);
    font-size: 42px;
    color: var(--bs-darkblue);
    font-weight: 700;
}

.service-content {
    width: 100%;
}

.service-div {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-list {
    width: 30%;
    height: 400px;
    background-color: var(--bs-white);
    padding: 20px;
    border-radius: 5px;
}

.service-img {
    background-color: var(--bs-whitesblue1);
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .service-img img {
        width: 50px;
        height: 50px;
    }

.service-list span {
    font-family: var(--bs-worksans);
    font-size: 26px;
    font-weight: 600;
    color: var(--bs-darkblue);
    margin-top: 20px;
}

.service-list p {
    font-family: var(--bs-opensans);
    font-weight: 400;
    color: #696969;
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
}

.service-list:first-child {
    background-color: inherit;
}

    .service-list:first-child span {
        font-size: 48px;
        color: var(--bs-blue);
    }

    .service-list:first-child p {
        font-size: 18px;
        color: #696969;
        margin-top: 0px;
    }
.about-us {
  width: 97%;
  background-image: linear-gradient(180deg, #fff, #e2f4ff);
  margin: 50px auto;
  border-radius: 5px;
  padding: 20px;
}
.about-us-div {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.about-1 {
  width: 60%;
}
.about-1 img {
  width: 90%;
}
.about-2 {
  width: 50%;
}
.about-2 h3 {
  font-size: 48px;
  color: var(--bs-oranage);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-2 p {
  font-family: var(--bs-oranage);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
.footer-content {
  width: 100%;
  background-color: var(--bs-darkblue);
  margin-top: 10%;
  position: relative;
  overflow: hidden;
}
.circle-1 {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--bs-white);
  top: -50px;
  right: -50px;
  border-radius: 50%;
  opacity: 50%;
}
.circle-2 {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--bs-white);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  opacity: 50%;
}
.footer-div {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  align-items: center;
}
.footer-1 {
  width: 50%;
}
.footer-1 img {
  width: 100px;
}
.footer-1 p {
  font-size: 14px;
  color: var(--bs-white);
}
.footer-2 {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.footer-2 span {
  color: var(--bs-oranage);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-2 a {
  display: flex;
  align-items: baseline;
  color: var(--bs-white);
}
.footer-2 a .bx {
  font-size: 20px;
  margin-right: 30px;
  margin-bottom: 10px;
  color: var(--bs-oranage);
}
/* Service page */
.nav-second {
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.nav-second hr {
  margin: 0rem;
  color: inherit;
  border: 0;
  border-top: 1px solid #bbbbbb;
  opacity: 0.25;
  width: 55%;
}
.nav-second .nav-link {
  color: var(--bs-darkblue);
}
.nav-second .nav-contact-1 a {
  color: var(--bs-darkblue);
}
.service-main {
  width: 100%;
  height: 100%;
  margin-top: 140px;
  position: relative;
}
.service-div-cont {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-1 {
  width: 50%;
}
.service-2 {
  width: 50%;
}
.service-2 img {
  width: 90%;
  mix-blend-mode: darken;
}
.service-1 h1 {
  font-family: var(--bs-worksans);
  font-size: 52px;
  font-weight: 600;
  color: var(--bs-oranage);
}
.service-card {
  width: 80%;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
}
.service-cards {
  width: 18%;
  height: 150px;
  background-color: #e2f4ff;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: 500ms ease-in-out;
}
.service-cards:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.service-cards img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.service-cards span {
  font-family: var(--bs-worksans);
  color: var(--bs-darkblue);
  font-weight: 500;
}
.service-cards .bx {
  color: var(--bs-oranage);
}
.service-listing {
  background-color: var(--bs-whitesblue);
}
.service-listing-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.service-list-content-1 {
  width: 50%;
  /* padding-left: 80px; */
  padding: 80px;
}
.service-list-content-1 h2 {
  font-weight: 600;
  font-size: 36px;
  color: var(--bs-darkblue);
}
.service-list-content-1 p {
  font-family: var(--bs-opensans);
  line-height: 30px;
}
.service-list-content-2 {
  width: 50%;
  text-align: end;
}
.service-list-content-2 img {
  width: 100%;
}
.service-listing-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
.service-list-content-2 h2 {
  font-weight: 600;
  font-size: 36px;
  color: var(--bs-darkblue);
}
.service-list-content-2 p {
  font-family: var(--bs-opensans);
  line-height: 30px;
}
.service-bg {
  position: absolute;
  width: inherit;
  z-index: -1;
  opacity: 5%;
  bottom: -80px;
}
/* Track and trace */
.track-div {
  margin-top: 100px;
}
.track-content {
  width: 100%;
  position: relative;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-content img {
  width: 100%;
  height: fit-content;
  position: absolute;
  z-index: -1;
  top: 0;
}
.track-content h1 {
  position: relative;
  z-index: 5;
  /* padding-top: 100px; */
  /* padding: 100px 140px; */
  /* display: flex; */
  text-align: center;
  padding: 100px;
  color: var(--bs-white);
  font-weight: 600;
  font-family: var(--bs-worksans);
}
.tarck-text {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0px;
}
.tarck-text span {
  font-family: var(--bs-worksans);
  font-size: 28px;
}
.tarck-text ul {
  margin: 0rem;
  padding: 0px;
}
.tarck-text ul li {
  list-style: none;
}
.tarck-text span p {
  color: var(--bs-oranage);
  text-decoration: underline;
}
.tarck-text ul li .bx {
  color: var(--bs-blue);
  font-size: 20px;
  margin-right: 10px;
}
.tarck-text ul li {
  font-family: var(--bs-worksans);
  font-size: 22px;
}
.tarck-text a {
  color: var(--bs-oranage);
  font-size: 22px;
  text-decoration: underline;
}
.network-div {
  width: 95%;
  margin: 80px auto;
  background-color: var(--bs-whitesblue);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.network-div img {
  width: 100%;
  padding: 30px;
}
.network-div span {
  font-family: var(--bs-worksans);
  color: var(--bs-darkblue);
  font-size: 28px;
}
.about-page .service-2 {
  text-align: end;
}
.about-page .service-2 img {
  width: 70%;
}
.about-action {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}
.about-act-1 {
  background-color: var(--bs-oranage);
  width: 150px;
  height: 120px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--bs-worksans);
  color: var(--bs-white);
  font-size: 18px;
  transition: 500ms ease-in-out;
}
.about-act-1 img {
  width: 60px;
  height: 60px;
}
.about-action a:hover {
  color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.about-section {
  width: 80%;
  margin: 100px auto;
  text-align: center;
}
.about-section h2 {
  font-size: 26px;
  color: var(--bs-oranage);
  font-weight: 700;
}
.about-section p {
  font-family: var(--bs-opensans);
}
.about-value {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.value-1 {
  width: 40%;
  height: 220px;
  background-image: radial-gradient(#FCA207 50%, #788EFC 110%);
  border-radius: 10px;
  text-align: center;
  padding: 40px;
  position: relative;
}
.value-1 span {
  color: var(--bs-white);
  font-size: 22px;
  font-weight: 600;
}
.value-1 p {
  margin-top: 10px;
  color: var(--bs-white);
  font-size: 14px;
}
.value-1 img {
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 20px;
  opacity: 10%;
}
.quantity-div {
  width: 100%;
  background-color: var(--bs-whitesblue);
  margin-top: 100px;
}
.quantity-section {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}
.quantity-1 {
  width: 50%;
}
.quantity-2 {
  width: 50%;
  text-align: end;
}
.quantity-2 img {
  width: 80%;
}
.quantity-1 h3 {
  font-family: var(--bs-worksans);
  font-weight: 600;
  color: var(--bs-oranage);
  font-size: 38px;
}
.quantity-1 p {
  line-height: 30px;
  font-weight: 400;
  font-family: var(--bs-opensans);
}
.aim-div {
  width: 80%;
  height: fit-content;
  background-color: var(--bs-oranage);
  border-radius: 10px;
  margin: 50px auto;
  padding: 40px;
  text-align: center;
  position: relative;
}
.aim-div h4 {
  font-family: var(--bs-worksans);
  font-weight: 600;
  color: var(--bs-white);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}
.aim-div p {
  color: var(--bs-white);
}
.bxs-quote-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 48px;
  opacity: 20%;
}
.bxs-quote-right {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  opacity: 20%;
}
/* Contact US*/
.contact-div {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.contact-form {
  width: 50%;
  background-color: var(--bs-whitesblue);
  padding: 30px;
  border-radius: 10px;
}
.contact-list {
  width: 50%;
  padding: 50px 100px;
}
.address {
  margin-bottom: 40px;
}
.contact-det {
  margin-bottom: 40px;
}
.address span {
  color: var(--bs-blue);
  font-size: 22px;
}
.contact-det span {
  color: var(--bs-blue);
  font-size: 22px;
}
.contact-det ul li {
  list-style: none;
  line-height: 30px;
}
.address ul li {
  list-style: none;
}
.contact-form-div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-form h2 {
  font-size: 32px;
  color: var(--bs-blue);
  font-weight: 600;
}
.contact-form-div .btn {
  background-color: var(--bs-blue);
  color: var(--bs-white);
}
.contact-map {
  width: 80%;
  margin: 80px auto;
  border-radius: 10px;
  overflow: hidden;
}
.contact-map iframe {
  border-radius: 10px;
}
.footer-cont .footer-2 {
  width: 25%;
}
.footer-2 ul li {
  list-style: none;
  color: var(--bs-white);
  line-height: 30px;
  font-size: 16px;
  font-weight: 300;
}
.footer-2 ul {
  margin: 0px;
  padding: 0px;
}
.footer-cont .footer-2 span {
  font-size: 22px;
  text-decoration: underline;
}
.footer-cont .footer-2 .bx {
  font-size: 20px;
  margin-right: 0px;
  margin-bottom: 0px;
  color: var(--bs-white);
}
@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    height: 100%;
  }
  .nav-div {
    width: 90%;
  }
  .navbar {
    background-color: var(--bs-white);
  }
  .service-list {
    width: 100%;
  }
  .service-list:first-child {
    height: fit-content;
  }
  .about-us-div {
    flex-direction: column-reverse;
    width: 100%;
    gap: 20px;
  }
  .about-1 {
    width: 100%;
  }
  .about-2 {
    width: 100%;
  }
  .about-1 img {
    width: 100%;
  }
  .footer-div {
    flex-direction: column;
  }
  .footer-1,
  .footer-2 {
    width: 100%;
  }
  .parallax {
    height: auto;
  }
  .parallax-curtain {
    height: auto;
  }
  .parallax-content {
    padding: 50px 0px;
  }
  /* About us */
  .service-div-cont {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .service-1 {
    width: 100%;
  }
  .about-page .service-2{
    width: 100%;
  }
  .about-page .service-2 img{
    width: 100%;
  }
  .about-value{
    flex-direction: column;
    gap: 30px;
  }
  .value-1, .value-2{
    width: 100%;
    height: fit-content;
  }
  .quantity-section {
    padding: 40px 0px;
    flex-direction: column;
  }
  .quantity-1, .quantity-2{
    width: 100%;
  }
  .quantity-2 img{
    width: 100%;
  }
  .service-2{
    width: 100%;
  }
  .service-2 img{
    width: 100%;
  }
  .service-card{
    display: none;
  }
  .service-listing-1{
    flex-wrap: wrap;
  }
  .service-list-content-1{
    width: 100%;
    padding: 40px;
  }
  .service-list-content-2{
    width: 100%;
  }
  .service-listing-2{
    flex-direction: column-reverse;
  }
  .track-content{
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .track-content img{
    height: 20vh;
  }
  .track-content h1{
    padding: 0px;
  }
  .network-div{
    padding: 0px;
  }
  .network-div img{
    padding: 0px;
  }
  .network-div span{
    font-size: 20px;
  }
  .tarck-text a{
    font-size: 18px;
  }
  /* Gallery Page Style */
  .gallery-div {
    width: 90%;
    margin: 140px auto;
  }

  .gallery-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e4e4e4;
  }

  .gallery-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .gallery-heading h1 {
    font-size: 42px;
    color: var(--bs-darkblue);
    font-family: var(--bs-arvo);
    font-weight: 700;
  }

  .gallery-view {
    margin: 30px auto;
  }

  .gallery-btn .btn:first-child {
    background-color: var(--bs-darkblue);
    color: var(--bs-white);
    font-family: var(--bs-lato);
  }

  .gallery-btn .bx {
    font-size: 18px;
  }

  .gallery-btn .dropdown .btn {
    background-color: var(--bs-oranage);
  }

  .dropdown-menu .btn {
    background-color: var(--bs-blue) !important;
    color: var(--bs-black);
    border: 0px solid;
  }

  .gallery-btn .dropdown .dropdown-menu {
     width: 300px;
     transform: translate3d(0px, 50px, 0px) !important;
     box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
     border: 0px solid;
     padding: 10px;
  }

  .gallery-btn .dropdown .dropdown-menu label {
     font-family: var(--bs-lato);
  }

  .modal-header {
     align-items: baseline;
  }

  .modal-header h1 {
     font-family: var(--bs-lato);
  }

  .modal-header h1 p {
     font-size: 12px;
     color: red;
     font-weight: 400;
     margin: 0;
  }

  .save-btn {
     background-color: var(--bs-darkblue);
     color: var(--bs-white);
     font-family: var(--bs-lato);
  }

  .save-btn:hover {
    background-color: var(--bs-oranage);
  }
    /* Container Type */
  .container-type {
    width: 90%;
    margin: 140px auto;
  }

  .container-type h1 {
    text-align: center;
    color: var(--bs-darkblue);
    font-family: var(--bs-arvo);
    font-size: 40px;
    font-weight: 700;
  }

  .container-type {
    font-family: var(--bs-lato);
  }

  .container-type ul {
    margin: 0;
    padding: 0;
  }

  .container-type ul li {
    list-style: none;
  }

  .container-type .bx {
    color: var(--bs-oranage);
  }

  .container-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    align-items: center;
  }

  .container-cont {
    width: 40%;
  }

  .container-img {
    width: 60%;
    text-align: end;
  }

  .container-cont h2 {
    font-size: 24px;
    color: var(--bs-darkblue);
    font-family: var(--bs-arvo);
  }

  .container-img img {
     width: 70%;
     height: fit-content;
  }

  .container-list-1 {
     width: 100%;
     display: flex;
     justify-content: space-between;
     margin-top: 50px;
     align-items: center;
  }

  .container-list-1 .container-img {
     width: 70%;
     text-align: left;
  }

  .inco-terms {
     margin-top: 50px;
  }

  .inco-list {
     margin-bottom: 50px;
  }

  .inco-list h2 {
     font-family: var(--bs-arvo);
     color: var(--bs-darkblue);
     font-size: 32px;
     text-decoration: underline;
  }

  .inco-list p {
     font-family: var(--bs-lato);
  }

  .inco-list span {
     font-family: var(--bs-lato);
     font-size: 22px;
     color: var(--bs-oranage);
     font-weight: 600;
  }
  .service-cdhd {
     height: 200px;
  }

  .cont-footer {
     width: 60%;
  }

  .footer-contact {
     display: flex;
     justify-content: space-evenly;
  }

  .footer-contact ul {
     margin: 0;
     padding: 0;
  }

  .footer-contact ul li {
     list-style: none;
  }

  .footer-contact .bx {
     margin-right: 10px !important;
     font-size: 15px !important;
  }
  .contact-div{
    width: 100%;
  }
  .contact-div{
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .contact-form{
    width: 100%;
  }
  .contact-list{
    width: 100%;
    padding: 50px 30px;
  }
  .contact-map {
    width: 95%;
    border-radius: 5px;
    overflow: hidden;
  }
  .footer-cont .footer-2{
    width: 100%;
  }
  .nav-link{
    color: var(--bs-oranage);
  }
  .nav-contact-1{
    color: var(--bs-oranage);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
  }
  .contact-lsit{
    width: fit-content;
  }
  .service-bg{
    display: none;
  }
  #bg-video{
    display: none;
  }
  .overlay{
    opacity: 70%;
  }
  .mobile-img{
    background-image: url(../image/NVOCC-blog.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }

}
/* Page: Container Types */
.clearfix {
  clear: both;
  width: 100%;
  float: left;
}
.pt-5 {
  padding-top: 5rem;
}
.container-wrapper {
  width: 80%;
  margin: 0 auto;
}

.container-wrapper h1,
.container-wrapper h2,
.container-wrapper h3,
.container-wrapper h4,
.container-wrapper h5,
.container-wrapper h6,
.container-wrapper div h1 {
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
}

.container-wrapper h2 {
  font-size: 24px;
}

.container-wrapper p {
  color: #666;
  font-weight: 300
}
.container-wrapper ul li a {
  color: #67b0d1 !important;
  font-weight: 300;
}

.container-wrapper img {
  width: 40%;
}

.container-cont {
  margin: 4rem 0rem;
}
