/* ================= WRAPPER ================= */
#gsap-hero-wrapper {
  font-family: Arial, sans-serif;
	position:relative;
	min-height:100vh;
}

/* ================= HERO ================= */
#gsap-hero-wrapper .gh-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#gsap-hero-wrapper .gh-hero.is-done {
  position: absolute;
}

#gsap-hero-wrapper .gh-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, #4857bf, #293377 60%);
  z-index: -1;
}

#gsap-hero-wrapper .gh-hero-container {
  max-width: 1280px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

#gsap-hero-wrapper .gh-hero-content {
  color: #fff;
}
.gh-hero-content h2.gh-hero-h2 {
    font-size: clamp(24px, 2.2vw, 35px) ;
    color: #d6432f;
    text-shadow: 2px 3px 0px rgb(0 0 0);
	margin-bottom:5px;
}
#gsap-hero-wrapper h1, #gsap-hero-wrapper .gh-left h2 {
  font-size: clamp(2rem, 3vw, 50px);
	font-weight:800;
	line-height:1.1em;
	margin-bottom:5px;
}
#gsap-hero-wrapper .gh-left h2{
	
}
#gsap-hero-wrapper h1  {
  margin-top:0px;
}
#gsap-hero-wrapper h1 span, #gsap-hero-wrapper h2 span {
  color: #D6432F;
}

.gh-hero-content p {
  max-width: 85%;
  margin: 5px auto 20px;
  color: #fff;
	font-size: clamp(14px, 1.4vw, 20px);
	line-height:26px;
}
.gh-left p{
	color:#000!important;
}
/* ================= BUTTONS ================= */
#gsap-hero-wrapper .gh-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.gh-video-card .gh-btn {
  padding: 15px 10px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
	max-width:270px;
	width:100%;
	font-size:20px;
	text-align:center;
	margin-bottom:40px;
	transition:0.3s;
}
.gh-video-card .gh-btn:hover {
	transform:scale(1.1);
}
.gh-left-btn a.gh-btn.gh-secondary:hover { background: #293377; color: #fff; }

.gh-primary { background: #D6432F; color: #fff; }
.gh-secondary { background: #6d7ccf; color: #fff; }

/* ================= VIDEO ================= */
#gsap-hero-wrapper .gh-video-card {
      position: absolute;
    transform: translate(-50%, 50%);
    left: 50%;
    width: 50%;
    margin: 0px auto 50px;
    z-index: 2;
	top:2vh;
}

#gsap-hero-wrapper .gh-video-frame {
	backdrop-filter: blur(10px);
    transform-origin: center center;
	   border-radius: 30px;
    border: 20px #4e5798 solid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#gsap-hero-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-video-card{
	display:none;
    border-radius: 10px;
    border: 10px #4e5798 solid;
    backdrop-filter: blur(10px);
    transform-origin: center center;
    width: 100%;
    margin: 48px auto;
    z-index: 2;
}

/* ================= CONTENT ================= */
#gsap-hero-wrapper .gh-section {
  max-width: 1200px;
    width: 100%;
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
    position: relative;
    z-index: 1;
}

#gsap-hero-wrapper .gh-left {
  width: 45%;
  opacity: 0;
  transform: translateY(20px);
margin-top:22%;
}
.gh-left-btn {
    display: flex;
	flex-direction:column;
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}
.gh-left-btn .gh-btn {
  padding: 20px 10px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
	font-size:20px;
	max-width:320px;
	width:100%;
}
.gh-left-btn a.gh-btn.gh-secondary{
	background-color:#D6432F;
}
.mobile-act-btn  {
	display:none!important;
}
.mobile-act-btn .gh-btn {
	display:block!important;
	padding: 15px 10px;
    border: none;
	border-radius:60px;
    font-weight: 600;
    cursor: pointer;
    max-width: 270px;
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
	
}	

@media only screen and (max-width:768px){
	#gsap-hero-wrapper .gh-actions {
    flex-direction: column;
}
	#gsap-hero-wrapper .gh-video-card {
    border-radius: 15px;
    border: 10px solid #4e5798;
		display:none;
}
	#gsap-hero-wrapper .gh-hero {
    height: auto;
}
	#gsap-hero-wrapper .gh-section {
    padding: 40px 20px;
		min-height: auto;
}
	#gsap-hero-wrapper .gh-left {
    margin-top: 0;
		text-align:center;
}
	.gh-left-btn {
    align-items: center;
}
	.mobile-video-card{
	display:block;
		margin:25px auto;
}
	#gsap-hero-wrapper .gh-video-frame{
		backdrop-filter: blur(10px);
    transform-origin: center center;
    border-radius: 0px;
    border: 0px #4e5798 solid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
	}
	#gsap-hero-wrapper .gh-hero-container {
    padding: 40px 20px 20px;
}
	.gh-hero-content p {
    max-width: 100%;

}
.mobile-act-btn  {
	display:flex!important;
}
	.mobile-act-btn .gh-btn {
    margin-bottom: 0px;
}
}
/* ================= MOBILE & TABLET ================= */
@media (max-width: 1024px) {
.mobile-act-btn  {
	display:flex!important;
}
  #gsap-hero-wrapper .gh-hero {
    position: relative;
  }

  #gsap-hero-wrapper .gh-video-card {
    width: 100%;
	  display:none;
  }
#gsap-hero-wrapper .gh-video-frame {
    backdrop-filter: blur(10px);
    transform-origin: center center;
    border-radius: 0px;
    border: 0px #4e5798 solid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
  #gsap-hero-wrapper .gh-left {
    opacity: 1;
    transform: none;
    width: 80%;
    text-align: center;
    margin: auto;
}
	#gsap-hero-wrapper .gh-actions {
    align-items: center;
}
#gsap-hero-wrapper .gh-hero {
    height: auto;
}
.gh-left-btn {
    align-items: center;
}
	#gsap-hero-wrapper .gh-section {
    padding: 50px 0px;
		min-height:auto;
}
	#gsap-hero-wrapper{
		min-height:auto;
	}
	.mobile-video-card {
    display: block;
    width: 95%;
}
}

@media screen and (min-width: 1100px) and (max-width: 1200px)
       and (min-height: 450px) and (max-height: 650px) {
#gsap-hero-wrapper h1, #gsap-hero-wrapper .gh-left h2 {
    font-size: clamp(1rem, 2vw, 40px);
}
.gh-hero-content h2.gh-hero-h2 {
    font-size: clamp(20px, 1.5vw, 35px);
}
		   .gh-hero-content p {
    font-size: clamp(14px, 1vw, 18px);
}
.gh-video-frame {
    width: 70%;
    margin: auto;
	border:10px solid #4e5798 !important;
}
		   
#gsap-hero-wrapper .gh-video-card {
    top: -8vh;
}
  .gh-video-card .gh-btn {
    margin-bottom: 20px;
}
}
