html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  overflow-x: clip; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

a:visited {
  color: var(--navy-black-color); }

.small-text {
  font-size: 14px; }

.large-text {
  font-size: 18px; }

ol,
ul {
  list-style: none; }

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: .4s ease; }

a:hover {
  color: var(--primary-color); }

blockquote,
q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none; }

:root {
  --primary-color: #79177E;
  --black-color: #000000;
  --black-bg-color: #101010;
  --header-black-color: #181D24;
  --para-black-color: #888888;
  --white-color: #ffffff;
  --white-color-75: rgba(255,255,255, .75);
  /*fonts*/
  --manrope-font: "Manrope", sans-serif; }
  :root .white-75 {
    color: var(--white-color-75); }

body {
  line-height: 28px;
  font-size: 16px;
  font-family: var(--manrope-font);
  font-weight: 500;
  color: var(--para-black-color);
  overflow-x: clip; }
  body.no-scroll {
    overflow: hidden;
    height: 100vh; }

.primary-color {
  color: var(--primary-color) !important; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--manrope-font);
  color: var(--header-black-color); }

h1 {
  font-size: 64px;
  line-height: 100%; }

h2 {
  font-size: 56px;
  line-height: 68px; }

h3 {
  font-size: 40px;
  line-height: 59px; }

h4 {
  font-size: 32px;
  line-height: 40px; }

h5 {
  font-size: 20px;
  line-height: 100%; }

h6 {
  font-size: 18px;
  line-height: 100%; }

figure {
  margin: 0; }

figure img {
  display: block;
  width: 100%;
  height: auto; }

.bg-primary-color {
  background-color: var(--primary-color); }

.primary-gradient-color {
  background: linear-gradient(0deg, #79177E 0%, rgba(121, 23, 126, 0) 100%); }

.bg-black-10 {
  background-color: var(--black-bg-color); }

.img-fit-cover {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover; }

.img-fit-contain {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain; }

.p-sticky {
  position: sticky;
  top: 120px; }

.block {
  padding: 100px 0; }

.pb-60 {
  padding-bottom: 60px; }

.pt-60 {
  padding-top: 60px; }

.object-fit-cover {
  object-fit: cover; }

.object-fit-contain {
  object-fit: contain; }

.object-position-center {
  object-position: center; }

.section-title {
  padding-bottom: 30px;
  font-weight: 600; }

.section-head {
  padding-bottom: 55px;
  padding-bottom: 55px; }

.pre-title {
  margin-bottom: 10px; }
  .pre-title p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0; }

.row.custom-gutter-35 {
  margin-left: -35px;
  margin-right: -35px; }

.row.custom-gutter-35 > [class*="col"] {
  padding-left: 35px;
  padding-right: 35px; }

.desc-mb-0 p:last-of-type {
  margin-bottom: 0; }

.img-hover {
  overflow: hidden; }
  .img-hover img {
    transition: 0.6s ease-in-out; }
  .img-hover:hover img {
    transform: scale(1.1);
    transition: 0.6s ease-in-out; }

.br-20 {
  border-radius: 20px; }

.btn-primary {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 16px 24px;
  text-align: center;
  border-radius: 100px;
  width: auto;
  overflow: hidden;
  border: 1px solid var(--primary-color) !important;
  background: var(--primary-color) !important;
  font-family: var(--manrope-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 100% !important;
  color: var(--white-color) !important;
  transition: .4s ease-in-out;
  position: relative;
  margin-top: 30px; }
  .btn-primary:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 255, 255, 0.3));
    transform: rotate(-45deg);
    transition: all 0.5s ease;
    opacity: 0; }
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
    .btn-primary:hover::before {
      opacity: 1;
      transform: rotate(-45deg) translateY(110%); }
  .btn-primary.on-primary {
    border-color: #fff !important;
    background: transparent !important; }
  .btn-primary.white {
    background: #fff !important;
    color: var(--black-bg-color) !important; }

.breadcrumbs ul {
  display: flex; }
  .breadcrumbs ul li {
    font-weight: 500;
    color: #fff; }
    .breadcrumbs ul li a {
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75); }
      .breadcrumbs ul li a:hover {
        color: var(--white-color); }
    .breadcrumbs ul li:not(:first-of-type) {
      position: relative;
      padding-left: 24px; }
      .breadcrumbs ul li:not(:first-of-type):after {
        content: '\f105';
        font-family: FontAwesome;
        font-weight: 900;
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 400;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 8px; }

.modal-header {
  padding: 0;
  border: none; }

.modal-header .btn-close {
  background-color: #00ffff;
  color: #fff;
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  right: -6px;
  filter: invert(1); }

.modal-body {
  padding: 45px; }

strong {
  font-weight: 600; }

input[type="submit"] {
  border-radius: 6px !important;
  padding: 16px 24px !important;
  margin-top: 10px; }

.bullet-list {
  list-style: disc;
  padding-left: 20px; }
  .bullet-list li {
    margin-bottom: 8px; }

.accordion-item button, .accordion-button:not(.collapsed) {
  background: transparent !important; }

.accordion-item {
  border-radius: 15px;
  margin-bottom: 0px;
  overflow: hidden !important;
  border: none;
  border-bottom: 1px solid #EAECF0;
  padding: 24px 30px; }
  .accordion-item button {
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    font-size: 17px;
    padding-right: 30px;
    font-weight: 600; }

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; }

.accordion-item:last-of-type {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; }

.accordion-button:not(.collapsed) {
  color: var(--black-color); }

.accordion-body {
  background: transparent !important;
  padding: 0;
  padding-top: 16px; }

.accordion-button::after {
  display: none; }

.accordion-button::before {
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f067";
  /* plus */
  position: absolute;
  right: 0;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; }

.accordion-button:not(.collapsed)::before {
  content: "\f068";
  /* minus */ }

.common-banner-section {
  height: 330px; }
  .common-banner-section .banner-wrapper {
    position: relative; }
    .common-banner-section .banner-wrapper:after {
      content: '';
      position: absolute;
      height: 50%;
      width: 100%;
      left: 0;
      bottom: 0;
      background: linear-gradient(0deg, #79177E 0%, rgba(121, 23, 126, 0) 100%);
      z-index: 2; }
  .common-banner-section figure {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    height: 100%; }
    .common-banner-section figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top; }
  .common-banner-section .text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 3; }
    .common-banner-section .text h1 {
      color: #fff;
      font-weight: 500; }

/*---------header-css---------*/
.slicknav_menu {
  display: none; }

header {
  background: #fff; }
  header ul {
    display: flex;
    align-items: center;
    justify-content: center; }
    header ul li a {
      padding: 8px 15px !important;
      transition: .4s ease;
      font-family: var(--manrope-font);
      color: #000 !important; }
      header ul li a:hover {
        color: var(--primary-color) !important; }
    header ul li.menu-item-has-children {
      position: relative; }
      header ul li.menu-item-has-children a {
        padding-right: 25px !important; }
      header ul li.menu-item-has-children:after {
        content: '\f107';
        position: absolute;
        right: 10px;
        top: 1px;
        font-family: FontAwesome;
        font-size: 14px;
        transition: .6s ease;
        color: #000; }
      header ul li.menu-item-has-children > ul {
        padding: 8px;
        position: absolute;
        left: 0;
        top: 35px;
        flex-direction: column;
        width: 300px;
        background: #fff;
        align-items: flex-start;
        opacity: 0;
        border-radius: 10px;
        overflow: hidden;
        visibility: hidden;
        transition: .6s ease;
        box-shadow: 1px 4px 16px 0 rgba(0, 0, 0, 0.24); }
        header ul li.menu-item-has-children > ul li {
          width: 100%;
          transition: .4s ease;
          border-radius: 5px;
          overflow: hidden; }
          header ul li.menu-item-has-children > ul li:not(:last-of-type) a {
            border-bottom: 1px solid rgba(69, 69, 69, 0.28); }
          header ul li.menu-item-has-children > ul li a {
            padding: 8px 20px;
            display: inline-block;
            width: 100%;
            transition: .6s ease; }
          header ul li.menu-item-has-children > ul li:hover {
            background: var(--primary-color); }
            header ul li.menu-item-has-children > ul li:hover a {
              color: #fff !important; }
      header ul li.menu-item-has-children:hover > ul {
        visibility: visible;
        opacity: 1; }
      header ul li.menu-item-has-children:hover:after {
        transform: rotate(180deg);
        color: var(--primary-color); }
    header ul li.current-menu-item a {
      color: var(--primary-color); }
    header ul li.menu-btn a {
      padding: 12px 30px;
      background: var(--secondary-color);
      margin-left: 62px;
      color: #fff;
      border-radius: 2px; }
    header ul li.menu-btn:hover a {
      background: var(--primary-color);
      color: #fff; }

#header-wrapper {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 15px 0; }

#header-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: 1px 0 12px 0 rgba(0, 0, 0, 0.45);
  animation: slideDownFade 0.8s ease forwards;
  z-index: 999; }

#header-wrapper.sticky .top-header {
  height: 0;
  visibility: hidden; }

.body-wrapper {
  margin-top: 77px; }

@keyframes slideDownFade {
  from {
    transform: translateY(-100%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
/*---------header-css-end--------*/
.slick-prev {
  left: 60px;
  z-index: 3; }
  .slick-prev:hover {
    background: none !important; }

.slick-next {
  right: 60px; }
  .slick-next:hover {
    background: none !important; }

.slick-prev:before,
.slick-next:before {
  display: none; }

.slick-prev svg,
.slick-next svg {
  width: 22px;
  height: 22px;
  padding: 12px;
  color: #fff;
  z-index: 10;
  transition: .4s ease; }

.slick-prev i,
.slick-next i {
  font-size: 18px; }

.slick-prev:hover,
.slick-next:hover {
  background: #333; }

.slick-dots {
  left: 0; }

.slick-dots li button:before {
  font-size: 40px;
  color: #fff;
  opacity: 1; }

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
  font-size: 46px; }

/*-------------home-page-css-------------*/
.banner-section {
  height: calc(100vh - 120px); }
  .banner-section .slick-track, .banner-section .slick-list {
    height: 100%; }
  .banner-section .banner-image {
    position: relative; }
    .banner-section .banner-image:after {
      content: '';
      position: absolute;
      top: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      background: rgba(0, 0, 0, 0.24); }

.about-us-section ul {
  column-count: 2; }
  .about-us-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 6px;
    color: #181D24; }
    .about-us-section ul li:before {
      content: '\f00c';
      position: absolute;
      font-family: FontAwesome;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      color: var(--primary-color); }

.intl-courier-section {
  height: 755px;
  background-image: url("../images/c2.webp.png");
  background-size: 30% 50%;
  background-position: right bottom;
  background-repeat: no-repeat; }
  .intl-courier-section figure {
    height: 100%; }

.services-section .service-card {
  transition: .6s ease; }
  .services-section .service-card:hover {
      cursor:pointer;
    box-shadow: 1px 3px 16px 0 rgba(0, 0, 0, 0.45);
    background: var(--primary-color);
    color: #fff; }

.why-us-wrapper .item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 20px; }
.why-us-wrapper .item .text {
  width: calc(100% - 100px); }
  .why-us-wrapper .item .text .title h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px; }

.review-section .review-slider .slick-list {
  padding-top: 80px; }
.review-section .review-slider h4 {
  font-weight: 600;
  position: relative; }
  .review-section .review-slider h4:after {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    height: 60px;
    width: 60px;
    background: url("../images/quote.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }

/*-------------home-page-css-end------------*/
.exp {
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 18px; }

#about-page .about-us-section figure {
  padding-right: 70px;
  padding-bottom: 50px; }
#about-page .experience {
  bottom: 0px;
  right: 0px; }
#about-page .exp {
  width: auto;
  right: initial; }

.result-box {
  background: #F7F0FF; }

input, select, textarea {
  height: auto;
  width: 100%;
  padding: 11px 16px !important;
  background: #fff !important;
  border: 1px solid #D4D4D4 !important;
  border-radius: 5px !important; }

input[type='radio'], input[type='checkbox'] {
  width: auto; }

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  /* space for arrow */
  cursor: pointer; }

.custom-select-wrapper {
  position: relative; }

.custom-select-wrapper::after {
  content: "\f0d7";
  /* FontAwesome down arrow */
  font-family: "Font Awesome 6 Free";
  color: var(--primary-color) !important;
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; }

/*---------services-css-start-------*/
.gallery-section .gallery figure {
  height: 200px; }

.cargo-section .details h2 {
  margin-bottom: 30px;
  font-weight: 600; }

.features .item {
  border: 1px solid #E9E9E9;
  border-radius: 20px;
  height: 100%; }
  .features .item .inner .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; }

/*---------services-css-end-------*/
/*---------contact-css-start-------*/
.contact-details-blocks figure {
  height: 100%; }

/*---------contact-css-end-------*/
/*---------Footer-css--------*/
#footer-wrapper .top-footer {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden; }
  #footer-wrapper .top-footer:after {
    content: '';
    position: absolute;
    height: auto;
    width: 245px;
    height: 100px;
    right: 30px;
    bottom: -10px;
    background: url("../images/logo-Vector.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0; }
  #footer-wrapper .top-footer > * {
    position: relative;
    z-index: 1; }
  #footer-wrapper .top-footer h5 {
    color: #fff; }
  #footer-wrapper .top-footer h4 {
    font-size: 24px; }
  #footer-wrapper .top-footer p, #footer-wrapper .top-footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 500; }
  #footer-wrapper .top-footer .footer-address a, #footer-wrapper .top-footer .footer-phone a {
    color: #fff; }
  #footer-wrapper .top-footer a {
    display: inline-block;
    margin-bottom: 12px;
    transition: .6s ease; }
    #footer-wrapper .top-footer a:hover {
      color: var(--primary-color); }
  #footer-wrapper .top-footer .menu li a {
    transition: .6s ease; }
    #footer-wrapper .top-footer .menu li a:hover {
      text-indent: 8px; }
  #footer-wrapper .top-footer .social li:not(:last-of-type) {
    margin-right: 10px; }
  #footer-wrapper .top-footer .social a {
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; }
    #footer-wrapper .top-footer .social a:hover {
      transform: scale(1.08); }
#footer-wrapper .bottom-footer {
  padding: 24px 0; }
  #footer-wrapper .bottom-footer p {
    color: #fff;
    font-size: 14px; }
  #footer-wrapper .bottom-footer a:hover {
    transition: .4s ease;
    color: var(--secondary-color); }

/*---------Footer-css-ends--------*/

/*# sourceMappingURL=styles.css.map */
