@font-face {
  font-family: Syne-Regular;
  src: url("../fonts/Syne/Syne-Regular.ttf");
}

@font-face {
  font-family: Syne-medium;
  src: url("../fonts/Syne/Syne-Regular.ttf");
}


@font-face {
  font-family: Syne-SemiBold;
  src: url("../fonts/Syne/Syne-SemiBold.ttf");
}


@font-face {
  font-family: Syne-Bold;
  src: url("../fonts/Syne/Syne-Bold.ttf");
}

@font-face {
  font-family: Syne-ExtraBold;
  src: url("../fonts/Syne/Syne-ExtraBold.ttf");
}




@font-face {
  font-family: Manrope-ExtraLight;
  src: url("../fonts/Manrope/Manrope-ExtraLight.ttf");
}

@font-face {
  font-family: Manrope-Light;
  src: url("../fonts/Manrope/Manrope-Light.ttf");
}

@font-face {
  font-family: Manrope-Regular;
  src: url("../fonts/Manrope/Manrope-Regular.ttf");
}

@font-face {
  font-family: Manrope-Medium;
  src: url("../fonts/Manrope/Manrope-Regular.ttf");
}

@font-face {
  font-family: Manrope-SemiBold;
  src: url("../fonts/Manrope/Manrope-SemiBold.ttf");
}


@font-face {
  font-family: Manrope-SemiBold;
  src: url("../fonts/Manrope/Manrope-SemiBold.ttf");
}

@font-face {
  font-family: Manrope-Bold;
  src: url("../fonts/Manrope/Manrope-Bold.ttf");
}


@font-face {
  font-family: Manrope-ExtraBold;
  src: url("../fonts/Manrope/Manrope-ExtraBold.ttf");
}




:root {
  --font-400: Syne-Regular;
  --font-500: Syne-medium;
  --font-600: Syne-SemiBold;
  --font-700: Syne-Bold;
  --font-800: Syne-ExtraBold;
  --font-man-200: Manrope-ExtraLight;
  --font-man-300: Manrope-Light;
  --font-man-400: Manrope-Regular;
  --font-man-500: Manrope-medium;
  --font-man-600: Manrope-SemiBold;
  --font-man-700: Manrope-Bold;
  --font-man-800: Manrope-ExtraBold;
  --motion-ease: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --motion-duration: 0.4s;
  --primary: #F7BE1B;
  --primary-light: #6d1b2e;
  --white: #FFFFFF;
  --black: #000;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--font-400);
}




html,
body {
  color: var(--white);
  font-family: var(--font-400);
}

a {
  text-decoration: none;
  transition: 0.3s ease 0s;
  color: var(--white);
}

a:hover {
  color: var(--primary);
}

input,
button,
textarea {
  outline: none;
  border: 0px;
  background: none;
}

.webkit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.webkit_1 {
  -webkit-line-clamp: 1;
}

.webkit_2 {
  -webkit-line-clamp: 2;
}

.webkit_3 {
  -webkit-line-clamp: 3;
}

.webkit_4 {
  -webkit-line-clamp: 4;
}

.hide {
  display: none !important;
}

.show {
  display: flex !important;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.img-box {
  margin: 0px;
}

.img-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;

}

.img-box-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

li.nav-item.dropdown.navdesktop ul {
  flex-direction: column;
  top: 100%;
  left: 0;
  width: 100%;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}



::-webkit-scrollbar-thumb {
  background: var(--primary);
}



body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #041719;
  line-height: 1.5;
  color: var(--white);
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

p {
  color: #dcdcdc;
  margin: 0;
}

/* Navbar */

.navbar-nav li {
  padding: 0;
  background: transparent;
  font-family: var(--font-man-500);
  font-size: 16px;
}

.navbar-nav li a {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.header.sticky li a {
  color: var(--white) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li:hover,
.dropdown-menu li:hover a {
  background: var(--white);
  color: var(--black) !important;
}

.navbar-brand img {
  /* width: 245px;
  height: 115px; */
  width: auto;
  transition: 0.6s;
}

.navbar-nav li a {
  font-weight: 400;
  color: var(--black);
}

.offcanvas {
  background-color: var(--black);
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
  gap: 5px;
  padding: 12px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: var(--white);
}

.offcanvas-header>img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--primary);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  padding: 6px 10px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */
.header {
  /* padding: 15px 0 15px 0; */
  background: transparent;
  z-index: 999;
  transition: 0.6s;
  position: fixed;
  width: 100%;
  padding: 0 !important;
}

header.sticky {
  padding: 0px 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #041d1f;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: auto;
  transition: all 0.5s ease-in-out;
}

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--primary);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--white) !important;
  font-weight: 400;
}

/* end */

/* Button */





.btn-theme {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 17px 34px;
  position: relative;
  transition: filter var(--motion-duration);
  font-size: 16px;
  display: flex;
}

.btn-theme-white {

  span {
    color: var(--black);
  }

  svg {
    fill: white !important;
    color: var(--black);
  }
}

.btn-theme-white:hover {
  svg {
    fill: var(--primary) !important;
  }

  span {
    color: white !important;
  }

}

.btn-theme:hover {
  filter: brightness(1.1);
}

.btn-theme:active {
  filter: brightness(0.9);
}

.btn-theme>span {
  display: block;
  position: relative;
  transition: var(--motion-duration) var(--motion-ease);
  z-index: 1;
  font-size: 16px;
  font-family: var(--font-man-600);
}

.btn-theme:hover>span {
  transform: scale(1.15);
}

.btn-theme:active>span {
  transform: scale(0.95);
}

.btn-theme>svg {
  fill: var(--primary);
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}

.btn-theme:hover>svg {
  fill: var(--white);
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}

.btn-theme>svg>path {
  transition: var(--motion-duration) var(--motion-ease);
}

.btn-theme:hover>svg>path {
  d: path("M0,0 C0,-5 100,-5 100,0 C105,0 105,100 100,100 C100,105 0,105 0,100 C-5,100 -5,0 0,0");
}

.btn-theme:active>svg>path {
  d: path("M0,0 C30,10 70,10 100,0 C95,30 95,70 100,100 C70,90 30,90 0,100 C5,70 5,30 0,0");
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

/* end */

/* footer */
.footer {
  padding-top: 35px;
  padding-bottom: 25px;

  background: #012025;
}

.footer-logo p {
  color: #627174;
  font-size: 1rem;
  margin: 0;
}

.footer-links>h6 {
  font-size: 25px;
  color: var(--white);
}

.footer-links>p {
  color: var(--white);
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links>ul {
  margin: 0;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.footer-links>ul>li {
  /* padding: 20px 0px 0 0px; */
  list-style-type: disclosure-closed;
  color: var(--white);
  transition: all ease-in-out 0.3s;
  list-style: none;
}

.footer-links>ul>li:hover {
  color: var(--primary);
}

.footer-links>ul>li>a {
  text-decoration: none;
  font-size: 16px;
  color: #627174;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.footer-links>ul>li>a:hover {
  color: var(--white);
}

.social>p>span {
  margin: 0;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.social>p>a {
  color: var(--primary);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 30px;
}

.social>p>a:hover {
  color: #ffffff;
  background: var(--primary);
}

.footer-bootom-links>span {
  margin: 0;
  margin-right: 15px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

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

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 21px 0;
  border-bottom: 1px solid #ffffff3b;
}

.navbar-nav>li>a {
  padding: 0 !important;
  padding-bottom: 5px !important;
  font-family: var(--font-man-500);
}

ul.navbar-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.dropdown {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #c06162;
  background: #34495e;
  position: relative;
  font-size: 18px;
  perspective: 1000px;
  z-index: 100;
  padding-bottom: 5px !important;
}

.dropdown:hover {
  cursor: pointer;
  background: transparent;
}

.dropdown:hover .dropdown_menu li {
  display: block;
  margin-top: 10px;
}

.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  perspective: 1000px;
  z-index: -1;
}

.dropdown_menu li {
  display: none;
  color: var(--primary);
  background-color: var(--white);
  /* padding: 10px 20px; */
  font-size: 16px;
  opacity: 0;
}

.dropdown_menu li:hover {
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
}

.dropdown:hover .dropdown_menu--animated {
  display: block;
}

.dropdown_menu--animated {
  display: none;
}

.dropdown_menu--animated li {
  display: block;
  opacity: 1;
}

.dropdown_menu-6 {
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  padding: -0;
  border: 10px;
  border-radius: 5px !important;
  overflow: hidden;
  width: 200px;
  text-align: center;
  left: -30px;
  padding: 15px;
  background: white;
}

.dropdown_menu-1 li a {
  color: black !important;
}

.dropdown_menu-1 .dropdown_item-1 {
  transform-origin: top center;
  animation: slideDown 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-1 .dropdown_item-2 {
  transform-origin: top center;
  animation: slideDown 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-1 .dropdown_item-3 {
  transform-origin: top center;
  animation: slideDown 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-1 .dropdown_item-4 {
  transform-origin: top center;
  animation: slideDown 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-1 .dropdown_item-5 {
  transform-origin: top center;
  animation: slideDown 300ms 300ms ease-in-out forwards;
}

ul.dropdown_menu.dropdown_menu--animated.dropdown_menu-6 li a {
  /* color: var(--primary) !important; */
  color: black !important;

}

ul.dropdown_menu.dropdown_menu--animated.dropdown_menu-6 li:hover a {
  color: black !important;

}

.dropdown_menu-1 .dropdown_item-6 {
  transform-origin: top center;
  animation: slideDown 300ms 360ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateX 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-2 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateX 300ms 300ms ease-in-out forwards;
}

.dropdown_menu-3 .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateZ 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-3 .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateZ 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-3 .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateZ 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-3 .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateZ 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-3 .dropdown_item-5 {
  transform-origin: top center;
  animation: rotateZ 300ms 300ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-1 {
  transform-origin: top center;
  animation: scaleZ 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-2 {
  transform-origin: top center;
  animation: scaleZ 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-3 {
  transform-origin: top center;
  animation: scaleZ 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-4 {
  transform-origin: top center;
  animation: scaleZ 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-5 {
  transform-origin: top center;
  animation: scaleZ 300ms 300ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-1 {
  transform-origin: top center;
  animation: scaleZ 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-2 {
  transform-origin: top center;
  animation: scaleZ 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-3 {
  transform-origin: top center;
  animation: scaleZ 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-4 {
  transform-origin: top center;
  animation: scaleZ 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-4 .dropdown_item-5 {
  transform-origin: top center;
  animation: scaleZ 300ms 300ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-1 {
  transform-origin: top center;
  animation: translateX 300ms 60ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-2 {
  transform-origin: top center;
  animation: translateX 300ms 120ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-3 {
  transform-origin: top center;
  animation: translateX 300ms 180ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-4 {
  transform-origin: top center;
  animation: translateX 300ms 240ms ease-in-out forwards;
}

.dropdown_menu-5 .dropdown_item-5 {
  transform-origin: top center;
  animation: translateX 300ms 300ms ease-in-out forwards;
}

@-moz-keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

@-o-keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}


/* hero-section */
.hero-section {
  background-image: url("../images/hero-section.png");
  /* background-attachment: fixed; */
  padding-top: 190px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px !important;
  overflow: hidden;
}

img.hero-hand-arrow-img.aos-init.aos-animate {
  display: flex;
}

img.hero-hand-arrow-img.aos-init.aos-animate {
  width: 100%;
  height: 549px;
  object-fit: contain;
  left: -30px;
}

.hero-section-content>* {
  margin: 0;
}

.hero-section-content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hero-section-content h1 {
  font-size: 110px;
  font-family: var(--font-700);
  color: white;
  line-height: 1;
}

.hero-section-content h1 span {
  color: var(--primary);
}

.hero-section-content>span {
  font-size: 20px;
  color: white;
  font-family: var(--font-man-400);
  padding-bottom: 5px;
  position: relative;
}

.hero-section-content>span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  height: 3px;
  width: 100%;
}


header.header .bg-transparent {
  padding: 0;
}

.hero-section-image-main {
  position: relative;
}

img.hero-hand-arrow-img {
  position: absolute;
  z-index: 1;
  bottom: 0;
}

.img-box.hero-hand-img {
  position: relative;
  z-index: 5;
  height: 510px;
}

/* end */


/* Count-start */
.count-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 23px;
}

.count-main {
  padding: 50px 40px;
  background: #051A1D;
  max-width: 1250px;
  margin-left: auto;
  margin-right: -100px;
  margin-top: -140px;
  z-index: 8;
  position: relative;
  padding-right: 110px;
  /* padding-bottom: 81px; */
  flex-direction: column;
  display: flex;
  gap: 59px;
  z-index: 8;
}

.count-card {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 30px 47px;
  background: #04171A;
  position: relative;
  flex: 0 0 200px;
  align-items: center;
  text-align: center;
}

/* end */

.count-card .icon {
  position: absolute;
  bottom: -20px;
  height: 40px;
  width: 40px;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  left: 32px;
}

.world-img {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.count-number-main {
  display: flex;
  align-items: center;
  padding: 10px;
  /* background: #04171a; */
  position: relative;
  z-index: 5;
  gap: 50px;
}

.count-number-main .number {
  flex: 1;
  background: #04171a;
  padding: 20px;
}


.count-number-main .number h4 span {
  font-size: 30px;
  color: white;
}

.count-number-main .number h4 {
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-700);
}

.btn-theme:hover>span {
  color: var(--black);
}

/* Agency Start */
img.agency-img-ab {
  margin-top: -210px;
}

.agency {
  position: relative;
  padding: 70px 0;
}

.agency-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}

section.count-section {
  padding-bottom: 0;
}

.agency .row {
  position: relative;
  z-index: 4;
  align-items: center;
}

.agency-content-span-main {
  display: flex;
  align-items: center;
  gap: 4px;

  span {
    color: var(--primary);
    font-size: 20px;
    font-family: var(--font-800);
  }

  p {
    margin: 0;
    font-family: var(--font-man-500);
    font-size: 19px;
    text-transform: uppercase;
    color: #627174;
    margin: 0 9px;
  }

}

.agency-heading-content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}


.agency-heading-content h4 {
  font-size: 52px;
  font-family: var(--font-700);
  line-height: 1.2;
}


.agency-heading-content strong {
  color: white;
  font-size: 22px;
}

.agency-heading-content p {
  color: #627174;
  margin: 0;
  font-size: 17px;
}

.agency-heading-content-box-main-top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: relative;
}

.agency-heading-content-box-main {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 20px 50px;
}

.agency-heading-content-box-main-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.agency-heading-content-box-main-top .icon:after {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 59%;
  height: 0;
  width: 0px;
  background: white;
  content: "";
  border-radius: 50%;
  transition: var(--motion-duration) var(--motion-ease);

}

.agency-heading-content-box-card:hover .icon:after {
  height: 100%;
  width: 100%;
}

.agency-heading-content-box-main-top .icon i {
  color: var(--primary);
  font-size: 20px;
  display: block;
  rotate: 35deg;
  z-index: 1;
  margin-left: 5px;
}

.agency-heading-content-box-card p {
  margin: 0;
}

.agency-heading-content-box-card {
  flex-direction: column;
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.bar-main {
  flex-direction: column;
  display: flex;
  gap: 10px;
  width: 100%;
}

.bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 590px;
}

.bar {
  height: 8px;
  background: #072327;
  position: relative;
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 92%;
  height: 100%;
  background: #F9BE17;
}

.agency-img-main img {
  width: 100%;
}

.agency-img-main {
  position: relative;
  z-index: 55;
}

.footer-logo {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.social-media-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  border-radius: 50%;
}

.social-media:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  height: 0;
  border-radius: 17px;
  width: 0;
  transition: .3s;
}

.social-media i {
  z-index: 4;
  color: var(--white);
}

.social-media:hover:after {
  height: 110%;
  width: 110%;
}

.footer-links>ul>li i {
  margin-right: 5px;
  color: var(--primary);
}

.footer-bootom-links {
  text-align: center;

  span {

    color: #627174;
  }

  a {
    color: #627174;
    text-decoration: underline;
  }

  a:hover {
    color: white;
    text-decoration: underline;
  }
}

.our-services-heading {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.our-services-heading h4 {
  font-size: 40px;
  font-family: var(--font-700);
}

.our-services-card {
  flex-direction: column;
  display: flex;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.5);
  gap: 15px;
  margin-bottom: 20px;
  background: #052228;
}


.our-services-img-main {
  padding: 15px;
  background: gray;
  background: #052228;


}

.service-btn {
  width: 100%;
  text-align: center;
  padding: 20px;
  background: #011316;
  font-size: 17px;
}

.service-btn:hover {
  background: var(--primary);
  color: white;
}


.our-services-card img {
  transition: .6s ease-in-out;
}

.our-services-card:hover img {
  transform: translateY(-4px) rotate3d(45, 0, 0, -35deg);
  filter: drop-shadow(0px 15px 0px rgba(102, 102, 102, 0.5));
}

.our-services-img.img-box {
  height: 360px;
}

.our-team-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
  gap: 6px;
}

.our-team-heading h4 {
  font-size: 40px;
  font-family: var(--font-700);
}

.team-card-content {
  margin: 0 20px;
  background: #051C1F;
  padding: 30px;
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-top: -60px;
  z-index: 44;
  position: relative;
}

.team-card-content h4 {
  line-height: 0.9;
}

.team-card-content .social-media-main {
  gap: 7px;
}

.team-card-content span {
  color: #627174;
}

/* Agency End */

/* Cover  */
.cover {
  height: 500px;
  background-image: url(../images/cover-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.cover-content {
  position: absolute;
  width: 100%;
  max-width: 410px;
  text-align: center;
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 13%;
  bottom: 0;
  padding: 40px;
  background: #042023;
  opacity: 0.85;
}

.cover-content h4 {
  font-size: 31px;
  text-transform: capitalize;
  font-family: var(--font-600);
}

.cover-content p {
  line-height: 2;
}

/* Cover End */

/* Portolio */
/* Settings start */
.justified-grid-gallery {
  --space: 4px;
  --min-height: 190px;
  --last-row-background: rgb(188 234 153);
}

/* Settings end */

.justified-grid-gallery {
  display: flex;
  flex-wrap: wrap;
  grid-gap: var(--space);
  list-style: none;
  margin: 0 !important;
  /* We use !important to avoid gaps in some environments. */
  padding: 0 !important;
  /* We use !important to avoid gaps in some environments. */
}

.justified-grid-gallery>* {
  flex-grow: calc(var(--width) * (100000 / var(--height)));
  flex-basis: calc(var(--min-height) * (var(--width) / var(--height)));
  aspect-ratio: var(--width) / var(--height);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  /* We use !important to avoid gaps in some environments. */
  padding: 0 !important;
  /* We use !important to avoid gaps in some environments. */
}

.justified-grid-gallery>*>img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.justified-grid-gallery {}



/* Portolio End */

/* Testimonial Start */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-top: auto;
}

.testimonial-card {
  background: #052023;
  box-shadow: 9px 11px 14px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 400px;
  flex-direction: column;
  display: flex;
}

.testimonial-card>span {
  font-size: 70px;
  color: var(--primary);
}

.testimonial-card>p {
  font-size: 20px;
}

.testimonial-profile-content {
  flex-direction: column;
  display: flex;
  gap: 1px;
}

.testimonial-profile-content strong {
  color: white;
  font-family: var(--font-man-500) !important;

}

.testimonial-profile-content p {
  color: var(--primary);
}

/* Testimonial End */


/* Member */
.memeber-section {
  background-image: url(../images/memeber-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.memeber-section-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.memeber-section-content h4>span {
  color: var(--primary);
}

.memeber-section-content h4,
.memeber-section-content h4 span {
  font-size: 40px;
  font-family: var(--font-700);
}

.form-control {
  color: #757A7B !important;
  background: #051C1F;
}

.form-control::placeholder {
  color: #757A7B !important;

}

.contact-heading .agency-content-span-main span {
  color: white;
}

.contact-heading .agency-content-span-main p {
  font-size: 12px;
}

.contact-heading .agency-content-span-main span {
  font-size: 13px;
}

.contact-heading {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-heading h4 {
  font-size: 40px;
  font-family: var(--font-600);
}

/* Member End */


/* contact-us-section  */
.contact-us-section {
  background-image: url(../images/contact-page-bg.png);
}

.service-hero-heading {
  font-size: 60px !important;
}

/* End */


/* digitizing */
.digitizing {
  /* background-image: url(../images/digitizing-bg.png); */
  background-size: 100%;
}

.services {
  position: relative;
}

.services .container {
  z-index: 5;
  position: relative;
}

.services-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 30px;
}

.services-heading-title {
  flex: 1;
}

.services-heading p {
  flex: 1;
  max-width: 520px;
}

.services-heading-title h4 {
  font-size: 42px;
  font-family: var(--font-700);
  max-width: 380px;
  line-height: 1;
}

.services-card {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 3px 22px rgba(128, 1, 31, 0.22);
  border-radius: 8.95221px;
  padding: 30px 20px;
  flex-direction: column;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  /* height: 256px; */
  transition: .3s;
}


.services-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.services-card-top .number h6 {
  font-size: 30px;
  font-family: var(--font-500);
}

.services-card-top .number {
  padding-right: 20px;
  /* border-right: 2px solid #ffffff54; */
  position: relative;
}

.services-card-top .number:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff54;
  width: 2px;
  height: 50%;
}

.services-card-top h4 {
  font-size: 28px;
  max-width: 180px;
  line-height: 1;
  font-family: var(--font-600);
}

.sevices-portfolio-card a {
  display: none;
}

/* End */


/* Pricing */
.pricing {
  background: #052023;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: #08242A;
  border-radius: 11.2821px;
  padding: 30px;
  border: 1px solid white;
  margin-bottom: 20px;
  overflow: hidden;
}


.plan-card-img.img-box-content {
  height: 90px;
  width: 90px;
  background: white;
  padding: 15px;
  border-radius: 50%;
}

.plan-card h6 {
  font-size: 24px;
  font-weight: 500;
}

.pricing-plan {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.pricing-explain {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-child h4 {
  font-size: 41px;
  font-weight: 600;
  line-height: 1;
}

.services-heading {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.services-heading-title h4 {
  max-width: 100%;
}

.our-services-card.sevices-portfolio-card .our-services-img-main {
  /* background: var(--primary); */
  width: 100%;
  padding: 0;
}

.our-services-card.sevices-portfolio-card:hover img {
  transform: translateY(0px) rotate3d(45, 0, 0, 0deg);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  scale: 1.1;
}


.our-services-card.sevices-portfolio-card .our-services-img-main .our-services-img.img-box {
  height: 230px;
  overflow: hidden;
}

.pricing-child h4 sup {
  margin-right: 8px;
}

.our-services-card.sevices-portfolio-card .our-services-img-main .our-services-img.img-box img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.memeber-section {
  display: none;
}

.services-card p {
  height: 110px;
  display: flex;
}

.hero-section-content p {
  display: none;
}

.thank-you .top-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  align-items: center;
}

section.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;

}

h1.title,
h1.title span {
  font-size: 60px;
  color: white;
  font-family: var(--font-600);
}

h1.title span {
  color: var(--primary);
}

/* End */
.right-col.aos-init.aos-animate {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link.active:after {
  width: 100%;
}

li.dropdown.dropdown-6.nav-link {
  padding-left: 0;
  padding-right: 0;
  color: white;
}

li.dropdown.dropdown-6.nav-link:hover {
  color: white;
}

.dropdown_menu li a {
  /* margin-top: 10px; */
  color: black !important;

}

.dropdown_menu li:nth-child(1) {
  margin: 0 !important;
}

.contact-hero {
  margin-bottom: -80px;
}

.about-hero-img {
  margin-bottom: -125px;

}

section.countries .our-services-heading {
  max-width: 500px;
  margin-bottom: 20px;
}

.countries-swiper .swiper-slide {
  max-width: 400px;
}

.countries-swiper .swiper-slide img {
  /* width: 100%; */
  object-fit: cover;
  height: auto;
}

.countries-main {
  margin-top: 40px;
  padding: 45px;
  background: #052228;
}

section.countries {
  overflow: hidden;
}

.dropdown_menu--animated a.active {
  background-color: var(--primary);
  border-radius: 50px;
  width: 100%;
}

.dropdown_menu--animated a {
  width: 100%;
}

.dropdown_menu li a {
  padding: 10px 20px;
}

li.dropdown.nav-link {
  padding-left: 0 !important;

  padding-right: 0 !important;

  color: white !important;

}

.model-sec .modal-body {
  padding: 0;
  position: relative;
}

.model-sec .modal-content {
  border-radius: 30px;
  border: none;
}

.model-discount {
  padding: 30px 40px 30px 40px;
  background: #041012;
  /*border-radius: 30px;*/
  border: 9px solid #051c1f;
  border-radius: 10px;
}

.model-input {
  padding: 10px 15px;
  color: #ffffff !important;
  border: 2px solid white;
}

.model-input:focus {
  border-color: #ffe403 !important;
}

.model-input::placeholder {
  color: #ffffff !important;
  font-weight: 500;
}

.model-discount .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: none;
}

.model-discount hr {
  background-color: #0D1F2D;
  opacity: 1;
}

.animate-div span {
  font-size: 21px;
  font-family: var(--font-700);
}

.model-discount .btn-theme {
  margin: 0 auto;
  display: flex;
}

.offcanvas-body ul.navbar-nav.justify-content-end.flex-grow-1.pe-3 {
  align-items: flex-start;
  padding-top: 20px;
}

.offcanvas-body .dropdown-menu {
  flex-direction: column;
  background: white;
}

.offcanvas-body .dropdown-menu li a {
  color: black !important;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px !important;
}

.offcanvas-body .dropdown-menu li a.active,
.offcanvas-body .dropdown-menu li a:hover {
  background: var(--primary) !important;
  color: black !important;
}

li.nav-item.dropdown.active {}

.offcanvas-body li.nav-item.dropdown.active a:after {
  width: 100%;
  left: 0;
}

.testimonial-profile .img-box {
  display: none;
}

.susbcribe.footer-links.m-mt-40 h6 {
  margin-bottom: 20px;
}

.susbcribe.footer-links .form-inline {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-choose-us-card {
    flex-direction: column;
    display: flex;
    gap: 10px;
    padding: 35px 40px;
    background: #052023;
    border-radius: 10px;
    transition: .3s;
    height: 238px;
}

.why-choose-us-card h4 {
    font-size: 19px;
    color: var(--primary);
    font-family: var(--font-700);
}

.why-choose-us-card:hover {
    background: #0c3439;
}
.img-box.contact-hero.contact-us-heri-img {
    margin-left: -300px;
}.services-card:hover {
    background: #0c3439;
}