@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Bold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-SemiBold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-ExtraLight.woff2") format("woff2"), url("../../fonts/cairo/Cairo-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Light.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Black.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Regular.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f1f1f1;
}

/* Reset */
/* Navbar Wrapper */
.navbar-wrapper {
  background: #fff;
  border-radius: 999px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  margin-top: 25px !important;
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
}

.logo img {
  width: 150px;
}

.logo span {
  color: #0b5cff;
}

/* Links */
.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #0A396D;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.nav-links a:hover {
  color: #0f172a;
}

/* Hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  margin-top: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .navbar-wrapper {
    border-radius: 24px;
  }
  .mobile-menu.active {
    display: block;
  }
}

/* ============ NAVBAR ============ */
.navbar-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
}

.logo span {
  color: #0b5cff;
}

.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover {
  color: #0f172a;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
}

.mobile-menu {
  display: none;
  margin-top: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .navbar-wrapper {
    border-radius: 24px;
  }
  .mobile-menu.active {
    display: block;
  }
}

/* ============ PAGE ============ */
.page {
  margin: 18px auto 0;
  position: relative;
  top: -120px;
  z-index: 1;
}

/* ============ VIDEO SECTION ============ */
.hero-video {
  margin-top: 14px;
}

.video-card {
  position: relative;
  overflow: hidden;
  background: #000;
  -webkit-box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
          box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* نخلي الفيديو Responsive بنسبة ثابتة زي اللقطة */
.video-card::before {
  content: "";
  display: block;
  padding-top: 52%;
  /* ~ aspect ratio قريب من الصورة */
}

.video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* مهم عشان يملى الكادر */
}

/* Overlay text "video" */
.video-overlay {
  position: absolute;
  left: 70px;
  bottom: 70px;
  z-index: 2;
}

.video-overlay h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  text-transform: lowercase;
  letter-spacing: .5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .video-overlay {
    left: 18px;
    bottom: 18px;
  }
  .video-overlay h2 {
    font-size: 32px;
  }
  .video-card::before {
    padding-top: 62%;
  }
}

.afftersection {
  position: relative;
  top: -10px;
}

.afftersection img {
  width: 100%;
  height: 250px;
}

/* ========== WHO WE ARE SECTION ========== */
/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
  position: relative;
  padding: 80px 24px;
  top: -120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.who-container {
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Text */
.who-content {
  max-width: 520px;
}

.who-content::after {
  display: block;
  width: 690px;
  height: 424px;
  /* background: #f1f1f1; */
  background: #F1F1F1;
  background: -webkit-gradient(linear, left bottom, left top, from(#f1f1f1), to(rgba(241, 241, 241, 0.73)));
  background: linear-gradient(0deg, #f1f1f1 0%, rgba(241, 241, 241, 0.73) 100%);
  margin-top: 24px;
  border-radius: 2px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 0 50% 50% 0;
  position: absolute;
  top: -50px;
  z-index: 3;
  left: -20px;
}

.who-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 18px;
  position: relative;
  z-index: 4;
}

.who-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #0A396D;
  position: relative;
  z-index: 4;
}

/* Counters */
.who-counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.counter {
  min-width: 160px;
  padding: 18px 20px;
  border-radius: 6px;
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  -webkit-transition-delay: var(--d, 0ms);
          transition-delay: var(--d, 0ms);
}

.counter.gray {
  background: #e5e7eb;
  color: #0b3a75;
}

.counter.orange {
  background: #f68b1e;
  color: #fff;
}

.counter .label {
  font-size: 12px;
  opacity: .8;
}

.counter h3 {
  font-size: 36px;
  font-weight: 800;
  margin: 6px 0;
}

.counter p {
  font-size: 16px;
  font-weight: 600;
}

/* Decorative glow right side (قريب من الإحساس في الصورة) */
/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .who-counters {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .who-content h2 {
    font-size: 32px;
  }
  .who-counters {
    margin-top: 32px;
  }
  .counter {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.who-we-are-shep {
  position: relative;
  padding: 80px 24px 0px 24px;
  top: -120px;
  background-image: url(../../img/back-shev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 800px;
}

.card-slid {
  /* section background with waves (simple) */
  /* Carousel area */
  /* Owl nav buttons (arrows on sides like screenshot) */
  /* Dots (orange) */
  /* Responsive */
}

.card-slid .header-row {
  gap: 12px;
  margin-bottom: 28px;
}

.card-slid .header-row div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card-slid h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #0A396D;
  font-weight: 800;
  letter-spacing: .2px;
  text-align: center;
}

.card-slid .view-all {
  font-size: 14px;
  color: #d08b2b;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.card-slid .view-all:hover {
  text-decoration: underline;
}

.card-slid .carousel-wrap {
  position: relative;
  padding: 10px 46px;
}

.card-slid .brand-card {
  background: #d9d9d9;
  border-radius: 6px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.card-slid .brand-card span {
  font-size: 40px;
  color: #f1f1f1;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-slid .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.card-slid .owl-nav button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none !important;
  background: transparent !important;
  color: var(--primary) !important;
  font-size: 44px !important;
  line-height: 44px !important;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
}

.card-slid .owl-nav button:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.card-slid .owl-nav button:focus {
  outline: none;
}

.card-slid .owl-dots {
  margin-top: 22px !important;
}

.card-slid .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(245, 158, 11, 0.55);
  margin: 6px 6px;
}

.card-slid .owl-theme .owl-dots .owl-dot.active span {
  width: 10px;
  height: 10px;
  background: var(--dot);
}

@media (max-width: 768px) {
  .card-slid h2 {
    font-size: 28px;
  }
  .card-slid .carousel-wrap {
    padding: 10px 30px;
  }
  .card-slid .brand-card {
    height: 120px;
  }
}

.card-slid .brand-card {
  background: #d9d9d9;
  border-radius: 8px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  /* مهم */
}

.card-slid .brand-card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.card-slid .owl-theme .owl-dots .owl-dot.active span {
  background: #0A396D;
}

.card-slid .owl-nav {
  top: 40%;
  margin-left: -50px;
  margin-right: -50px;
}

.balanc {
  /* SECTION */
  /* BACKGROUND BARS (faint) */
  /* CARDS */
  /* ICON BUBBLE ON LEFT CARD */
  /* CENTER SHAPE (the S / yin-yang like) */
  /* main colored circle base */
  /* carve inner white to create the S feel */
  /* add soft depth like the screenshot */
  /* middle bulb circle */
  /* small top icon bubble (inside orange part like screenshot) */
  /* OPTIONAL center image if you want it */
  /* RESPONSIVE */
}

.balanc .mv-section {
  padding: 50px 0 70px;
}

.balanc .mv-container {
  position: relative;
  margin: 0 auto;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.balanc .bars {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.balanc .bars span {
  position: absolute;
  bottom: 40px;
  width: 60px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px 8px 0 0;
}

.balanc .bars span:nth-child(1) {
  left: 210px;
  height: 140px;
}

.balanc .bars span:nth-child(2) {
  left: 300px;
  height: 90px;
}

.balanc .bars span:nth-child(3) {
  left: 390px;
  height: 170px;
}

.balanc .bars span:nth-child(4) {
  right: 330px;
  height: 120px;
}

.balanc .bars span:nth-child(5) {
  right: 240px;
  height: 170px;
}

.balanc .bars span:nth-child(6) {
  right: 150px;
  height: 110px;
}

.balanc .mv-card__content {
  padding: 18px 22px;
  width: 50 0px;
  background: #f2f2f2;
  border-radius: 14px;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.balanc .mv-title {
  font-size: 22px;
  font-weight: 800;
  color: #083b7a;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.balanc .mv-text {
  font-size: 12px;
  line-height: 1.55;
  color: #6b7280;
  max-width: 430px;
}

.balanc .mv-card--left {
  left: 70px;
  top: 72px;
}

.balanc .mv-card--left .itemmv-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.balanc .mv-card--right {
  right: 60px;
  bottom: 62px;
  text-align: right;
}

.balanc .mv-card--right .itemmv-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.balanc .mv-title--right {
  text-align: right;
}

.balanc .mv-text--right {
  margin-left: auto;
  text-align: right;
}

.balanc .mv-bubble {
  width: 64px;
  height: 64px;
  position: relative;
  background: #ededed;
  border-radius: 50%;
  z-index: 4;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.balanc .mv-bubble svg {
  fill: #fe9118;
  width: 40px;
  height: 40px;
}

.balanc .mv-bubble svg path {
  fill: #fe9118;
}

.balanc .mv-bubble img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center {
  position: relative;
  width: 200px;
  height: 280px;
  z-index: 1;
}

.balanc .mv-center:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0A386C;
  background: -webkit-gradient(linear, left bottom, left top, from(#0a386c), to(#f48a1d));
  background: linear-gradient(0deg, #0a386c 0%, #f48a1d 100%);
  -webkit-box-shadow: 0 18px 18px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 18px rgba(0, 0, 0, 0.18);
}

.balanc .mv-center .mv-center__shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 45%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 60%);
  opacity: .65;
}

.balanc .mv-center__mid {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

.balanc .mv-center__mid img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center__topIcon {
  right: 42px;
  top: 40px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

.balanc .mv-center__topIcon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center__img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 4;
  display: block;
  pointer-events: none;
}

@media (max-width: 1050px) {
  .balanc .mv-container {
    height: auto;
  }
  .balanc .mv-card {
    position: relative;
    width: 92%;
    max-width: 640px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 14px auto;
    text-align: left;
    padding: 0;
  }
  .balanc .mv-card--left {
    padding-right: 0;
  }
  .balanc .mv-card--right {
    padding-left: 0;
    text-align: left;
  }
  .balanc .mv-title--right, .balanc .mv-text--right {
    text-align: left;
    margin-left: 0;
  }
  .balanc .mv-center {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: 22px auto;
  }
}

.bg-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}

.bg-bars .bar {
  width: 60px;
  height: 200px;
  background-color: #817d7d0a;
}

.who-we-are-shep1 {
  position: relative;
  padding: 0px 24px;
  top: 0px;
  background-image: url(../../img/back-shev1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 700px;
  /* Section */
  /* Waves background (light) */
  /* Container */
  /* Grid */
  /* Card */
  /* Orange special card */
  /* Responsive */
}

.who-we-are-shep1 .spec {
  position: relative;
  padding: 40px 0 70px;
  overflow: hidden;
}

.who-we-are-shep1 .spec__bg {
  position: absolute;
  inset: 0;
  opacity: .9;
  pointer-events: none;
}

.who-we-are-shep1 .spec__container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.who-we-are-shep1 .spec__title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .3px;
  color: #0A396D;
  margin-bottom: 58px;
}

.who-we-are-shep1 .spec__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.who-we-are-shep1 .card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  -webkit-box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  min-height: 140px;
  border: 0;
}

.who-we-are-shep1 .card__title {
  font-size: 18px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 10px;
}

.who-we-are-shep1 .card__text {
  font-size: 12px;
  line-height: 1.65;
  color: #0A396D;
}

.who-we-are-shep1 .card--orange {
  background: #f68b1e;
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.who-we-are-shep1 .card--tilt {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.who-we-are-shep1 .card__title--white {
  color: #fff;
}

.who-we-are-shep1 .card__text--white {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .who-we-are-shep1 .spec__title {
    font-size: 34px;
  }
  .who-we-are-shep1 .spec__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .who-we-are-shep1 .card--tilt {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

@media (max-width: 620px) {
  .who-we-are-shep1 .spec__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .who-we-are-shep1 .card--tilt {
    -webkit-transform: none;
            transform: none;
  }
}

.who-we-are-shep2 {
  position: relative;
  padding: 0px 24px;
  top: 100px;
  background-image: url(../../img/back-shev2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 700px;
  /* Section */
  /* Background waves */
  /* Container */
  /* Title */
  /* Happy word with curved underline */
  /* Description */
  /* Responsive */
}

.who-we-are-shep2 .happy {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.who-we-are-shep2 .happy__bg {
  position: absolute;
  inset: -40px -40px -40px -40px;
  opacity: .6;
  pointer-events: none;
}

.who-we-are-shep2 .happy__container {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.who-we-are-shep2 .happy__title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  color: #0A396D;
  margin-bottom: 18px;
}

.who-we-are-shep2 .happy__word {
  position: relative;
  color: #f59a1b;
  display: inline-block;
  padding-bottom: 10px;
}

.who-we-are-shep2 .happy__word span {
  color: #0A396D;
}

.who-we-are-shep2 .happy__word::after {
  content: "";
  position: absolute;
  left: 67px;
  bottom: -20px;
  width: 40px;
  height: 20px;
  background-image: url(../../img/shep-sm.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 55;
}

.who-we-are-shep2 .happy__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #0A396D;
  max-width: 620px;
  margin: 0 auto;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .who-we-are-shep2 .happy__title {
    font-size: 34px;
  }
}

.question {
  /* LEFT */
  /* RIGHT */
  /* Responsive */
}

.question .why {
  padding: 55px 0 70px;
}

.question .why__container {
  margin: 0 auto;
}

.question .why__title {
  font-size: 40px;
  font-weight: 900;
  color: #0a396d;
  text-align: center;
  margin-bottom: 34px;
  letter-spacing: .2px;
}

.question .why__brand {
  color: #f68b1e;
}

.question .why__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.question .why__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 420px;
          flex: 0 0 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.question .why__qmark {
  width: 310px;
  max-width: 100%;
  height: auto;
  display: block;
}

.question .why__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.question .why__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.question .why__arrow {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-top: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.question .why__text {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.75;
  color: #0a396d;
}

@media (max-width: 980px) {
  .question .why__title {
    font-size: 32px;
  }
  .question .why__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
  .question .why__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .question .why__qmark {
    width: 300px;
  }
  .question .why__text {
    max-width: 680px;
    text-align: center;
  }
  .question .why__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.question .why__title p {
  color: #7991ac;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

.graph {
  margin-top: 30px;
}

.graph img {
  width: 100%;
}

@media (max-width: 991px) {
  .who-we-are-shep,
  .who-we-are-shep1,
  .who-we-are-shep2 {
    min-height: auto;
  }
}

.who {
  position: relative;
  overflow: hidden;
}

/* Waves on sides (very light like screenshot) */
.who__waves {
  position: absolute;
  top: 10px;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  opacity: .55;
}

.who__waves--left {
  left: -110px;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}

.who__waves--right {
  right: -110px;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

.who__container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* The big white curved panel */
.who__panel {
  position: relative;
  background: #eeeeee;
  border-radius: 0 0 50% 50%;
  padding: 150px 60px 120px;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.22);
  margin-bottom: 60px;
}

/* extra curve depth shadow feel */
.who__panel:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 120px;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: .35;
  pointer-events: none;
}

/* Title + line */
.who__title {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #0A396D;
  margin-bottom: 14px;
}

.who__line {
  height: 2px;
  background: #F68B1E;
  width: 78%;
  margin: 0 auto 26px;
  border-radius: 2px;
}

/* Text */
.who__text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: #0A396D;
  font-size: 13px;
  line-height: 1.9;
}

.who__text p {
  margin: 0 0 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .who__panel {
    padding: 36px 22px 60px;
    border-radius: 0 0 180px 180px / 0 0 140px 140px;
  }
  .who__title {
    font-size: 32px;
  }
  .who__line {
    width: 90%;
  }
}

.who-OurServices .who__panel {
  background: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.who-OurServices {
  position: relative;
  padding: 0px 24px;
  top: 0px;
  background-image: url(../../img/back-shev1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 700px;
  /* Section */
  /* Waves background (light) */
  /* Container */
  /* Grid */
  /* Card */
  /* Orange special card */
  /* Responsive */
}

.who-OurServices .spec {
  position: relative;
  padding: 40px 0 70px;
  overflow: hidden;
}

.who-OurServices .spec__bg {
  position: absolute;
  inset: 0;
  opacity: .9;
  pointer-events: none;
}

.who-OurServices .spec__container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.who-OurServices .spec__title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .3px;
  color: #0A396D;
  margin-bottom: 58px;
}

.who-OurServices .spec__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.who-OurServices .card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  -webkit-box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  min-height: 140px;
  border: 0;
}

.who-OurServices .card__title {
  font-size: 18px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 10px;
}

.who-OurServices .card__text {
  font-size: 12px;
  line-height: 1.65;
  color: #0A396D;
}

.who-OurServices .card--orange {
  background: #f68b1e;
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.who-OurServices .card--tilt {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.who-OurServices .card__title--white {
  color: #fff;
}

.who-OurServices .card__text--white {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .who-OurServices .spec__title {
    font-size: 34px;
  }
  .who-OurServices .spec__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .who-OurServices .card--tilt {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

@media (max-width: 620px) {
  .who-OurServices .spec__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .who-OurServices .card--tilt {
    -webkit-transform: none;
            transform: none;
  }
}

.add-sec {
  text-align: center;
}

.vid-sec {
  position: relative;
}

.vid-sec img {
  width: 100%;
}

.vid-sec::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-image: url(../../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 5;
}

.vid-sec2::after {
  content: "";
  position: absolute;
  inset-inline-start: -60px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-image: url(../../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 5;
  rotate: 180deg;
}

.add-sec img {
  width: 100%;
}

.contact-us {
  padding: 40px 20px;
  border-radius: 30px 0;
  background-color: #1D3C5E;
}

.google {
  border-radius: 7px;
  overflow: hidden;
}

.soc {
  padding: 20px;
}

.soc ul li {
  margin-bottom: 20px;
}

.soc ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.soc ul li a span {
  color: #fff;
}

/* Overlay */
.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}

/* Logo PNG animation */
.loader-logo {
  width: 120px;
  height: auto;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

/* Pulse animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
}

/*end genral*/
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

@media (max-width: 1200px) {
  .gw-tab-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gtc__img {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .dog {
    overflow: hidden;
  }
  .img-kid {
    display: none;
  }
  .owl-slider .owl-dots {
    right: 10px;
    bottom: 30%;
  }
  .fl-ro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .half-back::after {
    width: 100%;
    height: 250px;
  }
  .o1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .o2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .o3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .ov-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 50%;
  }
  .elected-img {
    margin-top: 20px;
  }
  .elected-img img {
    width: 100%;
  }
  .border-r,
  .border-l {
    border: 0;
  }
  .nave-responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 15px;
  }
  .nave-responsive a img {
    width: 120px;
  }
  .in-title h2 {
    margin-bottom: 20px;
  }
  .legislation .ovi-30 {
    width: 100%;
  }
  .legislation {
    background-size: cover;
  }
  .overview {
    top: -200px;
  }
  .overview::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: -30vw;
    background-color: #112334;
    height: 100%;
    width: 30vw;
  }
}

@media (max-width: 768px) {
  .over-top {
    padding: 0;
  }
  .header-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ht__info {
    margin-bottom: 50px;
  }
  .list-contact {
    display: none;
  }
  .item-foot {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 100%;
  }
  .national-info p,
  .iup-info p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .main-card {
    margin-top: 20px;
  }
  .main-card a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 575.98px) {
  .gw-tab-container .gtc-tab .nav-item {
    min-width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */