:root {
  --ansblue: #1d3557;
  --ansyellow: #d99000;
  --ansbrown: #d38e06;
  --black: #252525;
  --white: #ffffff;
  --mainfont: "Work Sans", sans-serif;
  --subfont: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff !important;
  font-family: var(--subfont) !important;
  font-size: 18px !important;
  line-height: 26px !important;
}

a,
a:hover {
  text-decoration: none !important;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px !important;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px !important;
}

.font-main {
  font-size: 48px !important;
  line-height: 1.2 !important;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700;
}
.f-italic {
  font-style: italic;
}
.t-uppercase {
  text-transform: uppercase;
}

.color-primary {
  color: var(--ansblue);
}


.color-black {
  color: var(--black) !important;
}

.color-white {
  color: white !important;
}

.btn-primary {
  background-color: var(--ansyellow) !important;
  color: white !important;
  font-family: var(--subfont) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  padding: 8px 16px;
  border: 1px solid var(--ansyellow) !important;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 0 0 transparent;
}

.btn-primary img {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
}

.btn-primary:hover {
  background-color: #fcb51a !important; /* slightly darker shade of ansyellow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

.btn-primary:hover img {
  transform: translateX(6px) rotate(10deg);
}

/* .btn-primary:hover,
.btn-primary:active {
    
    background-color: black !important;
    border: 1px solid black !important;

} */

.btn-secondary {
  background-color: transparent;
  color: var(--darkgreen) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: normal;
  letter-spacing: -0.32px !important;

  transition: all 0.3s;
}

.btn-secondary:hover,
.btn-secondary:active {
  background-color: var(--white) !important;
  border: 2px solid var(--white) !important;
}

.tertiary-btn {
  font-family: var(--subfont) !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: normal;
  padding: 10px 20px;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 9.5% /* 1.52px */;
  text-underline-offset: 25% /* 4px */;
  text-underline-position: from-font;
  transition: all 0.3s;
}

.position-relative {
  position: relative;
}

.z-index {
  z-index: 1;
}

h1,
h2 {
  font-family: var(--mainfont) !important;
}

.section-title {
  font-size: 30px;
  font-family: var(--mainfont) !important;
  font-weight: 700;
  line-height: 36px;
  text-decoration: capitalize;
}

.section-subhead {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px /* 150% */;
  text-transform: capitalize;
}

.section-name {
  color: var(--ansbrown);
  font-family: var(--subfont) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.para-m {
  font-family: var(--subfont);
  font-size: 16px;
  /* font-style: normal; */
  font-weight: 400;
  line-height: 25px;
}

.para-sm {
  /* color: #FFF; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.section-padding {
  padding: 110px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  /* padding: 10px 20px; */
  font-family: var(--subfont) !important;
  font-size: 16px !important;
  font-weight: 400;
  transition: all 0.3s;
}

.navbar a:hover {
  color: var(--ansyellow) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--green);
  font-weight: 700;
  text-decoration-line: underline !important;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 10.5% /* 1.68px */ !important;
  text-underline-offset: 25% /* 4px */;
  text-underline-position: from-font;
  text-transform: uppercase;
}

/* .navbar a:hover {
    background-color: #575757;
} */
.menu {
  display: flex;
}

.header-logo {
  height: 40px;
}

.border-r10 {
  border-radius: 10px;
}

header {
  position: relative;
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  /* position: sticky;
    top: 0;
    z-index: 10; */
  /* background: linear-gradient(270deg, rgba(0, 0, 0, 0.50) 0%, #000 69%);
    filter: blur(41.54999923706055px); */
}
/* header .header-logo1 {
display: none;
} */

.header-fixed {
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 8px #00000038;
}
/* .header-fixed .header-logo1 {
    display: block;
}
.header-fixed .header-logo {
    display: none;
} */

.header-logo {
  background-image: url("../images/main-logo.svg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 50px;
}
.header-fixed .header-logo {
  background-image: url("../images/main-logo1.svg");
}
.header-fixed .navbar a {
  color: var(--black);
}

.section-main-banner {
  min-height: 100vh;
  max-height: 100vh;
  background-image: url("../images/main-banner.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  /* display: flex;
  align-items: center; */
  padding-top: 140px;
  overflow: hidden;
}

.banner-title {
  color: #fff;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner-map {
  position: absolute;
  top: -163px;
  left: 211px;
}

.grid-image {
  height: 470px;
  border-radius: 10px;
  object-fit: cover;
}

.dotted-box {
  width: 100%;
  height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  border: 2px dashed #a77e07;
  font-family: var(--mainfont) !important;
  color: #a77e07;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  text-transform: capitalize;
}

.box-count {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.dotted-box > .box-count {
  color: #a77e07;
}

.count-box {
  width: 100%;
  height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background-color: #fff1c8;
  font-family: var(--mainfont) !important;
  color: var(--ansblue);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  text-transform: capitalize;
}

.count-box > .box-count {
  color: var(--ansblue);
}

.services-section {
  background-image: url("../images/services-bg.png");
  background-size: cover;
  background-attachment: fixed;
}

.service-card {
  background-color: #fff;
  /* height: 300px; */
  padding-top: 56px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.service-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 90px;
  right: 0;
  bottom: 0;
  background-image: url("../images/plane-art.png");
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.service-card .service-card-content {
  /* height: 80%; */
  width: 100%;
  background-color: var(--ansblue);
  padding: 48px 24px 24px 24px;
  position: relative;
}

.service-card .icon-box {
  background-color: var(--ansyellow);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 5px;
  position: absolute;
  top: -24px;
}

.client-logo {
  height: 100px;
  width: auto;
}

.choose-section {
  background-image: url("../images/blue-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.choose-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  height: 254px;
  transition: all 0.3s ease-in-out;
}
.choose-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.choose-image {
  border-radius: 10px;
  width: 100%;
  height: 530px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.red-circle {
  height: 30px;
  width: 30px;
  background-color: var(--ansyellow);
  border-radius: 50%;
}

.yellow-circle {
  height: 30px;
  width: 30px;
  background-color: #8585ed;
  border-radius: 50%;
}

.contact-form {
  background-color: #fff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 0 !important;
}

.contact-form input {
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  height: 32px !important;
}

.contact-form textarea {
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  border-radius: 0 !important;
}

footer {
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.footer-links a {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  text-decoration: none !important;
  transition: all 0.3s;
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff !important;
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #ffffff44;
  padding-top: 16px;
}

.services-section-banner {
  min-height: 50vh;
  max-height: 50vh;
  height: 50vh;
  /* background-image: url("../images/services-banner.jpg"); */
  background: linear-gradient(
      180deg,
      #000 0%,
      rgba(0, 0, 0, 0.48) 56.73%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/services-banner.jpg") lightgray 0px -147.66px / 100% 183.235%
      no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: end;
  /* padding-top: 100px; */
  overflow: hidden;
}
.services-section-banner .container {
  height: 60%;
}
.services-section-banner-content {
  align-content: space-between;
  height: 100%;
}

.service {
  color: unset;
}

.home-link {
  color: #ffc107;
}

.bpo-card {
  padding: 16px;
  border-radius: 10px;
  min-height: 176px;
  background: #fff3e3;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.bpo-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.bpo-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 250px;
  right: 0;
  bottom: 0;
  background-image: url(../images/jet.png);
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}
.rep-card {
  border-radius: 20px;
  overflow: hidden;
}
.rep-card img {
  height: 684px;
  width: 100%;
  object-fit: cover;
}
.rep-content-section {
  padding: 40px;
  background: linear-gradient(180deg, #1d3557 0%, #3f73bd 100%);
}
.rep-subcard {
  padding: 16px;
  border-radius: 10px;
  background: #0a3f67;
  transition: all 0.3s ease-in-out;
}
.rep-subcard:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.travel-card {
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  height: 300px;
  width: 100%;
  padding: 24px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.travel-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.tcard1 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel1.jpg") no-repeat;
}
.tcard2 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel2.jpg") no-repeat;
}
.tcard3 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel3.jpg") no-repeat;
}
.tcard4 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel4.jpg") no-repeat;
}
.tcard5 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel5.jpg") no-repeat;
}
.tcard6 {
  background: linear-gradient(0deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
    url("../images/travel6.jpg") no-repeat;
}

.side-img {
  height: 580px;
  object-fit: cover;
  width: 100%;
}

.plane-right {
  position: absolute;
  top: -57px;
  right: -61px;
}
.plane-left {
  position: absolute;
  top: -57px;
  left: -61px;
  transform: scaleX(-1);
}

.section-main-banner h3, #distribution h3 {
  color: #ffd6a2;
}
.about-points {
  padding: 16px;
      border: 2px dashed #e5b597;
}
.about-points h2 {
  line-height: 25px;
}
.about-points .about-icon svg {
  width: 30px;
}

.contact-form label.error {
    color: red;
    font-size: 12px;
}

.tab-links a {
      display: block;
      padding: 24px 24px;
      text-decoration: none;
      color: #fff;
      border-left: 6px solid transparent;
      border-radius: 0 8px 8px 0;
      transition: all 0.5s ease-in-out;
    }
    .tab-links a:hover {
      background-color: #c3984b59;
      color: #fff;
      border-left-color: #fcb51a;
    }

    .tab-links a.active {
      background-color: #c3984b;
    color: #fff;
    border-left-color: #fcb51a;
    }

    .tab-content-section {
      display: none;
      padding: 32px;
      background-color: #0a3f67bf;
      border-radius: 10px;
    }
    .tab-content-section h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .tab-content-section.active {
      display: block;
    }

    .service-icon svg{
      width: 25px;
      height: auto;
      color: #b5995b;
    }
    .readmore-link {
      color: #fbc75e !important;
    font-weight: 800;
    text-decoration: underline !important;
}

@media only screen and (max-width: 767px) {
  .section-main-banner {
    padding-top: 30px;
  }
  .services-section-banner .container {
    height: 50%;
  }
  .section-padding {
    padding: 75px 0;
  }

  .banner-title {
    font-size: 30px;
  }

  .para-m {
    font-size: 14px;
  }

  .btn-primary {
    width: unset;
  }

  .banner-map {
    top: -113px;
    left: 0;
  }

  .choose-image {
    height: 360px;
  }

  header {
    background-color: #0b1c26;
  }

  .rep-card img {
    height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: left;
  }
  .side-img {
    height: 340px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
  }
  .header-logo {
    width: 150px;
    height: 50px;
  }
  .grid-image {
        height: 160px;
    width: 100%;
  }
  .tab-content-section {
    padding: 16px;
  }
}
