@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
  font-weight: 900;
}
html[dir=ltr] * {
  font-family: "Poppins", sans-serif;
}

@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ـLight.ttf");
  font-weight: 300;
}
@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ـBold.ttf");
  font-weight: 900;
}
html[dir=rtl] * {
  font-family: "ExpoArabic", sans-serif;
}

* {
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: var(--light-color);
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-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: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s linear;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.6);
  background-color: #fff;
}

@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: scale3d(1, 1, 1);
  }
  100% {
    transform: scale(1.4);
  }
}
@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);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@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);
  }
  50% {
    transform: translateY(-2px);
  }
}
@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;
  }
}
.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.loading-page.hide {
  transform: translateY(-100%);
}
.loading-page img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes lineHorizontal {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes lineVertical {
  0% {
    top: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
:root {
  --primary-color: #1c1c1d;
  --secondary-color: #000;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(6%) sepia(8%) saturate(441%) hue-rotate(202deg)
    brightness(93%) contrast(88%);
  --secondary-filter: invert(0%) sepia(93%) saturate(0%) hue-rotate(301deg)
    brightness(99%) contrast(108%);
  --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%);
}

.social {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.social li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.social li a:hover img {
  transform: scale(0.9);
}
.social.light-social li a img {
  filter: var(--light-filter);
}

.heading {
  width: 100%;
  padding: 20px 100px;
  padding-inline-start: 15%;
  background-color: #f6f6f6;
}
@media (max-width: 992px) {
  .heading {
    padding: 10px 30px;
  }
}
.heading h2 {
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 700;
  margin: 0px;
}
@media (max-width: 992px) {
  .heading h2 {
    font-size: 20px;
  }
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px 0px;
  transition: all 0.3s linear;
}
.navbar.scrolled {
  padding: 10px 0px;
}
@media (max-width: 992px) {
  .navbar.scrolled .navbar-nav {
    top: 80px !important;
  }
}
.navbar.scrolled, .navbar.dark-nav {
  background-color: var(--light-color);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .brand-name img, .navbar.dark-nav .brand-name img {
  filter: var(--secondary-filter) !important;
}
.navbar.scrolled .navbar-nav .nav-item .nav-link, .navbar.dark-nav .navbar-nav .nav-item .nav-link {
  color: var(--secondary-color) !important;
}
.navbar.scrolled .navbar-nav .nav-item .nav-link::after, .navbar.dark-nav .navbar-nav .nav-item .nav-link::after {
  background-color: var(--secondary-color) !important;
}
.navbar.scrolled .navbar-nav .social li a img, .navbar.dark-nav .navbar-nav .social li a img {
  filter: var(--secondary-filter) !important;
}
.navbar.scrolled .navbar-nav .social li a.lang, .navbar.dark-nav .navbar-nav .social li a.lang {
  border-color: var(--secondary-color) !important;
}
.navbar.scrolled .navbar-nav .social li a.lang span, .navbar.dark-nav .navbar-nav .social li a.lang span {
  color: var(--secondary-color) !important;
}
.navbar.scrolled .hamburger span, .navbar.dark-nav .hamburger span {
  background-color: var(--secondary-color) !important;
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  transition: 0.1s;
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 992px) {
  .navbar .contain .hamburger {
    display: none;
  }
}
.navbar .contain .hamburger span {
  width: 5px;
  height: 5px;
  background-color: var(--light-color);
  display: block;
  border-radius: 50%;
  position: absolute;
}
.navbar .contain .hamburger span:nth-child(1) {
  left: 0;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(2) {
  left: 12px;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(3) {
  right: 0;
  top: 0;
}
.navbar .contain .hamburger span:nth-child(4) {
  left: 0;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(5) {
  left: 12px;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(6) {
  right: 0px;
  top: 12px;
}
.navbar .contain .hamburger span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}
.navbar .contain .hamburger span:nth-child(8) {
  position: absolute;
  left: 12px;
  bottom: 0px;
}
.navbar .contain .hamburger span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}
.navbar .contain .hamburger span:hover {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.navbar .contain .hamburger.active span:nth-child(2) {
  left: 6px;
  top: 6px;
}
.navbar .contain .hamburger.active span:nth-child(4) {
  left: 6px;
  top: 18px;
}
.navbar .contain .hamburger.active span:nth-child(6) {
  right: 6px;
  top: 6px;
}
.navbar .contain .hamburger.active span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}
.navbar .contain .brand-name img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 25px;
  align-items: center;
  align-content: center;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    gap: 0px;
    padding: 20px 15px;
    background-color: var(--light-color);
    position: absolute;
    top: 100px;
    right: -100%;
    z-index: 99;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    transition: all 0.3s linear;
  }
  html[dir=rtl] .navbar .contain .navbar-nav {
    right: unset;
    left: -100%;
  }
  .navbar .contain .navbar-nav.active-nav {
    right: 0px;
  }
  html[dir=rtl] .navbar .contain .navbar-nav.active-nav {
    right: unset;
    left: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link {
    color: var(--dark-color);
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--light-color);
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link::after {
    background-color: var(--dark-color);
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
  font-weight: 700;
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
}
.navbar .contain .navbar-nav .social {
  margin-inline-start: 60px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .social {
    padding: 0px;
    margin: 0px;
  }
  .navbar .contain .navbar-nav .social li img {
    filter: var(--secondary-filter);
  }
}
.navbar .contain .navbar-nav .lang {
  border: 1px solid var(--light-color);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .lang {
    border-color: var(--secondary-color);
  }
}
.navbar .contain .navbar-nav .lang span {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .lang span {
    color: var(--secondary-color);
  }
}
.navbar .contain .navbar-nav .lang:hover span {
  animation: fadeInLeft 0.3s linear;
}

header {
  width: 100%;
  position: relative;
  z-index: 9;
}
header .swiper-wrapper {
  padding: 0px;
  margin: 0px;
}
header .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100vh;
}
header .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
header .swiper-button-prev,
header .swiper-button-next {
  width: 36px;
  height: 36px;
  border: 1px solid var(--light-color);
  border-radius: 50%;
}
header .swiper-button-prev::before,
header .swiper-button-next::before {
  display: none;
}
header .swiper-button-prev::after,
header .swiper-button-next::after {
  content: "" !important;
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  z-index: -1;
  border: 0px;
  background: url("../images/icons/arrow-right.svg") center/contain no-repeat;
}
header .swiper-button-prev {
  left: 5%;
  right: auto;
}
header .swiper-button-prev::after {
  transform: scaleX(-1);
}
html[dir=rtl] header .swiper-button-prev::after {
  transform: scaleX(1);
}
header .swiper-button-next {
  right: 5%;
  left: auto;
}
html[dir=rtl] header .swiper-button-next::after {
  transform: scaleX(-1);
}

.story {
  width: 100%;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.story .filter-data {
  width: 100%;
  padding: 40px 0px 80px;
}
.story .nav {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  align-content: flex-start;
  border: 0px;
  margin: 0px;
}
.story .nav .nav-item {
  padding: 0px;
  margin: 0px;
}
.story .nav .nav-item .tab-link {
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-color);
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.story .nav .nav-item .tab-link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  top: calc(50% - 4px);
  left: 0px;
  transform: scale(0);
  transition: all 0.3s linear;
}
html[dir=rtl] .story .nav .nav-item .tab-link::after {
  left: unset;
  right: 0px;
}
.story .nav .nav-item .tab-link.active {
  padding-inline-start: 20px;
  color: var(--dark-color);
  font-weight: 700;
}
.story .nav .nav-item .tab-link.active::after {
  transform: scale(1);
}
.story .data-contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .story .data-contain {
    margin-bottom: 20px;
  }
}
.story .data-contain.start-contain {
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .story .data-contain.margin-contain {
    margin-top: 110px;
  }
}
.story .data-contain p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.story .data-contain p span {
  font-weight: 900;
}
.story .data-contain h3 {
  font-size: 24px;
  font-weight: 700;
  color: #17232c;
  margin: 0px;
}
.story .data-contain .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.story .data-contain .list li {
  padding-inline-start: 30px;
  position: relative;
  z-index: 9;
  font-size: 16px;
  font-weight: 700;
  color: #17232c;
}
.story .data-contain .list li::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/icons/check.svg") center/contain no-repeat;
  top: calc(50% - 10px);
  left: 0px;
  z-index: -1;
}
html[dir=rtl] .story .data-contain .list li::after {
  left: unset;
  right: 0px;
}
.story .image-contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.story .image-contain img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.story .big-img {
  width: 100%;
  height: 444px;
  animation: translateY 1s ease-in-out infinite alternate;
}
.story .big-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.story .tab-pane.fade.show.active {
  animation: fadeInUp 0.3s linear;
}
@media (min-width: 992px) {
  .story .tab-pane.fade.show.active {
    animation: fadeInLeft 0.3s linear;
  }
}
.story .service-icon {
  display: none !important;
}
.story .services-grid {
  display: flex;
  gap: 0;
  height: 550px;
  width: 100%;
}
@media (max-width: 992px) {
  .story .services-grid {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
}
@media (min-width: 993px) {
  .story .services-grid:has(.service-card:not(.main-card):hover) .service-card.main-card {
    flex: 0 0 80px;
  }
  .story .services-grid:has(.service-card:not(.main-card):hover) .service-card.main-card .card-content h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 18px;
    margin-bottom: 0;
    position: absolute;
    bottom: 86px;
    left: 25px;
  }
  .story .services-grid:has(.service-card:not(.main-card):hover) .service-card.main-card .card-content p {
    opacity: 0;
    max-height: 0;
  }
  .story .services-grid:has(.service-card:not(.main-card):hover) .service-card.main-card .card-content .card-icon {
    position: absolute;
    bottom: 30px;
    left: 20px;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    display: none;
  }
}
.story .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  flex: 0 0 80px;
  transition: flex 0.5s ease-out;
}
@media (max-width: 992px) {
  .story .service-card {
    flex: none !important;
    width: 100%;
    height: 300px;
    transition: none;
  }
}
@media (min-width: 993px) {
  .story .service-card:hover {
    flex: 1;
  }
  .story .service-card:hover .card-content h3 {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 28px;
    margin-bottom: 16px;
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    animation: fadeInText 0.4s ease-out forwards;
  }
  .story .service-card:hover .card-content p {
    opacity: 1;
    max-height: 200px;
    margin-top: 0;
    animation: fadeInText 0.5s ease-out 0.2s forwards;
  }
  .story .service-card:hover .card-content .card-icon {
    position: relative;
    bottom: auto;
    left: auto;
    display: none;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .story .service-card:hover .card-bg::after {
    opacity: 0.5;
  }
}
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.story .service-card.main-card {
  flex: 1;
}
@media (max-width: 992px) {
  .story .service-card.main-card {
    flex: none !important;
    height: 350px;
  }
}
.story .service-card.main-card .card-content h3 {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  font-size: 28px;
  margin-bottom: 16px;
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
}
@media (max-width: 992px) {
  .story .service-card.main-card .card-content h3 {
    font-size: 22px;
  }
}
.story .service-card.main-card .card-content p {
  opacity: 1;
  max-height: 200px;
}
.story .service-card.main-card .card-content .card-icon {
  position: relative;
  bottom: auto;
  left: auto;
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  .story .service-card .card-content h3 {
    writing-mode: horizontal-tb !important;
    transform: rotate(0deg) !important;
    font-size: 22px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
  }
  .story .service-card .card-content p {
    opacity: 1 !important;
    max-height: 200px !important;
  }
  .story .service-card .card-content .card-icon {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-bottom: 16px !important;
    width: 40px !important;
    height: 40px !important;
  }
}
.story .service-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.story .service-card .card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story .service-card .card-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  transition: opacity 0.5s ease-out;
}
.story .service-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--light-color);
}
.story .service-card .card-content .card-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 30px;
  left: 20px;
  transition: all 0.5s ease-out;
}
html[dir=rtl] .story .service-card .card-content .card-icon {
  left: auto;
  right: 20px;
}
.story .service-card .card-content .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.story .service-card .card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  bottom: 20px;
  left: 25px;
}
html[dir=rtl] .story .service-card .card-content h3 {
  left: auto;
  right: 25px;
  transform: rotate(0deg);
}
@media (max-width: 992px) {
  .story .service-card .card-content h3 {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.story .service-card .card-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
@media (max-width: 992px) {
  .story .service-card .card-content p {
    opacity: 1;
    max-height: 200px;
  }
}
@media (max-width: 992px) {
  .story .container-fluid {
    padding: 0px;
  }
}
.story .line {
  width: 1px;
  height: 0;
  position: absolute;
  display: none;
  top: 0;
  z-index: -1;
  background-color: #F6F6F6;
}
.story .line.line-1 {
  left: 15%;
}
.story .line.line-2 {
  left: 50%;
}
.story .line.line-3 {
  left: 90%;
}
.story .line[data-aos=line-draw] {
  height: 0;
  transition-property: height;
}
.story .line[data-aos=line-draw].aos-animate {
  height: 100%;
}

.projects {
  width: 100%;
  position: relative;
  z-index: 9;
  overflow: hidden;
  padding-bottom: 60px;
}
.projects.Competitions {
  padding-top: 150px;
}
@media (max-width: 992px) {
  .projects.Competitions {
    padding-top: 120px;
  }
}
@media (max-width: 992px) {
  .projects {
    padding-bottom: 30px;
  }
}
.projects .projects-contain {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .projects .projects-contain {
    grid-template-columns: repeat(2, 1fr);
  }
}
.projects .projects-contain .project-box {
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .projects .projects-contain .project-box {
    height: 200px;
  }
}
.projects .projects-contain .project-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
@media (min-width: 993px) {
  .projects .projects-contain .project-box:hover:not(.revealed) img {
    transform: scale(1.05);
  }
  .projects .projects-contain .project-box:hover:not(.revealed) .data-contain {
    opacity: 1;
  }
  .projects .projects-contain .project-box:hover:not(.revealed) .data-contain h3 {
    opacity: 1;
    animation: fadeInUp 0.3s ease-out forwards;
  }
  .projects .projects-contain .project-box:hover:not(.revealed) .data-contain p {
    opacity: 0;
  }
}
.projects .projects-contain .project-box.revealed img {
  transform: scale(1.05);
}
.projects .projects-contain .project-box.revealed .data-contain {
  opacity: 1;
}
.projects .projects-contain .project-box.revealed .data-contain p, .projects .projects-contain .project-box.revealed .data-contain h3 {
  animation: fadeInUp 0.4s ease-out forwards;
}
.projects .projects-contain .project-box.revealed .data-contain h3 {
  animation-delay: 0.1s;
}
.projects .projects-contain .project-box.revealed .data-contain p:last-child {
  animation-delay: 0.2s;
}
.projects .projects-contain .project-box .data-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects .projects-contain .project-box .data-contain p, .projects .projects-contain .project-box .data-contain h3 {
  opacity: 0;
}
.projects .projects-contain .project-box .data-contain p {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.projects .projects-contain .project-box .data-contain h3 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0px;
  transition: opacity 0.3s ease;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.project-popup.active {
  display: block;
}
.project-popup .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
}
.project-popup .popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
@media (max-width: 992px) {
  .project-popup .popup-container {
    padding: 15px;
  }
}
.project-popup .popup-close {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--dark-color);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}
.project-popup .popup-close:hover {
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .project-popup .popup-close {
    top: 15px;
    left: 15px;
  }
}
.project-popup .popup-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
  padding: 50px 0 10px;
  min-height: 0;
}
@media (max-width: 992px) {
  .project-popup .popup-content {
    padding: 40px 0 10px;
  }
}
.project-popup .popup-side-image {
  flex: 0 0 15%;
  height: calc(100vh - 180px);
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  .project-popup .popup-side-image {
    display: none;
  }
}
@media (max-height: 800px) {
  .project-popup .popup-side-image {
    height: calc(100vh - 160px);
    max-height: 550px;
  }
}
@media (max-height: 600px) {
  .project-popup .popup-side-image {
    height: calc(100vh - 140px);
    max-height: 400px;
  }
}
.project-popup .popup-side-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
.project-popup .popup-side-image .side-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.project-popup .popup-side-image:hover::after {
  background-color: rgba(255, 255, 255, 0.3);
}
.project-popup .popup-side-image:hover .nav-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.project-popup .popup-side-image .nav-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border: 1px solid var(--dark-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: var(--dark-color);
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 2;
}
html[dir=rtl] .project-popup .popup-side-image .nav-arrow.next-image {
  transform: scaleX(-1);
}
html[dir=rtl] .project-popup .popup-side-image .nav-arrow.prev-image {
  transform: scaleX(-1);
}
@media (max-height: 600px) {
  .project-popup .popup-side-image .nav-arrow {
    width: 40px;
    height: 40px;
  }
  .project-popup .popup-side-image .nav-arrow svg {
    width: 18px;
    height: 18px;
  }
}
.project-popup .popup-image-wrapper {
  flex: 0 0 70%;
  height: calc(100vh - 180px);
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
@media (max-height: 800px) {
  .project-popup .popup-image-wrapper {
    height: calc(100vh - 160px);
    max-height: 550px;
  }
}
@media (max-height: 600px) {
  .project-popup .popup-image-wrapper {
    height: calc(100vh - 140px);
    max-height: 400px;
  }
}
@media (max-width: 992px) {
  .project-popup .popup-image-wrapper {
    flex: 1;
    width: 100%;
    height: calc(100vh - 200px);
    max-height: none;
  }
}
.project-popup .popup-image-wrapper .popup-main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.project-popup.info-open .popup-side-image,
.project-popup.info-open .popup-image-wrapper {
  height: calc(100vh - 380px);
  max-height: 450px;
}
@media (max-height: 800px) {
  .project-popup.info-open .popup-side-image,
  .project-popup.info-open .popup-image-wrapper {
    height: calc(100vh - 340px);
    max-height: 350px;
  }
}
@media (max-height: 600px) {
  .project-popup.info-open .popup-side-image,
  .project-popup.info-open .popup-image-wrapper {
    height: calc(100vh - 300px);
    max-height: 250px;
  }
}
@media (max-width: 992px) {
  .project-popup.info-open .popup-side-image,
  .project-popup.info-open .popup-image-wrapper {
    height: calc(100vh - 380px);
    max-height: none;
  }
}
.project-popup .popup-info-section {
  padding: 15px 60px;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.project-popup .popup-info-section.active {
  max-height: 250px;
  opacity: 1;
}
@media (max-height: 600px) {
  .project-popup .popup-info-section.active {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .project-popup .popup-info-section {
    padding: 15px;
  }
}
.project-popup .popup-info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
}
@media (max-width: 992px) {
  .project-popup .popup-info-section .info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.project-popup .popup-info-section .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.project-popup .popup-info-section .info-item .info-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-color);
}
.project-popup .popup-info-section .info-item .info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  text-align: right;
}
.project-popup .popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}
@media (max-width: 992px) {
  .project-popup .popup-footer {
    padding: 15px 0;
  }
}
.project-popup .popup-footer .footer-nav {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.project-popup .popup-footer .footer-nav:hover {
  color: var(--gray-color);
}
.project-popup .popup-footer .toggle-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  cursor: pointer;
}
.project-popup .popup-footer .toggle-info .arrow-down,
.project-popup .popup-footer .toggle-info .close-text {
  display: none;
}
.project-popup .popup-footer .toggle-info.active .arrow-up,
.project-popup .popup-footer .toggle-info.active .info-text {
  display: none;
}
.project-popup .popup-footer .toggle-info.active .arrow-down,
.project-popup .popup-footer .toggle-info.active .close-text {
  display: block;
}

footer {
  width: 100%;
  padding: 56px 0px 0px;
  background-color: #F7F7F7;
  position: relative;
  z-index: 9;
}
footer .contain {
  width: 100%;
}
footer .contain.border-shape {
  padding-inline-start: 20%;
}
@media (max-width: 992px) {
  footer .contain.border-shape {
    padding-inline-start: 0px;
    padding: 20px 0px;
    border-block: 1px solid #E0E0E0;
  }
}
footer .contain .brand-name img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 300;
  margin: 24px 0px 0px;
}
@media (max-width: 992px) {
  footer .contain p {
    margin-top: 15px;
    font-size: 13px;
  }
}
footer .contain h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  footer .contain h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
footer .contain .call {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
  margin-bottom: 16px;
}
footer .contain .call img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .call span {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}
footer .contain .call:hover {
  padding-inline-start: 10px;
}
footer .contain .social {
  margin-top: 16px;
}
@media (max-width: 992px) {
  footer .contain .social {
    margin-top: 10px;
  }
}
footer .contain .form-group {
  width: 100%;
  height: 56px;
  position: relative;
  z-index: 9;
  margin-bottom: 18px;
}
footer .contain .form-group.text-area {
  height: 100px;
}
footer .contain .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  border: 1px solid var(--light-color);
  padding: 10px;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  resize: none;
}
footer .contain .form-group .form-control::-moz-placeholder {
  color: var(--gray-color);
}
footer .contain .form-group .form-control::placeholder {
  color: var(--gray-color);
}
footer .contain .form-group .form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}
footer .contain .btn {
  width: 68px;
  height: 40px;
  background-color: var(--light-color);
  border: 1px solid var(--light-color);
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  border-radius: 0px;
  margin-inline-start: auto;
  display: block;
}
footer .copyrights {
  width: 100%;
  padding: 15px 0px;
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #E0E0E0;
}
footer .copyrights p {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */