:root {
  --white: #ffffff;
  --primary-dark: #131212;

  --gray-one: #d7d7d7;
  --gray-two: #979797;
  --gray-three: #858585;
  --gray-four: #707070;

  --primary-font: 'Raleway', sans-serif;
  --secondary-font: 'OptimaLTPro-Roman';
}

/* GLOBAL STYLES
################################################### */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark) !important;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 87px 0 87px 100px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col {
  flex: 1;
}

.text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-dark);
}

.text-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

.text-lg {
  font-size: 22px;
  font-weight: 600;
}

.title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.title-sm {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.fw-600 {
  font-weight: 600;
}

.mb-27 {
  margin-bottom: 27px;
}

.btn {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-dark);
  line-height: 22px;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
  cursor: pointer;
}

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

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

.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

.display-none {
  display: none;
}

.hero-section {
  height: 100vh;
  cursor: none;
 /* padding-bottom: 100px;*/
}

.hero-section .container {
  padding: 50px 136px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.scroll-down img {
  animation: down 2s infinite ease-in-out;
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  30% {
    transform: translateY(15px);
  }
  60% {
    transform: translate(0);
  }
}

@keyframes zoom {
  10% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.04);
    opacity: 0.8;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ABOUT US
################################################### */

.about-us {
  background-color: var(--white);

  /* height: 750px;*/
}

.about-us .title {
  max-width: 525px;
}

.about-us .text-md {
  max-width: 525px;
}

.about-us .images {
  gap: 0 21px;
}

.about-us img {
  width: 48%;
  height: auto;
  object-fit: cover;
}

.about-us .btn {
  float: right;
  margin-right: 100px;
}

.section-2 {
  border-top: 1px solid var(--primary-dark);
  background-color: var(--white);
}

.section-2 .text-md {
  max-width: 505px;
}

.section-3 {
  border-bottom: 1px solid var(--primary-dark);
  border-top: 1px solid var(--primary-dark);
  background-color: var(--white);
}

.section-4 {
  border-bottom: 1px solid var(--primary-dark);
  border-top: 1px solid var(--primary-dark);
  background-color: var(--white);
}


.sticky .text-md {
  max-width: 505px;
}

/*
.fixed {
  position: fixed;
  height: auto;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 100%;
}
*/

/* Careers
################################################### */

.careers-us {
  overflow: hidden;
  background-color: var(--white);
  border-top: 1px solid var(--primary-dark);
}

.careers-us .text-md {
  max-width: 505px;
}

.icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 42px 0 37px;
  position: relative;
  max-width: 430px;
}

.icons img {
  width: 107px;
  margin-right: 21px;
}
.icons svg {
  position: absolute;
  right: 0;
  transform: translate(100%, 0px);
}

.icon-item {
  margin-right: 28px;
  cursor: pointer;
}

.icon-item span {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  display: none;
  text-align: center;
}

.icon-item:hover img {
  display: none;
}

.icon-item:hover span {
  display: inline;
}

/* Contact us
################################################### */

.contact-us {
  background-color: var(--primary-dark);
}

.contact-us form {
  max-width: 525px;
}

input,
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  outline: none;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  width: 100%;
  color: var(--white);
  height: 37px;
  margin-bottom: 42px;
}

.form-group {
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
}

.form-group .field {
  margin-right: 20px;
  width: 49%;
  /* padding-bottom: 10px; */
  color: var(--white);
}

textarea {
  width: 100%;
  color: var(--white);
  resize: none;
}

.field,
.field-textarea {
  position: relative;
}

.field-textarea {
  width: 100%;
}

label {
  color: var(--white);
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  font-weight: 300;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

input:focus ~ label,
input:not(:placeholder-shown) ~ label,
textarea:focus ~ label,
textarea:not(:placeholder-shown) ~ label {
  top: -25px;
  left: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--white);
  box-shadow: inset 0 0 20px 20px transparent;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

.file-uploader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--white);
  padding-bottom: 19px;
  margin-bottom: 8px;
}

input[type='file'] {
  display: none;
}

.label-upload {
  position: relative;
  cursor: pointer;
  pointer-events: all;
  top: 0 !important;
}

.file-allow {
  color: var(--white);
  font-size: 12px;
  font-weight: 200;
  font-style: italic;
}

.file-actions {
  display: flex;
}

.file-actions img {
  cursor: pointer;
}

.contact-us .btn {
  margin-top: 54px;
}

.footer .container {
  padding: 78px 0px 62px 100px;
}

.footer p:last-child {
  margin-top: 92px;
}

.footer .row .row {
  align-items: flex-end;
  max-width: 525px;
}

.lng {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.file-content {
  position: relative;
}

.file-name,
#file-status {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

#file-name {
  opacity: 0.7;
}

#file-title {
  position: absolute;
  top: 0;
}

.opacity-1 {
  opacity: 1 !important;
}

.moveUp {
  top: -15px !important;
  left: 0;
}


.privacy-policy .row{
  margin-top: 85px;
}

.privacy-policy {
  border-bottom: 1px solid var(--primary-dark);
}

.privacy-policy .text-md {
  max-width: 525px;
}

.privacy-policy ul {
  margin-left: 60px;
  list-style-position: inside;
  max-width: 469px;
}

.logo-footer {
  width: 120px;
}

/*
.line {
  background: dodgerblue;
  position: absolute;
}
*/

.hide-d {
  display: none;
}

@media (max-width: 1366px) { 
  .hero-section .container {
    padding: 50px 100px;
  }
}

@media (max-width: 1200px) { 
  .hero-section .container,
  .footer .container,
  .container {
    padding: 50px 60px;
  }
}

@media (max-width: 1054px) {
  .hide-tb {
    display: none;
  }
  .hero-section {
    padding-bottom: 80px;
  }
  .col {
    width: 48%;
  }
  .title {
    font-size: 35px;
  }
  .text-md {
    font-size: 14px;
  }
}

@media (max-width: 786px) {
  .scroll-down {
    bottom: 80px;
  }
  .hide-mb {
    display: none;
  }
  .title {
    font-size: 30px;
  }
  .text-lg {
    font-size: 20px;
  }
  .col {
    flex: 100%;
    margin-bottom: 30px;
  }
  .hero-section .container,
  .footer .container,
  .container {
    padding: 60px 40px 40px;
  }
  .about-us .container {
    padding-top: 20px;
  }
  .about-us img {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-us .btn {
    margin-right: 0;
  }
  .icon-item {
    margin-right: 20px;
  }
  .icon-item span {
    font-size: 15px;
    line-height: 22px;
  }
  .footer p:last-child {
    margin-top: 40px;
  }
  .privacy-policy .row {
    margin-top: 40px;
  }
  .privacy-policy ul {
    margin-left: 30px;
  }
  .mb-27 {
    margin-bottom: 15px;
  }
  .hide-d {
    display: block;
  }
}