/* ********* Common css ************ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  background-color: var(--black);
  font-family: var(--font-din) !important;
  color: var(--white);
  font-weight: 300;

}

strong {
  font-weight: 700;
}

.body-fix {
  overflow-y: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

h1,
.heading-h1,
h2,
.heading-h2,
h3,
.heading-h3,
h4,
.heading-h4,
h5,
.heading-h5,
h6,
.heading-h6 {
  font-weight: 600;
}

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}

h6,
.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}

.cust-container-lg {
  max-width: 100%;
  padding: 0 80px;
  width: 100%;
  margin: 0 auto;
}

.cust-container-md {
  max-width: 100%;
  padding: 0 100px;
  width: 100%;
  margin: 0 auto;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img,
.img-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* theme-btn */
.theme-btn {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-family: var(--font-din);
  border: 0.5px solid var(--white);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 10px 42px;
  color: var(--white);
  display: inline-block;
  background: transparent;
  border-radius: 0px;
  transition: all 200ms ease-in;
}

.theme-btn:hover {
  background: var(--white);
  color: var(--black);
  transition: all 200ms ease-in;
}

/* theme-btn */
.secondry-btn {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-family: var(--font-din);
  position: relative;
  display: block;
  font-weight: 200;
  text-align: center;
  color: var(--green);
  display: inline-block;
  background: transparent;
  border-radius: 0px;
  transition: all 200ms ease-in;
}

.secondry-btn:after {
  position: absolute;
  width: 100%;
  content: "";
  bottom: 0;
  left: 0;
  background: var(--green);
  height: 1px;
}

.secondry-btn:hover {
  color: var(--green);
  transition: all 200ms ease-in;
  transform: translateY(-2px);
}

.form-control:focus,
.form-control:focus-visible {
  outline: none !important;
}

.cust-form .cust-form-group {
  margin-bottom: 38px;
}

.cust-form .cust-form-group:last-child {
  margin-bottom: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: transparent;
  outline: 0 !important;
  color: var(--white) !important;
}

input:focus,
.form-control:focus {
  box-shadow: none;
  color: var(--white);
  border-color: var(--white);
  outline: 0;
  background: transparent;
}

.form-control1 {
    border: none;
    background-color: transparent;
    border-radius: 0;
    padding: 3px 0 12px;
    width: 100%;
    font-weight: 200;
    height: auto;
    color: var(--white);
    font-size: 24px;
    line-height: 35px;
    min-height: auto;
    outline: 0;
    text-align: center;
}

.cust-form-group {
    border-bottom: 1px solid #ffffffa8;
    position: relative;
    background-color: transparent;
    height: 60px;
    margin-bottom: 20px;
}

/**/
.cust-form-group input {
    text-align: center;
    padding: 10px 10px;
    height: 100%;
    width: 100%;
    outline: none;
    border-radius: 4px;
    position: relative;
    z-index: 9;
}

.cust-form-group label {
    position: absolute;
    top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translate(-50%, 0px);
    transition: 0.3s ease-in;
    color: #dbdbdb;
    width: max-content;
    text-align: center;
    font-size: 20px;
}

.cust-form-group input:valid ~ label {
  opacity: 0;
}

.cust-form-group input:focus ~ label {
    opacity: 0;
}

.form-item.text-col {
  height: 200px;
  margin-bottom: 20px;
}

.cust-form-group label.up {
    opacity: 0;
}

