/* @import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */
   
   --primary-color:#0038a7;

  --violet-blue-crayola: #0038a7;
  --dark-cornflower-blue_a7: hsla(214, 88%, 27%, 0.07);
  --white: hsla(0, 0%, 100%, 1);
  --white_a3: hsla(0, 0%, 100%, 0.03);
  --white_a8: hsla(0, 0%, 100%, 0.08);
  --white_a12: hsla(0, 0%, 100%, 0.12);
  --white_a70: hsla(0, 0%, 100%, 0.7);
  --cultured: hsla(220, 20%, 97%, 1);
  --lavender-web: hsla(233, 52%, 94%, 1);
  --cadet-blue-crayola: hsla(220, 12%, 70%, 1);
  --cadet-blue-crayola_a20: hsla(222, 23%, 71%, 0.2);
  --charcoal: hsla(218, 22%, 26%, 1);
  --raisin-black: hsla(216, 14%, 14%, 1);
  --light-gray: hsla(0, 0%, 79%, 1);
  --blue-crayola: hsla(219, 72%, 56%, 1);
  --black-coral: hsla(220, 12%, 43%, 1);

  /**
   * typography
   */

  /* --ff-manrope: 'Manrope', sans-serif; */

  --fs-1: calc(2.7rem + 1.38vw);
  --fs-2: calc(2.6rem + .66vw);
  --fs-3: 2.2rem;
  --fs-4: 1.9rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;

  --fw-700: 700;

  /** 
   * spacing
   */

  --section-padding: 90px;

  /**
   * box shadow
   */

  --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
  --shadow-2: 0 0 0 0.05rem hsla(214, 88%, 27%, 0.08), 0 0 1.25rem hsla(216, 14%, 14%, 0.06);
  --shadow-3: 0 0 1.25rem hsla(216, 14%, 14%, 0.04);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-pill: 100px;
  --radius-10: 10px;
  --radius-8: 8px;
  --radius-6: 6px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 0.3s ease-in-out;
  --primary-shadow: 0 2px 8px hsla(220, 68%, 12%, .1);
}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  border-radius: 10px;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: 'Montserrat', sans-serif;
  /* font-family: 'Golos Text', sans-serif; */
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--black-coral);
  font-size: 1.6rem;
  line-height: 1.7;
}

body.nav-active {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  font-size: 2rem;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus-visible) {
  transform: translateY(-3px);
}

.section {
  padding-block: var(--section-padding);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--charcoal);
  font-weight: var(--fw-700);
  line-height: 1.3;
  text-transform: capitalize;
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-3);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-6);
}

.btn {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .5px;
  border: 2px solid var(--white);
  max-width: max-content;
  padding: 12px 28px;
  border-radius: 5px;
  transition: var(--transition-1);
  will-change: transform;
}

.btn:is(:hover, :focus-visible) {
  transform: translateY(-4px);
}

.btn-primary,
.btn-outline:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--charcoal);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.section-subtitle {
  font-size: var(--fs-7);
  text-transform: uppercase;
  color: var(--violet-blue-crayola);
  font-weight: 500;
  margin-block-end: 16px;
}

.grid-list {
  display: grid;
  gap: 25px;
}

.w-100 {
  width: 100%;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*padding-block: 20px;*/
  z-index: 9999999 !important;
}

.header.active {
  background-color: var(--white);
  position: fixed;
  animation: slideIn 0.5s ease forwards;
  box-shadow: var(--shadow-1);
  /*z-index: 999999;*/
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header.active .logo-light,
.header .logo-dark {
  display: none;
}

.header .logo-light,
.header.active .logo-dark {
  display: block;
}

.nav-open-btn {
  font-size: 3.5rem;
  /* color: var(--white); */
}

.header.active .nav-open-btn {
  color: var(--charcoal);
}

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  background-color: var(--raisin-black);
  color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  padding-block-end: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  visibility: hidden;
  transition: var(--transition-3);
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
}

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

.nav-close-btn {
  background-color: var(--white_a8);
  color: var(--white);
  font-size: 2rem;
  padding: 6px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.nav-close-btn ion-icon {
  --ionicon-stroke-width: 50px;
}

.nav-close-btn:is(:hover, :focus-visible) {
  background-color: var(--white_a12);
}

/*.navbar-list {*/
/*  margin-block-end: auto;*/
/*}*/

.navbar-link {
  font-family: 'Montserrat', sans-serif;
  /* font-family: 'Golos Text'; */
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin: 3px;
  -webkit-transition: .4s;
  transition: .4s;
}

.contact-link {
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--raisin-black);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-1);
}

.overlay.active {
  pointer-events: all;
  opacity: 0.8;
}
header .logo img{
  border-radius: 0;
}
.footer_logo img{
  border-radius: 0;
}




/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
/* 
.hero {
  background-image:linear-gradient(90deg, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%),url('../images/slider/5.jpg');
  height: 80vh;
  background-size: cover;
  background-position: center;
  padding-block-start: calc(var(--section-padding) + 70px);
  text-align: center;
} */





.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: #fff;
    background-color: var(--black-coral);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 14px;
}






.hero .swiper-slide{
  height: 80vh;
  display: flex;
}
.hero .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .swiper-slide.one{
  background-image:linear-gradient(90deg, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%),url('../images/slider/11.jpg');
  height: 80vh;
  background-size: cover;
  background-position: center;
}
.hero .swiper-slide.two{
  background-image:linear-gradient(90deg, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%),url('../images/slider/44.jpg');
  height: 80vh;
  background-size: cover;
  background-position: center;
}
.hero .swiper-slide.three{
  background-image:linear-gradient(90deg, #1B1A1A 0%, rgba(27, 26, 26, 0) 90%),url('../images/slider/22.jpg');
  height: 80vh;
  background-size: cover;
  background-position: center;
}
/* video {
  position: absolute;
  top: 0;
  left: 0;
} */
/* .video-wrapper { */
  /* Telling our absolute positioned video to 
  be relative to this element */
  /* position: relative;

  max-width: 100%;
  height: 600px; */

  /* Will not allow the video to overflow the 
  container */
  /* overflow: hidden; */

  /* Centering the container's content vertically 
  and horizontally */
  /* text-align: center; */
  /* display: flex;
  align-items: center;
  justify-content: center;
} */
.banner-img{
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 350px;
}
.hero-content{
  position: absolute;
  left: 6%;
}
.hero .container {
  display: grid;
  gap: 70px;
}

.hero-title {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 10px !important;
}

.hero-text {
  font-size: 16px;
  color: var(--white);
  /* max-width: 75%; */
  margin: 10px 0 30px;
  font-weight: 400 !important;
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.video-wrapper .btn-primary{
  background-color: #0038A7;
  border-color: #0038A7;
  color: #fff;
}
.video-wrapper .btn{
  padding: 8px 20px;
}

.hero-slider,
.hero-card {
  position: relative;
}

.hero .banner_bottom_content{
  background-color: #f7f7f7;
  position: absolute;
  bottom: -50;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 1;
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}
.hero .banner_bottom_content .item{
  background-color: #fff;
  /* z-index: 9999999; */
  width: 270px;
  color: #000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  /*cursor: pointer;*/
  transition: all .4s ease-in;
  
}
.hero .banner_bottom_content .item.active{
  background-color: #0038A7;
  color: #fff;
}
.hero .banner_bottom_content .item.active .icon i{
  color: #fff;
}
.hero .banner_bottom_content .item:hover{
  background-color: #0038A7;
  color: #fff;
}
.hero .banner_bottom_content .item:hover .icon i{
  color: #fff;
}
.hero .banner_bottom_content .item .icon{
  font-size: 50px;
}
.hero .banner_bottom_content .item .icon i{
  color: #0038A7;
  transition: all .4s ease-in;
}
.hero .banner_bottom_content .item h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.hero-card .play-btn:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--white_a70);
  }

  75% {
    box-shadow: 0 0 0 20px transparent;
  }
}

.hero .slider-inner {
  border-radius: var(--radius-10);
  overflow: hidden;
}

.hero .slider-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: var(--transition-2);
}

.hero .slider-item {
  min-width: 100%;
  width: 100%;
  border-radius: var(--radius-10);
  overflow: hidden;
}

.hero .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white_a70);
  color: var(--charcoal);
  font-size: 2rem;
  padding: 12px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.hero .slider-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
}

.hero .slider-btn.prev {
  left: 20px;
}

.hero .slider-btn.next {
  right: 20px;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  text-align: center;
}

.service .section-title {
  margin-block-end: 50px;
}

.service-card {
  padding: 20px 10px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-6);
  background:#fff;
}

.service-card .card-icon {
  width: 70px;
  height: 70px;
  background-color: var(--violet-blue-crayola);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 2.5rem;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  padding: 12px;
}

.service-card .card-icon img {
  width: 100%;
  height: 100%;
}

.service-card .card-icon ion-icon {
  --ionicon-stroke-width: 50px;
}

.service-card .card-title {
  margin-block: 16px 10px;
}

.service-card .card-text {
  font-size: 14px;
  height: 150px;
}

.service-card .btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-block-start: 10px;
  color: var(--violet-blue-crayola);
  font-weight: 500;
  transition: var(--transition-1);
}

.service-card .btn-text:is(:hover, :focus-visible) {
  opacity: 0.9;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 50px;
}

.about .section-title {
  margin-block-end: 35px;
}

.accordion-card .card-title {
  padding-block-end: 20px;
}

.accordion-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-btn ion-icon {
  font-size: 1.5rem;
  color: var(--blue-crayola);
  transition: var(--transition-1);
}

.accordion-card.expanded .accordion-btn ion-icon {
  transform: rotate(0.5turn);
}

.accordion-btn .span {
  transition: var(--transition-1);
}

.accordion-btn:is(:hover, :focus-visible) .span,
.accordion-card.expanded .accordion-btn .span {
  color: var(--violet-blue-crayola);
}

.accordion-content {
  padding-inline-start: 24px;
  max-height: 0;
  overflow: hidden;
}

.accordion-card.expanded .accordion-content {
  max-height: max-content;
  padding-block-end: 20px;
}





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.feature .container {
  display: grid;
  gap: 50px;
  align-items: center;
}

.feature .section-text {
  margin-block: 25px 30px;
}

.feature-list {
  display: grid;
  gap: 15px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card .card-icon {
  background-color: var(--lavender-web);
  font-size: 1.4rem;
  padding: 4px;
  border-radius: var(--radius-circle);
}

.feature-card .card-icon ion-icon {
  --ionicon-stroke-width: 40px;
}


.feature .btn-primary {
  background-color: #0038a7;
  color: #fff;
}



/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats {
  background-image: linear-gradient(to bottom, var(--white) 50%, var(--cultured) 50%);
}

.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 36px 24px;
  padding: 45px 30px;
  border-radius: var(--radius-8);
}

.stats-card .card-text>* {
  color: var(--white);
}





/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project {
  background-color: var(--cultured);
}

.project :is(.section-subtitle, .section-title) {
  text-align: center;
}

.project .section-title {
  margin-block-end: 50px;
}

.project-card {
  background-color: var(--white);
  border-radius: var(--radius-8);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  height: 100%;
}

.project-card .card-content {
  padding: 30px;
}

.project-card .card-title {
  transition: var(--transition-1);
}

.project-card .card-title:is(:hover, :focus-visible) {
  color: var(--violet-blue-crayola);
}

.project-card .card-text {
  margin-block: 16px 20px;
}

.project-card .card-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--cadet-blue-crayola);
  font-size: var(--fs-8);
}





/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  background-color: var(--charcoal);
}

.cta .container {
  padding-block: 100px 60px;
  border-block-end: 1px solid var(--cadet-blue-crayola_a20);
}

.cta .section-title {
  color: var(--white);
  margin-block-end: 30px;
}

.cta .btn {
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  border: none;
}





footer {
  /* background-color: var(--primary-color); */
  background: #EBEBEB;
  padding: 50px 0;
}

/* .footer_address_details .grid_row{
  display: grid;
  grid-template-columns: 15% 80%;
  gap: 20px;
} */

.footer_address_details .left h3 {
  font-size: 22px;
  color: #000 !important;
  margin-bottom: 20px;
}

.footer_address_details h6 {
  color: #000;
  font-size: 18px;
}

.footer_address_details a,
.footer_address_details p {
  color: #000;
  font-size: 16px;
}

.footer_address_details .right {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
}

/* footer .footer_link_details {
  padding-bottom: 100px;
} */

footer .footer_link_details .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

footer .footer_title {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .footer_link {
  margin-bottom: 10px;
}

footer .footer_link a {
  color: #000;
  font-weight: 300;
  font-size: 15px;
  text-transform: capitalize;
}

footer .footer_col h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

footer .address_col li {
  margin-bottom: 15px;
}

footer .address_col li a {
  display: flex;
  gap: 10px;
  color: #000;

}

footer .address_col li a i {
  margin-top: 5px;
}

footer .social_icons {
  display: flex;
  gap: 20px;
}

footer .social_icons a {
  font-size: 15px;
  border: 1px solid #0000006c;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

footer .social_icons a i {
  margin-top: 0 !important;
}

footer .copy_right {
  background-color: #000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

footer .copy_right p {
  margin: 0;
}




.features_wrapper {
  background-color: #f7f7f7;
  padding: 100px 0;
}

.features_wrapper .grid_row {
  /* max-width: 1024px; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px auto;
}

.features_wrapper .item {
  box-shadow: var(--primary-shadow);
  /* padding: 20px; */
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.features_wrapper .feature_icon {
  width: 100%;
  height: 200px;
  /* margin-bottom: 20px; */
}

.features_wrapper .feature_details {
  padding: 10px 10px 20px;
}

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

.features_wrapper .feature_name {
  font-size: 20px;
  margin-bottom: 1%;
}

.features_wrapper .feature_desc {
  font-size: 14px;
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/
/* 
.footer {
  background-color: var(--charcoal);
  padding-block: 60px 100px;
  color: var(--light-gray);
}

.footer-brand .footer-text { margin-block: 20px; }

.footer .social-list { color: var(--white); }

.footer-list-title {
  color: var(--white);
  margin-block-end: 16px;
}

.footer-link {
  padding-block: 4px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--violet-blue-crayola); }

.input-wrapper {
  position: relative;
  margin-block-start: 25px;
}

.input-field {
  background-color: var(--white_a3);
  color: var(--light-gray);
  font-size: var(--fs-7);
  padding: 12px 16px;
  border: 1px solid var(--dark-cornflower-blue_a7);
  border-radius: var(--radius-6);
  box-shadow: var(--shadow-3);
  outline: none;
}

.input-field::placeholder { color: inherit; }

.submit-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 var(--radius-6) var(--radius-6) 0;
  background-color: var(--violet-blue-crayola);
  color: var(--white);
  padding-inline: 24px;
  font-weight: var(--fw-700);
} */





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * PROJECTS
   */

  .project-card .card-content {
    padding: 40px;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 50px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * HEADER
   */

  .header .btn {
    display: block;
    margin-inline-start: auto;
    padding: 8px 20px;
  }

  .header.active .btn {
    background-color: var(--violet-blue-crayola);
    border-color: var(--violet-blue-crayola);
    color: var(--white);
  }



  /**
   * HERO
   */

  .hero-content {
    max-width: 85%;
    margin-inline: auto;
    padding-top: 100px;
  }

  .hero-text {
    --fs-5: 2rem;
  }



  /**
   * SERVICE
   */

  .service .section-title {
    max-width: 30ch;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about {
    padding-bottom: 70px;
  }

  .about .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * FEATURE
   */

  .feature .container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }

  .feature-banner {
    order: 1;
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .overlay {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    display: block;
    margin-inline: auto 24px;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-link {
    color: var(--white);
    transition: var(--transition-1);
  }

  .navbar-link:is(:hover, :focus-visible) {
    opacity: 0.7;
  }

  .header.active .navbar-link {
    color: var(--charcoal);
  }

  .header.active .navbar-link:is(:hover, :focus-visible) {
    opacity: 1;
    color: var(--violet-blue-crayola);
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * HERO
   */

  .hero {
    /* padding-top: 200px; */
    padding-block-start: calc(var(--section-padding) - 55px);
    text-align: left;
  }

  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .hero-content {
    max-width: unset;
    margin-inline: 0;
  }

  .btn-wrapper {
    justify-content: flex-start;
  }



  /**
   * STATS
   */

  .stats-card {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * PROJECT
   */

  .project .section-title {
    max-width: 32ch;
    margin-inline: auto;
  }







  /**
   * FOOTER
   */

  /* .footer .grid-list { grid-template-columns: repeat(4, 1fr); } */

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px !important;
  }



  /**
   * HERO
   */

  .hero-text {
    padding-inline-end: 100px;
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * STATS
   */

  .stats .container {
    max-width: 70%;
  }

  .stats-card {
    padding: 60px;
  }



  /**
   * PROJECT
   */

  .project .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  /* address.footer-text {
    padding-inline-end: 100px;
    margin-block-end: 16px;
  } */

}





/**
 * responsive for large than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1320px;
  }



  /**
   * FEATURE
   */

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

}






.header-two .navbar-link {
  color: #000;
}

.header-two .btn-primary {
  background-color: #0038a7;
  color: #fff;
}

.page_wrapper {
  padding: 100px 0 50px;
}

.breadcrumb {
  display: flex;
  gap: 5px;
  padding-top: 70px;
}








.about_page_wrapper .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 70px 0;
}

.about_page_wrapper .grid_row h2 {
  font-size: 40px;
}


.mission_vision {
  background-color: #f7f7f7;
  padding: 70px 0;
}

.mission_vision .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}


.our_partners {
  padding: 70px 0;
}

.our_partners .client_logo {
  margin-top: 30px;
  display: flex;
  
  align-items: center;
  gap: 20px;
}

.our_partners .client_logo .logo {
  cursor: pointer;
  transition: all .4s ease-in;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  /*height:100px;*/
}

.our_partners .client_logo .logo:hover {
  box-shadow: var(--primary-shadow);
}

/*.our_partners .client_logo {*/
/*  width: 200px;*/
/*  height:100px;*/
/*}*/
.our_partners .client_logo .logo img {
  width: 100%;
  height:100%;
}



/* .ourteam_page .ourteam .boxes{
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}
.ourteam_page .ourteam .box{
  box-shadow: var(--primary-shadow);
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}
.ourteam_page .ourteam .boxes img{
  width: 100%;
}
.ourteam_page .ourteam .boxes h6{
  font-size: 20px;
  font-weight: 400;
} */

.ourteam {
  padding: 50px 0;
}

.ourteam h2 {
  margin-bottom: 20px;
}

.ourteam .boxes {

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ourteam .box {
  box-shadow: var(--primary-shadow);
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}

.ourteam .boxes img {
  width: 100%;
}

.ourteam .boxes h6 {
  font-size: 20px;
  font-weight: 400;
}


/* .service_page_wrapper {
  padding: 70px 0;
} */

.service_page_wrapper .service_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
  margin: 100px 0;
}

.service_page_wrapper .service_row h3 {
  font-size: 32px;
  margin-bottom: 15px;
  line-height:1.2;
}

.service_page_wrapper .btn-primary {
  background-color: #0038a7;
  color: #fff;
  margin-top: 20px;
}

.service_page_wrapper .service_row img {
  border-radius: 10px;
}


.page_banner {
  background: #0038A7;
  background: url(../images/pagebanner.png);
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page_banner .img1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  opacity: .5;
  display: none;
}

.page_banner .breadcrumb li {
  color: #fff;
}

.page_banner h2 {
  color: #fff;
}



.contact_page {
  padding: 70px 0;
}

.contact_page .card {
  box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.383);
  /* border: 1px solid #a2a2a262; */
  padding: 50px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  /* max-width: 80%; */
  margin: auto;
}


.contact_page input {
  height: 45px;
  border: 1px solid #0038A7;
  width: 100%;
}

.contact_page .contact_form {
  width: 100%;
}

.contact_page .input_box {
  margin-bottom: 30px;
}

.contact_page .input_box label {
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.contact_page .input_box input,
.contact_page .input_box textarea {
  padding: 10px;
}

.contact_page .input_box input::placeholder {
  font-size: 14px;
}

.contact_page .contact_form .btn-primary {
  background-color: #0038A7;
  color: #fff;
  padding: 10px 45px;
}

.contact_page .card_text h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact_page .card_text p {
  font-size: 14px;
  max-width: 80%;
  text-align: justify;
  margin-bottom: 40px;
}

.contact_page .card_text .flex_row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_page .card_text .flex_row .item {
  display: flex;
  /* align-items: center; */
  gap: 30px;
  /* box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.383); */
  padding: 10px;
  /* width: 300px; */
  border-radius: 10px;
}

.contact_page .flex_row .item .contact_icon {
  max-width: 50px;
  max-height: 50px;
  min-width: 50px;
  min-height: 50px;
}

.contact_page .flex_row .item .contact_icon img {
  width: 100%;
  height: 100%;
}

.contact_page .flex_row .item h6 {
  font-size: 16px;
  font-weight: 500;
}


.import_export_page_wrapper {
  padding: 70px 0;
}

.import_export_page_wrapper .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.import_export_page_wrapper .right img {
  border-radius: 10px;
}

.import_export_page_wrapper .left ul {
  padding-left: 0px;
  margin-top: 30px;
}

.import_export_page_wrapper .left ul li {
  margin-bottom: 15px;
  display: inline-flex;
  gap: 10px;
}

.import_export_page_wrapper .left ul li i {
  color: red;
}



/**
   * CTA
   */
.section-bottom {
  height: 200px;
  background-color: #0038a7;
  display: flex;
  align-items: center;
}

.section-bottom .container {
  max-width: 1000px;
}

.section-bottom h2 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-bottom .btn {
  min-width: max-content;
}

.section-bottom .section-title {
  max-width: 30ch;
  margin-block-end: 0;
}





.service_detail_page{
  padding: 70px 0;
}
.service_detail_page img{
  border-radius: 10px;
}
.service_detail_page .service_box{
  max-width: 1024px;
}
.service_detail_page  .service_name{
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height:1.2;
}

.service_detail_page .service_image{
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
.service_detail_page .service_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_detail_page .service_desc{
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
}
.service_detail_page h6{
    font-size:20px;
    font-weight:700;
}

.service_detail_page .service_images{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.service_detail_page .image{
  width: 100%;
  /* height: 250px; */
}
.service_detail_page .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_detail_page ul{
    margin:20px 0;
    padding-left:20px;
}
.service_detail_page ul li{
    margin-bottom:10px;
    list-style:disc !important;
}


.tracking_page{
  padding: 70px 0;
  text-align: center;
}





.sticky_mobile_footer{
    display:none;
}







.our_services {
    padding:70px 0;
    background-color: #fff;
}

.our_services .serviceSwiper {
    padding: 80px 10px;
}

.our_services .swiper-slide {
    box-shadow: var(--primary-shadow);
    /* height: 450px; */
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.our_services .event_image{
    height:230px;
    max-width:100%;
}
.our_services .event_image img{
    height:100%;
    width:100%;
    object-fit:cover;
}
.our_services .event_details {
    padding: 10px;

}

.our_services .event_name {
    font-size: 16px;
    margin: 15px 0;
    font-weight: 600;
    height:50px;
}

.our_services .event_desc {
    font-size: 14px;
    font-weight: 400;
    height: 100px;
}

.our_services .btn-primary{
    background-color: var(--primary-color) !important;
    color:#fff;
    display:inline-flex;
    gap:5px;
}

.our_services .swiper-wrappper {
    position: relative;
}

.our_services .swiper-button-next {
    position: absolute;
    top: 30px;
    right: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: #fff;
}

.our_services .swiper-button-prev {
    background-color: var(--primary-color);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.169);
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: absolute;
    top: 30px;
    left: 92%;
    color: #fff;
}

.our_services .swiper-button-next:after,
.our_services .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900 !important;
}


.our_services.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 30px !important;
    height: 10px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.our_services.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 10px;
    border-radius: 10px;
}



.blog_page_wrapper{
    padding:30px 0 70px;
}
.blog_page_wrapper .blog_cards{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    row-gap:50px;
    column-gap:30px;
    
}
.blog_page_wrapper .blog_card{
    box-shadow: var(--primary-shadow);
    /* height: 450px; */
    border-radius: 10px;
}

.blog_page_wrapper .blog_card .image_row img{
    width:100%;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
}
.blog_page_wrapper .blog_card .content{
    padding:20px;
}

.blog_page_wrapper .blog_card .btn-primary{
    background:#0038a7;
    color:#fff;
    padding:5px 20px;
    margin-top:10px;
}




.blog_detail_page{
  padding: 70px 0;
}
.blog_detail_page img{
  border-radius: 10px;
}
.blog_detail_page .blog_box{
  max-width: 1024px;
}
.blog_detail_page  .blog_box .blog_name{
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height:1.2;
}

.blog_detail_page .blog_box .blog_image{
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
.blog_detail_page .blog_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_detail_page .blog_box .blog_desc p{
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}





