@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Medium.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Book.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-SemiBold.ttf);
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "ExpoArabic", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #fff;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(226, 214, 193, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  transform: translateY(0px);
  width: 50px;
  height: 50px;
  border: 1px solid black;
  background-color: transparent;
  bottom: 0;
}
.swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  z-index: 9;
  background: url("../images/icons/arrow.svg") center/contain no-repeat;
  color: transparent;
  filter: var(--dark-filter);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  border-color: var(--primary-color);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
  height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  filter: var(--light-filter) !important;
}

.swiper-button-prev {
  left: calc(50% - 55px) !important;
  right: unset !important;
}

.swiper-button-next {
  left: unset !important;
  right: calc(50% - 55px) !important;
}
.swiper-button-next::after {
  transform: scaleX(-1);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(1, 1, 1);
  }
  100% {
    transform: rotate(10deg) scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.3);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0% {
    background-position-x: 0;
    background-position-y: bottom;
  }
  100% {
    background-position-x: -1000px;
    background-position-y: bottom;
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px) rotate(-90deg);
  }
  50% {
    transform: translateY(-2px) rotate(-90deg);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #BED73C;
  --secondary-color: #02ACEE;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(100%) sepia(58%) saturate(2583%) hue-rotate(10deg) brightness(99%) contrast(70%);
  --secondary-filter: invert(51%) sepia(62%) saturate(1960%) hue-rotate(162deg) brightness(96%) contrast(99%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
  width: 160px;
  height: 50px;
  position: relative;
  z-index: 9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
  background-color: var(--light-color);
}
.custom-btn::after {
  left: 0;
}
.custom-btn::before {
  right: 0;
}
.custom-btn span {
  font-size: 16px;
  font-weight: 500;
}
.custom-btn.primary-btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.secondary-btn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.custom-btn.secondary-btn span {
  color: var(--light-color);
}
.custom-btn.secondary-btn:hover span {
  color: var(--secondary-color);
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 50%;
}
.custom-btn:hover span {
  animation: storm 0.3s linear both;
}

.general-section {
  width: 100%;
  padding: 40px 0px;
  position: relative;
  z-index: 9;
}
.general-section.page-links {
  padding: 50px 0px 30px !important;
}
@media (min-width: 960px) {
  .general-section {
    padding: 100px 0px 70px;
  }
}
.general-section.gray-bk {
  background-color: #f9f9f9;
}

.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .heading {
    width: 40%;
    margin: 0px auto 80px;
  }
  .heading.small-heading {
    width: 80% !important;
  }
}
.heading h1 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-color);
}
.heading h1 span {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 900;
}
.heading h1 span.secondary {
  color: var(--secondary-color);
}
@media (min-width: 960px) {
  .heading h1 {
    font-size: 45px;
  }
  .heading h1 span {
    font-size: 45px;
  }
}
.heading p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px 0px;
}

.navbar {
  width: 100%;
  padding: 15px 0px;
  background-color: var(--light-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s linear;
}
.navbar.scrolled {
  padding: 10px 0px;
  box-shadow: 0px 0px 10px rgba(190, 215, 60, 0.2);
}
.navbar.scrolled .brand-name img {
  height: 70px;
}
.navbar .contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
}
.navbar .contain .hamburger {
  display: none;
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 150px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .navbar .contain .brand-name img {
    width: 100px;
  }
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-color);
}
@media (max-width: 1200px) and (min-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link {
    font-size: 10px;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link.dropdown-toggle {
  padding-inline-end: 28px;
  position: relative;
}
.navbar .contain .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  border: 0px;
  top: calc(50% - 8px);
  left: 0;
  z-index: -1;
  filter: var(--primary-filter) !important;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav .nav-item .nav-link.dropdown-toggle[aria-expanded=true] {
  color: var(--primary-color);
}
.navbar .contain .navbar-nav .nav-item .nav-link.dropdown-toggle[aria-expanded=true]::before {
  transform: scaleX(1);
}
.navbar .contain .navbar-nav .nav-item .nav-link.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color);
}
.navbar .contain .navbar-nav .dropdown-menu {
  min-width: 264.5px;
  padding: 5px 0px;
  border: 0px;
  box-shadow: 0px 3px 30px rgba(191, 191, 191, 0.16);
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}
.navbar .contain .navbar-nav .dropdown-menu .dropdown-item {
  width: 100%;
  display: block;
  padding: 10px 21px;
  border-bottom: 1px solid #EEEEEE;
  font-size: 14px;
  font-weight: 900;
  text-align: start;
  color: var(--dark-color);
  position: relative;
  z-index: 9;
}
.navbar .contain .navbar-nav .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/check_circle.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 20px;
  filter: var(--primary-filter);
  transform: scale(0) rotate(360deg);
  transition: all 0.3s linear;
}
.navbar .contain .navbar-nav .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0px;
}
.navbar .contain .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.navbar .contain .navbar-nav .dropdown-menu .dropdown-item:hover::after {
  transform: scale(1) rotate(0deg);
}

header {
  margin-top: 100px;
}
@media (max-width: 992px) {
  header {
    margin-top: 97px;
  }
}
@media (max-width: 992px) {
  header .swiper-wrapper {
    padding-bottom: 100px;
  }
}
header .swiper-slide {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 960px) {
  header .swiper-slide {
    height: 150px;
  }
}
header .swiper-slide .intro-shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
header .swiper-slide .data {
  position: relative;
  z-index: 9;
}
header .swiper-slide .data h1 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--light-color);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.6s linear;
}
header .swiper-slide .data h1 span {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 900;
  display: block;
  margin-top: 15px;
}
@media (min-width: 960px) {
  header .swiper-slide .data h1 span {
    font-size: 60px;
  }
}
@media (min-width: 960px) {
  header .swiper-slide .data h1 {
    font-size: 60px;
  }
}
header .swiper-slide .data p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0px 0px;
  opacity: 0.85;
  text-align: justify;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform 0.6s linear;
}
header .swiper-slide .data .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 10px;
  margin-top: 30px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s linear;
}
header .swiper-slide-active .data h1, header .swiper-slide-active .data p, header .swiper-slide-active .data .flex-data {
  transform: translate(0px, 0px);
  opacity: 1;
}
header .swiper-button-next, header .swiper-button-prev {
  border-color: var(--primary-color);
  bottom: 50px;
}
header .swiper-button-next::after, header .swiper-button-prev::after {
  filter: var(--primary-filter);
}
header .swiper-button-prev {
  right: 16% !important;
  left: unset !important;
}
@media (max-width: 960px) {
  header .swiper-button-prev {
    right: 20% !important;
  }
}
header .swiper-button-next {
  left: unset !important;
  right: 12% !important;
}
@media (max-width: 960px) {
  header .swiper-button-next {
    right: 5% !important;
  }
}
header .swiper-button-next::after {
  transform: scaleX(-1);
}

.sub-header {
  width: 100%;
  padding: 150px 0px 50px;
  background-color: var(--primary-color);
}
@media (max-width: 992px) {
  .sub-header {
    padding: 150px 0px 50px;
  }
}
.sub-header .contain {
  width: 100%;
  text-align: center;
}
.sub-header .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}

.about-us .image-contain {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (min-width: 960px) {
  .about-us .image-contain {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1200px) and (min-width: 992px) {
  .about-us .image-contain {
    width: 300px !important;
    height: 300px !important;
  }
}
.about-us .image-contain::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/about/logo_pattern.svg") center/contain no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
}
.about-us .image-contain img {
  width: 75%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
}
.about-us .contain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-us .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .about-us .contain h1 {
    font-size: 30px;
  }
}
.about-us .contain b {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
}
.about-us .contain p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
  margin: 10px 0px;
}
.about-us .contain .custom-btn {
  width: 200px;
  margin-top: 20px;
}

.about-montaja .nav {
  gap: 10px;
  padding: 15px 10px;
  width: 100%;
  border-radius: 10px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 172, 238, 0.2);
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  .about-montaja .nav {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
}
.about-montaja .nav li {
  margin: 0px;
  padding: 0px;
}
.about-montaja .nav li a {
  border: 0px;
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid var(--secondary-color);
  background-color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  padding: 0px;
  color: var(--secondary-color);
}
@media (max-width: 960px) {
  .about-montaja .nav li a {
    width: 105px;
    height: 39px;
  }
}
.about-montaja .nav li a.active, .about-montaja .nav li a:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
  animation: storm 0.4s linear;
}
.about-montaja .data {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  border-radius: 14px;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 172, 238, 0.2);
}
@media (min-width: 960px) {
  .about-montaja .data {
    border-radius: 20px;
  }
}
.about-montaja .data b {
  color: var(--secondary-color);
  font-size: 20px;
  display: block;
  margin: 15px 0px;
  font-weight: 900;
}
.about-montaja .data p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}
.about-montaja .data p:last-child {
  margin-bottom: 0px;
}
.about-montaja .box {
  width: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 172, 238, 0.2);
  border-radius: 10px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s linear;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
@media (min-width: 960px) {
  .about-montaja .box {
    border-radius: 20px;
  }
}
.about-montaja .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--secondary-filter);
}
.about-montaja .box h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
}
.about-montaja .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.about-montaja .box:hover {
  transform: translateY(-10px);
}
.about-montaja .box:hover img {
  animation: storm 0.4s linear both;
}
.about-montaja .box:hover h2 {
  color: var(--secondary-color);
}
@media (max-width: 960px) {
  .about-montaja .box {
    padding: 15px 5px;
    gap: 10px;
    border-radius: 10px;
  }
  .about-montaja .box img {
    width: 60px;
    height: 60px;
  }
  .about-montaja .box h2 {
    font-size: 17px;
  }
  .about-montaja .box p {
    font-size: 9px;
  }
}
.about-montaja .tab-pane.fade {
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.about-montaja .tab-pane.fade.show.active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.banks .box {
  width: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  border: 1px solid rgba(190, 215, 60, 0.2);
  border-radius: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s linear;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.banks .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.banks .box h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 0px;
}
.banks .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.banks .box:hover {
  transform: translateY(-10px);
}
.banks .box:hover img {
  animation: storm 0.4s linear both;
}
.banks .box:hover h2 {
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .banks .box {
    padding: 15px 5px;
    gap: 15px;
    border-radius: 10px;
  }
  .banks .box img {
    width: 60px;
    height: 60px;
  }
  .banks .box h2 {
    font-size: 17px;
  }
  .banks .box p {
    font-size: 9px;
  }
}

.services .box {
  width: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  border: 1px solid rgba(2, 172, 238, 0.2);
  border-radius: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s linear;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.services .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services .box h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 0px;
}
.services .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box:hover img {
  animation: storm 0.4s linear both;
}
.services .box:hover h2 {
  color: var(--secondary-color);
}
@media (max-width: 960px) {
  .services .box {
    padding: 15px 5px;
    gap: 15px;
    border-radius: 10px;
  }
  .services .box img {
    width: 60px;
    height: 60px;
  }
  .services .box h2 {
    font-size: 17px;
  }
  .services .box p {
    font-size: 9px;
  }
}

.projects .project-box {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(190, 215, 60, 0.2);
  text-align: center;
  transition: all 0.3s linear;
  padding: 5px 10px;
}
@media (min-width: 960px) {
  .projects .project-box {
    padding: 10px 15px;
  }
}
.projects .project-box .image-contain {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  height: 110px;
}
@media (min-width: 960px) {
  .projects .project-box .image-contain {
    height: 250px;
  }
}
.projects .project-box .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear;
}
.projects .project-box h2 {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark-color);
  padding: 10px 0px 0px;
  margin-bottom: 0px;
}
@media (min-width: 960px) {
  .projects .project-box h2 {
    font-size: 20px;
    padding: 20px 0px 0px;
  }
}
.projects .project-box p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0px;
}
@media (max-width: 960px) {
  .projects .project-box p {
    font-size: 10px;
    margin: 14px 0px;
  }
}
.projects .project-box .custom-btn {
  width: 100%;
}
.projects .project-box:hover {
  transform: translateY(-10px);
}
.projects .project-box:hover .image-contain img {
  transform: scale(1.2);
}
.projects .project-box:hover h2 {
  color: var(--primary-color);
}
.projects .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.projects .button-contain .custom-btn {
  width: 200px;
}

.numbers .contain {
  width: 100%;
  padding: 15px 10px;
  background-color: var(--light-color);
  border-radius: 20px;
  border: 1px solid rgba(2, 172, 238, 0.2);
}
@media (min-width: 960px) {
  .numbers .contain {
    padding: 40px 20px;
  }
}
.numbers .contain .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  gap: 5px;
  transition: all 0.3s linear;
}
.numbers .contain .box img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--secondary-filter);
}
@media (min-width: 960px) {
  .numbers .contain .box img {
    width: 100px;
    height: 100px;
  }
}
.numbers .contain .box p {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 0px;
}
@media (min-width: 960px) {
  .numbers .contain .box p {
    font-size: 40px;
  }
}
.numbers .contain .box h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-color);
}
.numbers .contain .box:hover {
  transform: translateY(-10px);
}
.numbers .contain .box:hover img {
  animation: storm 0.4s linear both;
}

.partners .heading, .projects .heading {
  margin-bottom: 30px;
}
.partners .swiper-wrapper , .projects .swiper-wrapper{
  padding: 10px 0px 90px;
}
.partners img{
  width: 100%;
  height: 80px;
  opacity: 0.5;
  transition: all 0.3s linear;
  -o-object-fit: contain;
     object-fit: contain;
}
 .projects img {
  width: 100%;
  height: 420px;
  opacity: 0.5;
  transition: all 0.3s linear;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners img:hover ,.projects img:hover {
  transform: translateY(-10px);
  opacity: 1;
}
.partners .swiper-button-next, .partners .swiper-button-prev,
.projects .swiper-button-next, .projects .swiper-button-prev{
  border-color: var(--primary-color);
}
.partners .swiper-button-next::after, .partners .swiper-button-prev::after,
.projects .swiper-button-next::after, .projects .swiper-button-prev::after
{
  filter: var(--primary-filter);
}

.testimonials .testimonials-box {
  width: 100%;
  padding: 52px 35px;
  border: 1px solid rgba(2, 172, 238, 0.06);
  background-color: var(--light-color);
  border-radius: 40px;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  transition: all 0.3s linear;
}
.testimonials .testimonials-box .user-img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.testimonials .testimonials-box .user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.testimonials .testimonials-box .contain {
  width: calc(100% - 140px);
}
.testimonials .testimonials-box .contain p {
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(2, 172, 238, 0.1);
}
.testimonials .testimonials-box .contain .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.testimonials .testimonials-box .contain .flex-data .data {
  width: -moz-fit-content;
  width: fit-content;
}
.testimonials .testimonials-box .contain .flex-data .data h2 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.testimonials .testimonials-box .contain .flex-data .data span {
  color: var(--gray-color);
  font-size: 0.8rem;
  font-weight: 500;
}
.testimonials .testimonials-box .contain .flex-data .qoute-icon {
  width: 65px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.testimonials .testimonials-box:hover {
  transform: translateY(-10px);
}
.testimonials .testimonials-box:hover .qoute-icon {
  animation: rotation 1s linear infinite;
}
.testimonials .swiper-wrapper {
  padding: 20px 0px 100px;
}
.testimonials .heading {
  margin-bottom: 30px;
}
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  border-color: var(--secondary-color);
}
.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  filter: var(--secondary-filter);
}
.testimonials .swiper-button-next::before,
.testimonials .swiper-button-prev::before {
  background-color: var(--secondary-color);
}
.testimonials .swiper-button-next:hover::after,
.testimonials .swiper-button-prev:hover::after {
  filter: var(--light-filter);
}

.contact.gray-color {
  background-color: rgba(0, 0, 0, 0.02);
}
.contact .contact-data {
  width: 100%;
  padding: 50px 30px;
  background-color: var(--light-color);
  border-radius: 50px;
}
@media (max-width: 960px) {
  .contact .contact-data {
    padding: 20px 10px;
    border-radius: 20px;
  }
}
.contact .form-data {
  width: 100%;
  margin-bottom: 18px;
  position: relative;
  z-index: 9;
}
.contact .form-data.phone-number-input {
  z-index: 99 !important;
}
.contact .form-data.phone-number-input.new-phone-number {
  z-index: 991 !important;
}
.contact .form-data .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
  margin: 0px;
}
.contact .form-data .form-group.dropdown-item {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid rgba(91, 157, 21, 0.08) !important;
}
.contact .form-data .form-group.dropdown-item .form-control {
  width: 100% !important;
}
.contact .form-data .form-group.dropdown-item:active {
  background: transparent !important;
}
.contact .form-data .form-group.phone-number {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  border: 1px solid rgba(2, 172, 238, 0.1);
  border-radius: 10px;
}
.contact .form-data .form-group.phone-number .dropdown {
  border-inline-end: 1px solid rgba(2, 172, 238, 0.1);
}
.contact .form-data .form-group.phone-number .dropdown .dropdown-toggle {
  width: 45px;
  height: 50px;
  border: 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.contact .form-data .form-group.phone-number .dropdown .dropdown-toggle img {
  width: 30px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.contact .form-data .form-group.phone-number .dropdown .dropdown-toggle::after {
  display: none;
}
.contact .form-data .form-group.phone-number .dropdown-menu {
  width: 190px;
  height: 240px;
  overflow-y: scroll;
  padding: 20px 15px;
  border: 1px solid rgba(2, 172, 238, 0.1);
  border-radius: 0px;
  background-color: var(--light-color);
  display: block;
  transform: translateY(20px) translateX(0px) !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  right: 0px !important;
  top: 100% !important;
  z-index: 999;
}
.contact .form-data .form-group.phone-number .dropdown-menu input {
  height: 40px !important;
}
.contact .form-data .form-group.phone-number .dropdown-menu::-webkit-scrollbar-track {
  background: transparent !important;
}
.contact .form-data .form-group.phone-number .dropdown-menu a {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  padding: 12px 0px;
  border-bottom: 1px solid #EBEBEB;
}
.contact .form-data .form-group.phone-number .dropdown-menu a:first-child {
  padding-top: 0px;
}
.contact .form-data .form-group.phone-number .dropdown-menu a:last-child {
  padding-bottom: 0px;
  border: 0px;
}
.contact .form-data .form-group.phone-number .dropdown-menu a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 10px;
}
.contact .form-data .form-group.phone-number .dropdown-menu a span {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
}
.contact .form-data .form-group.phone-number .dropdown-menu a:hover {
  background: transparent;
}
.contact .form-data .form-group.phone-number .dropdown-menu a:hover img {
  animation: tada 0.3s linear both;
}
.contact .form-data .form-group.phone-number .dropdown-menu a:hover span {
  color: var(--primary-color);
}
.contact .form-data .form-group.phone-number .dropdown-menu.show {
  transform: translateY(5px) translateX(0px) !important;
  opacity: 1;
  visibility: visible;
}
.contact .form-data .form-group.phone-number .form-control {
  width: calc(100% - 55px);
  border: 0px;
  padding-inline-start: 0px;
}
.contact .form-data .form-group.phone-number:hover {
  border-color: var(--secondary-color);
}
.contact .form-data .form-group.phone-number:hover img {
  animation: none;
}
.contact .form-data .form-group.phone-number:hover .dropdown .dropdown-toggle {
  border-color: var(--secondary-color) !important;
}
.contact .form-data .form-group.text-area {
  height: 100px;
}
.contact .form-data .form-group.text-area .icon {
  top: 15px;
}
.contact .form-data .form-group.text-area .form-control {
  padding-top: 15px;
}
.contact .form-data .form-group .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
  z-index: 9;
  pointer-events: none;
  filter: var(--secondary-filter);
}
.contact .form-data .form-group .form-control {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: var(--light-color);
  padding-inline-start: 50px;
  font-size: 16px;
  resize: none;
  border: 1px solid rgba(2, 172, 238, 0.1);
  font-weight: 500;
  color: var(--dark-color);
}
.contact .form-data .form-group .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-color);
}
.contact .form-data .form-group .form-control::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-color);
}
.contact .form-data .form-group.select-data::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("../images/contact/arrow.svg") center/contain no-repeat;
  top: calc(50% - 7.5px);
  left: 15px;
  z-index: 9;
  pointer-events: none;
}
.contact .form-data .form-group.select-data .form-control {
  color: var(--gray-color);
}
.contact .form-data .form-group:hover img {
  animation: tada 0.3s linear both;
}
.contact .form-data .form-group:hover .form-control {
  border-color: var(--secondary-color);
}
.contact .form-data .error {
  display: flex;
  align-items: center;
  align-content: center;
  margin-top: 10px !important;
  position: relative;
  z-index: 9;
  padding-inline-start: 40px;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}
.contact .form-data .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 0;
  z-index: -1;
}
.contact .custom-btn {
  width: 100%;
  margin-top: 24px;
}
.contact .contact-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-inline-start: 80px;
  position: relative;
  z-index: 9;
}
@media (max-width: 960px) {
  .contact .contact-info {
    padding: 20px 0px 0px;
  }
  .contact .contact-info::after {
    width: 100% !important;
    height: 1px !important;
    top: 0 !important;
    right: 0px !important;
  }
}
.contact .contact-info::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  background-color: #ddd;
  top: 25%;
  right: 25px;
  z-index: -1;
}
.contact .contact-info li {
  width: 100%;
}
.contact .contact-info li.title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 15px;
}
.contact .contact-info li .box {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}
.contact .contact-info li .box .image-contain {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
.contact .contact-info li .box .image-contain img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.contact .contact-info li .box .contain {
  width: calc(100% - 90px);
}
.contact .contact-info li .box .contain p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.contact .contact-info li .box .contain span, .contact .contact-info li .box .contain a {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-color);
}
.contact .contact-info li .box .contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 6px;
}
.contact .contact-info li .box:hover {
  transform: translateY(-10px);
}
.contact .contact-info li .box:hover p {
  color: var(--secondary-color);
}
.contact .heading-data {
  width: 100%;
  margin: 40px 0px 40px;
  text-align: center;
}
.contact .heading-data h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.contact .location-box {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  display: block;
  background-color: var(--light-color);
  border-radius: 20px;
  transition: all 0.3s linear;
}
.contact .location-box .image-contain {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px auto;
}
.contact .location-box .image-contain img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.contact .location-box p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-color);
  margin: 20px 0px;
}
.contact .location-box span, .contact .location-box a {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-color);
}
.contact .location-box:hover {
  transform: translateY(-10px);
}
.contact .location-box:hover p {
  color: var(--primary-color);
}
.contact .swiper-wrapper {
  padding: 20px 0px 100px;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 40px;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content .modal-body .form-contain {
  padding: 60px 40px;
}
.modal-dialog .modal-content .modal-body .form-contain .form-control {
  background-color: #FBFBFB;
}
.modal-dialog .modal-content .modal-body .form-contain .text-area {
  height: 140px;
}
.modal-dialog .modal-content .modal-body .form-contain .custom-btn {
  width: 100% !important;
}
.modal-dialog .modal-content .modal-body .form-contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .form-contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .links {
  width: 100%;
  padding: 40px 20px;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
}

footer {
  width: 100%;
  padding: 80px 0px 0px;
  background-color: var(--secondary-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
}
footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/footer/pattern.png") bottom left/100% 100% repeat-x;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  animation: wave 20s linear infinite !important;
}
@media (max-width: 960px) {
  footer::after {
    background-size: contain;
  }
}
footer .contain {
  width: 100%;
}
footer .contain .brand-name {
  width: 250px;
  height: 80px;
  display: flex;
  margin: auto;
}
footer .contain .brand-name img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  margin: 2rem 0px;
  text-align: center;
}
footer .contain .social {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 0.6rem;
}
footer .contain .social li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  border-radius: 50%;
  z-index: 9;
  overflow: hidden;
}
footer .contain .social li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
footer .contain .social li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--light-color);
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0);
  transition: all 0.4s linear;
}
footer .contain .social li a:hover img {
  animation: fadeInLeft 0.4s linear both;
  filter: var(--secondary-filter);
}
footer .contain .social li a:hover::after {
  transform: scale(1);
}
footer .copyrights {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}
footer .copyrights p {
  color: var(--light-color);
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0px;
  text-align: center;
  width: 100%;
}
footer .copyrights p span {
  color: var(--light-color);
  font-size: 0.8rem;
  font-weight: 700;
}

.fixed-icon {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 92;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.fixed-icon .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
}
.fixed-icon .icon.primary-color {
  background-color: var(--secondary-color);
  animation: pulse-shadow-primary 1s linear infinite alternate;
}
.fixed-icon .icon.secondary-color {
  background-color: #25D366;
  animation: pulse-shadow-green 1s linear infinite alternate;
}
.fixed-icon .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}

.page-links .box {
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  background-color: var(--light-color);
  border: 1px solid rgba(37, 211, 102, 0.16);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.3s linear;
  gap: 10px;
  align-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .page-links .box {
    padding: 15px 10px;
    justify-content: flex-start;
  }
  .page-links .box .custom-btn {
    width: 90% !important;
    height: 40px;
  }
  .page-links .box .custom-btn span {
    font-size: 13px;
  }
}
.page-links .box img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
}
@media (min-width: 992px) {
  .page-links .box img {
    width: 100px;
    height: 100px;
  }
}
.page-links .box p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 900;
  margin: 0px;
}
@media (max-width: 992px) {
  .page-links .box p {
    font-size: 12px;
  }
}
.page-links .box:hover {
  transform: translateY(-10px);
}
.page-links .box:hover img {
  animation: tada 0.4s linear both;
}

.team-work .box {
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.team-work .box .icon-box {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 10px;
  margin: 0px auto;
}
.team-work .box .icon-box img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.team-work .box .image-contain {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}
.team-work .box .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.3s linear;
}
.team-work .box .contain {
  width: 100%;
  padding: 20px 10px 0px;
  text-align: center;
}
.team-work .box .contain p {
  color: var(--dark-color);
  font-size: 13px;
  font-weight: 900;
  margin: 0px;
}
.team-work .box .contain h2 {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}
.team-work .box:hover {
  transform: translateY(-10px);
}
.team-work .box:hover .image-contain img {
  transform: scale(1.2);
}

.banner.small-banner .image-contain img {
  height: 400px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .banner.small-banner .image-contain img {
    height: 240px;
  }
}
.banner.small-banner .image-contain img:hover {
  transform: translateY(-10px);
}
.banner .image-contain img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .banner .image-contain img {
    height: 250px;
  }
}

@media (max-width: 999px) {
  .navbar.scrolled .navbar-nav {
    display: flex !important;
    top: 74px;
  }
  .navbar .socail-data,
  .navbar .form-contain {
    display: none;
  }
  .navbar .nav-list li a {
    width: 30px !important;
    height: 30px !important;
  }
  .navbar .nav-list li a img {
    width: 20px !important;
    height: 20px !important;
  }
  .navbar .brand-name img {
    width: 120px !important;
  }
  .navbar .hamburger {
    display: block !important;
  }
  .navbar .navbar-nav {
    width: 100%;
    position: absolute;
    top: 84px;
    right: -100%;
    height: 100vh;
    padding-bottom: 100px !important;
    overflow-y: scroll !important;
    overflow-x: hidden;
    background-color: var(--light-color);
    flex-direction: column !important;
    justify-content: flex-start;
    padding: 40px 20px;
    z-index: 999;
    transition: all 0.3s linear;
  }
  .navbar .navbar-nav::-webkit-scrollbar-thumb, .navbar .navbar-nav::-webkit-scrollbar-track {
    background: transparent !important;
  }
  .navbar .navbar-nav li {
    margin-inline-end: 0px !important;
    padding: 20px 0px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-nav li:last-child {
    border-bottom: 0px !important;
  }
  .navbar .navbar-nav li .nav-link {
    width: 100%;
    display: flex;
  }
  .navbar .navbar-nav li .nav-link::before {
    display: none;
  }
  .navbar .navbar-nav .dropdown-menu {
    width: 100% !important;
    position: relative !important;
    display: none !important;
    transform: translateY(0px);
    top: unset !important;
  }
  .navbar .navbar-nav .dropdown-menu.show {
    display: block !important;
  }
  .navbar .navbar-nav.active-nav {
    right: 0px !important;
  }
  .order-mobile-0 {
    order: 0 !important;
  }
  .order-mobile-1 {
    order: 1 !important;
  }
  .testimonials .testimonials-box {
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
    align-items: center;
    align-content: center;
  }
  .testimonials .testimonials-box .contain {
    width: 100%;
    padding: 20px 0px;
  }
}/*# sourceMappingURL=style.css.map */
