* {
  box-sizing: border-box;
  user-select: none;
}

a {
  color: var(--color-surface-white);
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: var(--light);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1rem, 8vw, 8rem);
  font-weight: 600;
  text-align: left;
  width: 90vw;
  text-transform: none;
}
.scroll_container {
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 7%;
  left: 50%;
}

.logo img{
  height: 40px;
}




.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}












.section-heading{
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 600;
  text-transform: none;
  text-align: left;
  line-height: 1.2;
  width: 50vw;
  margin-bottom: 15px;
}
.section-heading span{
  font-size: clamp(1rem, 4vw, 4rem);
}
.section-subheading{
  margin-top: 20px;
  text-align: left;
  font-size: clamp(1rem, 2vw, 1rem);
}
header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  z-index: 3;
  height: 7em;
  font-size: clamp(0.50rem, 2vw, .8rem);
  letter-spacing: 0.2em;
}

section {
  height: 100%;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;
}
section .outer,
section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
/*section .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}*/
section .bg{
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
}
section .bg h2 {
  z-index: 999;
}
section .bg .clip-text {
  overflow: hidden;
}
/*.content_inside_section{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0%, -50%);
  width: 80%;
}*/
.content_inside_section {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 10%;
  display: block;
  align-content: space-around;
}
#background-video {
   width: 100vw;
   height: 100vh;
   object-fit: cover;
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
   z-index: -1;
}
.section_main_text{
  font-size: clamp(.6rem, 3vw, 0.9rem);
  text-transform: none;
}
.services_page{
  width: 40vw;
}
.services_list_title{
  font-size: clamp(.7rem, 4vw, 1.2rem);
  text-transform: uppercase;
  font-weight: bold;
  display: block;
}
.services_list_title:first-child{
  margin-top: 20px;
}
.about_us_stats{
  width: 100%;
  height: 80px;
  display: grid;
  background: #22545e5e;
  padding: 10px;
}
.section_img {
  float: left;
  width: 50%;
  height: 275px;
  object-fit: cover;
  object-position: center;
  margin: 0 20px 20px 0;
}
.about_us_stats span{
  border-right: 1px solid #fffce1;
  padding: 2px 20px;
}
.about_us_stats div:first-child{
  font-size: clamp(.8rem, 3vw, 1.1rem);
}
.about_us_stats span:last-child{
  border: none;
}
.about_us_stats span:first-child{
  padding-left: 0;
}





.services_grid_row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.services_grid_column {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 4px;
}

.services_grid_column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}












.industries_list {
  display: flex;
  width: auto;
  justify-content: space-around;
  background: #2b2b2b82;
  padding: 2%;
  flex-wrap: wrap;
  align-content: flex-start;
}
.industries_item {
  text-align: center;
  width: auto;
}
.industries_item img{
  height: 70px;
  filter: drop-shadow(8px 8px 10px #FFF);
}
.ind_item_title {
  font-weight: bold;
  text-transform: uppercase;
}




.contact_page{
  display: flex;
}
.flex-item {
  padding: 10px;
  flex: 50%;
}
.flex-item form{
  margin-top: 30px;
}
@media (max-width: 800px) {
  .flex-item {
    flex: 100%;
  }
  .contact_page{    
    flex-wrap: wrap;
  }
}




.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #fffce100;
    border-radius: 4px;
    background: #f5f5dc2b;
    color: #fffce1;
}

.form-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #fffce100;
    border-radius: 4px;
    resize: none;
    background: #f5f5dc2b;
    color: #fffce1;
}

.form-group button {
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #807149;
    width: 100%;
}

.form-group button:hover {
    background-color: #5e5131;
}

.line_or {
  width: 100%;
  display: flex;
  align-items: center;
}
.line_or1 {
  height: 1px;
  background: #FFFBDE;
  background: linear-gradient(270deg, rgba(255, 251, 222, 1) 73%, rgba(255, 251, 222, 0) 100%);
  width: 50%;
}
.or {
  padding: 0 10px;
}
.line_or2 {
  height: 1px;
  background: #FFFBDE;
  background: linear-gradient(90deg,rgba(255, 251, 222, 1) 73%, rgba(255, 251, 222, 0) 100%);
  width: 50%;
}
.telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.telegram img{
  padding-right: 10px;
}
.grecaptcha-badge{
  display: none;
}
.status__msg {
  display: none;
  text-align: center;
}
.first .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.second .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%), url("../images/Subzzone_about_us_bg_full.jpg");
}

.third .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%), url("../images/Subzzone_services_bg.jpg");
}

.fourth .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%), url("../images/Subzzone_industries_bg.jpg");
}

.fifth .bg {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%), url("../images/Subzzone_contact_us_bg.jpg");
  background-position: 50% 45%;
}

h2 * {
  will-change: transform;
}
.wonfe {
  position: absolute;
  z-index: 999;
  bottom: 10px;
  right: 5%;
  text-transform: none;
  display: flex;
  align-items: center;
}
.wonfe span {
  font-size: clamp(.7rem, 5vw, .7rem);
  margin-right: 5px;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .services_grid_column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .logo img{
    height: 30px;
  }
  .services_grid_column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  .services_page{
    width: 80vw;
  }
  .industries_item img {
    height: 45px;
  }
  .section-heading{
    width: unset;
  }
  .flex-item form {
    margin-top: 0;
  }
}