@charset "UTF-8";
/* CSS INDEXING */
:root {
  --primary-color: #3c3836;
  --secondary-color: #f6b924;
  --theme-color: #ffcccc;
  --yellow-color: #ffc107;
  --text-gray-color: #666666;
  --white-color: #ffffff;
  --black-color: #000000;
  --border-color: #c8c8c8;
  --roboto: "Roboto", sans-serif;
  --body-font-size: 1.6rem;
  --body-font-weight: 400;
  --body-line-height: 2.7rem;
  --headings-weight: 600;
  --transition: all 0.3s ease 0s;
  --container-fluid-offset: 8rem;
}

/* Common Style */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-size: 62.5%;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--roboto);
  font-size: var(--body-font-size, 1.6rem);
  font-weight: var(--body-font-weight);
  font-style: normal;
  line-height: var(--body-line-height, 27px);
  position: relative;
  visibility: visible;
  overflow-x: hidden;
  color: var(--black-color);
  background-color: var(--white-color);
}
@media only screen and (max-width: 1599px) {
  body {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 992px) {
  body {
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: var(--headings-weight);
  margin: 0;
}

h1,
.h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 480px) {
  h1,
  .h1 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 576px) {
  h1,
  .h1 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
@media only screen and (min-width: 992px) {
  h1,
  .h1 {
    font-size: 3.4rem;
    line-height: 4.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 4rem;
    line-height: 4.7rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
}
@media only screen and (min-width: 576px) {
  h2,
  .h2 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 992px) {
  h2,
  .h2 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  h2,
  .h2 {
    font-size: 3.6rem;
    line-height: 4rem;
  }
}

h3,
.h3 {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  h3,
  .h3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
}
@media only screen and (min-width: 1366px) {
  h3,
  .h3 {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  h3,
  .h3 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

h4,
.h4 {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media only screen and (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

h5,
.h5 {
  font-weight: 400;
}

h6,
.h6 {
  font-weight: 400;
}

p,
.p {
  margin-top: 0;
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 767px) {
  p,
  .p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

a,
button,
img,
input,
textarea {
  transition: var(--transition);
}

*:focus {
  outline: none;
  box-shadow: none;
}

:focus-visible {
  box-shadow: 0 0 5px 2px rgba(19, 19, 19, 0.15);
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

button,
input[type="submit"] {
  cursor: pointer;
  font-family: var(--font-lato);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

input[type="number"] {
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
  height: auto;
}

span {
  display: inline-block;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ul {
  margin: 0;
  padding: 0;
}

ul:last-child {
  margin-bottom: 0;
}

li {
  list-style: none;
  line-height: 1;
}

hr {
  border-top-width: 2px;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.container-fluid {
  --offset-fluid: 1.5rem;
  padding-right: var(--offset-fluid);
  padding-left: var(--offset-fluid);
}
@media only screen and (min-width: 992px) {
  .container-fluid {
    --offset-fluid: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 3.8);
  }
}
@media only screen and (min-width: 1366px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 2.5);
  }
}
@media only screen and (min-width: 1500px) {
  .container-fluid {
    --offset-fluid: var(--container-fluid-offset);
  }
}

@media only screen and (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1366px) {
  .container {
    max-width: 1330px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1450px;
  }
}
.row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media only screen and (min-width: 1600px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .row > * {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row > * {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.row-reverse {
  flex-direction: column-reverse;
}

@media only screen and (max-width: 991px) {
  .row-md-reverse {
    flex-direction: column-reverse;
  }
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.align-self-center {
  align-self: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.d-none {
  display: none;
}

@media only screen and (min-width: 992px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
}
.display-block {
  display: block;
}

.primary__btn {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.6rem;
  display: inline-block;
  height: 3.6rem;
  padding: 0 1.8rem;
  border-radius: 0.5rem;
  background: var(--secondary-color);
  color: var(--black-color);
  border: 0;
}
.primary__btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
@media only screen and (min-width: 576px) {
  .primary__btn {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .primary__btn {
    line-height: 4rem;
    height: 4rem;
    padding: 0 2.2rem;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .primary__btn {
    font-size: 1.4rem;
    line-height: 4.5rem;
    height: 4.5rem;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .primary__btn {
    font-size: 1.5rem;
  }
}

select {
  word-wrap: normal;
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

#scroll__top {
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 99;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  line-height: 1;
  width: 4.3rem;
  height: 4.3rem;
  line-height: 1;
  border-radius: 50%;
  border: 0;
}
#scroll__top:hover {
  background: var(--primary-color);
}

#scroll__top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#scroll__top svg {
  width: 25px;
  line-height: 1;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.line-height-1 {
  line-height: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.overflow-hidden {
  overflow: hidden;
}

.break {
  word-break: break-word;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-white {
  color: var(--white-color);
}

.text-black {
  color: var(--black-color);
}

.bg__primary {
  background: var(--primary-color);
}

.bg__secondary {
  background: var(--secondary-color);
}

.bg__white {
  background: var(--white-color);
}

.bg__black {
  background: var(--black-color);
}

.text__primary {
  color: var(--primary-color);
}

.text__secondary {
  color: var(--secondary-color);
}

.position__relative {
  position: relative;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.border {
  border: 1px solid var(--border-color);
}

.border-0 {
  border: none;
}

.border-radius-5 {
  border-radius: 0.5rem;
}

.border-radius-10 {
  border-radius: 1rem;
}

.border-radius-20 {
  border-radius: 2rem;
}

.border-radius-30 {
  border-radius: 3rem;
}

.border-radius-50 {
  border-radius: 50%;
}

@media only screen and (max-width: 991px) {
  .md-width-100 {
    width: 100%;
  }
}

/* Tab */
.tab_content {
  display: block;
}

.tab_pane {
  display: none;
  transition: var(--transition);
}

.tab_pane:not(.show) {
  opacity: 0;
}

.tab_pane.show {
  opacity: 1;
}

.tab_pane.active {
  display: block;
}

body.overlay__active,
.mobile_menu_open {
  overflow-y: hidden;
}

body.overlay__active::before,
.mobile_menu_open::before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0.5;
  cursor: crosshair;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate-fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Section padding */
.section--padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .section--padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .section--padding {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

/* Section margin */
.section--nargin {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .section--nargin {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .section--nargin {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section--nargin {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

/* Padding */
.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* Margin */
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-60 {
  margin-bottom: 3.5rem;
}
@media only screen and (min-width: 768px) {
  .mb-60 {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 992px) {
  .mb-60 {
    margin-bottom: 6rem;
  }
}

.mb-55 {
  margin-bottom: 3.5rem;
}
@media only screen and (min-width: 992px) {
  .mb-55 {
    margin-bottom: 5.5rem;
  }
}

.mb-50 {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .mb-50 {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .mb-50 {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mb-50 {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mb-50 {
    margin-bottom: 5rem;
  }
}

.mb-40 {
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 992px) {
  .mb-40 {
    margin-bottom: 4rem;
  }
}

.mb--n40 {
  margin-bottom: -3.2rem;
}
@media only screen and (min-width: 992px) {
  .mb--n40 {
    margin-bottom: -4rem;
  }
}

.mb-35 {
  margin-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .mb-35 {
    margin-bottom: 3.5rem;
  }
}

.mb-30 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 992px) {
  .mb-30 {
    margin-bottom: 3rem;
  }
}

.mb--n30 {
  margin-bottom: -2rem;
}
@media only screen and (min-width: 992px) {
  .mb--n30 {
    margin-bottom: -3rem;
  }
}

.mb--n25 {
  margin-bottom: -1.8rem;
}
@media only screen and (min-width: 992px) {
  .mb--n25 {
    margin-bottom: -2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mb--n25 {
    margin-bottom: -2.5rem;
  }
}

.mb-25 {
  margin-bottom: 1.8rem;
}
@media only screen and (min-width: 992px) {
  .mb-25 {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mb-25 {
    margin-bottom: 2.5rem;
  }
}

.mb-20 {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .mb-20 {
    margin-bottom: 2rem;
  }
}

.mb-18 {
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .mb-18 {
    margin-bottom: 1.8rem;
  }
}

.mb-15 {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .mb-15 {
    margin-bottom: 1.5rem;
  }
}

.mb-12 {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 992px) {
  .mb-12 {
    margin-bottom: 1.2rem;
  }
}

.mb-10 {
  margin-bottom: 0.8rem;
}
@media only screen and (min-width: 992px) {
  .mb-10 {
    margin-bottom: 1rem;
  }
}

.mb-5 {
  margin-bottom: 0.5rem;
}

.mr-30 {
  margin-right: 3rem;
}

.offcanvas__header--menu__open {
  line-height: 1;
  display: none;
  color: var(--white-color);
}
@media only screen and (max-width: 991px) {
  .offcanvas__header--menu__open {
    display: block;
  }
}
.offcanvas__header--menu__open--svg {
  width: 32px;
}
.offcanvas__header--menu__open--btn > * {
  pointer-events: none;
}

.offcanvas-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  transition: var(--transition);
  transform: translateX(-100%);
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 480px) {
  .offcanvas-header {
    max-width: 320px;
  }
}

.offcanvas-header.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.offcanvas-header.open ~ .offcanvas-overlay {
  visibility: visible;
  opacity: 0.75;
}

.offcanvas-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  opacity: 0;
  background-color: var(--black-color);
}

.offcanvas__inner {
  position: relative;
  height: 100%;
}

/* Offacnvas Logo */
.offcanvas__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.offcanvas__close--btn {
  position: relative;
  align-self: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  transform: rotate(45deg);
  background-color: var(--black-color);
}

.offcanvas__close--btn::after {
  transform: rotate(-45deg);
}

/* Mobile Menu */
.offcanvas__menu {
  overflow-y: auto;
  height: 100%;
}

.offcanvas__menu_ul {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 360px;
}

.offcanvas__menu_li {
  position: relative;
  border-bottom: 1px solid var(--border-color2);
}

.offcanvas__menu_li:first-child {
  border-top: 1px solid var(--border-color2);
}

.offcanvas__menu_item {
  line-height: 1;
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
}

/* Mobile Sub Menu */
.offcanvas__sub_menu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__sub_menu_li {
  position: relative;
  border-top: 1px solid var(--border-color2);
}

.offcanvas__sub_menu_item {
  line-height: 1;
  display: block;
  padding: 15px 0 15px 30px;
}

.offcanvas__sub_menu_item ~ .offcanvas__sub_menu .offcanvas__sub_menu_item {
  padding-left: 40px;
}

.offcanvas__sub_menu_toggle {
  font-size: 20px;
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4.6rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.offcanvas__sub_menu_toggle::before,
.offcanvas__sub_menu_toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  transition: var(--transition);
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--black-color);
}

.offcanvas__sub_menu_toggle:not(.active)::after {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.header__transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.main__header {
  padding: 2rem 0;
}
@media only screen and (min-width: 1200px) {
  .main__header {
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 575px) {
  .main__logo--img {
    max-width: 11rem;
  }
}
@media only screen and (max-width: 479px) {
  .main__logo--img {
    max-width: 10rem;
  }
}

.header__right {
  gap: 5rem;
}

.header__menu--items {
  margin-right: 3rem;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .header__menu--items {
    margin-right: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header__menu--items {
    margin-right: 4.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .header__menu--items {
    margin-right: 5rem;
  }
}
.header__menu--items:last-child {
  margin-right: 0;
}
.header__menu--items:hover .header__menu--link {
  color: var(--secondary-color);
}
.header__menu--items:hover .header__menu--link::before {
  width: 100%;
}
.header__menu--items:hover .header__sub--menu {
  visibility: visible;
  margin-top: 10px;
  opacity: 1;
}
.header__menu--items:hover .header__mega--menu {
  visibility: visible;
  margin-top: 10px;
  opacity: 1;
}
.header__menu--link {
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: var(--white-color);
  text-transform: capitalize;
  position: relative;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 1200px) {
  .header__menu--link {
    font-size: 1.8rem;
  }
}
.header__menu--link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.header__sub--menu {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: 0;
  visibility: hidden;
  width: 200px;
  margin: 0;
  margin-top: 20px;
  padding: 20px;
  list-style: none;
  transition: var(--transition);
  opacity: 0;
  background-color: var(--white-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.header__sub--menu__link {
  font-size: 1.4rem;
  display: block;
  padding: 10px 0;
}
@media only screen and (min-width: 1200px) {
  .header__sub--menu__link {
    font-size: 1.5rem;
  }
}

.mega__menu--items {
  position: static;
}

.header__mega--menu {
  position: absolute;
  z-index: 99;
  top: 100%;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  margin-top: 20px;
  padding: 20px 15px;
  list-style: none;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  background-color: var(--white-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.header__mega--menu__li {
  padding: 3px 10px;
  width: 20%;
}
.header__mega--menu__li.fullscreen__style {
  width: 100%;
  margin-top: 1.8rem;
}
@media only screen and (min-width: 1200px) {
  .header__mega--menu__li {
    padding: 3px 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .header__mega--menu {
    padding: 25px;
  }
}

.header__mega--menu__banner {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin-right: 2.5rem;
}
.header__mega--menu__banner:last-child {
  margin-right: 0;
}
.header__mega--menu__banner:hover .header__mega--menu__banner--img {
  transform: scale(1.05);
}
.header__mega--menu__banner:hover::before {
  opacity: 0.5;
}
.header__mega--menu__banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  opacity: 0;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9;
  transition: var(--transition);
}
.header__mega--menu__banner--img {
  border-radius: 10px;
}

.header__mega--subtitle {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.header__mega--sub__menu--title {
  font-size: 1.4rem;
  padding: 8px 0;
}
@media only screen and (min-width: 1200px) {
  .header__mega--sub__menu--title {
    font-size: 1.5rem;
  }
}

.purchase__now--btn {
  background: var(--white-color);
  font-weight: 600;
  color: #161880;
}
@media only screen and (max-width: 479px) {
  .purchase__now--btn {
    font-size: 1.1rem;
    line-height: 3.4rem;
    height: 3.4rem;
    padding: 0 1.2rem;
  }
}

.hero__section {
  background-color: var(--theme-color);
  background: url(../img/other/hero-bg.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}
.hero__section--inner {
  padding: 9rem 0 3.5rem;
}
@media only screen and (min-width: 480px) {
  .hero__section--inner {
    padding: 10rem 0 4rem;
  }
}
@media only screen and (min-width: 576px) {
  .hero__section--inner {
    padding: 11rem 0 4rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__section--inner {
    padding: 16rem 0 10rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__section--inner {
    padding: 20rem 0 13rem;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__section--inner {
    padding: 24rem 0;
  }
}

@media only screen and (max-width: 991px) {
  .hero__content {
    text-align: center;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero__content {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 479px) {
  .hero__content {
    margin-bottom: 4rem;
  }
}
.hero__content--title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 576px) {
  .hero__content--title {
    margin-bottom: 1.4rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--title {
    margin-bottom: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__content--title {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__content--title {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 479px) {
  .hero__content--title {
    margin-bottom: 1.8rem;
  }
}
.hero__content--subtitle {
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: var(--secondary-color);
  font-weight: 400;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 575px) {
  .hero__content--subtitle {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.hero__content--btn__link {
  margin-right: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .hero__content--btn__link {
    margin-right: 1rem;
  }
}
.hero__content--btn__link:last-child {
  margin-right: 0;
}
.hero__content--btn__link.btn2 {
  background: var(--white-color);
  color: #161880;
}
.hero__content--btn__link.btn2:hover {
  background: var(--secondary-color);
  color: var(--black-color);
}

.pages__count {
  margin-top: 2rem;
}
@media only screen and (min-width: 576px) {
  .pages__count {
    margin-top: 2.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pages__count {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pages__count {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .pages__count {
    justify-content: center;
  }
}
@media only screen and (max-width: 479px) {
  .pages__count {
    flex-wrap: wrap;
  }
}
.pages__count--number {
  display: block;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: var(--white-color);
}
@media only screen and (min-width: 1200px) {
  .pages__count--number {
    font-size: 2.8rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .pages__count--number {
    font-size: 3rem;
    line-height: 3.2rem;
  }
}
.pages__count--name {
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-top: 0.8rem;
  color: var(--white-color);
}
@media only screen and (min-width: 1200px) {
  .pages__count--name {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
}
.pages__count--list {
  margin-right: 1.5rem;
}
.pages__count--list:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .pages__count--list {
    margin-right: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pages__count--list {
    margin-right: 3rem;
  }
}

.hero__thumbnail {
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .hero__thumbnail {
    padding-right: 8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__thumbnail {
    padding-right: 6rem;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail {
    max-width: 610px;
    margin: 0 auto;
  }
}

@-webkit-keyframes animateUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-22px);
    -webkit-transform: translateY(-22px);
    -moz-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    -o-transform: translateY(-22px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes animateUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-22px);
    -webkit-transform: translateY(-22px);
    -moz-transform: translateY(-22px);
    -ms-transform: translateY(-22px);
    -o-transform: translateY(-22px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero__thumbnail--layer__img {
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .hero__thumbnail--layer__img {
    max-width: 576px;
  }
}

.hero__thumbnail--layer {
  position: absolute;
  top: -140px;
  left: -9px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .hero__thumbnail--layer {
    top: -84px;
    left: 0px;
    max-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__thumbnail--layer {
    top: -58px;
    left: 0px;
    max-width: 70px;
  }
}

.hero__position--img {
  position: absolute;
  bottom: 4%;
  left: 28%;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: animateUpDown;
  animation-name: animateUpDown;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (min-width: 1600px) {
  .hero__position--img {
    bottom: 15%;
  }
}
@media only screen and (max-width: 575px) {
  .hero__position--img {
    display: none;
  }
}
@media only screen and (max-width: 1599px) {
  .hero__position--img.one {
    max-width: 160px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero__position--img.one {
    max-width: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__position--img.one {
    max-width: 80px;
    top: 21%;
    bottom: auto;
    left: 4%;
  }
}
.hero__position--img.two {
  right: 2%;
  left: auto;
  top: 20%;
  bottom: auto;
}
@media only screen and (min-width: 1366px) {
  .hero__position--img.two {
    right: 4%;
  }
}
@media only screen and (max-width: 1365px) {
  .hero__position--img.two {
    max-width: 7rem;
  }
}

/* Preloader */
div#preloader {
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  position: fixed;
}

.addloaded {
  opacity: 0;
  transition: 1s ease-out;
  -webkit-transition: 1s ease-out;
  -moz-transition: 1s ease-out;
  -ms-transition: 1s ease-out;
  -o-transition: 1s ease-out;
  pointer-events: none;
}

/* Animación del preloader */
@-webkit-keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* Animación de las letras cargando del preloader */
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.loader {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 40px;
  font-family: arial;
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .loader {
    width: 100%;
    padding: 0 2rem;
    text-align: center;
  }
}

.loader span {
  position: relative;
  top: 30px;
  border-radius: 8px;
  padding: 0px 10px;
  background-color: var(--secondary-color);
  -webkit-animation: 0.7s ease-in-out infinite alternate;
  animation: 0.7s ease-in-out infinite alternate;
  -webkit-animation-name: loading-txt;
  animation-name: loading-txt;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .loader span {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.6rem;
  }
}

@-webkit-keyframes loading-txt {
  to {
    top: 0px;
  }
}

@keyframes loading-txt {
  to {
    top: 0px;
  }
}
/*-- Loading delay and smoothness CSS --*/
.loader span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loader span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loader span:nth-child(4) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.loader span:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loader span:nth-child(6) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.loader span:nth-child(7) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@media only screen and (max-width: 420px) {
  .features__section--inner.style1 .row-cols-2 > * {
    width: 100%;
  }
}

.section__heading--desc {
  font-size: 1.5rem;
  line-height: 2.2rem;
}
@media only screen and (min-width: 576px) {
  .section__heading--desc {
    font-size: 1.7rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .section__heading--desc {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.features__card:hover .features__card--thumbnail__img {
  transform: scale(1.03);
}
.features__card--thumbnail {
  overflow: hidden;
}

@media only screen and (max-width: 459px) {
  .core__features--inner .row-cols-2 > * {
    width: 100%;
  }
}

.core__features {
  background: #f5f7ff;
  padding: 2.5rem 1.5rem;
  transition: var(--transition);
}
@media only screen and (min-width: 1200px) {
  .core__features {
    padding: 3rem;
  }
}
.core__features:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}
.core__features:hover .core__features--icon {
  background: var(--primary-color);
}
.core__features img {
  max-width: 5rem;
}

.core__features--icon {
  color: var(--white-color);
  transition: var(--transition);
  width: 4rem;
  height: 4rem;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.core__features--icon svg {
  width: 20px;
  height: 23px;
}
@media only screen and (min-width: 1200px) {
  .core__features--icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.elementor__bg3 {
  background: #f5f7ff;
  padding: 60px 0;
}
@media only screen and (min-width: 768px) {
  .elementor__bg3 {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__bg3 {
    padding: 100px 0;
  }
}

.core__features--title {
  font-size: 16px;
  line-height: 2.2rem;
  margin-bottom: 0.8rem;
}
@media only screen and (min-width: 1200px) {
  .core__features--title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .core__features--title {
    font-size: 14px;
    line-height: 2.2rem;
  }
}
.core__features--desc {
  font-size: 1.4rem;
  line-height: 2.3rem;
}
@media only screen and (min-width: 768px) {
  .core__features--desc {
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}

.template__section--bg {
  background: #f5f7ff;
}
@media only screen and (max-width: 420px) {
  .template__section--inner .row-cols-2 > * {
    width: 100%;
  }
}

.template__page--number {
  font-weight: 900;
  color: var(--secondary-color);
  position: relative;
  font-size: 5rem;
  line-height: 4.5rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 576px) {
  .template__page--number {
    font-size: 6rem;
    line-height: 5.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .template__page--number {
    font-size: 7rem;
    line-height: 6.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .template__page--number {
    font-size: 8rem;
    line-height: 7.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .template__page--number {
    font-size: 9rem;
    line-height: 8.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1366px) {
  .template__page--number {
    font-size: 10rem;
    line-height: 9rem;
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .template__page--number {
    font-size: 12rem;
    line-height: 12rem;
  }
}
.template__page--name {
  font-weight: 700;
  color: var(--primary-color);
  transform: rotate(-90deg);
  display: flex;
  position: absolute;
  font-size: 1.3rem;
  line-height: 2.2rem;
  top: -28%;
  right: -64px;
}
@media only screen and (min-width: 576px) {
  .template__page--name {
    font-size: 1.4rem;
    top: -10%;
    right: -70px;
  }
}
@media only screen and (min-width: 768px) {
  .template__page--name {
    top: 6%;
    right: -70px;
  }
}
@media only screen and (min-width: 992px) {
  .template__page--name {
    font-size: 1.5rem;
    line-height: 2.4rem;
    top: 12%;
    right: -73px;
  }
}
@media only screen and (min-width: 1200px) {
  .template__page--name {
    font-size: 1.6rem;
    line-height: 2.8rem;
    top: 12%;
    right: -80px;
  }
}
@media only screen and (min-width: 1366px) {
  .template__page--name {
    font-size: 1.7rem;
    line-height: 3rem;
    top: 12%;
    right: -80px;
  }
}
@media only screen and (min-width: 1600px) {
  .template__page--name {
    font-size: 1.8rem;
    line-height: 3.6rem;
    top: 24%;
    right: -85px;
  }
}
.template__page--plus {
  font-size: 3rem;
  color: var(--secondary-color);
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
}
@media only screen and (min-width: 1200px) {
  .template__page--plus {
    font-size: 3.7rem;
  }
}

.template__card {
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: var(--transition);
}
.template__card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}
.template__card:hover .core__features--icon {
  background: var(--primary-color);
}
@media only screen and (min-width: 576px) {
  .template__card {
    padding: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .template__card {
    padding: 2.5rem;
  }
}
.template__card--link {
  width: 100%;
}
.template__card--thumbnail {
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 10px;
}
.template__card--thumbnail__img {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .template__card--thumbnail {
    margin-bottom: 2rem;
  }
}
.template__card--btn {
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 1.5rem;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .template__card--btn {
    height: 3.6rem;
    line-height: 3.6rem;
    padding: 0 2rem;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .template__card--btn {
    height: 3.8rem;
    line-height: 3.8rem;
    padding: 0 2.2rem;
  }
}
@media only screen and (max-width: 1199px) {
  .template__card--btn {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 1199px) {
  .template__card--content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.template__card--title {
  margin-bottom: 0.6rem;
}
.template__card--subtitle {
  line-height: 2.2rem;
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .template__card--subtitle {
    line-height: 2.2rem;
    font-size: 1.6rem;
  }
}

.elementor__feature--title {
  margin-top: 1.5rem;
}

.swiper__nav--btn {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--secondary-color);
  border-radius: 50%;
  transition: var(--transition);
  z-index: 9;
  color: var(--white-color);
}
@media only screen and (min-width: 768px) {
  .swiper__nav--btn {
    width: 4rem;
    height: 4rem;
  }
}
.swiper__nav--btn:hover {
  background: var(--primary-color);
}
.swiper__nav--btn::after {
  display: none;
}
.swiper__nav--btn.style2 {
  bottom: 0;
  top: auto;
  right: 7.2rem;
  left: auto;
}
.swiper__nav--btn.style2.swiper-button-next {
  right: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .elementor__section--inner {
    flex-direction: column;
  }
}

.headers__options--bg {
  background: #f5f7ff;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  padding: 25px;
  border-radius: 10px;
}

.footer__options--bg {
  padding: 25px;
  border-radius: 10px;
  background: #f5f7ff;
}

.elementor__section .section__heading--title {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .elementor__section .section__heading--title {
    font-size: 3rem;
    line-height: 3rem;
  }
}

.elementor__widget--thumbnail__img {
  border-radius: 5px;
}
.elementor__widget--content {
  width: 27rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .elementor__widget--content {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .elementor__widget--content {
    padding-bottom: 22px;
  }
}
.elementor__widget--content.right {
  padding-right: 0;
  padding-left: 3rem;
}
@media only screen and (min-width: 768px) {
  .elementor__widget--content.right {
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--content.right {
    padding-left: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--content.right {
    padding-left: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .elementor__widget--content.right {
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .elementor__widget--content.right {
    padding-top: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--content {
    width: 30rem;
    padding-right: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--content {
    width: 48rem;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--content {
    width: 50rem;
  }
}
@media only screen and (min-width: 1600px) {
  .elementor__widget--content {
    width: 65rem;
  }
}
@media only screen and (max-width: 1199px) {
  .elementor__widget--content.style5 {
    width: 35rem;
  }
}
@media only screen and (max-width: 767px) {
  .elementor__widget--content.style5 {
    width: 100%;
  }
}
.elementor__widget--sidebar {
  width: calc(100% - 27rem);
}
@media only screen and (min-width: 992px) {
  .elementor__widget--sidebar {
    width: calc(100% - 30rem);
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--sidebar {
    width: calc(100% - 48rem);
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--sidebar {
    width: calc(100% - 50rem);
  }
}
@media only screen and (min-width: 1600px) {
  .elementor__widget--sidebar {
    width: calc(100% - 65rem);
  }
}
@media only screen and (max-width: 767px) {
  .elementor__widget--sidebar {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .elementor__widget--sidebar.style5 {
    width: calc(100% - 35rem);
  }
}
@media only screen and (max-width: 767px) {
  .elementor__widget--sidebar.style5 {
    width: 100%;
    padding: 0 30px;
  }
}
.elementor__widget--thumbnail {
  text-align: center;
}
.elementor__widget--title {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.elementor__widget--number {
  font-weight: 900;
  color: var(--secondary-color);
  font-size: 4.5rem;
  line-height: 4.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 576px) {
  .elementor__widget--number {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--number {
    font-size: 5.5rem;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--number {
    font-size: 6rem;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--number {
    font-size: 7rem;
    line-height: 6rem;
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--number {
    font-size: 8rem;
    line-height: 7rem;
    margin-bottom: 1.3rem;
  }
}
.elementor__widget--number__plus {
  font-weight: 400;
  position: absolute;
  font-size: 3rem;
  line-height: 2.5rem;
  right: -26px;
  top: -4px;
}
@media only screen and (min-width: 576px) {
  .elementor__widget--number__plus {
    font-size: 3.5rem;
    line-height: 4rem;
    right: -32px;
    top: -7px;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--number__plus {
    font-size: 4rem;
    line-height: 4.4rem;
    right: -37px;
    top: -11px;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__widget--number__plus {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

.elementor__sidebar--bg {
  background: #f5f7ff;
  padding: 2rem;
}
@media only screen and (min-width: 992px) {
  .elementor__sidebar--bg {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__sidebar--bg {
    padding: 3.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .elementor__sidebar--bg {
    padding: 1.2rem;
  }
}

@media only screen and (max-width: 479px) {
  .elementor__sidebar--style2 {
    flex-direction: column;
  }
}

.elementor__shape--img {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translatey(-50%);
  width: 150px;
}
@media only screen and (min-width: 768px) {
  .elementor__shape--img {
    width: 220px;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__shape--img {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__shape--img {
    width: 380px;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__shape--img {
    width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .elementor__shape--img {
    display: none;
  }
}
.elementor__shape--img.two {
  top: 11%;
  transform: inherit;
  width: 150px;
}
@media only screen and (min-width: 768px) {
  .elementor__shape--img.two {
    width: 220px;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__shape--img.two {
    top: 4%;
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .elementor__shape--img.two {
    max-width: 390px;
  }
}
.elementor__shape--img.two.right {
  top: auto;
  bottom: 5%;
  right: 0;
  left: auto;
  max-width: 150px;
}
@media only screen and (min-width: 768px) {
  .elementor__shape--img.two.right {
    max-width: 320px;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__shape--img.two.right {
    max-width: 360px;
  }
}

.elementor__bg {
  background: #f5f7ff;
}

.elementor__bg2 {
  background: url(../img/other/bg-shape2.png);
}

.elementor__widget--mobail {
  width: 19rem;
}
@media only screen and (min-width: 768px) {
  .elementor__widget--mobail {
    width: 17rem;
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--mobail {
    width: 20rem;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--mobail {
    width: 25rem;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--mobail {
    width: 33rem;
  }
}
@media only screen and (max-width: 479px) {
  .elementor__widget--mobail {
    width: 100%;
    margin-bottom: 20px;
  }
}

.elementor__widget--desktop {
  width: calc(100% - 19rem);
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .elementor__widget--desktop {
    width: calc(100% - 17rem);
  }
}
@media only screen and (min-width: 992px) {
  .elementor__widget--desktop {
    width: calc(100% - 20rem);
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--desktop {
    width: calc(100% - 25rem);
  }
}
@media only screen and (min-width: 1366px) {
  .elementor__widget--desktop {
    width: calc(100% - 33rem);
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 479px) {
  .elementor__widget--desktop {
    width: 100%;
    padding-left: 0;
  }
}
.elementor__widget--desktop__swiper {
  padding-bottom: 5.5rem;
}

.elementor__thumb--slider {
  border: 1px solid #ddd;
  border-radius: 5px;
}
.footer__bg {
  background: url(../img/other/bg-shape4.png);
}
@media only screen and (max-width: 991px) {
  .footer__bg {
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }
}
.footer__logo {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 992px) {
  .footer__logo {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 479px) {
  .footer__logo {
    margin-bottom: 3rem;
  }
}
.footer__logo--img {
  margin: 0 auto;
} /*# sourceMappingURL=style.css.map */
