/* variables */
/*:root {
  --black: #000;
  --white: #fff;
  --red: #A1F408;
  --gray: #787878;
  --darkGray: #141414;
  --lightGray: #bcbcbc;
}
.black-block {
  height: 20px;
  width: 100%;
  background: var(--black);
}
.contact-content {
  padding-top: 150px;
  margin-bottom: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.pros__card--icon svg {
  width: 42px;
  height: 42px;
} */

.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 150px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  padding: 16px 8px;
  color: black;
  background: #fff;
  -webkit-box-shadow: 5px 5px 11px 1px rgba(0,0,0,0.63); 
  box-shadow: 5px 5px 11px 1px rgba(0,0,0,0.63);
  display: none;
  z-index: 10;
}
.form-popup.active {
  display: flex;
}
/*
.home.intro {
    position: relative;
    top: 0;
    left: 0;
    min-height: 75vh;
    //width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    -webkit-box-shadow: 0 4px 60px rgba(0, 0, 0, .3);
    box-shadow: 0 4px 60px rgba(0, 0, 0, .3);
	background-color: rgba(0, 0, 0, .7);
}

@media (min-width:992px) {
  .home.intro {
    max-height: 870px;
  }
}

@media (max-width:576px) {
  .home.intro {
    max-height: 570px;
  }
}

.intro__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    min-height: 80vh;
    z-index: -1;
}

@media (min-width:992px) {
  .home.intro__video {
    max-height: 870px
  }
}

.intro__video > video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
}

.home.intro__box {
  height: 100%
}

.intro__box img{
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, 0%);
}

@media (min-width:992px) {
  .home.intro__box {
    width: 90%
  }
}

.intro__header {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 50px;
	color: #FFFFFF;
}

@media (max-width:576px) {
  .intro__header {
    font-size: 36px;
    margin-bottom: 25px;
  }
}

.intro__desc {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #cfcfcf;
}

@media (min-width:992px) {
  .home.intro__desc {
    font-size: 30px;
    width: 75%
  }
}

@media screen and (max-width: 860px) {
.home.intro {
	min-height: 43vh;
}
.intro__video {
	min-height: 50vh;
}
}

@media screen and (max-width: 660px) {
.home.intro {
	min-height: 50vh;
}
.intro__video {
	min-height: 65vh;
}
}
 */

/* variables end */
/* 
body {
  background-color: #bebec2;
}

a {
  text-decoration: none;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
a,
button {
  line-height: 1.5;
}

.m-auto {
  margin: auto;
}

.video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video__wrapper iframe {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 100%;
}

/* Wrappers */
.section-wrapper {
  padding: 0 20px;
}

/* Wrappers End */
/* Flex utlils */
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* Flex utlils end */

.text-center {
  text-align: center;
}

/* font colors */
.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

.text-red {
  color: var(--red);
}

.text-gray {
  color: var(--gray);
}

.text-light-gray {
  color: var(--lightGray);
}

.text-dark-gray {
  color: var(--darkGray);
}

.text-green {
  color: #e3f14d;
}
 */
/* font colors */

/* backgrounds */
.bg-black {
  background-color: #191917;
}

.bg-green {
  background-color: rgba(164, 137, 108, 0.8);
}

.bg-white {
  background-color: var(--white);
}

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

.bg-gray {
  background-color: var(--gray);
}

.bg-dark-gray {
  background-color: var(--darkGray);
}

.bg-light-gray {
  background-color: var(--lightGray);
}

/* backgrounds */

/* typography */
.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-15 {
  font-size: 15px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-24 {
  font-size: 24px;
}

.text-30 {
  font-size: 30px;
}

.text-38 {
  font-size: 38px;
}

.text-45 {
  font-size: 45px;
}

.text-60 {
  font-size: 60px;
}

.list {
  list-style: unset;
  padding-left:20px
}
.uppercase {
  text-transform: uppercase;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-nunito {
  font-family: "Nunito Sans", sans-serif;
}

.font-apex-book {
  font-family: "ApexNew-Book";
}

.font-apex-bold {
  font-family: "ApexNew-Bold";
}

.weight-400 {
  font-weight: 400;
}

.weight-500 {
  font-weight: 500;
}

.weight-900 {
  font-weight: 900;
}

/* typography */

html {
  scroll-behavior: smooth;
}

/* [id]::before {
  content: "";
  display: block;
  height: 250px;
  margin-top: -250px;
  visibility: hidden;
} */

.show-more {
  width: 100%;
  height: 80px;
  background: var(--red);
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-family: 'Montserrat' Arial, Helvetica, sans-serif;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
/* Nav start */
/*
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  z-index: 6;
}

.nav__burger {
  position: fixed;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

nav {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 6;
  top: 0;
  //background: #000;
  transition: background 0.4s ease-in;
}

nav.active {
  background: #000;
}

.nav__logo img {
  height: 18px;
  /* margin-left: 20px; */
  z-index: 2;
  position: relative;
}

.nav__list {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: none;
  flex-direction: column;
  /* row-gap: 32px; */
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 0;
}

.nav__list.open {
  display: flex;
}

.nav__list li {
  margin-bottom: 32px;
}

.nav__link {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  transition: color 0.4s ease-in;
  font-weight: 600;
}

.nav__link:hover,
.nav__link.active {
  color: var(--red);
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
*/
/* Nav end */

/* Footer */
.footer__col {
  display: flex;
  margin-left: 8px;
  flex-direction: column;
  margin-bottom: 32px;
}

.section-wrapper-footer {
  width: 90%;
  margin: auto;
  padding: 24px 0;
}

footer {
  display: flex;
  flex-direction: column;
  /* row-gap: 32px; */
}

.footer__link {
  transition: color 0.4s ease-in;
}

.footer__link:hover {
  color: #fff;
}

/* Footer End */

/* Contact */

.form-input {
  padding: 12px 16px;
  font-size: 15px;
  color: #8c8c8c;
  border: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.error {
  padding-left: 16px;
  color: red;
  height: 12px;
  padding-top: 12px;
}

.btn {
  //color: #fff;
  background-color: #a4896ccc;
  padding: 16px 48px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border: 1px solid transparent;
  border-radius: .5rem;
}

.btn:hover {
  border-color: #835b37;
  background-color: #957559;
  color: #fff;
  padding: 16px 48px;
}

.form {
  display: flex;
  flex-direction: column;
}

.form__row {
  display: flex;
  flex-direction: column;
}

.form__column {
  display: flex;
  flex-direction: column;
}

/* Checkbox */
.checkbox {
  display: grid;
  grid-template-columns: -webkit-min-content auto;
  grid-template-columns: min-content auto;
  grid-gap: 16px;
  font-size: 14px;
  line-height: 18px;
  color: var(--gray);
}

.checkbox--disabled {
  color: var(--gray);
}

.checkbox__control {
  display: inline-grid;
  width: 1em;
  height: 1em;
  border-radius: 0.25em;
  border: 0.1em solid currentColor;
}

.checkbox__control svg {
  transition: transform 0.1s ease-in 25ms;
  transform: scale(0);
  transform-origin: bottom left;
}

.checkbox__input {
  display: grid;
  grid-template-areas: "checkbox";
}

.checkbox__input>* {
  grid-area: checkbox;
}

.checkbox__input input {
  opacity: 0;
  width: 1em;
  height: 1em;
}

.checkbox__input input:focus+.checkbox__control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

.checkbox__input input:checked+.checkbox__control svg {
  transform: scale(1);
}

.checkbox__input input:disabled+.checkbox__control {
  color: var(--gray);
}

/* End Checkbox */
/* End Contact */

/* Margins */
.mb-sm-8 {
  margin-bottom: 8px;
}

.mb-sm-16 {
  margin-bottom: 16px;
}

.mb-sm-24 {
  margin-bottom: 24px;
}

.mb-sm-32 {
  margin-bottom: 32px;
}

.mb-sm-48 {
  margin-bottom: 48px;
}

.mb-sm-64 {
  margin-bottom: 64px;
}

.mb-sm-80 {
  margin-bottom: 80px;
}

.mt-sm-8 {
  margin-top: 8px;
}

.mt-sm-16 {
  margin-top: 16px;
}

.mt-sm-24 {
  margin-top: 24px;
}

.mt-sm-32 {
  margin-top: 32px;
}

.mt-sm-48 {
  margin-top: 48px;
}

.mt-sm-64 {
  margin-top: 64px;
}

.mt-sm-80 {
  margin-top: 80px;
}

.ml-sm-8 {
  margin-left: 8px;
}

.ml-sm-16 {
  margin-left: 16px;
}

.ml-sm-24 {
  margin-left: 24px;
}

.ml-sm-32 {
  margin-left: 32px;
}

.ml-sm-48 {
  margin-left: 48px;
}

.ml-sm-64 {
  margin-left: 64px;
}

.ml-sm-80 {
  margin-left: 80px;
}

.mr-sm-8 {
  margin-right: 8px;
}

.mr-sm-16 {
  margin-right: 16px;
}

.mr-sm-24 {
  margin-right: 24px;
}

.mr-sm-32 {
  margin-right: 32px;
}

.mr-sm-48 {
  margin-right: 48px;
}

.mr-sm-64 {
  margin-right: 64px;
}

.mr-sm-80 {
  margin-right: 80px;
}

/* Margins */
/* Paddings */
.pb-sm-8 {
  padding-bottom: 8px;
}

.pb-sm-16 {
  padding-bottom: 16px;
}

.pb-sm-24 {
  padding-bottom: 24px;
}

.pb-sm-32 {
  padding-bottom: 32px;
}

.pb-sm-48 {
  padding-bottom: 48px;
}

.pb-sm-64 {
  padding-bottom: 64px;
}

.pb-sm-80 {
  padding-bottom: 80px;
}

.pt-sm-8 {
  padding-top: 8px;
}

.pt-sm-16 {
  padding-top: 16px;
}

.pt-sm-24 {
  padding-top: 24px;
}

.pt-sm-32 {
  padding-top: 32px;
}

.pt-sm-48 {
  padding-top: 48px;
}

.pt-sm-64 {
  padding-top: 64px;
}

.pt-sm-80 {
  padding-top: 80px;
}

.pl-sm-8 {
  padding-left: 8px;
}

.pl-sm-16 {
  padding-left: 16px;
}

.pl-sm-24 {
  padding-left: 24px;
}

.pl-sm-32 {
  padding-left: 32px;
}

.pl-sm-48 {
  padding-left: 48px;
}

.pl-sm-64 {
  padding-left: 64px;
}

.pl-sm-80 {
  padding-left: 80px;
}

.pr-sm-8 {
  padding-right: 8px;
}

.pr-sm-16 {
  padding-right: 16px;
}

.pr-sm-24 {
  padding-right: 24px;
}

.pr-sm-32 {
  padding-right: 32px;
}

.pr-sm-48 {
  padding-right: 48px;
}

.pr-sm-64 {
  padding-right: 64px;
}

.pr-sm-80 {
  padding-right: 80px;
}

/* Paddings end */
.logo-img {
  width: 200px;
}

@media screen and (min-width: 601px) {
  .logo-img {
    width: 300px;
  }

  .nav__logo img {
    height: 40px;
    margin-left: 20px;
    z-index: 2;
    position: relative;
  }

  footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    column-gap: 32px;
  }

  .section-wrapper {
    padding: 0 30px;
  }

  .section-wrapper-footer {
    padding: 32px 0;
  }
}

@media screen and (min-width: 861px) {
  .video__wrapper iframe {
    top: 0;
  }

  /* navbar */
  .nav {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
  }

  .section-wrapper {
    padding: 0 40px;
  }

  .nav__burger {
    display: none;
  }

  .section-wrapper-footer {
    padding: 48px 0;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    /* column-gap: 32px; */
    justify-content: flex-end;
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    background: unset;
    height: unset;
    width: unset;
  }

  .nav__list li {
    margin-bottom: unset;
  }

  .nav__list li:not(:first-of-type) {
    margin-left: 32px;
  }

  .nav__link {
    margin-bottom: unset;
  }

  /* end navbar */
  footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  /* Margins */
  .mb-md-8 {
    margin-bottom: 8px;
  }

  .mb-md-16 {
    margin-bottom: 16px;
  }

  .mb-md-24 {
    margin-bottom: 24px;
  }

  .mb-md-32 {
    margin-bottom: 32px;
  }

  .mb-md-48 {
    margin-bottom: 48px;
  }

  .mb-md-64 {
    margin-bottom: 64px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mt-md-8 {
    margin-top: 8px;
  }

  .mt-md-16 {
    margin-top: 16px;
  }

  .mt-md-24 {
    margin-top: 24px;
  }

  .mt-md-32 {
    margin-top: 32px;
  }

  .mt-md-48 {
    margin-top: 48px;
  }

  .mt-md-64 {
    margin-top: 64px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .ml-md-8 {
    margin-left: 8px;
  }

  .ml-md-16 {
    margin-left: 16px;
  }

  .ml-md-24 {
    margin-left: 24px;
  }

  .ml-md-32 {
    margin-left: 32px;
  }

  .ml-md-48 {
    margin-left: 48px;
  }

  .ml-md-64 {
    margin-left: 64px;
  }

  .ml-md-80 {
    margin-left: 80px;
  }

  .mr-md-8 {
    margin-right: 8px;
  }

  .mr-md-16 {
    margin-right: 16px;
  }

  .mr-md-24 {
    margin-right: 24px;
  }

  .mr-md-32 {
    margin-right: 32px;
  }

  .mr-md-48 {
    margin-right: 48px;
  }

  .mr-md-64 {
    margin-right: 64px;
  }

  .mr-md-80 {
    margin-right: 80px;
  }

  /* Margins */
  /* Paddings */
  .pb-md-8 {
    padding-bottom: 8px;
  }

  .pb-md-16 {
    padding-bottom: 16px;
  }

  .pb-md-24 {
    padding-bottom: 24px;
  }

  .pb-md-32 {
    padding-bottom: 32px;
  }

  .pb-md-48 {
    padding-bottom: 48px;
  }

  .pb-md-64 {
    padding-bottom: 64px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pt-md-8 {
    padding-top: 8px;
  }

  .pt-md-16 {
    padding-top: 16px;
  }

  .pt-md-24 {
    padding-top: 24px;
  }

  .pt-md-32 {
    padding-top: 32px;
  }

  .pt-md-48 {
    padding-top: 48px;
  }

  .pt-md-64 {
    padding-top: 64px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pl-md-8 {
    padding-left: 8px;
  }

  .pl-md-16 {
    padding-left: 16px;
  }

  .pl-md-24 {
    padding-left: 24px;
  }

  .pl-md-32 {
    padding-left: 32px;
  }

  .pl-md-48 {
    padding-left: 48px;
  }

  .pl-md-64 {
    padding-left: 64px;
  }

  .pl-md-80 {
    padding-left: 80px;
  }

  .pr-md-8 {
    padding-right: 8px;
  }

  .pr-md-16 {
    padding-right: 16px;
  }

  .pr-md-24 {
    padding-right: 24px;
  }

  .pr-md-32 {
    padding-right: 32px;
  }

  .pr-md-48 {
    padding-right: 48px;
  }

  .pr-md-64 {
    padding-right: 64px;
  }

  .pr-md-80 {
    padding-right: 80px;
  }

  /* Paddings end */
}

@media screen and (min-width: 1080px) {
  .contact-content {
    padding-top: unset;
    margin-bottom: unset;
    display: block;
    justify-content: unset;
    align-items: unset;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }

  footer {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .section-wrapper-footer {
    padding: 64px 0;
  }
}

@media screen and (min-width: 1280px) {
  .section-wrapper {
    padding: 0 80px;
  }

  .section-wrapper-footer {
    padding: 80px 0;
  }

  /* Margins */
  .mb-xl-8 {
    margin-bottom: 8px;
  }

  .mb-xl-16 {
    margin-bottom: 16px;
  }

  .mb-xl-24 {
    margin-bottom: 24px;
  }

  .mb-xl-32 {
    margin-bottom: 32px;
  }

  .mb-xl-48 {
    margin-bottom: 48px;
  }

  .mb-xl-64 {
    margin-bottom: 64px;
  }

  .mb-xl-80 {
    margin-bottom: 80px;
  }

  .mt-xl-8 {
    margin-top: 8px;
  }

  .mt-xl-16 {
    margin-top: 16px;
  }

  .mt-xl-24 {
    margin-top: 24px;
  }

  .mt-xl-32 {
    margin-top: 32px;
  }

  .mt-xl-48 {
    margin-top: 48px;
  }

  .mt-xl-64 {
    margin-top: 64px;
  }

  .mt-xl-80 {
    margin-top: 80px;
  }

  .ml-xl-8 {
    margin-left: 8px;
  }

  .ml-xl-16 {
    margin-left: 16px;
  }

  .ml-xl-24 {
    margin-left: 24px;
  }

  .ml-xl-32 {
    margin-left: 32px;
  }

  .ml-xl-48 {
    margin-left: 48px;
  }

  .ml-xl-64 {
    margin-left: 64px;
  }

  .ml-xl-80 {
    margin-left: 80px;
  }

  .mr-xl-8 {
    margin-right: 8px;
  }

  .mr-xl-16 {
    margin-right: 16px;
  }

  .mr-xl-24 {
    margin-right: 24px;
  }

  .mr-xl-32 {
    margin-right: 32px;
  }

  .mr-xl-48 {
    margin-right: 48px;
  }

  .mr-xl-64 {
    margin-right: 64px;
  }

  .mr-xl-80 {
    margin-right: 80px;
  }

  /* Margins */
  /* Paddings */
  .pb-xl-8 {
    padding-bottom: 8px;
  }

  .pb-xl-16 {
    padding-bottom: 16px;
  }

  .pb-xl-24 {
    padding-bottom: 24px;
  }

  .pb-xl-32 {
    padding-bottom: 32px;
  }

  .pb-xl-48 {
    padding-bottom: 48px;
  }

  .pb-xl-64 {
    padding-bottom: 64px;
  }

  .pb-xl-80 {
    padding-bottom: 80px;
  }

  .pt-xl-8 {
    padding-top: 8px;
  }

  .pt-xl-16 {
    padding-top: 16px;
  }

  .pt-xl-24 {
    padding-top: 24px;
  }

  .pt-xl-32 {
    padding-top: 32px;
  }

  .pt-xl-48 {
    padding-top: 48px;
  }

  .pt-xl-64 {
    padding-top: 64px;
  }

  .pt-xl-80 {
    padding-top: 80px;
  }

  .pl-xl-8 {
    padding-left: 8px;
  }

  .pl-xl-16 {
    padding-left: 16px;
  }

  .pl-xl-24 {
    padding-left: 24px;
  }

  .pl-xl-32 {
    padding-left: 32px;
  }

  .pl-xl-48 {
    padding-left: 48px;
  }

  .pl-xl-64 {
    padding-left: 64px;
  }

  .pl-xl-80 {
    padding-left: 80px;
  }

  .pr-xl-8 {
    padding-right: 8px;
  }

  .pr-xl-16 {
    padding-right: 16px;
  }

  .pr-xl-24 {
    padding-right: 24px;
  }

  .pr-xl-32 {
    padding-right: 32px;
  }

  .pr-xl-48 {
    padding-right: 48px;
  }

  .pr-xl-64 {
    padding-right: 64px;
  }

  .pr-xl-80 {
    padding-right: 80px;
  }

  /* Paddings end */
}

.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}


.table_component th {
    border: 1px solid #dededf;
    padding: 20px;
}

.table_component td {
    border: 1px solid #dededf;
    padding: 25px;
}

@media screen and (max-width: 1080px) {
	.text-30{
		font-size: 24px;
	}
	.text-24{
		font-size: 18px;
	}
	
}

@media screen and (max-width: 600px) {
	.text-30{
		font-size: 20px;
	}
	.text-24{
		font-size: 16px;
	}
	.table_component th {
    padding: 15px 10px;
	}
	.table_component td {
    padding: 15px 10px;
	}
	.text-60{
		font-size: 45px;
	}
}