@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Be Vietnam';
    src: url('../fonts/BeVietnam-Regular.eot');
    src: url('../fonts/BeVietnam-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BeVietnam-Regular.woff2') format('woff2'),
        url('../fonts/BeVietnam-Regular.woff') format('woff'),
        url('../fonts/BeVietnam-Regular.ttf') format('truetype'),
        url('../fonts/BeVietnam-Regular.svg#BeVietnam-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Be Vietnam';
    src: url('../fonts/BeVietnam-Bold.eot');
    src: url('../fonts/BeVietnam-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BeVietnam-Bold.woff2') format('woff2'),
        url('../fonts/BeVietnam-Bold.woff') format('woff'),
        url('../fonts/BeVietnam-Bold.ttf') format('truetype'),
        url('../fonts/BeVietnam-Bold.svg#BeVietnam-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'NB International';
  src: url('../fonts/NBInternationalRegular.eot');
  src: url('../fonts/NBInternationalRegular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/NBInternationalRegular.woff2') format('woff2'),
      url('../fonts/NBInternationalRegular.woff') format('woff'),
      url('../fonts/NBInternationalRegular.ttf') format('truetype'),
      url('../fonts/NBInternationalRegular.svg#NBInternationalRegular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary-color: #14191E;
  --secondry-color: #5DA724;
  --trietory-color: #2A6F2C;
  --text-color: #747579;
  --text-light-color: #FFFFFF;
  --bg-color: #FAFAFA;
  --radius-btn: 4.375rem;
  --z-index: 1;
  --z-index-header: 100;
  --z-index-popup: 1000;
  --primary-font: "Montserrat", sans-serif;
  --secondry-font: "Poppins", serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-smedium: 600;
  --font-weight-bold: 700;
  --root-font-size: 16px;
  --base-text: 16px;
  --font-style-italic: italic;
  --text-xxl: 1.25rem;
  --text-xl: 1.125rem;
  --text-md: 1rem;
  --text: 0.875rem;
  --h1: 2rem;
  --h2-l: 1.875rem;
  --h3-s: 1.25rem;
  --h2: 1.875rem;
  --h3: 1.5rem;
  --h4: 1.25rem;
  --h4-l: 1.2rem;
  --h5: 1.125rem;
  --h6: .9375rem;
  --spacing-0: 0;
  --spacing-1: 1.875rem;
  --spacing-2: 1.875rem;
  --spacing-3: 1.875rem;
  --spacing-4: 2.1875rem;
  --spacing-5: 3.75rem;
  --spacing-6: 3.75rem;
  --spacing-7: 5.625rem;
}

@media (min-width: 768px) {
  :root {
    --text-xxl: 1.375rem;
    --text-xl: 1.25rem;
    --text-md: 1.125rem;
    --text: 1rem;
    --h1: 3rem;
    --h2-l: 2.625rem;
    --h2: 2rem;
    --h3-s: 1.8rem;
    --h3: 1.875rem;
    --h4-l: 1.7rem;
    --h4: 1.3rem;
    --h5: 1.375rem;
    --h6: 1.125rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --root-font-size: 0.833333vw;
    --text-xxl: 2.375rem;
    --text-xl: 1.25rem;
    --text-md: 1rem;
    --text: 1.125rem;
    --h1: 4rem;
    --h2-l: 3.625rem;
    --h2: 3.5rem;
    --h3-s: 2.5rem;
    --h3: 3rem;
    --h4-l: 2.25rem;
    --h4: 1.75rem;
    --h5: 1.5rem;
    --h6: 1.25rem;
    --spacing-2: 2.1875rem;
    --spacing-3: 3.125rem;
    --spacing-4: 3.75rem;
    --spacing-5: 5rem;
    --spacing-6: 7.5rem;
    --spacing-7: 11.75rem;
  }
}

html {
  font-size: var(--root-font-size);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -ms-text-size-adjust: 100%;
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-family: var(--primary-font);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  font-size: var(--text);
  line-height: 1.4;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
  overflow-x: hidden;
}

html,
body,
main#main {
  min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2-l, .h3-s, .h4-l {
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--secondry-font);
  line-height: 1.2;
  color: var(--primary-color);
}

p {
  font-family: var(--primary-font);
  margin-bottom: 1em;
  margin-top: 0;
  line-height: 1.625;
  font-weight: var(--font-weight-regular);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2-l, .h3-s, .h4-l {
  margin-top: 0;
}

.h2-l {
  font-size: var(--h2-l);
}

.h3-s {
  font-size: var(--h3-s);
}

.h4-l {
  font-size: var(--h4-l);
}

h1,
.h1 {
  font-size: var(--h1);
}

h2,
.h2 {
  font-size: var(--h2);
}

h3,
.h3 {
  font-size: var(--h3);
}

h4,
.h4 {
  font-size: var(--h4);
}

h5,
.h5 {
  font-size: var(--h5);
}

h6,
.h6 {
  font-size: var(--h6);
}

.text {
  font-size: var(--text);
}

.text-md {
  font-size: var(--text-md);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-xxl {
  font-size: var(--text-xxl);
}

address {
  font-style: normal;
}

a {
  color: var(--dark-text);
  text-decoration: none;
  display: inline-block;
  transition: 0.5s all;
}

a.active {
  color: var(--secondry-color);
}

a:hover:not(.in__slide-inner a) {
  color: var(--secondry-color);
}

button,
a {
  outline: 0;
}

dl,
ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.form-control,
textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-color);
  background-color: var(--text-light-color);
  background-clip: padding-box;
  border: 0.0625rem solid #DADADA;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3.125rem;
  outline: 0;
}

textarea{
  border-radius: 1.25rem;
}

.form-control::placeholder,
textarea::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder {
  color: var(--text-color);
  line-height: 1.625;
}

.form-select {
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
}

.form-control.form-control-search {
  padding-left: 44px;
  background-image: url(../images/search.svg);
  background-repeat: no-repeat;
  background-position: 1rem center;
}

form label {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.625;
}

textarea.form-control,
.frm_form_field textarea {
  resize: vertical;
}

.form-check input[type=checkbox] {
  display: none;
}

.form-check input[type=checkbox]+label {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  font-weight: var(--font-weight-medium);
  margin-right: 2.5rem;
}

.form-check input[type=checkbox]+label:after {
  content: "";
  height: 2.375rem;
  width: 2.375rem;
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 0.625rem;
}

.form-check input[type=checkbox]+label:before {
  content: "âœ”";
  position: absolute;
  right: 0;
  height: 2.375rem;
  width: 2.375rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--trietory-color);
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}

.form-check input[type=checkbox]:checked+label:before {
  opacity: 1;
  visibility: visible;
}

.form__message p,
.form__header p {
  font-size: 1rem;
  line-height: 170%;
  margin-bottom: 0;
}

.form__message p {
  font-style: italic;
}

/* Font Weight */
.font-weight-light {
  font-weight: var(--font-weight-light);
}

.font-weight-regular {
  font-weight: var(--font-weight-regular);
}

.font-weight-medium {
  font-weight: var(--font-weight-medium);
}

.font-weight-smedium {
  font-weight: var(--font-weight-smedium);
}

.font-weight-bold {
  font-weight: var(--font-weight-bold);
}

.color-light-text {
  color: var(--text-light-color);
}

.color-text {
  color: var(--primary-color);
}

.bg-color {
  background-color: var(--bg-color);
}

.color-secondry {
  color: var(--secondry-color);
}

.color-trietory {
  color: var(--trietory-color);
}

.bg-light {
  background-color: var(--text-light-color);
}

.bg-dark {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondry-color);
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.position-relative {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875em 1.5625em;
  font-size: var(--text);
  font-weight: var(--font-weight-smedium);
  font-family: var(--primary-font);
  text-align: center;
  text-decoration: none;
  line-height: normal;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  gap: 0.625rem;
  border: 0.0625rem solid transparent;
  border-radius: var(--radius-btn);
  background-color: var(--bg-color);
  color: var(--primary-color);
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  min-width: 7.25rem;
}

.btn svg,
.btn svg * {
  transition: all 0.5s ease-in-out;
}

.btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.42em;
  border-radius: 50%;
  overflow: hidden;
}

.btn--black {
  background-color: var(--primary-color);
  color: var(--text-light-color);
  border-color: var(--primary-color);
}
.btn--black svg path{
  fill: var(--text-light-color);
}

.btn:hover{
  background-color: var(--primary-color);
}

.btn--black:hover {
  border-color: var(--secondry-color);
  background-color: transparent;
}

.btn:hover svg path{
  fill: var(--secondry-color);
  stroke: var(--secondry-color);
}

.btn--primary {
  background-color: var(--secondry-color);
  color: var(--primary-color);
  border-color: var(--bg-color);
}


/* .btn--black:hover {
  background-color: var(--primary-color);
  color: var(--text-light-color);
  border-color: var(--primary-color);
} */

.btn--primary {
  background-color: var(--secondry-color);
  color: var(--primary-color);
  border-color: var(--bg-color);
}

.btn--primary svg path {
  fill: var(--light-text);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--btn-color);
  border-color: var(--btn-color);
}

.btn--primary:hover {
  background-color: transparent;
  color: var(--btn-color);
  border-color: var(--btn-color);
}

.btn--primary:hover svg path {
  fill: var(--secondry-color);
}

.btn-bordered {
  background-color: transparent;
  border-color: var(--text-light-color);
  color: var(--text-light-color);
}

.btn-bordered:hover {
  background-color: var(--secondry-color);
  border-color: var(--secondry-color);
  color: var(--text-light-color) !important;
}


[type=button],
[type=reset],
[type=submit],
button {
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button;
}

.form-group__CTA {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  width: 100%;
}

.form-group__CTA .btn,
.form-group__CTA .frm_button_submit {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  box-shadow: none;
}

.container-fluid {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  max-width: 100%;
  width: 100%;
}

.col-12 {
  max-width: 100%;
  width: 100%;
}



@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-sm-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-sm, .row-inner-sm {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
  
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-md-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-md, .row-inner-md {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-lg-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-lg, .row-inner-lg {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}

@media (min-width: 1200px) {
  .col-xls-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xls-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-xls, .row-inner-xls {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}

@media (min-width: 1280px) {
  .col-xl-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xl-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-xl, .row-inner-xl {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}

@media (min-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
    padding: 0 0.9375rem;
  }

  .col-xxl-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
    padding: 0 0.9375rem;
  }
  .row-xxl, .row-inner-xxl {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1.875rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 84.375rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .in__privacy-inner *{
    font-size: 1.375rem;
  }
}


.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-arround {
  justify-content: space-around;
}

.flex-dir-col {
  flex-direction: column;
}

.flex-dir-row {
  flex-direction: row;
}

.p0 {
  padding: var(--spacing-0);
}

.m0 {
  margin: var(--spacing-0);
}

.mb1 {
  margin-bottom: 1rem;
}

.spacing{
  margin-top: var(--spacing-3);
}

.ad-innerhero__content-wrapper {
  max-width: 57.5rem;
}

.ad-innerhero__bg {
  position: relative;
  max-width: 100%;
  min-height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ad-innerhero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(43, 33, 23, 0.6);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

@media (min-width: 768px) {
  .sm-none {
    display: none;
  }

  .sm-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .md-none {
    display: none;
  }

  .md-block {
    display: block;
  }
}

@media (min-width: 1200px) {
  .lg-none {
    display: none;
  }

  .lg-block {
    display: block;
  }
}

@media (min-width: 1440px) {
  .xlg-none {
    display: none;
  }

  .xlg-block {
    display: block;
  }
}

.close {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 51, 65, 0.85);
  z-index: 999;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.modal_close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  cursor: pointer;
}

.modal_close svg path {
  stroke: #FFFFFF;
}


hr.seperator,
hr {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-top: 0.0625rem solid #DADADA;
  margin-block: 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.875rem 1.875rem;
}

/***** Section *****/

.toggle__menu {
  width: 35px;
  height: 42px;
  line-height: 0.5;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 21px;
  right: 20px;
  -webkit-tap-highlight-color: transparent;
}

.toggle__menu span {
  background-color: var(--text-light-color);
  width: 100%;
  height: 3px;
  display: inline-block;
  border-radius: 8px;
  position: relative;
  margin-top: 6px;
}

.toggle__menu.open {
  top: 23px;
}

.toggle__menu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.toggle__menu.open span:nth-child(2) {
  display: none;
}

.toggle__menu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: -3px;
}

.header__main {
  padding: 1.5625rem 0;
  transition: all 0.6s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(0deg, rgba(1, 2, 0, 0) 0%, rgba(20, 25, 30, 0.5) 94%);
}

.header__main.nav-up {
  top: -7.5rem;
}

.header__main .row {
  position: relative;
}

.header__main.nav-down {
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1);
}

header .down-arrow {
  display: inline-block;
  position: relative;
  bottom: 1px;
  right: 0;
  width: 8px;
  height: 8px;
  transition: all 0.6s ease-in-out;
}

header .down-arrow svg path {
  fill: #ffffff;
}

header ul li {
  position: relative;
}

header ul li a {
  color: var(--text-light-color);
  font-size: 1.125rem;
  position: relative;
  font-weight: 600;
}

header ul li ul:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: -10px;
  top: 2px;
  left: 50%;
  box-sizing: border-box;
  border: 10px solid black;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  border-color: white white transparent transparent;
}

header ul li ul:hover:after {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease-in-out;
}

header ul li:hover a~.sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease-in-out;
}

header .sub-menu {
  position: absolute;
  width: 186px;
  right: 50%;
  transform: translateX(45%);
  top: 50px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0px 6px 23px rgba(0, 0, 0, 0.18);
  padding: 15px 10px;
  transition: all 0.6s ease-in-out;
  z-index: 99;
}

header .sub-menu li {
  padding: 0;
}

header .sub-menu li a {
  font-size: 1rem;
  padding: 0.625rem;
  display: block;
  border-radius: 5px;
  color: var(--primary-color);
}

header .sub-menu li a:hover {
  background-color: #dafdbf;
}

header .sub-menu li:not(:last-child) {
  margin-right: 0;
}

.header__cta .ly__sign,
.header__cta--mobile .ly__sign {
  margin-right: 20px;
  background-color: transparent;
}

.header__cta .ly__sign:hover,
.header__cta--mobile .ly__sign:hover {
  background: #FEF7EF;
  box-shadow: inset 0 0 0px 2px #FFCC00;
}

@media (min-width: 992px) {
  header ul {
    position: relative;
  }
}

@media (max-width: 991px) {
  header ul {
    position: relative;
  }

  header ul li:last-child img {
    display: none;
  }
}

@media (max-width: 1440px) {
  header .col-6 {
    max-width: 60%;
    flex: 0 0 60%;
  }
}

@media (max-width: 1199px) {
  .header__main {
    padding: 25px 0;
  }
}

@media (max-width: 991px) {
  .header ul li:not(:last-child) {
    margin-right: 20px;
  }

  .header ul .header__menu {
    margin-top: 7px;
  }

  .header .contact__links ul li:not(:last-child) a {
    margin-right: 10px;
    padding-right: 10px;
  }

  .header .contact__links ul li a {
    font-size: 12px;
  }

  .header__main {
    padding: 20px 0;
  }

  .header__menu {
    margin-top: 10px;
  }

  .header .sub-menu.mega-sub-menu {
    width: 530px;
    padding-bottom: 0;
    padding: 15px 5px;
  }

  .header .sub-menu {
    top: 35px;
    padding: 15px;
  }

  .header .down-arrow {
    top: 4px;
  }
}

@media (max-width: 767px) {
  header ul li .sub-menu.mega-sub-menu li {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .header__main .col-2 {
    max-width: 30%;
    flex: 0 0 30%;
  }

  .header__main .col-10 {
    max-width: 70%;
    flex: 0 0 70%;
  }
}

@media (max-width: 1800px) {
  .header ul li a {
    font-size: 14px;
  }

  .header ul li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1279px) {
  .header__cta--mobile {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .toggle__menu {
    display: block;
    z-index: 9;
  }

  .header__menu {
    position: fixed;
    top: 90px;
    right: -110%;
    width: 100%;
    min-height: calc(100vh - 300px);
    overflow-x: hidden;
    transition: all 0.5s;
    border-radius: 0;
    padding: 30px;
    margin: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 350px;
    border-radius: 20px;
  }

  .header__menu.active {
    right: 10px;
  }

  .header__menu ul {
    display: block;
  }

  .header__menu ul li {
    padding: 20px 0;
    width: 100%;
  }

  .header__menu ul li:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }

  .header__menu ul li a {
    display: block;
    margin: 0 !important;
  }

  header ul li:hover a~.sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  header .sub-menu.mega-sub-menu.show {
    opacity: 1;
    visibility: visible;
    width: 100% !important;
    display: flex;
    position: static;
    margin: 15px 0 0;
  }

  header .sub-menu.mega-sub-menu.show li {
    flex: 0 0 33%;
    max-width: 33%;
  }

  header .menu-item-has-children.active>.sub-menu {
    width: 100% !important;
    position: static;
    margin: 10px 0 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    box-shadow: none;
    background: transparent;
  }

  header .menu-item-has-children .sub-menu-right ul {
    display: flex;
    flex-wrap: wrap;
  }

  .header__menu ul {
    display: flex;
    flex-direction: column;
  }

  .toggle__menu {
    z-index: 999;
  }

  .header__cta--mobile .btn {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  .menu-item-has-children a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  header ul li a::before {
    content: none;
  }

  header ul li a.active {
    display: inline-block;
  }

  header ul li a.active::before {
    content: "";
  }

  header .menu-item-has-children {
    transition: none;
  }

  header .menu-item-has-children .sub-menu {
    transition: none;
  }

  header .menu-item-has-children .sub-menu li {
    padding: 0;
    border-bottom: 0;
  }

  header .menu-item-has-children .sub-menu li a {
    font-weight: 400;
    padding: 10px 12px;
    color: #ffffff;
  }

  .header__cta--mobile {
    margin: 15px;
  }

  .header__cta--mobile .btn {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  header ul li ul:after {
    content: none;
  }

  .header__main {
    padding: 15px 0
  }
}

li.menu-item-has-children a::after {
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 0.625rem;
  margin-left: 0.5625rem;
  background: url(../images/arrow.svg);
  background-size: 1.5625rem;
  background-position: center 53%;
}



.header__logo img,
.header__logo svg {
  max-width: 12.88rem;
  height: auto;
}

header ul li a.active,
header ul li a:hover, header ul li.current_page_item a {
  color: var(--secondry-color);
}

header ul li a::before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: -10%;
  width: 120%;
  height: 3px;
  background-color: var(--secondry-color);
  transform: rotateY(90deg);
  transition: transform 0.4s linear;
}

header ul li a:hover::before,
header ul li a.active::before,
header ul li.current_page_item a::before {
  transform: rotate(0deg);
}

@media (min-width: 1280px) {
  header ul li:not(:last-child) {
    margin-right: 3.125rem;
  }
}

.menu-item-has-children .sub-menu li a::after,
.menu-item-has-children .sub-menu li a::before {
  content: none;
}

@media (max-width: 650px) {
  header ul li .sub-menu.mega-sub-menu li {
    margin-bottom: 15px !important;
  }

  header ul li .sub-menu.mega-sub-menu li:not(:last-child)::after {
    display: none;
  }

  .header__menu {
    min-height: calc(100vh - 400px);
    width: 300px;
  }
  .header__menu ul li {
    padding: 10px 0;
  }
}

/***** End Section *****/


/*footer strat*/
.footer-main  .row-custom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-main  .col-custom {
  max-width: 26.25rem;
}

.footer-main  .col {
  max-width: 5rem;
}

.footer-main {
  padding: 3.125rem 0;
}

.footer-main  .footer-social {
  gap: 1.25rem;
}

.footer-main  .social-wrapper:hover {
  background-color: var(--text-light-color);
}

.footer-main  .social-wrapper:hover svg path {
  fill: var(--secondry-color);
}

.footer-main  .social-wrapper {
  width: max(30px, 2.1875rem);
  height: max(30px, 2.1875rem);
  background-color: var(--secondry-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.footer-main  .footer-contact .d-flex {
  gap: 0.9375rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.copyright-links span {
  margin-inline: 15px;
}

.copyright-links a:hover {
  color: var(--primary-color) !important;
}

.footer-copyright{
  padding-block: 1.25rem;
}

@media (max-width: 1060px){
  .footer-main  .row-custom {
    justify-content: flex-start;
}
}

@media (max-width: 375px){
  .footer-main  * {
    font-size: 14px;
}
}

/*footer-end*/

.bg-overlay {
  position: relative;
}

.bg-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);

}

.in__btn-primary:hover .dot {
  width: 21.375rem;
  height: 21.375rem;
}

.in__btn-primary .dot {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  z-index: 0;
  border-radius: 100%;
  transition: all 1s;
  transform: translate(-50%, -50%);
}

.in__btn-primary span{
  position: relative;
  z-index: 2;
}

.in__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 4.375rem;
  font-weight: 400;
  font-size: max(12px, 0.875rem);
  line-height: 1.3;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
  padding: 0 0.125rem;
}

.in__btn-primary:hover {
  color: #ffffff;
}

.in__heading-dot:before{
  content: '';
  width: 2.375rem;
  height: 2.375rem;
  display: inline-block;
  background-color: var(--text-light-color);
  border-radius: 100%;
  margin-right: 0.5rem;
}
@media (max-width: 767px){
  .in__heading-dot:before{
    width: 1.375rem;
    height: 1.375rem;
  }
}

.cursor1 {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.15s;
  transition: 0.15s;
  z-index: 999;
  /* mix-blend-mode: difference; */
}

.cursor1:before {
  content: "More Info";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-color);
  opacity: 0;
}

.cursor1.active {
height: 128px;
width: 128px;
background-color: var(--primary-color);
/* transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33), 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33); */
}

.cursor1.active:before {
opacity: 1;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 999;
  /* mix-blend-mode: difference; */
}

html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*animation*/

#startup-animation {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.1s ease-in-out;
}
#startup-animation .bg{
  z-index: 99999;
  width: 110vw;
  height: 110vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.15);
  transform-origin: center center;
  border: 58vw solid #000000;
  border-radius: 100%;
}

#startup-animation img {
  opacity: 0;
  transform: translateY(150%);
  position: relative;
  z-index: 999999;
}

@media (max-width: 991px){
  #startup-animation .bg{
    width: 100vh;
    height: 100vh;
    border-width: 150vh;
  }
}

/***** Cta Section *****/ 
.in__cta-content{
  overflow: hidden;
  border-radius: 1.25rem;
}

.in__shape-dot {
  top: 50%;
  transform: translateY(-50%);
}

.in__shape {
  position: absolute;
  border-radius: 100%;
  box-shadow: inset 0 0 0 4px rgba(249, 249, 249, 0.2);
}

.in__cta{
  margin: 3.25rem 0;
}

.in__shape-circle-big{
  height: 22.7vw;
  width: 23.17vw;
}

.in__shape-circle{
  width: 15.98vw;
  height: 15.98vw;
}

.in__shape-dot {
  width: 6.145vw;
  height: 6.145vw;
  background-color: rgba(249, 249, 249, 0.2);
  right: 1.25vw;
  box-shadow: none;
}

.in__shape-dot-small {
  width: 1.04vw;
  height: 1.04vw;
  left: 3.125vw;
  top: 4.166vw;
  background: rgba(249, 249, 249, 0.2);
  box-shadow: none;
}

.in__shape-1 {
  right: -5.72vw;
  bottom: -14.375vw;
}

.in__shape-2 {
  right: -4.6875vw;
  bottom: -13.33vw;
}

.in__shape-3 {
  top: -19.47vw;
  left: -12.875vw;
}

.in__shape-4 {
  top: -18.07vw;
  left: -11.97vw;
}

@media (min-width: 1280px){
  .in__cta{
      margin: 5.25rem 0;
  }
  .in__cta-content {
    padding: 5rem 3.75rem;
    overflow: hidden;
  }

  .in__privacy-inner{
    margin: 6.25rem 0;
  }
}

@media (max-width: 1280px){
  .in__cta-content {
    padding: 3.75rem;
    overflow: hidden;
}
.in__privacy-inner{
  margin: 3rem 0;
}
}

@media (max-width: 767px){
  .in__cta-content {
    justify-content: center;
    row-gap: 2rem;
    flex-direction: column;
  }
  .in__shape-circle-big{
    height: 7.7rem;
    width: 7.17rem;
  }
  
  .in__shape-circle{
    width: 5.98rem;
    height: 5.98rem;
  }
  
  .in__shape-dot {
    width: 3rem;
    height: 3rem;
    background-color: rgba(249, 249, 249, 0.2);
    right: 1.25rem;
    box-shadow: none;
  }
  
  .in__shape-dot-small {
    width: 1.2rem;
    height: 1.2rem;
    left: 3.125rem;
    top: 4.166rem;
    background: rgba(249, 249, 249, 0.2);
    box-shadow: none;
  }
  
  .in__shape-1 {
    right: -1.72rem;
    bottom: -3.975rem;
  }
  
  .in__shape-2 {
    right: -3.6875vw;
    bottom: -7.33vw;
  }
  
  .in__shape-3 {
    top: -4.27rem;
    left: -2.275rem;
  }
  
  .in__shape-4 {
    top: -5.07rem;
    left: -2.97rem;
  }
}

@media (max-width: 575px){
  .in__cta-content {
    padding: 2.5rem;
  }
}
/***** End Section *****/
/*keyframe animation*/
@keyframes animate-width {
  0% { 
      width: 1.5625rem; 
  }
  50% { 
      width: 3.125rem; 
      background-color: var(--secondry-color);
  }
  100% { 
      width: 1.5625rem; 
  }
}

/*accordian*/

.accordion .accordion-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
}
.accordion .accordion-item:first-child {
  flex: 1;
}

.in__accordian {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}

.accordion {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.in__accordian{
  padding: 0 1rem;
}

.in__accordian .accordion .accordion-item svg {
  max-width: 4.325rem;
  height: auto;
}

.in__accordian .accordion .accordion-item {
  background-color: #fafafa;
  padding: 0.938rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
}

.in__accordian .accordion-content {
  margin: 1rem 0 0;
  overflow: hidden;
}

.in__accordian .accordian-heading-wrapper span {
  vertical-align: middle;
  margin-right: 0.3rem;
  width: 1.25rem;
  display: inline-block;
  font-family: var( --primary-font) ;
}



.in__accordian .accordion-content img {
  border-radius: 0.625rem;
}


.in__accordian .in__dot-text {
  position: static;
  margin-bottom: 2rem;
}

@media (min-width: 1280px){
  .in__accordian .accordion-content {
    margin: 1.875rem 0 0 7.625rem;
  }

  .in__accordian .accordian-heading-wrapper span {
    margin-right: 5.6625rem;
  }
  .in__accordian .accordion-content h6 {
    margin-top: 3.125rem;
  }
  .in__accordian{
    padding: 0 1.875rem;
  }
  .in__accordian .in__dot-text {
    margin-bottom: 3.75rem;
}

}

@media (max-width: 1280px){
  
}

@media (max-width: 991px){
  .in__accordian .accordion .accordion-item svg {
    max-width: 3rem;
  }
}

@media (max-width: 575px){
  .in__accordian .accordion .accordion-item svg {
    max-width: 1.75rem;
  }
}

/*hero-section*/
/*Header Section*/
.in__hero-section {
  background-position: center;
  background-size: cover;
  min-height: calc(100vh + 7.375rem);
}

.in__hero-content {
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

path.curved-line {
  fill: #ffffff;
}

.top-curve {
  position: absolute;
  top: auto;
  width: 100%;
  left: 0;
  bottom: 99%;
  z-index: 1;
}

.home .top-curve {
  position: absolute;
  top: -17.375rem;
  width: 100%;
  left: 0;
  bottom: auto;
}



.in__hero-content p {
  max-width: 56.25rem;
  margin: 0 auto;
}

.in__scroll {
  position: absolute;
  bottom: 11.5rem;
  right: 50%;
  transform: translateX(50%) rotate(90deg);
  display: inline-flex;
  z-index: 1;
  width: fit-content;
}

.in__scroll span {
  animation: animate-width 2s ease-in-out infinite;
  height: 0.3215rem;
  width: 1.5625rem;
  background-color: var(--text-light-color);
  position: absolute;
  bottom: 50%;
  left: calc(100% + 1rem);
  transform: translateY(50%);
}

.in__social {
  position: absolute;
  right: 3.125rem;
  bottom: 7.82rem;
  flex-direction: column;
  z-index: 1;
  gap: 1.25rem;
}

.in__social a:hover svg path {
  fill: var(--secondry-color);
}

@media (max-width: 1279.99px) {
  .top-curve {
    display: none;
  }
}

@media (max-width: 767px) {
  .in__hero-content {
      padding: 20rem 0;
  }

  .in__scroll {
      bottom: 8rem;
  }

  .in__social {
      right: 2rem;
      bottom: 5rem;
  }
}

@media (max-width: 567px) {
  .in__hero-content {
      padding: 13rem 0;
  }
}

.in__privacy-inner ul{
  list-style: disc;
}

.in__privacy-inner ol li:not(:last-child) {
  margin-bottom: 15px;
}

.in__privacy-inner .in__privacy-inner * {
  line-height: 1.5;
}

.in__privacy-inner ol, .in__privacy-inner ul {
  padding-left: 21px;
}

/*Form*/

.wpcf7-submit {
  transition: all 0.5s ease-in-out;
}

.wpcf7-submit:hover {
  color: #5da724;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #5da724;
}

.wpcf7-form.init {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 1.25rem;
  margin-top: 1.875rem;
}

.wpcf7-form.init p {
  flex: 0 0 100%;
  margin: 0;
}

.wpcf7-form.init p:nth-child(-n+3) {
  flex: 0 0 calc(50% - 0.625rem);
}

.wpcf7-form.init p > *:not(.wpcf7-spinner) {
  width: 100%;
}

.in__contact-us .card {
  padding: 2.5rem; 
  border-radius: 1.25rem;
  max-width: 67.75rem; 
  background: #FFFFFF;
  box-shadow: 0px 0px 1.25rem rgba(0, 0, 0, 0.08); 
  margin: 0 auto;
}

.in__contact-us {
  margin: 5rem 0;
}

.wpcf7-submit {
  padding: 0.875rem 2.8125rem;
  font-size: var(--text);
  font-weight: var(--font-weight-smedium);
  font-family: var(--primary-font);
  border-radius: 3.125rem; 
  border: 0;
  background-color: #000000;
  color: #ffffff;
  width: auto !important;
  margin: 0 auto !important;
  display: inline-block;
}


.wpcf7-form.init p:nth-child(8) {
    text-align: center;
}

.wpcf7-form.init p:nth-child(7) {
  position: relative;
  padding-left: 20px;
}

.wpcf7-form.init p:nth-child(7) .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  top: 0;
}

.wpcf7-form-control-wrap {
  margin-top: 0.25rem;
  display: block;
}

/*career page css*/
.job-form .job-field {
  flex: 0 0 100%;
}

.job-form, .job-cv_other-field, .job-av_salary-field, .job-name-field {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.job-github-field.job-field {
  flex: 0 0 50%;
}

.job-cv_other-field.job-field > *, .job-av_salary-field > *, .job-name-field > * {
  flex: 0 0 calc(50% - 0.9375rem);
}

.job-cv_other-field.job-field {
  margin-top: -1.25rem
}

.wpcf7 input[type="file"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.job-cv_other-field .wpcf7-form-control-wrap:before {
  content: 'Upload';
  background-color: #f3f4f5;
  width: 100%;
  border: 2px dashed #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.job-cv_other-field .wpcf7-form-control-wrap {
  position: relative;
  height: 9.375rem;
}

.job-confirm-field .wpcf7-form-control-wrap {
  position: absolute;
  top: 0;
  left: 0;
}

.job-confirm-field.job-field {
  position: relative;
  padding-left: 1.25rem;
}

.wpcf7-list-item {
  margin: 0;
}

.in__tab-content input[type=text], .in__tab-content input[type=email], .in__tab-content textarea {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: 0;
  color: #ffffff;
}

.in__tab-content .wpcf7 input[type="file"] {
  position: relative;
  opacity: 1;
  background: none;
  border: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  color: #ffffff;
}

.in__tab-content input[type=text]::placeholder, .in__tab-content input[type=email]::placeholder, .in__tab-content textarea::placeholder {
  color: #bbbbbb;
}


/**/
@media (max-width: 991px){
  .in__contact-us {
    margin: 3rem 0;
  }
  .wpcf7-form.init p:nth-child(-n+3),.job-github-field.job-field, .job-cv_other-field.job-field > *, .job-av_salary-field > *, .job-name-field > * {
    flex: 0 0 100%;
  }
  .wpcf7-form.initm, .job-form, .job-cv_other-field, .job-av_salary-field {
    gap: 1rem;
  }
  .job-name-field{
    gap: 0;
  }
  .in__contact-us .card {
    padding: 1.5rem;
  }
}

.swiper-wrapper{
  height: auto;
}

/*Video -iframe*/
.in__hero-section video, .in__hero-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.in__hero-section video{
  object-fit: cover;
}

#smooth-content{
  overflow-x: hidden;
}

/*Job Page*/

.in__job-desc ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.in__job-desc ul li:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.in__job-desc .in__spacing {
  margin: 2.5rem 0;
}

@media (max-width: 767px){
  .in__job-desc .in__spacing {
    margin: 1.25rem 0;
  }
}

/*27-03-2024*/
@media (min-width: 1920.99px){
  .in__social svg {
    width: 1rem;
    height: 1rem;
  }
}

ol li p, ul li p{
    font-size: var(--text);
    color: var(--text-color);
}

/*# sourceMappingURL=style.css.map */