/*
|----------------------------------------------------------------------
|		Import Files
|----------------------------------------------------------------------
*/
/*
|----------------------------------------------------------------------
|		Variables
|----------------------------------------------------------------------
*/
:root {
  --prime_color: #fdbd10;
  --prime_color_rgb: 253, 189, 16;
  --black: #0d0c10;
  --black_rgb: 13, 12, 16;
  --dark: #000;
  --dark_rgb: 0, 0, 0;
  --light: #fff;
  --light_rgb: 255, 255, 255;
  --dim_light: #fafafa;
  --dim_light_rgb: 250, 250, 250;
  --gray: #b3b0aa;
  --gray_rgb: 179, 176, 170;
  --dark_gray: #5a5a5a;
  --dark_gray_rgb: 90, 90, 90;
  --light_gray: #f9f9f9;
  --light_gray_rgb: 249, 249, 249;
  --lightest_gray: #f9efe3;
  --lightest_gray_rgb: 249, 239, 227;
  --grayish: #f3f3f3;
  --grayish_rgb: 243, 243, 243;
  --green: #12b07e;
  --green_rgb: 18, 176, 126;
  --yellow: #ffcb00;
  --yellow_rgb: 255, 203, 0;
  --red: #e71939;
  --red_rgb: 231, 25, 57;
  --blue: #4378ff;
  --blue_rgb: 67, 120, 255;
  --theme: #fdbd10;
  --theme_rgb: 253, 189, 16;
  --font-montserrat: "Montserrat", sans-serif;
  --button_input_height: 4.6rem;
  --shadow: rgba(var(--black_rgb), 8%) 0 0 2rem 0;
  --transition: all ease 0.3s;
}

/*
|----------------------------------------------------------------------
|		Mixins
|----------------------------------------------------------------------
*/
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Montserrat.woff2") format("woff");
}
/*
|----------------------------------------------------------------------
|		Media Queries
|----------------------------------------------------------------------
*/
html {
  min-height: 100%;
  overflow: hidden;
  overflow-y: initial;
}
html.flow {
  overflow: hidden !important;
}
html.flow body {
  overflow: hidden !important;
}

body {
  position: relative;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  background-color: var(--light);
  color: var(--black);
  font-size: 1.4rem;
  font-family: var(--font-montserrat);
  font-weight: 400;
  margin: 0;
  padding: 10rem 0 0;
  line-height: 1.4;
  word-break: break-word;
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  body {
    line-height: 1.5;
  }
}
section {
  position: relative;
}

a {
  color: var(--black);
  word-break: break-word;
  text-decoration: none;
  transition: all ease 0.3s;
}
a:hover {
  color: var(--prime_color);
}
a:focus,
a:hover {
  outline: none !important;
  text-decoration: none !important;
}

.ease,
button {
  transition: all ease 0.3s;
}

.color {
  color: var(--prime_color);
}

.background {
  background: var(--prime_color);
}

::-moz-selection {
  background: var(--prime_color);
  color: var(--light);
}

::selection {
  background: var(--prime_color);
  color: var(--light);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
  font-family: var(--font-montserrat);
  line-height: 1.1;
  margin: 0 0 1rem;
}
h1.require::after,
.h1.require::after,
h2.require::after,
.h2.require::after,
h3.require::after,
.h3.require::after,
h4.require::after,
.h4.require::after,
h5.require::after,
.h5.require::after,
h6.require::after,
.h6.require::after {
  content: "*";
  color: var(--red);
}
h1 > a,
.h1 > a,
h2 > a,
.h2 > a,
h3 > a,
.h3 > a,
h4 > a,
.h4 > a,
h5 > a,
.h5 > a,
h6 > a,
.h6 > a {
  color: inherit;
}
h1 > strong,
.h1 > strong,
h2 > strong,
.h2 > strong,
h3 > strong,
.h3 > strong,
h4 > strong,
.h4 > strong,
h5 > strong,
.h5 > strong,
h6 > strong,
.h6 > strong {
  color: var(--prime_color);
  font-weight: inherit;
}

h1,
.h1 {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 4.6rem;
  }
}

h2,
.h2 {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}

h3,
.h3 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 2.6rem;
  }
}

h4,
.h4 {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h4,
  .h4 {
    font-size: 2.2rem;
  }
}

h5,
.h5 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 1.8rem;
  }
}

h6,
.h6 {
  font-size: 1.4rem;
}

.fw_100 {
  font-weight: 100 !important;
}
.fw_200 {
  font-weight: 200 !important;
}
.fw_300 {
  font-weight: 300 !important;
}
.fw_400 {
  font-weight: 400 !important;
}
.fw_500 {
  font-weight: 500 !important;
}
.fw_600 {
  font-weight: 600 !important;
}
.fw_700 {
  font-weight: 700 !important;
}
.fw_800 {
  font-weight: 800 !important;
}

p {
  margin: 0 0 1rem;
}
p > a {
  display: inline;
  color: var(--prime_color);
}
p > a:hover {
  color: #2115dc;
}
p:nth-last-child(1) {
  margin: 0;
}

.table_dv {
  display: table;
  display: block;
  width: 100%;
  height: 100%;
}
.table_dv .table_cell {
  display: table-cell;
  vertical-align: middle;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  position: absolute;
  z-index: 4;
  inset: 0 2rem 0 auto;
  width: 2.4rem;
  height: 1.4rem;
  background: transparent;
  padding: 0;
  margin: auto;
  border: 0;
  cursor: pointer;
  transition: all ease 0.3s;
}
@media (min-width: 992px) {
  .toggle {
    display: none;
  }
}
.toggle::before,
.toggle::after,
.toggle > span,
.site_btn.more.toggle > span::after,
.site_btn.more.toggle > span::before {
  position: absolute;
  width: inherit;
  height: 0.2rem;
  background: var(--prime_color);
  transition: all ease 0.3s;
}
.toggle::before {
  content: "";
  top: 0;
}
.active.toggle::before {
  top: 50%;
  margin-top: -0.1rem;
  transform: rotate(45deg);
}
h .toggle::after {
  content: "";
  bottom: 0;
}
.active.toggle::after {
  bottom: 50%;
  margin-bottom: -0.1rem;
  transform: rotate(135deg);
}

.active.toggle > span,
.site_btn.more.active.toggle > span::after,
.site_btn.more.active.toggle > span::before {
  opacity: 0;
}

/*
|----------------------------------------------------------------------
|		Body Inner Css
|----------------------------------------------------------------------
*/
img {
  width: 100%;
  height: auto;
  display: block;
}

b,
strong {
  font-weight: 700;
}

input,
.checkbox,
button,
select,
textarea {
  text-decoration: none !important;
  outline: none !important;
}

.contain,
.contain-fluid {
  position: relative;
  max-width: 130rem;
  padding: 0 2rem;
  margin: 0 auto;
  min-height: 0.1rem;
}
.contain:before,
.contain:after,
.contain-fluid:before,
.contain-fluid:after {
  content: "";
  display: table;
}
.contain:after,
.contain:after,
.contain-fluid:after,
.contain-fluid:after {
  clear: both;
}
.contain.sm,
.contain-fluid.sm {
  max-width: 100rem;
}

.contain-fluid {
  max-width: 1920px !important;
}

.row {
  margin: -1.5rem -1.5rem;
}
.row > [class*="col"],
.row > [class^="col"] {
  padding: 1.5rem 1.5rem;
}
.row.flex_row > div > * {
  width: 100%;
}
.row.form_row {
  margin: -1rem -1rem;
}
.row.form_row > [class*="col"],
.row.form_row > [class^="col"] {
  padding: 1rem 1rem;
}

.btn_blk {
  display: flex;
  flex-flow: wrap;
  gap: 0.6rem;
  grid-gap: 0.6rem;
}
@media (min-width: 768px) {
  .btn_blk {
    gap: 1rem;
    grid-gap: 1rem;
  }
}

/*
|----------------------------------------------------------------------
|		Popup
|----------------------------------------------------------------------
*/
.popup {
  position: fixed;
  display: none;
  background: rgba(var(--black_rgb), 0.3);
  padding: 0;
  overflow: auto;
  z-index: 101;
}
.popup > .table_dv {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.popup > .table_dv > .table_cell {
  display: block;
  align-self: center;
  width: 100%;
  padding: 3rem 0;
}
.popup ._inner {
  position: relative;
  background: var(--light);
  padding: 2.5rem;
  margin: auto;
  border-radius: 1rem;
}
.popup ._inner > .x_btn + h1,
.popup ._inner > .x_btn + h2,
.popup ._inner > .x_btn + h3,
.popup ._inner > .x_btn + h4,
.popup ._inner > .x_btn + h5,
.popup ._inner > .x_btn + h6 {
  padding-right: 3rem;
}
.popup .list > li {
  display: flex;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}
.popup .list > li > div:nth-child(1) {
  width: 12rem;
  min-width: 12rem;
  font-weight: 700;
  margin-right: 1rem;
}
.popup .list > li > div:nth-child(2) {
  width: 100%;
  color: var(--dark_gray);
}
.popup hr {
  margin: 2rem 0;
}

/*
|----------------------------------------------------------------------
|		Dropdown
|----------------------------------------------------------------------
*/
.dropdown .dropdown-toggle:after {
  display: none;
}
.dropdown .dropdown-toggle.select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  gap: 1.5rem;
  grid-gap: 1.5rem;
  overflow: hidden;
}
.dropdown .dropdown-toggle.select:after {
  color: inherit;
  margin-left: auto;
}
.dropdown .dropdown-toggle.chevron:after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="300" height="300" fill="%23040707" viewBox="-155 247 300 300" style="enable-background:new -155 247 300 300;"><polygon points="78.6356201,306.8178101 -5.0166931,390.4367371 -88.6356277,306.8178101 -137, 355.1821899 -5.0166931,487.1821899 127,355.1821899 "/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="300" height="300" fill="%23040707" viewBox="-155 247 300 300" style="enable-background:new -155 247 300 300;"><polygon points="78.6356201,306.8178101 -5.0166931,390.4367371 -88.6356277,306.8178101 -137, 355.1821899 -5.0166931,487.1821899 127,355.1821899 "/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  transition: none;
}
.dropdown .dropdown-toggle.chevron.show:after {
  transform: rotateX(180deg);
}
.dropdown .dropdown-menu {
  min-width: 26rem;
  background: var(--light);
  font-size: inherit;
  margin: 0;
  padding: 0.7rem 0;
  border: 0.1rem solid rgba(var(--black_rgb), 0.1);
  border-radius: 0.7rem;
  z-index: 5;
}
.dropdown .dropdown-menu > li {
  display: block;
}
.dropdown .dropdown-menu > li:not(:nth-last-child(1)) {
  border-bottom: 0.1rem solid rgba(var(--black_rgb), 0.1);
}
.dropdown .dropdown-menu > li > * {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  width: 100%;
  background: transparent;
  color: var(--black);
  text-align: left;
  line-height: 1.2;
  padding: 1.2rem 2rem;
  border: 0;
  transition: all ease 0.3s;
}
.dropdown .dropdown-menu > li > *:hover {
  color: var(--prime_color);
}

/*
|----------------------------------------------------------------------
|		Ico Css
|----------------------------------------------------------------------
*/
.ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  text-align: center;
}
.ico a,
.ico img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.ico.round {
  border-radius: 75%;
}
.ico.round a,
.ico.round img {
  border-radius: inherit;
}
.ico.fill img {
  -o-object-fit: cover;
  object-fit: cover;
}

/*
|----------------------------------------------------------------------
|		Scrollbar
|----------------------------------------------------------------------
*/
.scrollbar::-webkit-scrollbar-track {
  background: #f6f9fc;
  border-radius: 5rem;
}
.scrollbar::-webkit-scrollbar {
  width: 0.5rem;
  height: 1rem;
  background-color: #f6f9fc;
  border-radius: 5rem;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: rgba(var(--black_rgb), 0.15);
  border-radius: 5rem;
}

/*
|----------------------------------------------------------------------
|		Slick-Carousel
|----------------------------------------------------------------------
*/
.slick-carousel .slick-slide {
  outline: none !important;
}
.slick-carousel .slick-arrow {
  width: 4rem;
  height: 4rem;
  background: var(--light);
  color: var(--prime_color);
  padding: 1.2rem;
  box-shadow: 0 0.2rem 0.2rem rgba(29, 29, 27, 0.25);
  transition: all ease 0.3s;
}
.slick-carousel .slick-arrow.slick-prev {
  left: -4rem;
}
.slick-carousel .slick-arrow.slick-prev:after {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M25.6,12.5H6.1l7.2-7.2c0.6-0.6,0.6-1.5,0-2.1c-0.6-0.6-1.5-0.6-2.1,0l-9.8,9.8c-0.1,0.1-0.3,0.3-0.3,0.5 c0,0,0,0,0,0C1,13.6,0.9,13.8,0.9,14v0v0c0,0.2,0,0.4,0.1,0.5c0,0,0,0,0,0c0.1,0.2,0.2,0.4,0.3,0.5l9.8,9.8c0.3,0.3,0.7,0.4,1.1,0.4 s0.8-0.1,1.1-0.4c0.6-0.6,0.6-1.5,0-2.1l-7.2-7.2h19.5c0.8,0,1.5-0.7,1.5-1.5S26.4,12.5,25.6,12.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M25.6,12.5H6.1l7.2-7.2c0.6-0.6,0.6-1.5,0-2.1c-0.6-0.6-1.5-0.6-2.1,0l-9.8,9.8c-0.1,0.1-0.3,0.3-0.3,0.5 c0,0,0,0,0,0C1,13.6,0.9,13.8,0.9,14v0v0c0,0.2,0,0.4,0.1,0.5c0,0,0,0,0,0c0.1,0.2,0.2,0.4,0.3,0.5l9.8,9.8c0.3,0.3,0.7,0.4,1.1,0.4 s0.8-0.1,1.1-0.4c0.6-0.6,0.6-1.5,0-2.1l-7.2-7.2h19.5c0.8,0,1.5-0.7,1.5-1.5S26.4,12.5,25.6,12.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.slick-carousel .slick-arrow.slick-next {
  right: -4rem;
}
.slick-carousel .slick-arrow.slick-next:after {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.slick-carousel .slick-arrow.slick-prev:before,
.slick-carousel .slick-arrow.slick-next:before {
  display: none;
}
.slick-carousel .slick-arrow.slick-prev:after,
.slick-carousel .slick-arrow.slick-next:after {
  content: "";
  width: 100% !important;
  height: 100% !important;
  transition: none;
}
.slick-carousel .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}
.slick-carousel .slick-arrow:hover {
  background: var(--light);
  color: var(--black);
}
.slick-carousel .slick-dots {
  position: static;
  margin-top: 3rem;
}
.slick-carousel .slick-dots li button {
  width: 3rem;
  height: 0.3rem;
  background: var(--gray);
  border-radius: 5rem;
}
.slick-carousel .slick-dots li.slick-active button {
  background: var(--prime_color);
}

/*_____ fancybox _____*/
[data-fancybox] {
  display: block;
  cursor: pointer;
}

.fancybox__container .fancybox__thumbs .carousel__slide .fancybox__thumb {
  border-radius: 0;
}
.fancybox__container .fancybox__thumbs .carousel__slide .fancybox__thumb:after {
  border: 0.3rem solid var(--prime_color) !important;
  border-radius: 0;
}

/*_____ rating _____*/
.rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  gap: 0.5rem;
  grid-gap: 0.5rem;
  direction: rtl;
}
.rating > i {
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M99.9,38.6c-0.2-0.6-0.8-1.1-1.4-1.2l-32.4-4.7L51.6,3.4c-0.3-0.6-0.9-1-1.6-1s-1.3,0.4-1.6,1L33.9,32.7L1.5,37.4 c-0.7,0.1-1.2,0.6-1.4,1.2c-0.2,0.6,0,1.4,0.5,1.8L24,63.3l-5.5,32.3c-0.1,0.7,0.2,1.3,0.7,1.8c0.6,0.4,1.3,0.5,1.9,0.1l29-15.2 l29,15.2c0.3,0.1,0.5,0.2,0.8,0.2c0.4,0,0.7-0.1,1.1-0.3c0.6-0.4,0.8-1.1,0.7-1.8L76,63.3l23.4-22.8C99.9,40,100.1,39.3,99.9,38.6z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M99.9,38.6c-0.2-0.6-0.8-1.1-1.4-1.2l-32.4-4.7L51.6,3.4c-0.3-0.6-0.9-1-1.6-1s-1.3,0.4-1.6,1L33.9,32.7L1.5,37.4 c-0.7,0.1-1.2,0.6-1.4,1.2c-0.2,0.6,0,1.4,0.5,1.8L24,63.3l-5.5,32.3c-0.1,0.7,0.2,1.3,0.7,1.8c0.6,0.4,1.3,0.5,1.9,0.1l29-15.2 l29,15.2c0.3,0.1,0.5,0.2,0.8,0.2c0.4,0,0.7-0.1,1.1-0.3c0.6-0.4,0.8-1.1,0.7-1.8L76,63.3l23.4-22.8C99.9,40,100.1,39.3,99.9,38.6z" /></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  color: var(--gray);
}
.rating > i.fill {
  color: var(--yellow);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  margin-top: 4rem;
}
.pagination > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  -webkit-box-orient: vertical;
  gap: 0 0.6rem;
  grid-gap: 0 0.6rem;
  overflow: hidden;
}
.pagination > ul > li > a,
.pagination > ul > li > span,
.pagination > ul > li.site_btn.more > span::after,
.pagination > ul > li.site_btn.more > span::before,
.pagination > ul > li > button {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  min-width: 3.2rem;
  height: 3.2rem;
  background: transparent;
  color: var(--black);
  font-weight: 500;
  padding: 0 0.5rem;
  border: 0.1rem solid rgba(var(--violet_color_rgb), 0.2);
  border-radius: 0.4rem;
}
.pagination > ul > li > a:hover,
.pagination > ul > li > span:hover,
.pagination > ul > li.site_btn.more > span:hover::after,
.pagination > ul > li.site_btn.more > span:hover::before,
.pagination > ul > li > button:hover {
  background: rgba(var(--black_rgb), 0.1);
  color: var(--black);
}
.pagination > ul > li > a.prev::before,
.pagination > ul > li > a.next::before,
.pagination > ul > li > span.prev::before,
.pagination > ul > li > span.next::before,
.pagination > ul > li > button.prev::before,
.pagination > ul > li > button.next::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  transition: none;
}
.pagination > ul > li > a.prev::before,
.pagination > ul > li > span.prev::before,
.pagination > ul > li > button.prev::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="20" height="20" viewBox="-481.4169922 271.0341797 20 20" style="enable-background:new -481.4169922 271.0341797 20 20;" fill="%23fff"><path d="M-467.5097046,271.2515869c0.5028076,0,1.0072327,0.1921692,1.3915405,0.5764771 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421l-6.4229736,6.4229736l6.4229736,6.4229736 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421s-2.0144653,0.7686462-2.7831116,0l-7.8145752-7.8145447 c-0.7686157-0.7686462-0.7686157-2.0144958,0-2.7831421l7.8145752-7.8145447 C-468.5169678,271.4437561-468.0125427,271.2515869-467.5097046,271.2515869z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="20" height="20" viewBox="-481.4169922 271.0341797 20 20" style="enable-background:new -481.4169922 271.0341797 20 20;" fill="%23fff"><path d="M-467.5097046,271.2515869c0.5028076,0,1.0072327,0.1921692,1.3915405,0.5764771 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421l-6.4229736,6.4229736l6.4229736,6.4229736 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421s-2.0144653,0.7686462-2.7831116,0l-7.8145752-7.8145447 c-0.7686157-0.7686462-0.7686157-2.0144958,0-2.7831421l7.8145752-7.8145447 C-468.5169678,271.4437561-468.0125427,271.2515869-467.5097046,271.2515869z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.pagination > ul > li > a.next::before,
.pagination > ul > li > span.next::before,
.pagination > ul > li > button.next::before {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="20" height="20" viewBox="-481.4169922 271.0341797 20 20" style="enable-background:new -481.4169922 271.0341797 20 20;" fill="%23fff"><path d="M-475.3242798,290.8167725c-0.5028076,0-1.0072327-0.1921387-1.3915405-0.5764771 c-0.7686462-0.7686462-0.7686462-2.0144958,0-2.7831421l6.4229736-6.4229736l-6.4229736-6.4229736 c-0.7686462-0.7686462-0.7686462-2.0144958,0-2.7831421c0.7686157-0.7686462,2.0144653-0.7686462,2.7831116,0l7.8145447,7.8145447 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421l-7.8145447,7.8145447 C-474.3170166,290.6246338-474.8214417,290.8167725-475.3242798,290.8167725z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="20" height="20" viewBox="-481.4169922 271.0341797 20 20" style="enable-background:new -481.4169922 271.0341797 20 20;" fill="%23fff"><path d="M-475.3242798,290.8167725c-0.5028076,0-1.0072327-0.1921387-1.3915405-0.5764771 c-0.7686462-0.7686462-0.7686462-2.0144958,0-2.7831421l6.4229736-6.4229736l-6.4229736-6.4229736 c-0.7686462-0.7686462-0.7686462-2.0144958,0-2.7831421c0.7686157-0.7686462,2.0144653-0.7686462,2.7831116,0l7.8145447,7.8145447 c0.7686462,0.7686462,0.7686462,2.0144958,0,2.7831421l-7.8145447,7.8145447 C-474.3170166,290.6246338-474.8214417,290.8167725-475.3242798,290.8167725z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.pagination > ul > li > span,
.pagination > ul > li.site_btn.more > span::after,
.pagination > ul > li.site_btn.more > span::before {
  color: var(--prime_color);
}
.pagination > ul > li.active > a,
.pagination > ul > li.active > span,
.pagination > ul > li.site_btn.more.active > span::after,
.pagination > ul > li.site_btn.more.active > span::before,
.pagination > ul > li.active > button {
  background: var(--light);
  color: var(--burgundy_color);
  border-color: var(--burgundy_color);
}

/*
|----------------------------------------------------------------------
|		Site Button
|----------------------------------------------------------------------
*/
.btn_blk {
  display: flex;
  flex-flow: wrap;
  gap: 0.6rem;
  grid-gap: 0.6rem;
}
@media (min-width: 768px) {
  .btn_blk {
    gap: 1rem;
    grid-gap: 1rem;
  }
}

/*
|----------------------------------------------------------------------
|		Site Button
|----------------------------------------------------------------------
*/
.site_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  gap: 1rem;
  grid-gap: 1rem;
  height: var(--button_input_height);
  background: var(--prime_color);
  color: var(--black);
  font-size: 1.4rem;
  font-family: var(--font-montserrat);
  font-weight: 500;
  text-align: center;
  padding: 0 2.5rem;
  white-space: nowrap;
  border: 0;
  border-radius: 0.6rem;
  outline: none !important;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
.site_btn:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn > img {
  width: auto;
  height: 2.4rem;
  filter: brightness(0) invert(1);
  transition: inherit;
}
.site_btn.sm {
  height: 3.4rem;
}
.site_btn.md {
  height: 4rem;
}
.site_btn.lg {
  height: 5.6rem;
  padding: 0 4rem;
}
.site_btn.px {
  padding-left: 5rem;
  padding-right: 5rem;
}
.site_btn.red {
  background: var(--red);
  color: var(--light);
}
.site_btn.red:hover {
  background: var(--prime_color);
  color: var(--light);
}
.site_btn.green {
  background: var(--green);
  color: var(--light);
}
.site_btn.green:hover {
  background: var(--prime_color);
  color: var(--light);
}
.site_btn.sea_green {
  background: var(--sea_green_color);
  border-color: var(--sea_green_color);
  color: var(--light);
}
.site_btn.sea_green:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.yellow {
  background: var(--yellow_color);
  border-color: var(--yellow_color);
  color: var(--light);
}
.site_btn.yellow:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.violet {
  background: var(--violet_color);
  border-color: var(--violet_color);
  color: var(--light);
}
.site_btn.violet:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.burgundy {
  background: var(--burgundy_color);
  border-color: var(--burgundy_color);
  color: var(--light);
}
.site_btn.burgundy:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--light);
}
.site_btn.dark:hover {
  background: var(--prime_color);
  color: var(--light);
}
.site_btn.simple {
  background: var(--light);
  color: var(--black);
}
.site_btn.simple:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.simple > img {
  filter: brightness(0) invert(0);
}
.site_btn.simple.blank {
  background: transparent;
  color: var(--light);
}
.site_btn.simple.blank:hover {
  background: var(--light);
  color: var(--black);
}
.site_btn.simple.blank.stroke {
  border: 0.2rem solid var(--light);
}
.site_btn.light {
  background: rgba(var(--prime_color_rgb), 0.1);
  color: var(--prime_color);
}
.site_btn.light:not(:hover) {
  box-shadow: none;
}
.site_btn.light:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.blank {
  background: transparent;
  color: var(--prime_color);
}
.site_btn.blank:hover {
  background: var(--black);
  color: var(--light);
}
.site_btn.blank:hover > img {
  filter: brightness(0) invert(1);
}
.site_btn.blank > img {
  filter: brightness(0) invert(0);
}
.site_btn.round {
  border-radius: 5rem;
}
.site_btn.stroke {
  border: 0.2rem solid var(--prime_color);
}
.site_btn.more > span,
.site_btn.more > span::after,
.site_btn.more > span::before {
  position: absolute;
  inset: 0;
  width: 0.4rem;
  min-width: 0.4rem;
  height: 0.4rem;
  background: var(--light);
  margin: auto;
  border-radius: 75%;
}
.site_btn.more > span::before {
  content: "";
  transform: translateX(calc(-100% - 0.3rem));
}
.site_btn.more > span::after {
  content: "";
  transform: translateX(calc(100% + 0.3rem));
}
.site_btn:disabled {
  background: transparent;
  color: var(--gray);
  border-color: var(--gray);
}
@media (max-width: 575px) {
  .site_btn.w_100 {
    width: 100%;
  }
}

.read_more_btn {
  display: inline-flex;
  align-items: center;
  -webkit-box-orient: vertical;
  background: transparent;
  color: var(--prime_color);
  font-weight: 500;
  border: 0;
  text-decoration: underline;
}
.read_more_btn:hover {
  background: transparent;
  color: var(--black);
}

.arrow_btn {
  display: inline-flex;
  align-items: center;
  -webkit-box-orient: vertical;
}
.arrow_btn::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  transition: none;
  width: 3rem;
  min-width: 3rem;
  height: 2rem;
}

.link_btn {
  display: inline-flex;
  align-items: center;
  -webkit-box-orient: vertical;
  gap: 1rem;
  grid-gap: 1rem;
  height: 4rem;
  background: transparent;
  color: var(--black);
  font-size: 1.4rem;
  font-family: var(--font-montserrat);
  font-weight: 500;
  line-height: 4rem;
  padding: 0;
  text-transform: uppercase;
  border: 0;
  white-space: nowrap;
}
.link_btn:hover,
.link_btn:focus {
  color: var(--prime_color);
}
.link_btn::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="44" height="15" viewBox="0 0 44 15" style="enable-background:new 0 0 44 15;"><path d="M43.7071 8.20711C44.0976 7.81658 44.0976 7.18342 43.7071 6.79289L37.3431 0.428932C36.9526 0.0384078 36.3195 0.0384078 35.9289 0.428932C35.5384 0.819457 35.5384 1.45262 35.9289 1.84315L41.5858 7.5L35.9289 13.1569C35.5384 13.5474 35.5384 14.1805 35.9289 14.5711C36.3195 14.9616 36.9526 14.9616 37.3431 14.5711L43.7071 8.20711ZM0 8.5H43V6.5H0V8.5Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="44" height="15" viewBox="0 0 44 15" style="enable-background:new 0 0 44 15;"><path d="M43.7071 8.20711C44.0976 7.81658 44.0976 7.18342 43.7071 6.79289L37.3431 0.428932C36.9526 0.0384078 36.3195 0.0384078 35.9289 0.428932C35.5384 0.819457 35.5384 1.45262 35.9289 1.84315L41.5858 7.5L35.9289 13.1569C35.5384 13.5474 35.5384 14.1805 35.9289 14.5711C36.3195 14.9616 36.9526 14.9616 37.3431 14.5711L43.7071 8.20711ZM0 8.5H43V6.5H0V8.5Z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  transition: none;
  width: 3rem;
  min-width: 3rem;
  height: 2rem;
}

.pop_btn {
  cursor: pointer;
}

.x_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.8rem;
  min-width: 2.8rem;
  height: 2.8rem;
  background: var(--prime_color);
  color: var(--light);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0;
  text-align: center;
  border: 0;
  border-radius: 75%;
  cursor: pointer;
  transition: all ease 0.3s;
  z-index: 5;
}
.x_btn:hover {
  background: var(--black);
}
.x_btn:before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M20.9,3.7l29,29l29-29C90.3-7.6,107.7,9.5,96.2,21l-29,29l29,29c11.3,11.3-5.9,28.6-17.2,17.2l-29-29l-29,29 C9.6,107.6-7.6,90.4,3.7,79.1l29-29l-29-29C-7.6,9.6,9.6-7.6,20.9,3.7z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M20.9,3.7l29,29l29-29C90.3-7.6,107.7,9.5,96.2,21l-29,29l29,29c11.3,11.3-5.9,28.6-17.2,17.2l-29-29l-29,29 C9.6,107.6-7.6,90.4,3.7,79.1l29-29l-29-29C-7.6,9.6,9.6-7.6,20.9,3.7z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  width: 36%;
  height: 36%;
  line-height: 1;
}

.lbl_btn {
  display: flex;
  -webkit-box-orient: vertical;
  text-align: left;
  /* > input[type="radio"],
  > input[type="checkbox"] {
  	margin-top: 0.1rem;
  } */
}
.lbl_btn:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
.lbl_btn label {
  display: inline-flex;
  align-items: center;
  -webkit-box-orient: vertical;
  gap: 0.5rem;
  grid-gap: 0.5rem;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}

/*
|----------------------------------------------------------------------
|		Form
|----------------------------------------------------------------------
*/
label {
  display: block;
  font-weight: inherit;
  cursor: pointer;
}
label.require::after {
  content: "*";
  color: var(--red);
  font-weight: 700;
  margin-left: 0.4rem;
}
label > a {
  color: #3c9cdb;
}
label > a:hover {
  color: var(--prime_color);
}

input[type="radio"],
input[type="checkbox"],
.checkbox {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  background: #d9d9d9;
  color: #d9d9d9;
  margin-top: 0;
  border: 0;
  cursor: pointer;
}
input[type="radio"],
[type="radio"].checkbox {
  padding: 0.3rem;
  border-radius: 75%;
}
input[type="radio"]:checked,
[type="radio"].checkbox:checked {
  background: var(--prime_color);
  background-clip: content-box;
  border-color: var(--prime_color);
}
input[type="radio"],
input[type="checkbox"],
.checkbox {
  border-radius: 0.4rem;
}
input[type="radio"]::before,
input[type="checkbox"]::before,
.checkbox::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M78.5,5.8c-12.6,21-25.1,42-37.7,63C32.9,62,25,55.3,17.1,48.5c-4.9-4.2-12.7-0.9-15.5,4.6 c-3.4,6.5-0.8,13.2,4.1,17.5c10.7,9.2,21.4,18.4,32.2,27.6c5.1,4.4,12.4,0.6,15.5-4.6C68.2,68.5,83.1,43.6,98,18.7 C106.2,5,86.6-7.8,78.5,5.8z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M78.5,5.8c-12.6,21-25.1,42-37.7,63C32.9,62,25,55.3,17.1,48.5c-4.9-4.2-12.7-0.9-15.5,4.6 c-3.4,6.5-0.8,13.2,4.1,17.5c10.7,9.2,21.4,18.4,32.2,27.6c5.1,4.4,12.4,0.6,15.5-4.6C68.2,68.5,83.1,43.6,98,18.7 C106.2,5,86.6-7.8,78.5,5.8z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
}
input[type="radio"]:checked,
input[type="checkbox"]:checked,
.checkbox:checked {
  background: var(--prime_color) !important;
  border-color: var(--prime_color) !important;
}
input[type="radio"]:checked + .checkbox,
input[type="checkbox"]:checked + .checkbox,
.checkbox:checked + .checkbox {
  background: var(--prime_color);
  border-color: var(--prime_color);
}
input[type="file"].uploadFile,
[type="file"].uploadFile.checkbox {
  display: none;
}
input::-ms-reveal,
.checkbox::-ms-reveal,
input::-ms-clear,
.checkbox::-ms-clear {
  display: none;
}
.checkbox {
  transition: all ease 0.3s;
}

/*
|----------------------------------------------------------------------
|		Form Block
|----------------------------------------------------------------------
*/
.form_blk {
  position: relative;
}
.form_blk:not(:nth-last-child(1)) {
  margin-bottom: 1.5rem;
}
.input_form_blk .form_blk {
  flex: 1;
  margin: 0;
}
.input_form_blk .form_blk + * {
  height: var(--button_input_height);
}

.input_form_blk {
  display: flex;
  -webkit-box-orient: vertical;
}

.form_blk.pass_blk {
  position: relative;
}
.form_blk.pass_blk > .input {
  padding-right: 8rem;
}
.form_blk.pass_blk > i {
  position: absolute;
  right: 1.4rem;
  inset: 0;
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  width: 1.8rem;
  height: 100%;
  color: var(--prime_color);
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  transition: all ease 0.3s;
}
.form_blk.pass_blk > i::before {
  width: 100%;
  height: 100%;
}
.form_blk.pass_blk > i.icon-eye::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M61.6,38.4c-3.3-3.3-7.2-5-11.6-5c-1.6,0-3.1,0.2-4.5,0.6c1.6,1.6,2.4,3.5,2.4,5.7 c0,2.2-0.8,4.1-2.4,5.7c-1.6,1.6-3.5,2.5-5.7,2.5c-2.2,0-4.1-0.8-5.7-2.4c-0.4,1.4-0.6,2.9-0.6,4.5c0,4.4,1.7,8.3,5,11.6 c3.3,3.3,7.2,5,11.6,5c4.4,0,8.3-1.7,11.6-5c3.3-3.3,5-7.2,5-11.6C66.6,45.6,64.9,41.7,61.6,38.4z"/><path d="M80.5,25.5c-9.1-6.4-19.1-9.5-30.5-9.5s-21.4,3.2-30.5,9.5C10.5,31.8,4.1,40,0,50c4.1,10,10.5,18.2,19.5,24.5 c9.1,6.4,19.1,9.5,30.5,9.5s21.4-3.6,30.5-9.5C89.5,68.6,95.9,60,100,50C95.9,40,89.5,31.8,80.5,25.5z M67.5,67.5 c-4.5,5-11,7.5-17.5,7.5c-6.5,0-12.5-2.5-17.5-7.5c-5-5-7.5-11-7.5-17.5c0-6.5,3-12.5,7.5-17.6c4.5-5,11-7.5,17.5-7.5 c6.5,0,12.5,3,17.5,7.5c5,4.5,7.5,11,7.5,17.6C75.1,56.5,72.1,62.5,67.5,67.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M61.6,38.4c-3.3-3.3-7.2-5-11.6-5c-1.6,0-3.1,0.2-4.5,0.6c1.6,1.6,2.4,3.5,2.4,5.7 c0,2.2-0.8,4.1-2.4,5.7c-1.6,1.6-3.5,2.5-5.7,2.5c-2.2,0-4.1-0.8-5.7-2.4c-0.4,1.4-0.6,2.9-0.6,4.5c0,4.4,1.7,8.3,5,11.6 c3.3,3.3,7.2,5,11.6,5c4.4,0,8.3-1.7,11.6-5c3.3-3.3,5-7.2,5-11.6C66.6,45.6,64.9,41.7,61.6,38.4z"/><path d="M80.5,25.5c-9.1-6.4-19.1-9.5-30.5-9.5s-21.4,3.2-30.5,9.5C10.5,31.8,4.1,40,0,50c4.1,10,10.5,18.2,19.5,24.5 c9.1,6.4,19.1,9.5,30.5,9.5s21.4-3.6,30.5-9.5C89.5,68.6,95.9,60,100,50C95.9,40,89.5,31.8,80.5,25.5z M67.5,67.5 c-4.5,5-11,7.5-17.5,7.5c-6.5,0-12.5-2.5-17.5-7.5c-5-5-7.5-11-7.5-17.5c0-6.5,3-12.5,7.5-17.6c4.5-5,11-7.5,17.5-7.5 c6.5,0,12.5,3,17.5,7.5c5,4.5,7.5,11,7.5,17.6C75.1,56.5,72.1,62.5,67.5,67.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.form_blk.pass_blk > i.icon-eye-slash::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M50,25.2c5.9,0,11.3,2.7,15.8,6.8c4.5,4.1,6.8,9.9,6.8,15.8c0,2.9-0.7,5.7-1.8,8.3l13.5,13.5 c7.1-5.7,12.3-13.2,15.8-21.8c-4.1-10-10.5-18.2-19.5-24.5c-9.1-6.4-19.1-9.5-30.5-9.5c-6.6,0-12.7,1.1-18.4,3.2l10,10 C44.2,25.8,47.1,25.2,50,25.2z"/><path d="M90.7,87.5L10.3,7.1l-5.4,5.4l12.4,12.4C9.4,31,3.7,38.6,0,47.8c4.1,10,10.5,18.2,19.5,24.5 c9.1,6.4,19.1,9.5,30.5,9.5c7.3,0,13.9-1.5,20.2-4.1l15.1,15.1L90.7,87.5z M50,70.3c-5.9,0-11.3-2.3-15.8-6.8 c-4.5-4.5-6.8-9.9-6.8-15.8c0-3.6,1-6.9,2.7-10.1l7.1,7.1c-0.3,1-0.4,1.9-0.4,2.9c0,3.4,1.3,6.6,3.9,9.2c2.6,2.6,5.8,3.9,9.2,3.9 c1,0,2-0.1,3-0.3l7.3,7.3C57.1,69.5,53.6,70.3,50,70.3z"/><path d="M63.1,47.8c0-3.4-1.3-6.8-3.9-9.2c-2.6-2.4-5.8-3.9-9.2-3.9c-0.2,0-0.4,0-0.7,0l13.8,13.8 C63.1,48.2,63.1,48,63.1,47.8z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23fff" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><path d="M50,25.2c5.9,0,11.3,2.7,15.8,6.8c4.5,4.1,6.8,9.9,6.8,15.8c0,2.9-0.7,5.7-1.8,8.3l13.5,13.5 c7.1-5.7,12.3-13.2,15.8-21.8c-4.1-10-10.5-18.2-19.5-24.5c-9.1-6.4-19.1-9.5-30.5-9.5c-6.6,0-12.7,1.1-18.4,3.2l10,10 C44.2,25.8,47.1,25.2,50,25.2z"/><path d="M90.7,87.5L10.3,7.1l-5.4,5.4l12.4,12.4C9.4,31,3.7,38.6,0,47.8c4.1,10,10.5,18.2,19.5,24.5 c9.1,6.4,19.1,9.5,30.5,9.5c7.3,0,13.9-1.5,20.2-4.1l15.1,15.1L90.7,87.5z M50,70.3c-5.9,0-11.3-2.3-15.8-6.8 c-4.5-4.5-6.8-9.9-6.8-15.8c0-3.6,1-6.9,2.7-10.1l7.1,7.1c-0.3,1-0.4,1.9-0.4,2.9c0,3.4,1.3,6.6,3.9,9.2c2.6,2.6,5.8,3.9,9.2,3.9 c1,0,2-0.1,3-0.3l7.3,7.3C57.1,69.5,53.6,70.3,50,70.3z"/><path d="M63.1,47.8c0-3.4-1.3-6.8-3.9-9.2c-2.6-2.4-5.8-3.9-9.2-3.9c-0.2,0-0.4,0-0.7,0l13.8,13.8 C63.1,48.2,63.1,48,63.1,47.8z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
}
.form_blk.pass_blk > i:hover {
  color: var(--second_color);
}
.form_blk > i {
  position: absolute;
  left: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.6rem;
  margin: auto;
}
.form_blk > i + .input {
  padding-left: 4.2rem;
}
.form_blk > img {
  position: absolute;
  left: 1.6rem;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.form_blk > img + .input {
  padding-left: 5rem;
}
.form_blk > .tip_icon {
  position: absolute;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  margin: auto;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
}
.form_blk > .tip_icon + .input {
  padding-right: 5rem;
}
.form_blk.input {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.form_blk.input > .site_btn {
  margin-left: 2rem;
  margin-right: -1.4rem;
}
.form_blk.input > .ico_btn {
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  background: transparent;
  margin-left: 2rem;
  padding: 0;
  border: 0;
}
.form_blk:not(.lbl_btn) > label {
  color: var(--dark_gray);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.upload_blk > button {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.upload_blk > input[type="file"],
.upload_blk > [type="file"].checkbox {
  display: none;
}

.input {
  display: block;
  width: 100%;
  height: var(--button_input_height);
  background: var(--light_gray);
  color: var(--black);
  text-align: left;
  line-height: inherit;
  padding: 0.6rem 1.4rem;
  border: 0.1rem solid rgba(var(--black_rgb), 0.1);
  border-radius: 0.6rem;
  outline: none !important;
  box-shadow: none !important;
  transition: all ease 0.3s;
  /* &:not(.no_float) {
  	padding-top: 1.6rem;
  } */
  /* &:valid {
  	color: var(--prime_color);
  	border-color: var(--prime_color);
  } */
}
.input > .input {
  background: transparent;
  margin: -0.1rem 0;
  padding: 0;
  border: 0;
}
.input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.input.blank {
  background: transparent;
  font-size: 1.8rem;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 0.1rem solid #cbcbcb;
  border-radius: 0;
  box-shadow: none;
}
textarea.input {
  height: auto;
  padding-top: 1rem;
  resize: none;
  /* &.long {
  	height: 46rem;
  } */
}

.input:disabled {
  background: #e3e8ee;
  cursor: not-allowed;
  border-color: #d8dee6 !important;
}
.input[readonly] {
  background: rgba(var(--prime_color_rgb), 0.05);
  border-color: var(--prime_color);
}
.input::-moz-placeholder {
  color: var(--dark_gray);
}
.input::placeholder {
  color: var(--dark_gray);
}
.input:focus::-moz-placeholder {
  opacity: 0;
}
.input:focus::placeholder {
  opacity: 0;
}
.input:hover,
.input:focus {
  border-color: var(--prime_color);
}
select.input {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="100" height="100" fill="%23000" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;"><polygon points="80.7,20 50,50.7 19.3,20 4.7,34.7 50,80 95.3,34.7 "/></svg>');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  background-size: 1rem;
  background-position: right 1.4rem center;
  padding-right: 3rem !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select.input > option {
  background: var(--light);
  color: var(--black);
}

button.input {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
button.input > input[type="file"],
button.input > [type="file"].checkbox {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
}

.input.error {
  color: var(--red);
  border-color: var(--red);
}
.input.error ~ .error_message {
  display: block;
}
.input ~ .error_message {
  color: var(--red);
  display: none;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .input ~ .error_message {
    font-size: 1.4rem;
  }
}
.input + label {
  position: absolute;
  inset: 0 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  -webkit-box-orient: vertical;
  height: var(--button_input_height);
  margin: 0 !important;
  pointer-events: none;
  transition: all ease 0.3s;
}
.input:not(:-moz-placeholder-shown) + label {
  font-size: 1.1rem;
  transform: translateY(-1.1rem);
}
.input:focus + label,
.input:not(:placeholder-shown) + label {
  font-size: 1.1rem;
  transform: translateY(-1.1rem);
}

.checkbox_btn {
  position: relative;
  overflow: hidden;
}
.checkbox_btn > input[type="radio"],
.checkbox_btn > input[type="checkbox"],
.checkbox_btn > .checkbox {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
}
.checkbox_btn > input[type="radio"]:checked + button,
.checkbox_btn > input[type="checkbox"]:checked + button,
.checkbox_btn > .checkbox:checked + button {
  color: var(--prime_color);
  border-color: var(--prime_color);
}
.checkbox_btn > input[type="radio"] + button,
.checkbox_btn > input[type="checkbox"] + button,
.checkbox_btn > .checkbox + button {
  text-align: center;
}

/*
|----------------------------------------------------------------------
|		Body
|----------------------------------------------------------------------
*/
html {
  font-size: 10px;
}
@media (min-width: 992px) {
  html {
    font-size: 7.1111px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}
body {
  background: var(--light);
  padding: 0;
}

section {
  overflow: hidden;
}

.text_prime {
  color: var(--prime_color);
}

.heading {
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.subheading {
  color: var(--prime_color);
}

.form_blk > p > br {
  display: none;
}

button {
  background: transparent;
  padding: 0;
  border: 0;
  transition: all ease 0.3s;
}

.blk {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 2rem 0 rgba(var(--black_rgb), 0.1);
}
.blk hr {
  opacity: 0.1;
}

.red {
  background: var(--red);
}

.green {
  background: var(--green);
}

.section_content {
  display: flex;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  gap: 0 10rem;
  grid-gap: 0 10rem;
}
.section_content .btn_blk {
  flex-flow: nowrap;
}
.section_content .btn_blk .input {
  width: auto;
  height: auto;
  background-position: right;
  padding: 0 0 0.5rem;
  border: 0;
  border-bottom: 0.1rem solid var(--gray);
  border-radius: 0;
}

/*
|----------------------------------------------------------------------
|		Logo
|----------------------------------------------------------------------
*/
.logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  width: 100%;
  max-width: 8rem;
  height: 8rem;
}
.logo > a {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.logo > a > img {
  height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
  transition: all ease 0.3s;
}
header .logo {
  position: relative;
  float: left;
  max-width: 14rem;
  height: 8rem;
  margin: auto;
  transition: all ease 0.3s;
  z-index: 10;
}

/*header .logo {*/
/*  max-width: 16rem;*/
/*  margin: auto;*/
/*  height: auto;*/
/*  float: left;*/
/*  transition: all ease 0.3s;*/
/*}*/
footer .logo {
  max-width: 18rem;
  height: auto;
  margin: -16rem 0 1rem;
}

/*
|----------------------------------------------------------------------
|		Header
|----------------------------------------------------------------------
*/
header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  background: linear-gradient(0, transparent, var(--black));
  transition: all ease 0.3s;
}
header .logo_blk {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  max-width: 14rem;
  height: 12rem;
  background: var(--prime_color);
  margin: -3rem auto 0;
}
header #topbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  height: 3rem;
}
header #topbar .topbar__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  -webkit-box-orient: vertical;
  gap: 2rem;
  grid-gap: 2rem;
}
header #topbar .topbar__info > li {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  gap: 0 0.5rem;
  grid-gap: 0 0.5rem;
}
header #topbar .topbar__info > li > img {
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  filter: brightness(0) invert(0.5);
}
header #topbar .topbar__info > li > a:not(:hover) {
  color: var(--light);
}
header #topbar .topbar__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  -webkit-box-orient: vertical;
  gap: 0.6rem;
  grid-gap: 0.6rem;
}
header #topbar .topbar__social a {
  width: 2.2rem;
  min-width: 2.2rem;
  height: 2.2rem;
}
header.header2 {
  position: fixed;
  background: var(--light);
  box-shadow: var(--shadow);
}
header.header2 #topbar {
  background: var(--black);
}
@media (max-width: 475px) {
  header.header2 #topbar {
    display: none;
  }
}

nav {
  position: relative;
  margin-left: auto;
}
@media (max-width: 991px) {
  nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    gap: 3rem;
    grid-gap: 3rem;
    height: auto;
    background: var(--light);
    padding: 12rem 3rem 5rem;
    margin-top: 0;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all ease 0.3s;
  }
}
nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  gap: 2rem 4rem;
  grid-gap: 2rem 4rem;
  min-height: 8rem;
}
@media (max-width: 991px) {
  nav > ul {
    display: flex;
    flex-flow: column;
    text-align: center;
    margin: 0;
  }
}
@media (max-width: 991px) {
  nav > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-orient: vertical;
  }
}
nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
/* Default (PC ke liye) */
nav > ul > li > a:not(.site_btn) {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  height: 3.4rem;
  color: white; /* PC me white */
  font-size: 1.4rem;
}

/* Mobile ke liye */
@media (max-width: 768px) {
  nav > ul > li > a:not(.site_btn) {
    color: black; /* Mobile me black */
  }
}

.header2 nav > ul > li > a:not(.site_btn) {
  color: var(--black);
}
@media (min-width: 992px) {
  nav > ul > li > a:not(.site_btn) {
    height: 4rem;
  }
}
nav > ul > li > a:not(.site_btn):hover {
  color: var(--prime_color);
}
nav > ul > li.active > a:not(.site_btn) {
  color: var(--black);
}
h

/*
|----------------------------------------------------------------------
|		Banner
|----------------------------------------------------------------------
*/
#banner {
  padding-top: 10rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#banner #slider {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}
#banner #slider::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(45deg, var(--dark_gray_rgb), transparent);
}
#banner #slider > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  opacity: 0;
  transform: scale(1);
  transition-duration: 3s, 9s;
  transform-origin: center center;
  transition-property: opacity, transform;
  z-index: 0;
}
#banner #slider > img.active {
  opacity: 1;
  transform: scale(1.1);
}
#banner::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--black);
  opacity: 0.4;
}
#banner .contain {
  z-index: 3;
}
#banner .flex_blk {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  min-height: 60rem;
  padding: 8rem 0;
}
#banner .content {
  color: var(--light);
}
@media (min-width: 992px) {
  #banner .content {
    max-width: 60rem;
    margin: 0 auto;
  }
}
#banner .content h1 {
  font-size: 2.8rem;
  text-shadow: 0.2rem 0.3rem 1rem rgba(var(--black_rgb), 0.3);
}
@media (min-width: 768px) {
  #banner .content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  #banner .content h1 {
    font-size: 5.6rem;
  }
}
#banner .content h5 {
  color: var(--prime_color);
  font-weight: 500;
  text-shadow: 0.2rem 0.3rem 1rem rgba(var(--black_rgb), 0.3);
}
#banner .content p {
  max-width: 50rem;
  font-size: 1.6rem;
  margin: 0 auto 2.5rem;
  text-shadow: 0.2rem 0.3rem 1rem rgba(var(--black_rgb), 0.3);
}

.without_overlay::before {
  display: none;
}

/*
|----------------------------------------------------------------------
|		Serve
|----------------------------------------------------------------------
*/
#serve {
  background: var(--lightest_gray);
  padding: 8rem 0;
}
#serve .section_content {
  margin-bottom: 3rem;
}
#serve .wrapper {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin: -1rem;
}
#serve .wrapper .column {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  #serve .wrapper .column {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #serve .wrapper .column {
    width: 33.3334%;
    padding: 1rem;
  }
}
#serve .inner {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 3rem;
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  #serve .inner {
    padding: 3rem;
  }
}
#serve .inner .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  #serve .inner .title {
    font-size: 2rem;
  }
}

/*
|----------------------------------------------------------------------
|		Guide
|----------------------------------------------------------------------
*/
#guide {
  padding: 8rem 0;
}
@media (min-width: 992px) {
  #guide .wrapper {
    display: flex;
    align-items: center;
    -webkit-box-orient: vertical;
  }
}
#guide .wrapper .blocks {
  display: flex;
  flex-flow: wrap;
  flex: 1;
  margin: -1rem;
}
#guide .wrapper .blocks > .column {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  #guide .wrapper .blocks > .column {
    width: 50%;
  }
}
#guide .wrapper .blocks .inner {
  width: 100%;
  background: var(--light);
  padding: 4rem;
  text-align: center;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}
#guide .wrapper .blocks .inner:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
#guide .wrapper .blocks .inner .num {
  font-size: 4rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  #guide .wrapper .blocks .inner .num {
    font-size: 5rem;
  }
}
#guide .wrapper .content {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  #guide .wrapper .content {
    width: 60rem;
    min-width: 60rem;
    margin-top: 0;
    padding-left: 5rem;
  }
}

/*
|----------------------------------------------------------------------
|		Stories
|----------------------------------------------------------------------
*/
#stories {
  background: var(--light_gray);
  padding: 8rem 0;
}
#stories .section_content {
  max-width: 55rem;
  margin-bottom: 3rem;
}
#stories .wrapper {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#stories .wrapper > .item {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 768px) {
  #stories .wrapper > .item {
    width: 33.3334%;
  }
}
#stories .wrapper .inner {
  background: var(--light);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.4rem -0.6rem rgba(24, 39, 75, 0.12),
    0 1rem 3.2rem -0.4rem rgba(24, 39, 75, 0.1);
  overflow: hidden;
}
#stories .wrapper .inner .comma {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  filter: brightness(0) invert(0.5);
  opacity: 0.5;
}
#stories .wrapper .inner p {
  font-size: 1.6rem;
}
#stories .wrapper .inner .name {
  color: var(--black);
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 3rem 0 0;
}
#stories .wrapper .inner .designation {
  color: var(--gray);
  font-weight: 600;
}

/*
|----------------------------------------------------------------------
|		Journey
|----------------------------------------------------------------------
*/
#journey {
  padding-bottom: 8rem;
}
#journey .wrapper .image {
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  overflow: hidden;
}
#journey .wrapper .image::before {
  content: "";
  display: block;
  padding-bottom: 42rem;
}
#journey .wrapper .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#journey .wrapper .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#journey .wrapper .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#journey .wrapper .content {
  max-width: 70rem;
  margin: 3rem auto 0;
}

/*
|----------------------------------------------------------------------
|		partners
|----------------------------------------------------------------------
*/
#partners {
  padding: 8rem 0;
}
#partners .wrapper {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin: -1rem;
}
#partners .wrapper > .col {
  padding: 1rem;
}
#partners .icon {
  position: relative;
  width: 12rem;
  height: 8rem;
}
@media (min-width: 992px) {
  #partners .icon {
    width: 20rem;
    height: 10rem;
  }
}
#partners .icon > a {
  display: block;
  position: absolute;
  inset: 0;
}
#partners .icon > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

/*
|----------------------------------------------------------------------
|		Posts
|----------------------------------------------------------------------
*/
#posts {
  padding-bottom: 8rem;
}
#posts .wrapper {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#posts .wrapper .col {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  #posts .wrapper .col {
    width: 50%;
  }
}
#posts .image {
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
#posts .image::before {
  content: "";
  display: block;
  padding-bottom: 56%;
}
#posts .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#posts .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#posts .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}

/*
|----------------------------------------------------------------------
|		Instagram
|----------------------------------------------------------------------
*/
#insta {
  padding: 0 0 8rem;
}
#insta .content {
  max-width: 60rem;
  margin: 0 auto 3rem;
}
#slick-insta .slick-list {
  margin: -1rem;
}
#slick-insta .slick-list .item {
  padding: 1rem;
}
#slick-insta .image {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  overflow: hidden;
}
#slick-insta .image::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#slick-insta .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#slick-insta .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#slick-insta .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}

/*
|----------------------------------------------------------------------
|		Footer
|----------------------------------------------------------------------
*/
footer {
  background: var(--dark);
  color: var(--light);
  font-size: 1.3rem;
  padding: 8rem 0 0;
  margin-top: auto;
}
footer .form_row {
  display: flex;
  -webkit-box-orient: vertical;
  margin: -1rem;
}
@media (max-width: 991px) {
  footer .form_row {
    flex-wrap: wrap;
  }
}
footer .form_row > .col {
  width: 100%;
  padding: 1rem;
}
@media (max-width: 991px) {
  footer .form_row > .col {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  footer .form_row > .col {
    width: 50%;
  }
}
@media (max-width: 575px) {
  footer .form_row > .col {
    width: 100%;
  }
}
footer .form_row > .col2 {
  width: 50%;
}
@media (max-width: 991px) {
  footer .form_row > .col2 {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  footer .form_row > .col2 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  footer .form_row > .col2 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  footer .form_row > .col3 {
    width: 66%;
  }
}
@media (max-width: 767px) {
  footer .form_row > .col3 {
    width: 50%;
  }
}
@media (max-width: 575px) {
  footer .form_row > .col3 {
    width: 100%;
  }
}
footer h5 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
footer a {
  color: var(--light);
}
footer a:hover {
  color: var(--prime_color);
}
footer .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .list > li {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
}
footer .list > li > img {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  filter: brightness(0) invert(0.5);
}
footer .list > li:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
footer .copyright {
  background: var(--prime_color);
  color: var(--black);
  padding: 2rem 0;
  margin-top: 8rem;
}
footer .copyright .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-box-orient: vertical;
}
@media (max-width: 475px) {
  footer .copyright .wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }
}
footer .copyright p {
  font-weight: 500;
}
footer .copyright p > a {
  color: inherit;
}
footer .copyright p > a:hover {
  color: var(--light);
}
footer .social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  gap: 1rem;
  grid-gap: 1rem;
  margin: 1rem 0 0;
}
footer .social > a {
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  /* filter: brightness(0) invert(0); */
}
footer .subscribe_blk {
  background: var(--prime_color);
  color: var(--black);
  padding: 2rem;
  border-radius: 1rem;
}
footer .subscribe_blk > span,
footer .site_btn.more.subscribe_blk > span::before,
footer .site_btn.more.subscribe_blk > span::after {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/*
|----------------------------------------------------------------------
|		X Banner
|----------------------------------------------------------------------
*/
#x_banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#x_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.5;
  z-index: 1;
}
#x_banner .contain {
  position: relative;
  z-index: 3;
}
#x_banner .flex_blk {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  min-height: 40rem;
  padding: 6rem 0;
}
@media (min-width: 992px) {
  #x_banner .flex_blk {
    min-height: 54rem;
  }
}
#x_banner .content {
  max-width: 59rem;
  background: rgba(var(--light_rgb), 0.7);
  color: var(--black);
  padding: 2rem;
  margin: auto 0;
  border-radius: 2rem;
}
@media (min-width: 768px) {
  #x_banner .content {
    padding: 4rem;
  }
}
#x_banner .content h1,
#x_banner .content .h1 {
  font-size: 3rem;
  margin: 0;
}
@media (min-width: 768px) {
  #x_banner .content h1,
  #x_banner .content .h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  #x_banner .content h1,
  #x_banner .content .h1 {
    font-size: 5rem;
  }
}
#x_banner .content h1 + *,
#x_banner .content .h1 + * {
  margin-top: 1.5rem;
}
#x_banner .content p {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  #x_banner .content p {
    font-size: 1.9rem;
  }
}

/*
|----------------------------------------------------------------------
|		Projects
|----------------------------------------------------------------------
*/
#projects {
  padding: 8rem 0;
}
#projects::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 40%;
  background: var(--black);
}
#projects .h6 {
  color: var(--light);
}
#projects h1 {
  max-width: 66rem;
  color: var(--prime_color);
  margin: 0 auto 3rem;
}
#projects #slick-projects .slick-list {
  margin: -1rem;
  overflow: unset;
}
#projects #slick-projects .item {
  padding: 1rem;
}
@media (max-width: 991px) {
  #projects #slick-projects .slick-prev {
    left: 0;
  }
}
@media (max-width: 991px) {
  #projects #slick-projects .slick-next {
    right: 0;
  }
}
#projects #slick-projects .inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
#projects #slick-projects .inner::before {
  content: "";
  display: block;
  padding-bottom: 80%;
}
#projects #slick-projects .inner > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#projects #slick-projects .inner > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#projects #slick-projects .inner > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#projects #slick-projects .inner:hover::after {
  opacity: 1;
}
#projects #slick-projects .inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, var(--black), transparent);
  opacity: 0;
  transition: all ease 0.3s;
}
#projects #slick-projects .inner .text_blk {
  background: linear-gradient(0deg, var(--black), transparent);
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  padding: 8rem 3rem 3rem;
}
#projects #slick-projects .inner .text_blk .title {
  color: var(--light);
}
#projects #slick-projects .inner .text_blk .title:hover {
  color: var(--prime_color);
}
#projects #slick-projects .inner .text_blk .type {
  color: var(--prime_color);
}
#projects #slick-projects .inner .text_blk .arrow_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  color: var(--light);
  border: 0.2rem solid;
  border-radius: 75%;
}
#projects #slick-projects .inner .text_blk .arrow_btn:hover {
  color: var(--prime_color);
}

/*
|----------------------------------------------------------------------
|		Contact us
|----------------------------------------------------------------------
*/
#contact {
  background: var(--light_gray);
  padding: 8rem 0;
}
#contact .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  gap: 2rem;
  grid-gap: 2rem;
  margin: 0 auto 3rem;
}
@media (max-width: 991px) {
  #contact .list {
    flex-wrap: wrap;
  }
}
#contact .list > li {
  width: 30%;
  background: var(--light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
@media (max-width: 767px) {
  #contact .list > li {
    width: 100%;
  }
}
#contact .list > li > img {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(0.8);
}
#contact .list > li > strong {
  display: block;
  font-weight: 600;
}
#contact form {
  max-width: 80rem;
  background: var(--light);
  padding: 2rem;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
#contact form .input {
  background: var(--light_gray);
}

/*
|----------------------------------------------------------------------
|		About
|----------------------------------------------------------------------
*/
#affiliate {
  padding: 0 0 8rem;
}
#affiliate .wrapper {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#affiliate .wrapper > .col {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  #affiliate .wrapper > .col {
    width: 33.3334%;
  }
}
#affiliate .content {
  margin: 0 auto 3rem;
}
#affiliate .inner {
  background: var(--light);
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: --shadow;
}
#affiliate .inner .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/*
|----------------------------------------------------------------------
|		Portfolio
|----------------------------------------------------------------------
*/
#portfolio {
  padding: 3rem 0 8rem;
}
#portfolio .tab_list {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 1rem 2rem;
  grid-gap: 1rem 2rem;
  margin-bottom: 3rem;
}
#portfolio .tab_list button {
  padding-bottom: 0.2rem;
  border-bottom: 0.2rem solid transparent;
}
#portfolio .tab_list button:hover {
  color: var(--prime_color);
}
#portfolio .tab_list button.active {
  color: var(--prime_color);
  border-bottom-color: var(--prime_color);
}
#portfolio .wrapper {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#portfolio .wrapper > .col {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  #portfolio .wrapper > .col {
    width: 50%;
  }
}
#portfolio.folio_details .insider .icon {
  max-width: 14rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  #portfolio.folio_details .insider .icon {
    max-width: 20rem;
  }
}
#portfolio.folio_details .insider .blocker {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
#portfolio.folio_details .insider .image {
  margin-top: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}

.case_blk {
  background: var(--light);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 768px) {
  .case_blk {
    display: flex;
    -webkit-box-orient: vertical;
    gap: 0 2rem;
    grid-gap: 0 2rem;
  }
}
.case_blk .icon {
  width: 12rem;
  min-width: 12rem;
  height: 6rem;
}
@media (min-width: 768px) {
  .case_blk .icon {
    height: 12rem;
  }
}
.case_blk .icon > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.case_blk .text {
  flex: 1;
}
.case_blk .text .title {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .case_blk .text .title {
    font-size: 2rem;
  }
}
.case_blk .text .title > a {
  color: var(--prime_color);
}
.case_blk .text .title > a:hover {
  color: var(--black);
}
.case_blk .text .list {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 0 2rem;
  grid-gap: 0 2rem;
  margin: 0.5rem 0 1rem;
}
.case_blk .text .list .mini_logo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: auto;
  max-width: 12rem;
  height: 5rem;
  background: var(--light_gray);
  margin-right: 1rem;
  border-radius: 1rem;
  border: 0.1rem solid rgba(var(--black_rgb), 0.1);
}
.case_blk .text .list a {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  color: var(--dark_gray);
  opacity: 0.7;
  white-space: nowrap;
}

/*
|----------------------------------------------------------------------
|		Choose
|----------------------------------------------------------------------
*/
#choose {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0;
}
#choose::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(45deg, var(--black), transparent);
}
#choose .wrapper {
  max-width: 56rem;
  color: var(--light);
}
#choose .wrapper .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#choose .wrapper .list > li {
  width: 50%;
  padding: 1rem;
}
@media (max-width: 475px) {
  #choose .wrapper .list > li {
    width: 100%;
  }
}
#choose .wrapper .list > li .inner {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  background: var(--light);
  color: var(--black);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
#choose .wrapper .list > li .inner > img {
  width: 6rem;
  min-width: 6rem;
  height: 6rem;
  margin-right: 2rem;
}
#choose .wrapper .list > li .inner > span,
#choose .wrapper .list > li .site_btn.more.inner > span::before,
#choose .wrapper .list > li .site_btn.more.inner > span::after {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

/*
|----------------------------------------------------------------------
|		FAQ's
|----------------------------------------------------------------------
*/
#faq {
  padding: 8rem 0;
}
#faq .wrapper {
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#faq .wrapper .side {
  width: 50%;
  padding: 1rem;
}
@media (max-width: 767px) {
  #faq .wrapper .side {
    width: 100%;
  }
}
#faq .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
#faq .image::before {
  content: "";
  display: block;
  padding-bottom: 42%;
}
#faq .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#faq .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#faq .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#faq .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#faq .list > li {
  display: flex;
  -webkit-box-orient: vertical;
  width: 100%;
  padding: 1rem;
}
#faq .list > li::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  color: rgba(var(--dark_gray_rgb), 0.1);
  margin-right: 1rem;
}
#faq .faq_lst:not(:nth-last-child(1)) {
  margin-bottom: 4rem;
}
#faq .faq_lst > .faq_blk {
  position: relative;
  background: var(--light_gray);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: all ease 0.5s;
}
#faq .faq_lst > .faq_blk:nth-last-child(1) {
  margin-bottom: 0;
}
#faq .faq_lst > .faq_blk:nth-child(1) .txt {
  display: block;
}
#faq .faq_lst > .faq_blk.active h6 {
  color: var(--black);
}
#faq .faq_lst > .faq_blk.active h6::after {
  background: var(--black);
  -webkit-clip-path: polygon(0 40%, 0 60%, 100% 60%, 100% 40%);
  clip-path: polygon(0 40%, 0 60%, 100% 60%, 100% 40%);
}
#faq .faq_lst > .faq_blk h6 {
  position: relative;
  padding: 0 2rem 0 0;
  margin: 0;
  cursor: pointer;
  transition: all ease 0.5s;
  z-index: 2;
}
#faq .faq_lst > .faq_blk h6:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--black);
  -webkit-clip-path: polygon(
    0 40%,
    0 60%,
    40% 60%,
    40% 100%,
    60% 100%,
    60% 60%,
    100% 60%,
    100% 40%,
    60% 40%,
    60% 0,
    40% 0,
    40% 40%
  );
  clip-path: polygon(
    0 40%,
    0 60%,
    40% 60%,
    40% 100%,
    60% 100%,
    60% 60%,
    100% 60%,
    100% 40%,
    60% 40%,
    60% 0,
    40% 0,
    40% 40%
  );
  transition: all ease 0.5s;
}
#faq .faq_lst > .faq_blk h6:hover {
  color: var(--black);
}
#faq .faq_lst > .faq_blk .txt {
  display: none;
  padding: 1rem 0 0;
}

/*
|----------------------------------------------------------------------
|		Media
|----------------------------------------------------------------------
*/
#media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(var(--black_rgb), 0.8);
}
#media .contain {
  z-index: 3;
}
#media .outer {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  min-height: 60rem;
}
#media .content {
  width: 100%;
  max-width: 82rem;
  color: var(--light);
  margin: auto;
}
#media .content p {
  max-width: 50rem;
  font-size: 1.6rem;
  margin: 0 auto 2rem;
}

/*
|----------------------------------------------------------------------
|		Our Services
|----------------------------------------------------------------------
*/
#services {
  background: var(--light_gray);
  padding: 8rem 0;
}
#services h1 {
  max-width: 60rem;
  margin: 0 auto;
}
#services .wrapper {
  gap: 3rem;
  grid-gap: 3rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  #services .wrapper {
    display: flex;
    flex-direction: row;
  }
}
#services .wrapper .inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  #services .wrapper .inner {
    width: 33.3334%;
  }
}
#services .wrapper .inner .image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  overflow: hidden;
}
#services .wrapper .inner .image::before {
  content: "";
  display: block;
  padding-bottom: 70%;
}
#services .wrapper .inner .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#services .wrapper .inner .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#services .wrapper .inner .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#services .wrapper .inner .text {
  flex: 1;
  position: relative;
  margin: -2rem 2rem 0;
  background: var(--light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  z-index: 1;
}

/*
|----------------------------------------------------------------------
|		Tech
|----------------------------------------------------------------------
*/
#tech {
  background: var(--light_gray);
  padding: 8rem 0;
}
#tech .contain {
  z-index: 3;
}
#tech .content {
  max-width: 50rem;
  margin: 0 auto 3rem;
}
#tech .flex_row {
  margin: -1rem;
}
@media (min-width: 992px) {
  #tech .flex_row {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
  }
}
#tech .flex_row .col {
  padding: 1rem;
}
@media (min-width: 992px) {
  #tech .flex_row .col {
    width: 50%;
  }
}
#tech #reviews .item {
  padding: 1rem;
}
#tech #reviews .item .inner p {
  font-style: italic;
  font-size: 1.5rem;
}
#tech #reviews .item .inner h6 {
  margin-bottom: 0;
  margin-top: 3rem;
}
#tech .inner {
  background: var(--light);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.4rem -0.6rem rgba(24, 39, 75, 0.12),
    0 1rem 3.2rem -0.4rem rgba(24, 39, 75, 0.1);
}
#tech .inner .icon {
  position: relative;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  margin: 0 0 4rem;
  z-index: 1;
}
#tech .inner .icon:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--prime_color);
  border-radius: 75%;
  transform: translate(-1rem, -0.2rem);
  z-index: -1;
}
#tech .inner .icon > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  filter: brightness(0) invert(0);
}

/*
|----------------------------------------------------------------------
|		About us
|----------------------------------------------------------------------
*/
#about {
  padding: 8rem 0;
}
@media (min-width: 992px) {
  #about .wrapper {
    display: flex;
    flex-flow: wrap;
  }
}
#about .wrapper > .content {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  #about .wrapper > .content {
    width: 45%;
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
#about .wrapper > .content .list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: wrap;
  margin: -1rem;
}
#about .wrapper > .content .list > li {
  display: flex;
  align-items: center;
  -webkit-box-orient: vertical;
  width: 50%;
  font-weight: 600;
  padding: 1rem;
}
@media (max-width: 475px) {
  #about .wrapper > .content .list > li {
    width: 100%;
  }
}
#about .wrapper > .content .list > li::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="28" height="28" viewBox="0 0 28 28"><path d="M2.4,15.5h19.5l-7.2,7.2c-0.6,0.6-0.6,1.5,0,2.1c0.6,0.6,1.5,0.6,2.1,0l9.8-9.8c0.1-0.1,0.3-0.3,0.3-0.5 c0,0,0,0,0,0c0.1-0.2,0.1-0.4,0.1-0.5v0v0c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0,0c-0.1-0.2-0.2-0.4-0.3-0.5l-9.8-9.8 c-0.3-0.3-0.7-0.4-1.1-0.4S15,2.8,14.7,3.1c-0.6,0.6-0.6,1.5,0,2.1l7.2,7.2H2.4c-0.8,0-1.5,0.7-1.5,1.5S1.6,15.5,2.4,15.5z"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: currentColor;
  color: inherit;
  transition: inherit;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  color: var(--prime_color);
  margin-right: 1rem;
}
#about .wrapper > .image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
#about .wrapper > .image::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#about .wrapper > .image > * {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
}
#about .wrapper > .image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
#about .wrapper > .image > a > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
}
@media (min-width: 992px) {
  #about .wrapper > .image {
    width: 55%;
  }
}

/*
|----------------------------------------------------------------------
|		Request Quote
|----------------------------------------------------------------------
*/
#request_quote {
  background: var(--light_gray);
  padding: 8rem 0;
}
#request_quote .form_wrapper {
  background: var(--light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.6rem 1.4rem -0.6rem rgba(24, 39, 75, 0.12),
    0 1rem 3.2rem -0.4rem rgba(24, 39, 75, 0.1);
}

/*
|----------------------------------------------------------------------
|		Terms
|----------------------------------------------------------------------
*/
#terms {
  padding: 4rem 0 8rem;
}
#terms .wrapper {
  background: var(--light_gray);
  padding: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  #terms .wrapper {
    padding: 2rem;
  }
} /*# sourceMappingURL=app.css.map */
