@font-face {
    font-family: 'Gothic';
    src: url(fonts/gothic/Fontspring-DEMO-allroundgothic-text.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url(fonts/Sofia\ Pro\ Bold\ Az.otf);
    font-weight: 700;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url(fonts/Sofia\ Pro\ Regular\ Az.otf);
    font-weight: 400;
}

html, body {
    height: 100%;
    margin: 0;
}

body{
    margin: 0;
    font-family: 'Sofia Pro', sans-serif;
    font-size: 16px; 
    line-height: 24px;
    color: #4A4A4A;
}

.text-center{
    text-align: center;
}

.gothic{
    font-family: 'Gothic', sans-serif;
}

.sofia {
    font-family: 'Sofia Pro', sans-serif;
}

.site-logo img {
    max-width: 250px;
}

.page-content{
    background: url(../img/heroimg.png) no-repeat center;
    background-size: cover;
    height: 100vh;          /* FULL SCREEN HEIGHT */
    padding: 0 50px;        /* reduce padding to prevent overflow */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center content vertically */
}


.heroBox h1 {
    -webkit-background-clip: text;
    background-clip: text;
    background-position-x: -50%;
    color: transparent;
}
.heroBox h1 {
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.32px;
    margin-bottom: 0;
    background-image: conic-gradient(from 329deg at 58% 47%, rgb(119, 173, 255) -86.58deg, rgb(255, 255, 255) 69.75deg, rgb(255, 181, 144) 99.21deg, rgb(207, 117, 252) 203.39deg, rgb(119, 173, 255) 273.42deg, rgb(255, 255, 255) 429.75deg);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animatedTextGradient 5s linear infinite;
}

@keyframes animatedTextGradient {
    to {
      background-position: 200% center;
    }
  }

.heroBox p {
    font-size: 1.375rem;
    color: #fff;
    margin-bottom: 32px;
    margin-top: 0.875rem;
}

.video-wrapper video {
    width: 590px;
    height: 330px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
}

.py-3{
    padding-top:15px ;
    padding-bottom:15px ;
}

.py-5{
    padding-top:30px ;
    padding-bottom:30px ;
}


@media (max-width: 767px) {
    .page-content{
        padding: 0px 15px;
    }

    .video-wrapper video {
        width: 100%;
    }

    .heroBox video {
        min-height: auto;
        height: 250px;
    }

    .heroBox h1{
        font-size: 24px;
        line-height: 34px;
    }

    .heroBox p{
        font-size: 16px;
        line-height: 22px;
    }

    .heroBox h1 br {
        display: none;
    }
}


.responsive-video {
    position: relative;
    width: 560px;      /* desktop default width */
    max-width: 100%;   /* shrink on mobile */
    margin: 0 auto;
}

.responsive-video iframe {
    width: 100% !important; 
    height: auto !important;
    aspect-ratio: 16 / 9;
}