/* font-family: "Montserrat", sans-serif; */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
@font-face {
    font-family: 'Akhand';
    src: url('../fonts/Akhand-Extrabold.woff2') format('woff2'),
        url('../fonts/Akhand-Extrabold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  background: #000;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0px;
  text-rendering: optimizeLegibility;
}
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: inherit;
}
ul, li{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.main-page-full{
    background: #000000;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.logo{
    position: absolute;
    top: 54px;
    left: 63px;
    z-index: 2; 
}
.logo img{
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}
.main-inner{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.hero-top-video-box{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
    .hero-top-video-box::before{
    content: "";
    background: rgba(0,0,0,0.10);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.videoth{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    z-index: 1;
    display: block;
}
.hero-video-title{
    position: absolute;
    bottom: 55px;
    left: 0px;
    right: 0px;
    text-align: center;
    z-index: 2;
	
}
.hero-video-title h1{
    font-size: 60px;
    color: #ffffff;
    font-family: 'Akhand';
    text-transform: uppercase;
    text-shadow: 5.657px 5.657px 0px rgba(0, 0, 0, 1);
}

.address-sign-up-box{
    display: flex;
    min-height: 242px;
}
.left-address{
    background: #f9b217;
    max-width: 600px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 58px 0px;
}
.icon{
    position: absolute;
    top: 3px;
    left: 0px;
}
.icon img{
    max-width: 24px;
    width: 100%;
}
.inner-adr{
    max-width: 406px;
    width: 100%;
}
.inner-adr ul{
    margin: 0px;
}
.inner-adr ul li a{
    display: flex;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}
.inner-adr ul li p{
    font-size: 32px;
    text-transform: uppercase;
    color: #000000;
    font-family: 'Akhand';
}
.inner-adr ul li:last-child{
    margin-bottom: 0px;
}
.right-signup{
    display: flex;
    align-items: center;
    width: 100%;
}
.inner-form{
    max-width: 1100px;
    width: 100%;
    padding-left: 150px;
}
.inner-form h2{
    font-size: 37px;
    color: #f9b217;
    font-family: 'Akhand';
    margin-bottom: 15px;
}
.inner-form h2 br{
    display: none;
}
.group-form{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.input-form{
    width: 100%;
    max-width: 668px;
}
.input-form input{
    border: 2px solid #000000;
    background: #ffffff;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    min-height: 77px;
    font-weight: 500;
    padding-left: 32px;
    font-size: 18px;
    color: #000000;
}
.input-form input::placeholder{
  color: #000000;
}
.input-form input::-moz-placeholder{
  color: #000000;
}
.input-form input:focus{
    outline: none;
    box-sizing: border-box;
}
.button-submit{
    max-width: 240px;
    width: 100%;
}
.button-submit .btn{
    background: #f9b217;
    border: 2px solid #000000;
    min-height: 73px;
    width: 100%;
    font-family: 'Akhand';
    font-size: 32px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    margin-top: -3px;
     -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button-submit .btn::before{
    content: "";
    border: 2px solid #f9b217;
    border-top: 0px;
    border-left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 5px;
}
.button-submit .btn:hover{
    border-color: #f9b217;
    background: #000000;
    color: #f9b217;
}
.button-submit .btn img{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button-submit .btn img.hover{
    display: none;
}
.button-submit .btn:hover img.hover{
    display: block;
}
.button-submit .btn:hover img{
    display: none;
}


.ctct-inline-form .ctct-form-defaults{
    padding: 0px !important; background: transparent !important;
}
.ctct-inline-form .ctct-form-custom .ctct-form-header{display: none;}
.ctct-inline-form .ctct-form-custom .ctct-form-text{display: none;}
.ctct-inline-form .ctct-form-custom .ctct-gdpr-text{display: none;}

.ctct-inline-form .ctct-form-custom{
    position: relative;
    display: flex;
    align-items: flex-start;
}

.ctct-inline-form .ctct-form-custom .ctct-form-field{}

.ctct-inline-form .ctct-form-custom .ctct-form-field{
    width: 100%;
    max-width: calc(100% - 275px);
    margin: 0px !important;
    margin-right: 15px !important;
    position: relative;
}
.ctct-inline-form .ctct-form-custom .ctct-form-field .ctct-form-element{
    border: 2px solid #000000;
    background: #ffffff;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    min-height: 77px;
    font-weight: 500;
    padding-left: 32px;
    font-size: 18px;
    box-shadow: none;
    border-radius: 0px;
    color: #000000;
}
.ctct-inline-form .ctct-form-custom .ctct-form-field .ctct-form-element:focus{
    outline: none;
    box-sizing: border-box;
}

div .ctct-inline-form .ctct-form-custom .ctct-form-field .ctct-form-label{
    position: absolute;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 0px;
    left: 33px;
    top: 50%;
    
    transform: translate(-0%, -50%);
}

.ctct-inline-form .ctct-form-custom .ctct-form-field .ctct-form-element:focus label{
    top: 10px;
}

.ctct-inline-form .ctct-form-custom .ctct-form-button{
    background-color: #f9b217 !important;
    background-image: url('../images/black-arrow.png') !important;
    background-position: top 50% right 40px;
    background-size: 16px auto;
    background-repeat: no-repeat;
    border: 2px solid #000000 !important;
    min-height: 75px;
    max-width: 240px;
    width: 100%;
    font-family: 'Akhand';
    font-size: 32px !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px !important;
    gap: 10px;
    cursor: pointer;
    position: relative;
    margin-top: -3px;
     -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 0px ;
    right: 0px;
}
.ctct-inline-form .ctct-form-custom .ctct-form-button::before{
    content: "";
    border: 2px solid #f9b217;
    border-top: 0px;
    border-left: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 5px;
}

div .ctct-inline-form form.ctct-form-custom div.ctct-form-field .ctct-form-errorMessage{
    position: absolute;
}

.ctct-inline-form .ctct-form-custom .ctct-form-button:hover{
    background-color: #000000 !important;
    border-color: #f9b217 !important;
    color: #f9b217 !important;

}
.ctct-inline-form .ctct-form-custom .ctct-form-button:hover{
    background-image: url('../images/hover-black-arrow.png') !important;
}

div.ctct-form-embed div.ctct-form-defaults .g-recaptcha .grecaptcha-badge{
    left: -9999999px;
}



/* Animation */
.fadeInText {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.play-btn{
    width: 50px;
    height: 50px;
    font-size: 33px;
    border-radius: 50%;
    bottom: 35px;
    right: 80px;
    cursor: pointer;
    background: #f9b217;
    border: none;
    position: absolute;
    display: none;
    z-index: 4;
}
.play-btn i{margin-left: 5px;}

.audio-btn {
  position: absolute;
  bottom: 35px;
  right: 20px;
  background: #000;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  padding-left: 2px;
}

.nextsection{
    position: absolute;
    font-size: 0px;
    left: 50%;
    bottom: 2%;
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 10px;
    z-index: 5;
}
.nextsection img{
    width: 100%;
}

/* .nextsection:before {
    content: "";
    margin-left: -1px;
    display: block;
    width: 4px;
    height: 100px;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 10px;
    background: #fff;
}
.nextsection:after {
    content: "";
    margin-left: -1px;
    width: 4px;
    height: 120px;
    position: absolute;
    top: 0px;
    left: 50%;
    border-radius: 10px;
    background: #f9b217;
    -webkit-transform: translateZ(0) translateY(-100%);
    -moz-transform: translateZ(0) translateY(-100%);
    -ms-transform: translateZ(0) translateY(-100%);
    transform: translateZ(0) translateY(-100%);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    -webkit-animation: line 3s infinite linear;
    -moz-animation: line 3s infinite linear;
    -ms-animation: line 3s infinite linear;
    -o-animation: line 3s infinite linear;
    animation: line 3s infinite linear;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.nextsection .border-left {
    transform: rotate(-45deg);
    margin-left: -9px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    display: block;
    width: 4px;
    height: 20px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.nextsection .border-right {
    transform: rotate(45deg);
    margin-left: 7px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    display: block;
    width: 4px;
    height: 20px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.nextsection .border-left:after, .nextsection .border-right:after {
    content: "";
    width: 4px;
    height: 120px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #f9b217;
    border-radius: 10px;
    -webkit-transform: translateZ(0) translateY(-100%);
    -moz-transform: translateZ(0) translateY(-100%);
    -ms-transform: translateZ(0) translateY(-100%);
    transform: translateZ(0) translateY(-100%);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    -webkit-animation: line 3s infinite linear;
    -moz-animation: line 3s infinite linear;
    -ms-animation: line 3s infinite linear;
    -o-animation: line 3s infinite linear;
    animation: line 3s infinite linear;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}




@-webkit-keyframes line {
    to {
        -webkit-transform: translateZ(0) translateY(100%);
        -moz-transform: translateZ(0) translateY(100%);
        -ms-transform: translateZ(0) translateY(100%);
        transform: translateZ(0) translateY(100%);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }
}

@-moz-keyframes line {
    to {
        -webkit-transform: translateZ(0) translateY(100%);
        -moz-transform: translateZ(0) translateY(100%);
        -ms-transform: translateZ(0) translateY(100%);
        transform: translateZ(0) translateY(100%);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }
}

@-ms-keyframes line {
    to {
        -webkit-transform: translateZ(0) translateY(100%);
        -moz-transform: translateZ(0) translateY(100%);
        -ms-transform: translateZ(0) translateY(100%);
        transform: translateZ(0) translateY(100%);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }
}

@-o-keyframes line {
    to {
        -webkit-transform: translateZ(0) translateY(100%);
        -moz-transform: translateZ(0) translateY(100%);
        -ms-transform: translateZ(0) translateY(100%);
        transform: translateZ(0) translateY(100%);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }
}

@keyframes line {
    to {
        -webkit-transform: translateZ(0) translateY(100%);
        -moz-transform: translateZ(0) translateY(100%);
        -ms-transform: translateZ(0) translateY(100%);
        transform: translateZ(0) translateY(100%);
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        -moz-perspective: 1000;
        perspective: 1000;
    }
} */


.fadeInText {
  animation: fadeIn 0.5s forwards;
}

.fadeOutText {
  animation: fadeOut 0.2s forwards;
}

.ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-header {
    color: #fff !important;
}
p.ctct-form-text {
    display: none;
}
.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0;  }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0;  }
}

.fadeInThenPulse {
  animation:
    fadeIn 1s forwards,
    pulse 1.6s ease-in-out 1s infinite;
}

button#audioBtn img {
    width: 20px;
    height: auto;
    position: relative;
    top: 2px;
}

div#email_address_field_1:after {
    content: 'Email Address';
    position: absolute;
    left: 5px;
    top: 0;
    color: #bbb;
    position: absolute;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 0px;
    left: 33px;
    top: 50%;
    transform: translate(-0%, -50%);
}

input#email_address_1:focus {
    z-index: 10;
}

input#email_address_1 {}

input#email_address_1 {
    position: relative;
}

li.socialicons {
    display: flex; 
}

li.socialicons p {
    display: flex;
}

li.socialicons a {
    padding-left: 0 !important;
    margin-right: 10px;
}

@keyframes pulse {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(4px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

div#phone_field_1:after {
    content: 'Phone Number';
    position: absolute;
    left: 5px;
    top: 0;
    color: #bbb;
    position: absolute;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin: 0px;
    left: 33px;
    top: 50%;
    transform: translate(-0%, -50%);
}
input#phone_1 {
    position: relative;
}
input#phone_1:focus {
    z-index: 10;
}