/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 8 version
*/
:root {
  --theme-color: #1c2d37;
  --theme-color2: #eed26e;
  --title-color: #0d0d0c;
  --title-dark: #364440;
  --body-color: #1c2d37;
  --smoke-color: #c0cdd1;
  --smoke-color2: #666666;
  --black-color: #000000;
  --black-color2: #1b1b1b;
  --black-color3: #1a1a1a;
  --gray-color: #dde8dd;
  --white-color: #ffffff;
  --light-color: #a4b5ba;
  --yellow-color: #e2b93b;
  --success-color: #27ae60;
  --error-color: #eb5757;
  --th-border-color: #cdcdcd;
  --th-border-color2: #e6e6e6;
  --title-font: "Outfit", sans-serif;
  --body-font: "IRANSansWeb", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1250px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #ffffff;
}

/**========================================================================
 *                                  Basic
 *========================================================================**/
/*================================ Fonts Face ==============================*/
@font-face {
  font-family: "IRANSansWeb";
  src: url("../landing/fonts/IRANSansWebFaNum-Bold.woff2") format("woff2"), url("../fonts/IRANSansWebFaNum-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Expo Arabic";
  src: url("../landing/fonts/ExpoArabic-Light.woff2") format("woff2"), url("../fonts/ExpoArabic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Expo Arabic";
  src: url("../landing/fonts/ExpoArabic-Bold.woff2") format("woff2"), url("../fonts/ExpoArabic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Expo Arabic";
  src: url("../landing/fonts/ExpoArabic-Medium.woff2") format("woff2"), url("../fonts/ExpoArabic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Expo Arabic";
  src: url("../landing/fonts/ExpoArabic-SemiBold.woff2") format("woff2"), url("../fonts/ExpoArabic-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*================================ Css Variable ==============================*/

:root {
  /*--------------------- Main Colors ---------------------*/
  --primaryColor: #b89e5e;
  --secondaryColor: #0e5082;
  /*----------------- BackGround Colors --------------------*/
  --darkBack: rgb(27, 46, 56);
  /*-----------------=---- Text Colors ---------------------*/
  --lightTextColor: #fff;
  --textColorL1: #0c0800;
  --textColorL2: #111e52;
}

/*================================ Basic Style ==============================*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--darkBack);
  font-family: "IRANSansWeb"!important;
  color: var(--lightTextColor);
  overflow-x: hidden;
  text-align: center;
  font-weight: 500;
  direction: rtl;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

a {
  text-decoration: none;
}

.py-64 {
  padding-block: 4rem;
}

/*================================= Basic Class ===============================*/
/*================================ Common Class ==============================*/

.flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*================================ Colors ==============================*/

.bg-white {
  background: url(../landing/images/wall-back.webp), var(--lightTextColor);
  background-size: cover;
  padding-block: 4rem;
}

/*================================ Scroll Bar ==============================*/

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primaryColor);
  border-radius: 0.0625rem;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.7);
}

/*================================ Container Style =============================*/

.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1160px;
  }
}

@media (min-width: 1300px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1240px;
  }
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .footer-wrapper .container {
    max-width: calc(var(--main-container) + var(--container-gutters)) !important;
    padding-left: calc(var(--container-gutters) / 2) !important;
    padding-right: calc(var(--container-gutters) / 2) !important;
  }
}

@media (min-width: 1440px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1420px;
  }
}

.row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

/*================================ Figure And Thumbnail ==============================*/

figure {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

figure img {
  max-width: 100%;
  max-height: 100%;
}

/**========================================================================
 *                             Header Section
 *========================================================================**/

.header-logo {
  max-width: 10rem;
  margin-left: auto;
}

/**========================================================================
 *                             Main Section
 *========================================================================**/
/*================================ Hero Section ==============================*/

.hero-section {
  color: var(--lightTextColor);
}

.hero-main-title {
  background: url(../landing/images/back.webp) no-repeat center bottom;
  background-size: contain;
  position: relative;
}

.hero-passport {
  position: absolute;
  right: -1.25rem;
  margin: auto;
  bottom: 0;
  left: 0;
  top: 0;
}

.hero-first-title {
  font-family: "IRANSansWeb";
}

.hero-first-title,
.hero-second-title,
.hero-third-title {
  font-size: clamp(3rem, 10vw, 9.5rem);
  text-align: center;
  font-weight: bold;
  line-height: 1;
}

.hero-second-title {
  font-size: clamp(1rem, 1.5vw, 2rem);
  margin: 1rem 0;
}

.hero-third-title {
  font-size: clamp(1.25rem, 4vw, 5rem);
  font-weight: bold;
}

.hero-contact-form {
  margin-top: 2rem;
  min-width: 70%;
}

.hero-contact-form input {
  border: 0.3125rem solid var(--lightTextColor);
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  color: var(--lightTextColor);
  background-color: #911042;
  min-height: 3.4375rem;
  font-size: 0.8375rem;
  text-align: right;
  border-radius: 0;
  padding: 0.5rem;
}

.hero-contact-form input:focus,
.hero-contact-form input:hover,
.hero-contact-form .contact-button:hover,
.hero-contact-form .contact-button:focus {
  background-color: #b61653;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.hero-contact-form input::-webkit-input-placeholder {
  color: var(--lightTextColor);
  font-size: 0.8375rem;
}

.hero-contact-form input::-moz-placeholder {
  color: var(--lightTextColor);
  font-size: 0.8375rem;
}

.hero-contact-form input:-ms-input-placeholder {
  color: var(--lightTextColor);
  font-size: 0.8375rem;
}

.hero-contact-form input::-ms-input-placeholder {
  color: var(--lightTextColor);
  font-size: 0.8375rem;
}

.hero-contact-form input::placeholder {
  color: var(--lightTextColor);
  font-size: 0.8375rem;
}

.hero-contact-form input:nth-child(even) {
  border-inline: none;
}

.hero-contact-form input:nth-child(1) {
  border-radius: 0 3.125rem 3.125rem 0;
}

.hero-contact-form input:nth-child(3) {
  border-radius: 3.125rem 0 0 3.125rem;
}

.hero-contact-form .contact-button {
  all: unset;
  border: 0.3125rem solid var(--lightTextColor);
  border-radius: 0 0 3.125rem 3.125rem;
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  width: calc(33.33% + 0.625rem);
  color: var(--lightTextColor);
  background-color: #911042;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 3.125rem;
  font-size: 0.8375rem;
  border-top: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hero-contact-form .form-title {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--lightTextColor);
  background-color: #911042;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3.125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  width: 50%;
}

.h-full {
  min-height: 100vh;
}

/*================================ Description Section ==============================*/

.description-section {
  min-height: 800px;
}

.description-content {
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  -moz-text-align-last: center;
  text-align-last: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  text-align: justify;
  position: relative;
  max-width: 37.5rem;
  line-height: 2;
  padding: 0 11%;
}

.description-content::before,
.description-content::after {
  background: url(../landing/images/quot-left.webp) no-repeat center;
  background-size: cover;
  aspect-ratio: 1/4.42;
  position: absolute;
  height: 110%;
  content: "";
  top: -5%;
  left: 0;
}

.description-content::before {
  background-image: url(../landing/images/quot-right.webp);
  left: auto;
  right: 0;
}

/*================================ Conditions Section ==============================*/

.condition-section-title {
  font-size: clamp(1.25rem, 2.25vw, 2.25rem);
  margin-bottom: 1.25rem;
  text-align: center;
}

.attention-text {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(88, 97, 102)), to(rgb(135, 145, 153)));
  background: -o-linear-gradient(top, rgb(88, 97, 102), rgb(135, 145, 153));
  background: linear-gradient(180deg, rgb(88, 97, 102), rgb(135, 145, 153));
  display: inline-block;
  border-radius: 3rem;
  padding: 0.375rem;
}

.condition-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  place-items: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.condition-box figure {
  margin-bottom: 0.25rem;
  aspect-ratio: 1/1;
  width: 4.0625rem;
}

.condition-title {
  background-color: var(--primaryColor);
  font-size: clamp(1rem, 1.5vw, 2rem);
  border-radius: 0.125rem;
  padding: 0.5rem 1rem;
  min-width: 18.75rem;
  font-weight: bold;
  margin-bottom: 0;
}

.condition-box p {
  font-size: clamp(0.875rem, 1.4vw, 1.25rem);
  max-width: 20.625rem;
  margin-bottom: 0;
}

/*================================ Passports Section ==============================*/
.passports-section {
  background: url(../landing/images/pattern.png), url(../landing/images/wall-back.webp), var(--lightTextColor);
  background-size: contain, cover;
  padding-block: 4rem;
}

.passports-section .section-grid {
  -ms-grid-columns: 1fr 1rem auto 1rem 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto 1rem auto;
  grid-template-rows: auto auto;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}

.passports-section .section-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.passports-section .section-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.passports-section .section-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.passports-section .section-grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.passports-section .section-grid > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.passports-section .section-grid > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.passports-section .section-grid .banner-card {
  max-width: 37.5rem;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  height: 100%;
  width: 45vw;
}

.passports-section .section-grid .banner-card figure {
  max-width: 26.25rem;
}

.passports-section .section-grid .banner-card .banner-card-title {
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  color: var(--textColorL2);
  max-width: 26.25rem;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 0;
}

.passport-heading-title {
  font-family: "IRANSansWeb";
  color: var(--textColorL2);
  margin-bottom: 0.25rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 5;
}

.passport-heading-title::before {
  background: url(../landing/images/object-2.webp) no-repeat center;
  background-size: contain;
  aspect-ratio: 10/3.4;
  position: absolute;
  top: -0.0625rem;
  width: 8.75rem;
  z-index: -1;
  content: "";
}

.passport-body {
  -webkit-box-shadow: 0 3.25rem 1.25rem -3.75rem #000000bc;
  box-shadow: 0 3.25rem 1.25rem -3.75rem #000000bc;
  padding: 0 7.8% 0.5rem 7.8%;
  position: relative;
}
.passport-body img {
  aspect-ratio: 1/1.3725;
}

.passport-feature-list {
  background: url(../landing/images/object.webp) no-repeat center;
  background-size: contain;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  padding: 13% 6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  opacity: 0.9;
  height: 100%;
  width: 100%;
  z-index: 5;
  right: 0;
  gap: 11%;
  left: 0;
  top: 0;
}

.passport-feature-list li {
  font-size: clamp(1.0625rem, 1.2vw, 1.25rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  height: 16.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*================================ step to citizenship ==============================*/

.step-to-citizenship-title img {
  max-width: 7.5rem;
}

.step-to-citizenship-title .title {
  font-size: clamp(1.25rem, 3vw, 2.75rem);
  color: var(--textColorL2);
  padding-bottom: 1rem;
  position: relative;
  font-weight: 600;
}

.step-to-citizenship-title .title::after {
  background-color: var(--textColorL1);
  border-radius: 100%;
  position: absolute;
  inset: auto 0 0 0;
  height: 0.375rem;
  margin: auto;
  content: "";
  width: 70%;
}

.step-to-citizenship-content {
  padding: 5% 0 3% 0;
  margin-top: 10vh;
}

.citizenship-steps-list {
  -ms-grid-columns: 1fr 2.9% 1fr 2.9% 1fr 2.9% 1fr 2.9% 1fr 2.9% 1fr 2.9% 1fr;
  grid-template-columns: repeat(7, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 4.1% 0 2.8%;
  position: absolute;
  display: -ms-grid;
  display: grid;
  height: 100%;
  width: 100%;
  margin: 0;
  gap: 2.9%;
  top: 0;
}

.citizenship-steps-list .citizenship-step {
  -ms-grid-rows: 35% 1fr auto;
  grid-template-rows: 35% 1fr auto;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  display: -ms-grid;
  display: grid;
  height: 75%;
}

.citizenship-steps-list .citizenship-step > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.citizenship-steps-list .citizenship-step > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.citizenship-steps-list .citizenship-step > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.citizenship-step figure {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-inline: auto;
  max-width: 5rem;
}

.citizenship-step p {
  font-size: clamp(0.8375rem, 2vw, 1.0625rem);
  color: var(--textColorL2);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.citizenship-step span {
  font-size: clamp(1.25rem, 1.75vw, 2.75rem);
  font-weight: bold;
  color: #fc9d21;
}

.citizenship-steps-list .citizenship-step:nth-child(even) {
  -ms-grid-rows: 1fr auto 35%;
  grid-template-rows: 1fr auto 35%;
  margin-top: auto;
}

.citizenship-steps-list .citizenship-step:nth-child(even) figure {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.citizenship-steps-list .citizenship-step:nth-child(even) p {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}

.citizenship-steps-list .citizenship-step:nth-child(even) span {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}

/*================================ Company Services Section ==============================*/

.company-services-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5rem 2rem;
  max-width: 27.5rem;
  position: relative;
  line-height: 1.65;
  height: 8.125rem;
  margin: auto;
  z-index: 5;
}

.company-services-title::before {
  border-bottom: 8.125rem solid #355175;
  border-radius: 0 0 12.5rem 12.5rem;
  position: absolute;
  inset: 0 0 auto 0;
  margin: auto;
  z-index: -1;
  content: "";
  width: 100%;
}

.services-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  justify-content: center;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  display: flex;
  height: 100%;
}

.services-item figure {
  margin: 0.5rem auto 0.75rem auto;
  max-width: 4.375rem;
}

.service-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  position: relative;
  max-width: 25rem;
  display: flex;
  z-index: 5;
  flex: 1;
}

.service-card::after {
  background-color: var(--lightTextColor);
  border-radius: 12.5rem;
  position: absolute;
  aspect-ratio: 1/1;
  width: 9.0625rem;
  content: "";
  left: -3%;
  top: -3%;
}

.service-title {
  background: -webkit-gradient(linear, left top, right top, from(rgba(3, 81, 115, 1)), to(rgba(25, 104, 138, 1)));
  background: -o-linear-gradient(left, rgba(3, 81, 115, 1) 0%, rgba(25, 104, 138, 1) 100%);
  background: linear-gradient(90deg, rgba(3, 81, 115, 1) 0%, rgba(25, 104, 138, 1) 100%);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  padding: 0.25rem 0.5rem 0.25rem 15%;
  border-radius: 0 4rem 4rem 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-left: 50px;
}

.service-card .counter {
  background: -o-linear-gradient(225deg, rgba(184, 184, 184, 1) 0%, rgba(217, 217, 217, 1) 100%);
  background: linear-gradient(225deg, rgba(184, 184, 184, 1) 0%, rgba(217, 217, 217, 1) 100%);
  -webkit-box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
  box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.15);
  border: 0.4375rem solid #e6e6e6;
  border-radius: 10rem;
  position: absolute;
  aspect-ratio: 1/1;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 6.875rem;
  z-index: 20;
  left: 0;
  top: 0;
}

.service-card .counter-value {
  background: -webkit-gradient(linear, left top, right top, from(rgb(220, 220, 220)), to(rgba(245, 245, 245, 1)));
  background: -o-linear-gradient(left, rgb(220, 220, 220) 0%, rgba(245, 245, 245, 1) 100%);
  background: linear-gradient(90deg, rgb(220, 220, 220) 0%, rgba(245, 245, 245, 1) 100%);
  border: 0.5rem solid var(--secondaryColor);
  color: var(--textColorL1);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 220%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}

.service-description {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(196, 196, 196, 1)), color-stop(70%, rgba(242, 242, 242, 1))), -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 242, 1)), to(rgb(181, 181, 181)));
  background-image: -o-linear-gradient(top, rgba(196, 196, 196, 1), rgba(242, 242, 242, 1) 70%), -o-linear-gradient(top, rgba(242, 242, 242, 1), rgb(181, 181, 181));
  background-image: linear-gradient(180deg, rgba(196, 196, 196, 1), rgba(242, 242, 242, 1) 70%), linear-gradient(180deg, rgba(242, 242, 242, 1), rgb(181, 181, 181));
  background-clip: content-box, border-box;
  border: 0.3125rem solid transparent;
  border-bottom-right-radius: 3rem;
  background-origin: border-box;
  margin: 0 20% 0 10%;
  position: relative;
  z-index: 10;
  flex: 1;
}

.service-description p {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  color: var(--secondaryColor);
  font-weight: bold;
  margin: 1.25rem;
}

.card-shapes {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  inset: 4rem auto 0 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6.25rem;
  margin: auto;
  z-index: -1;
}

.card-shapes span {
  background-color: var(--secondaryColor);
  border-radius: 3rem;
  height: 0.625rem;
  width: 1.875rem;
}

/*================================ Benefits Section ==============================*/

.benefits-section .title {
  font-size: clamp(1.25rem, 3vw, 2.75rem);
  border: 0.3125rem solid #ba993f;
  margin-bottom: 2rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.375rem;
}

.benefits-list {
  padding-right: 1.5rem;
  text-align: start;
}

.benefits-list .benefit-item {
  margin-bottom: 2rem;
  position: relative;
}

.benefits-list .benefit-item:last-child,
.benefits-list .benefit-item:last-child p {
  margin-bottom: 0;
}

.benefits-list .benefit-item::before {
  background: url(../landing/images/circle.webp) no-repeat center;
  background-size: contain;
  position: absolute;
  aspect-ratio: 1/1;
  right: -1.5rem;
  top: 0.125rem;
  width: 1rem;
  content: "";
}

.benefits-list .benefit-item .sub-title {
  font-size: clamp(1.25rem, 1.35vw, 2.75rem);
  color: #ffcd45;
}

.benefits-list .benefit-item p {
  font-size: clamp(0.9375rem, 1.125vw, 1.5rem);
}

/*================================ Documents Required Section ==============================*/

.documents-required-section .title {
  font-size: clamp(1.25rem, 3vw, 2.75rem);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #226ea1;
}

.documents-required-section .title::after {
  background-color: #226ea19f;
  border-radius: 100%;
  position: absolute;
  inset: auto 0 0 0;
  height: 0.1875rem;
  margin: auto;
  content: "";
  width: 100%;
}

.documents-required-section figure {
  max-width: 25rem;
}

.document-required {
  background: url(../landing/images/shape.webp) no-repeat left;
  background-size: 100% 100%;
  padding: 5% 5% 5% 20%;
  max-width: 21.875rem;
  aspect-ratio: 13/7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-required p {
  font-size: clamp(0.8725rem, 1.125vw, 1.125rem);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  font-weight: bold;
  color: #226ea1;
  overflow: hidden;
  margin: 0;
}

.document-required .counter {
  font-size: clamp(2.5rem, 3.75vw, 3rem);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  color: #226ea1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60%;
  width: 16%;
  left: 10px;
  top: 0;
}

/*================================ Citizenship Projects Section ==============================*/

.citizenship-projects-section .title {
  font-size: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #1c2d37;
}

.citizenship-project figure {
  border: 0.375rem solid #1c2d37;
  aspect-ratio: 7/5;
  width: 100%;
}

.citizenship-project figure img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
  width: 100%;
}

.citizenship-project p {
  font-size: clamp(0.8725rem, 1.3vw, 1.25rem);
  border: dashed 0.0625rem #1c2d37;
  padding: 0.5rem 0.375rem;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #1c2d37;
  width: 100%;
}

.citizenship-projects-section a {
  font-size: clamp(0.8725rem, 1.3vw, 1.25rem);
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  border: 0.0625rem solid #1c2d37;
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #1c2d37;
}

.citizenship-projects-section a:hover {
  font-size: clamp(0.8725rem, 1.3vw, 1.25rem);
  color: var(--lightTextColor);
  background-color: #1c2d37;
}

/*================================ Contact Section ==============================*/
.contact-section {
  background: url(../landing/images/footer.webp) no-repeat bottom, url(../landing/images/wall-back.webp), var(--lightTextColor);
  border-bottom: 0.75rem solid #9c3335;
  background-size: 50%, cover;
  color: var(--textColorL1);
}

.contact-section .title {
  font-size: clamp(1.25rem, 3vw, 3rem);
  margin: 1.75rem auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  color: #9c3436;
}

.form-label {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: #202020;
}

.contact-section input,
.contact-section input.form-control {
  background-color: var(--lightTextColor) fff7e;
  border: 0.125rem solid #d8d8d8;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  padding: 0.625rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #575757;
  height: 3rem;
  width: 100%;
  margin: 0;
}

.contact-section input:focus,
.contact-section input:hover,
.contact-section input.form-control:focus,
.contact-section input.form-control:hover {
  border-color: #9c3436;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.contact-section .contact-button {
  background-color: var(--lightTextColor) fff7e;
  border: 0.125rem solid #9c3436;
  -webkit-transition: all ease-in-out 300ms;
  -o-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  color: #9c3436;
}

.contact-button:hover {
  background-color: #9c3436;
  color: var(--lightTextColor);
}

.contact-section .passport-image {
  max-width: 8.75rem;
}

/**========================================================================
 *                           Responsive
 *========================================================================**/
/*================================ XL Monitor ==============================*/

@media (min-width: 1600px) {
  .h-full {
    min-height: 70vh;
  }

  .description-content {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0 13%;
  }
}

/*================================ LG Monitor ==============================*/

@media (max-width: 1200px) {
  .passports-section .section-grid {
    gap: 2rem;
  }

  .passports-section .section-grid .banner-card {
    width: 28vw;
  }

  .step-to-citizenship-content {
    padding: 0 10%;
  }

  .citizenship-steps-list {
    -ms-grid-rows: 1fr 2.5% 1fr 2.5% 1fr 2.5% 1fr 2.5% 1fr 2.5% 1fr 2.5% 1fr;
    grid-template-rows: repeat(7, 1fr);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 5.7% 5% 8% 7.7%;
    gap: 2.5%;
    right: 0;
  }

  .citizenship-steps-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(4) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(5) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(6) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list > *:nth-child(7) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list .citizenship-step {
    -ms-grid-columns: 47% 0.25rem 1fr 0.25rem auto;
    grid-template-columns: 47% 1fr auto;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    display: grid;
    gap: 0.25rem;
    height: 100%;
    width: 68%;
  }

  .citizenship-steps-list .citizenship-step > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list .citizenship-step > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .citizenship-steps-list .citizenship-step > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .citizenship-step figure {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
  }

  .citizenship-step figure img {
    max-width: 5rem;
  }

  .citizenship-step p {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) {
    -ms-grid-columns: 1fr auto 43%;
    grid-template-columns: 1fr auto 43%;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    margin-right: auto;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) figure {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    grid-row: 1/1;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) p {
    -ms-grid-row: 1;
    grid-row: 1/1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) span {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    grid-row: 1/1;
  }
}

/*================================ MD Monitor  ==============================*/

@media (max-width: 1024px) {
  .passports-section .section-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .passports-section .section-grid .banner-card {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    max-width: 25rem;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    margin: auto;
    width: 100%;
  }

  .citizenship-steps-list {
    padding: 7.5% 0 10.8% 0;
  }

  .citizenship-steps-list .citizenship-step {
    -ms-grid-columns: 30% 1fr auto;
    grid-template-columns: 30% 1fr auto;
    width: 75%;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) {
    -ms-grid-columns: 1fr auto 36%;
    grid-template-columns: 1fr auto 36%;
    width: 79%;
  }

  .benefits-section figure {
    margin-bottom: 1.5rem;
    max-width: 25rem;
  }

  .documents-required-section figure {
    max-width: 18.75rem;
    margin-bottom: 2rem;
  }

  .contact-section .hero-image {
    max-width: 21.25rem;
  }

  .contact-section {
    background-size: 70%, cover;
    padding-bottom: 12%;
  }
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
  .hero-contact-form input:nth-child(even) {
    border: 0.3125rem solid var(--lightTextColor);
    min-height: 3.125rem;
    border-block: none;
  }

  .hero-contact-form .form-title {
    width: 80%;
  }

  .hero-contact-form input:nth-child(1) {
    border-radius: 1.5625rem 1.5625rem 0 0;
  }

  .hero-contact-form input:nth-child(3) {
    border-radius: 0;
  }

  .hero-contact-form .contact-button {
    border-radius: 0 0 1.5625rem 1.5625rem;
    width: 100%;
  }

  .condition-title {
    min-width: 12.5rem;
  }

  .passports-section .section-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .passports-section .section-grid .banner-card {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }

  .passport-comparison-item {
    max-width: 25rem;
    margin: auto;
  }

  .citizenship-steps-list {
    padding: 7.8% 0 11.5% 0;
  }

  .citizenship-steps-list .citizenship-step {
    -ms-grid-columns: 29% 1fr auto;
    grid-template-columns: 29% 1fr auto;
    width: 76%;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) {
    -ms-grid-columns: 1fr auto 34%;
    grid-template-columns: 1fr auto 34%;
    width: 80%;
  }

  .contact-section {
    background-size: 100%, cover;
    padding-bottom: 17%;
  }
  .footer-layout1 .footer-wrap {
    margin: 0 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/*================================ Phone ==============================*/

@media (max-width: 575px) {
  .hero-contact-form .form-title {
    width: 100%;
  }
  .description-content {
    padding: 0 2.5rem;
  }

  .description-section figure {
    max-width: 21.25rem;
    margin-inline: auto;
  }

  .description-content::before,
  .description-content::after {
    margin-block: auto;
    width: 3.125rem;
    left: -1.25rem;
    height: auto;
    bottom: 0;
    top: 0;
  }

  .description-content::before {
    right: -1.25rem;
  }

  .step-to-citizenship-content {
    padding: 0 15%;
  }

  .citizenship-steps-list {
    padding: 7% 0 10% 0;
  }

  .citizenship-steps-list .citizenship-step {
    -ms-grid-columns: 35% 1fr auto;
    grid-template-columns: 35% 1fr auto;
    width: 72%;
  }

  .citizenship-steps-list .citizenship-step:nth-child(even) {
    -ms-grid-columns: 1fr auto 39%;
    grid-template-columns: 1fr auto 39%;
    width: 77%;
  }

  .citizenship-step figure img {
    max-width: 60%;
  }

  .service-description {
    margin: 0 10%;
  }
}
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .icon-btn {
  border-radius: 99px;
}

.th-header .menu-area {
  position: relative;
  z-index: 2;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--theme-color);
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--white-color);
}

.main-menu a:hover {
  color: var(--theme-color2);
}

.main-menu > ul > li {
  margin: 0 22px;
}

.main-menu > ul > li > a {
  padding: 46.5px 0;
}
@media (max-width:1200px) and (min-width:992px){
  .main-menu > ul > li > a {
    padding:1rem 0 1.5rem 0;
  }
}
.main-menu > ul > li > a:hover {
  color: var(--theme-color2);
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 400;
  top: 0;
  font-size: 0.9em;
  color: var(--white-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul li.menu-item-has-children > a:hover:after {
  content: "\f106";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--theme-color2);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  padding: 19px 11px 17px 11px;
  left: -27px;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
  color: var(--title-color);
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f053";
  float: left;
  top: 1px;
  display: inline-block;
  color: var(--title-color);
}

.main-menu ul.sub-menu li.menu-item-has-children > a:hover:after {
  content: "\f053";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
  position: relative;
  text-transform: capitalize;
  text-align: right;
}
.sub-menu1, .sub-menu2
{
  max-height: 300px !important;
  overflow-y: auto;
}
.main-menu ul.sub-menu li a:before {
  content: "\e1b1";
  position: absolute;
  top: 7px;
  right: 0;
  font-family: var(--icon-font);
  text-align: center;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.main-menu ul.sub-menu li a:hover {
  color: var(--theme-color);
  padding-right: 27px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
  right: 100%;
  left: auto;
  top: 0;
  margin: 0 0;
  margin-right: 8px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  right: 100%;
  left: auto;
}
.sub-menu.sub-menu2 {
  right: 210% !important;
}
@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 13px;
  }
}

.simple-icon {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  position: relative;
}

.simple-icon:has(.badge) {
  padding-right: 8px;
}

.simple-icon .badge {
  top: -8px;
  right: 0;
  font-size: 12px;
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-button .icon-btn .badge {
  font-size: 12px;
  right: 0;
  top: 0;
}

.header-button .icon-btn:hover .badge {
  background-color: var(--title-dark);
}

.header-button .th-btn {
  padding: 16px 24px;
}

.dropdown-units{
  position: relative;
}
.dropdown-units a{
  justify-content: space-between;
  text-transform: uppercase;
  color: var(--white-color);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  min-width: fit-content;
  align-items: center;
  display: flex;
  gap: 0.25rem;
}
.dropdown-units a img{
  border-right: 1px solid var(--th-border-color2);
  padding-right:  0.375rem;
  box-sizing: content-box;
  margin-right: 0.25rem;
  max-width: 16px;
}
.dropdown-units a span{
  padding: 0.25rem 0;
}
.dropdown-units ul{
  background-color: #4d4d4d76;
  transition: all linear 300ms;
  transform: translateY(100%);
  backdrop-filter: blur(12px);
  border-radius: 0.25rem;
  top: calc(100% + 6px);
  position: absolute;
  width: fit-content;
  visibility:hidden;
  list-style: none;
  overflow: hidden;
  min-width: 90px;
  opacity: 0;
  padding: 0;
  right: 0;
  left: 0;
}

.dropdown-units:hover > a + ul{
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.dropdown-units:active > a + ul{
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.dropdown-units ul li a{
  border-radius: 0;
}

.dropdown-units ul li{
  border-bottom: 1px solid  var(--th-border-color2);
}

.dropdown-units ul li:last-child{
  border-bottom: none;
}

.sidebar-btn .line {
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  margin: auto;
  height: 1px;
  width: 32px;
}

.sidebar-btn .line:not(:last-child) {
  margin-bottom: 9px;
}

.sidebar-btn .line:nth-child(2) {
  width: 20px;
}

.sidebar-btn:hover .line:nth-child(2) {
  width: 32px;
}

.sidebar-btn.style2 .line {
  margin-right: 0;
}

.sidebar-btn.style2 .line:first-child {
  width: 20px;
}

.sidebar-btn.style2 .line:nth-child(2) {
  width: 27px;
}

.sidebar-btn.style2:hover .line:first-child {
  width: 32px;
}

.sidebar-btn.style2:hover .line:nth-child(2) {
  width: 32px;
}

.social-links .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--body-color);
}

.social-links a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.social-links a:last-child {
  margin-right: 0 !important;
}

.social-links a:hover {
  color: var(--theme-color);
}

.header-logo {
  padding-top: 15px;
  max-width: 180px;
  padding-bottom: 15px;
}
@media (max-width: 540px){
  .header-logo {
    max-width: 130px;
  }
}
@media (max-width: 768px){
  .header-logo {
    max-width: 150px;
  }
}
@media (max-width: 1200px){
  .header-logo {
    max-width: 170px;
  }
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
}

.header-links li:not(:last-child) {
  margin: 0 55px 0 0;
}

.header-links li:not(:last-child):after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: #363739;
  position: absolute;
  top: 0px;
  right: -30px;
  margin-top: 3px;
}

.header-links li > i {
  margin-right: 11px;
  color: var(--theme-color);
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--body-color);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
  margin-right: 6px;
}

.header-links .social-links a {
  font-size: 14px;
}

.header-notice {
  margin: 0;
}

.dropdown-link {
  position: relative;
}

.dropdown-link > a {
  color: var(--body-color);
}

.dropdown-link > a i {
  color: var(--theme-color);
  margin-right: 5px;
}

.dropdown-toggle::after {
  content: "\f078";
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
  margin-top: -1px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  text-align: center;
  border-color: var(--th-border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
}

.dropdown-menu a {
  color: var(--title-dark) !important;
}

.dropdown-menu a:hover {
  color: var(--theme-color) !important;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid var(--th-border-color);
  border-left: 1px solid var(--th-border-color);
}

.header-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  gap: 15px;
}

.header-icons .icon-btn {
  font-size: 18px;
}

.header-icons .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-icons .icon-btn:hover .badge {
  background-color: var(--title-dark);
}

.header-search {
  position: relative;
}

.header-search input {
  height: 46px;
  border: 1px solid var(--th-border-color);
  width: 500px;
  max-width: 100%;
  /* Large devices */
}

.header-search input:focus {
  border-color: var(--theme-color);
}

@media (max-width: 1199px) {
  .header-search input {
    max-width: 350px;
  }
}

.header-search button {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  width: 50px;
  height: 46px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  border-radius: 0 99px 99px 0;
}

.menu-expand {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--theme-color2);
  padding: 17px 25px;
  width: 100%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .menu-expand {
    font-size: 15px;
  }
}

.menu-expand i {
  margin-right: 15px;
}

.menu-expand:hover {
  color: var(--white-color);
}
.header-layout1 {
  left: 0;
  right: 0;
  top: 0;
  background: #1c2d37;
  margin-bottom: 40px;
  direction: rtl;
}

.header-layout1 .sticky-wrapper.sticky {
  background: var(--theme-color);
}

.header-layout1 .header-button .th-btn {
  padding: 16px 24px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .header-layout1 .header-button .th-btn {
    display: none;
  }
}

@media (min-width: 1600px) {
  .header-layout1 {
    --main-container: 1604px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout1 .main-menu {
    margin-left: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-logo {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
  .header-button {
    margin: 22px 0;
  }
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
}

.th-menu-toggle:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

.th-menu-toggle.sidebar-btn {
  width: auto;
}

.th-menu-toggle.sidebar-btn:hover {
  background: transparent;
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}
.th-menu-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--theme-color);
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  left: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-left: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  right: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: right;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-dark);
  padding-right: 18px;
}

.th-mobile-menu ul li a:before {
  content: "\f053";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: 12px;
  margin-left: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.th-mobile-menu ul li ul li {
  padding-right: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
  position: absolute;
  inset: 0;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  background-color: transparent;
  color: var(--title-dark);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: none;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: left;
  margin-top: 1px;
}

.th-mobile-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: "\f068";
}

.th-mobile-menu ul .menu-item-has-children.th-active > a:after {
  content: "\f068";
}

.th-mobile-menu > ul {
  padding: 0 40px;
}

.th-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
}

.th-menu-toggle:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
  margin-left: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

.th-menu-toggle.sidebar-btn {
  width: auto;
}

.th-menu-toggle.sidebar-btn:hover {
  background: transparent;
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}
/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper .th-social a {
  box-shadow: none;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f5;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 40px;
}

.sidemenu-wrapper .recent-post .post-title,
.sidemenu-wrapper .widget_title {
  color: var(--title-color);
}

.sidemenu-wrapper .th-widget-contact .info-box_text .icon img {
  -webkit-filter: none;
  filter: none;
}

.sidemenu-wrapper .newsletter-widget .newsletter-form {
  max-width: none;
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/* Extra small devices */
@media (max-width: 575px) {
  .sidemenu-wrapper {
    background: transparent;
  }
  .sidemenu-wrapper .sidemenu-content {
    width: 100%;
  }
  .sidemenu-wrapper .sidemenu-content .widget_shopping_cart .th-btn {
    margin-bottom: 10px;
  }
}

.info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 11px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box_icon {
  font-size: 16px;
  background-color: transparent;
  color: var(--theme-color);
  text-align: center;
  margin-right: 10px;
}

.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.info-box_link {
  display: inline-block;
  color: var(--body-color);
}

.info-box_link:hover {
  color: var(--theme-color);
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget .form-group > i {
  color: var(--theme-color);
  top: 18px;
}

.footer-widget .sidebar-gallery {
  gap: 20px;
}

.footer-widget .sidebar-gallery .gallery-thumb {
  border-radius: 0px;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  font-weight: 600;
  font-size: 24px;
  font-family: var(--body-font);
  text-transform: capitalize;
  margin: -0.12em 0 30px 0;
  padding: 0;
}

.footer-widget .widget_title:after,
.footer-widget .widget_title:before {
  display: none;
}

.footer-widget .widget_title img {
  margin: -7px 10px 0 0;
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
  margin-top: -4px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul,
.footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -4px;
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 22px;
  margin-bottom: 21px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
}

.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
  content: "\f053";
  font-weight: 400;
  right: 0;
  top: 0;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  font-size: 16px;
  background-color: transparent;
  border: none;
  color: var(--body-color);
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color2);
}

.footer-widget.widget_meta a:hover:before,
.footer-widget.widget_pages a:hover:before,
.footer-widget.widget_archive a:hover:before,
.footer-widget.widget_categories a:hover:before,
.footer-widget.widget_nav_menu a:hover:before {
  color: var(--theme-color2);
  right: 5px;
}

.footer-widget.widget_meta li > span,
.footer-widget.widget_pages li > span,
.footer-widget.widget_archive li > span,
.footer-widget.widget_categories li > span,
.footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-widget .recent-post .media-img {
  max-width: 80px;
}

.footer-widget .recent-post .media-img:after {
  line-height: 74px;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta {
  margin-top: -0.4em;
}

.footer-widget .recent-post .recent-post-meta a {
  font-weight: 400;
  line-height: 1.2;
}

.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}

.about-logo {
  margin-bottom: 15px;
}

.th-widget-about {
  max-width: 354px;
  margin-bottom: -0.5em;
}

.th-widget-about .about-logo {
  margin-bottom: 44px;
}

.th-widget-about .about-text {
  margin-bottom: 30px;
  margin-top: -0.5em;
}

.footer-text {
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}

.icon-group a {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 17px;
}

.icon-group a:last-child {
  margin-right: 0;
}

.newsletter-widget {
  max-width: 370px;
}

.newsletter-widget .footer-widget-links {
  margin-top: -0.4em;
  margin-bottom: 37px;
}

.newsletter-widget .footer-widget-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 35px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.newsletter-widget .footer-widget-links ul li {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--white-color);
  text-transform: uppercase;
}

.newsletter-widget .footer-widget-links ul li:hover {
  color: var(--theme-color);
}

.newsletter-widget .footer-widget-links ul li a {
  color: inherit;
}
.footer-layout1 {
  text-align: right;
  font-size: 1rem;
}
.footer-layout1 p{
  font-size: 1rem;
  margin: 0;
}
.th-widget-contact {
  max-width: 260px;
  margin-bottom: -0.4em;
}
.footer-layout1 .footer-wrap {
  margin: 0 20px 20px;
}

.footer-layout1 .footer-widget .widget_title {
  color: var(--theme-color);
}

.footer-layout1 .th-widget-contact .info-box_text .icon img {
  -webkit-filter: none;
  filter: none;
}

.footer-layout1 .th-widget-contact .info-box_text a:hover {
  color: var(--title-color);
}

.footer-layout1 .footer-widget.widget_meta a:hover,
.footer-layout1 .footer-widget.widget_pages a:hover,
.footer-layout1 .footer-widget.widget_archive a:hover,
.footer-layout1 .footer-widget.widget_categories a:hover,
.footer-layout1 .footer-widget.widget_nav_menu a:hover {
  color: var(--title-color);
}

.footer-layout1 .footer-widget.widget_meta a:hover:before,
.footer-layout1 .footer-widget.widget_pages a:hover:before,
.footer-layout1 .footer-widget.widget_archive a:hover:before,
.footer-layout1 .footer-widget.widget_categories a:hover:before,
.footer-layout1 .footer-widget.widget_nav_menu a:hover:before {
  color: var(--title-color);
}

.footer-layout1 .newsletter-wrap {
  margin-top: 40px;
}

.footer-layout1 .copyright-wrap {
  background: var(--light-color);
  padding: 22px 0;
}

.footer-layout1 .copyright-wrap .copyright-text {
  color: #1b1b1b;
}

.footer-layout1 .copyright-wrap .footer-links ul {
  gap: 10px 24px;
}

.footer-layout1 .copyright-wrap .footer-links a {
  color: #1b1b1b;
}

.footer-layout1 .copyright-wrap .footer-links a:hover {
  color: var(--white-color);
}



@media (max-width: 1199px) {
  .footer-layout1 .footer-wrap {
    margin: 0 20px 20px;
  }
}

@media (max-width: 991px) {
  .footer-layout1 .widget-area {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .footer-layout1 .footer-wrap {
    margin: 0;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}
.bg-smoke {
  background-color: var(--smoke-color) !important;
}
.bg-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.footer-layout1 .footer-wrap {
  margin: 0 20px 20px;
}
.widget .th-social a {
  box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}
.th-social.style3 a {
  --icon-size: 40px;
  line-height: 40px;
  color: var(--theme-color);
  font-size: 16px;
}
.th-social a {
  display: inline-block;
  width: var(--icon-size, 32px);
  height: var(--icon-size, 32px);
  line-height: var(--icon-size, 32px);
  background-color: transparent;
  color: var(--theme-color);
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
}
.th-widget-contact .info-box_text .icon {
   color: var(--body-color);
   -webkit-box-flex: 0;
   -webkit-flex: none;
   -ms-flex: none;
   flex: none;
   width: 40px;
   height: 40px;
   line-height: 37px;
   border: 1px solid var(--body-color);
   border-radius: 50%;
   text-align: center;
}

.newsletter-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* Medium devices */
  /* Extra small devices */
}

.newsletter-wrap .newsletter-title {
  font-size: 38px;
  font-weight: 500;
  color: var(--theme-color);
  line-height: 1.21;
  margin-bottom: -0.25em;
  margin-top: -0.25em;
  /* Medium devices */
  /* Small devices */
}
@media (min-width: 1024px) {
  .col-lg {
    flex: 1 0 0% !important;
  }
}
@media (max-width: 991px) {
  .newsletter-wrap .newsletter-title {
    max-width: 100%;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .newsletter-wrap .newsletter-title {
    font-size: 24px;
  }
}

.newsletter-wrap .newsletter-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.newsletter-wrap .newsletter-form .form-group input {
  height: 56px;
  background: url(../img/theme-img/input-border.png);
  background-size: 100% 100%;
  border: 0;
}
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 18.5px 24px;
  min-width: 125px;
  border-radius: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.th-btn.btn-mask:hover, .th-btn.btn-mask:active, .th-btn.btn-mask:focus {
  border-radius: 50px;
}
.th-btn:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: -webkit-linear-gradient(330deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}
.th-btn:focus:before, .th-btn:hover:before, .th-btn.active:before {
  -webkit-animation: shine 1.5s ease-out infinite;
  animation: shine 1.5s ease-out infinite;
}
.newsletter-wrap .newsletter-form .th-btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  height: 56px;
}

.newsletter-wrap .newsletter-form .th-btn img {
  width: 16px;
}

@media (max-width: 991px) {
  .newsletter-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .newsletter-wrap .newsletter-form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .newsletter-wrap .newsletter-form .form-group {
    width: 100%;
  }
}
.space, .space-bottom {
  padding-bottom: var(--section-space);
}
.space, .space-top {
  padding-top: var(--section-space);
}
.widget_nav_menu a::before, .widget_meta a::before, .widget_pages a::before, .widget_archive a::before, .widget_categories a::before, .wp-block-categories a::before {
  content: "\e0cc";
  position: absolute;
  right: 0;
  top: 21px;
  font-family: var(--icon-font);
  font-weight: 300;
  color: var(--gray-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.th-widget-contact .info-box_text:not(:last-child) {
  margin-bottom: 18px;
}
.th-widget-contact .info-box_text {
  line-height: 1.75em;
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.footer-layout1 .footer-widget.widget_meta a:hover, .footer-layout1 .footer-widget.widget_pages a:hover, .footer-layout1 .footer-widget.widget_archive a:hover, .footer-layout1 .footer-widget.widget_categories a:hover, .footer-layout1 .footer-widget.widget_nav_menu a:hover {
  color: var(--title-color);
}
.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color2);
}
.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 22px 0 0;
  margin-bottom: 21px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border-bottom: none;
  position: relative;
  color: var(--title-color);
}
.footer-widget .about-text{
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}
.newsletter-wrap .newsletter-form .th-btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  height: 56px;
}
@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
.th-btn.btn-mask {
  border-radius: 0;
  -webkit-mask-image: url(img/theme-img/btn-shape.png);
  mask-image: url(img/theme-img/btn-shape.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background: var(--theme-color2);
  color: var(--title-color);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  padding: 20px 24px;
  box-shadow: none;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.th-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: -webkit-linear-gradient(330deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}
.newsletter-wrap .newsletter-form .form-group input {
  height: 56px;
  background: url(img/theme-img/input-border.png);
  background-size: auto;
  background-size: 100% 100%;
  border: 0;
}
.iti__country-container {
  background-color: #f0f0f0b7;
  color: var(--body-color);
}
.iti__country-list .iti__flag, .iti__country-name {
  color: #000;
}
.th-widget-contact .info-box_text .details {
  direction: ltr;
  text-align: right;
}
.iti__country-container
{
  right: unset!important;
}
.iti
{
  width: 100%!important;
}