/* General Styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: rgb(255, 255, 255);
}

/* Header Styling */
header .strip {
    position: fixed;
    top: -1px;
    width: 100%;
    height: 80px;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
    border-bottom: 2px solid lightgray;
}

header .logotext {
    position: fixed;
    height: 40px;
    top: 2px;
    left: 30px;
    color: #5DA6EE;
    font-family: Arial, sans-serif;
    font-size: 39px; 
    transform: rotate(0deg); 
    font-weight: bold;
    z-index: 2;
}

#hr{
    height: 76px;
}

/* Slogan Styling */
.slogan {
    position: relative;
    top: 100px;
    color: #16163F;
    font-family: Arial, sans-serif;
    font-size: 43px;
    font-weight: bold;
    text-align: center;
}

.subslogan {
    position: relative;
    top: 150px;
    color: #16163F;
    font-family: 'Avenir', Arial, sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}

/* Background Image */
.back_image {
    position: relative;
    top: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    opacity: 50%;
    z-index: -10;
}

.button { opacity: 0; }
/* Button Styling */
.button {
    position: relative;
    margin: 0 auto;
    left: 130px;
    top: 10px;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}
.button--shown { opacity: 1; transition: opacity .15s ease-in; }

/* Styles for desktop */
.button_d {
	left: 45%;
    top: -700px;
    background-color: #A259FF;
}

/* Styles for vertical orientation (mobile) */
.button_v {
	left: 130px;
    top: 10px;
    background-color: #A259FF;
}

/* Styles for horizontal orientation (mobile) */
.button_h {
	left: 43%;
    top: -400px;
    background-color: #A259FF;
}

/* Image Container and Zoomed Image Styling */
.image-container {
    position: relative;
    top: -140px;
    width: 100%;
    height: 1000px; /* Zoom window height */
    overflow: hidden;
    margin-top: 600px; /* Adjust as needed */
}

.zoomed-image {
    position: absolute;
    width: 200%; /* Zoom level */
    height: auto;
    top: -600px;
    left: -60px;
    transform: translate(0px, 0px);
    transition: transform 0.2s linear;
}

/* Additional Content Styling (Optional) */
.additional-content {
    position: relative;
    top: 766px;
    background-color: #b0cdf5;
    width: 100%;
    height: 100px;
    /* Add any styles for additional content here */
}

.circleO{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 500px;
	width: 130px;
	height: 130px;
}

.checkV{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	top: 600px;
	width: 200px;
	height: 200px;
}

.squareL {
    position: relative; /* or relative depending on your context */
    left: 50%;
    transform: translateX(-50%); /* Centers it horizontally */
    top: 630px; /* Keeps the vertical position fixed */
    width: 130px;
    height: 130px;
}
.about{
	position: relative;
	top: 400px;
	text-align: center;
  	color: #9E3FFD;
  	font-family: 'Avenir LT W01 85 Heavy', sans-serif;
  	font-size: 24px;
  	font-weight: 700; /* Heavy font weights usually map to 700 or more */
}
.subabout{
	position: relative;
    top: 430px;
    color: #16163F;
    font-family: 'Avenir LT W01 85 Heavy', sans-serif;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
}
.one{
	position: relative;
	top: 510px;
	text-align: center;
  	color: #16163F;
  	font-family: 'Avenir LT W01 85 Heavy', sans-serif;
  	font-size: 24px;
  	font-weight: 700; /* Heavy font weights usually map to 700 or more */
}
.subone{
	position: relative;
	top: 520px;
    color: #16163F;
    font-family: 'Avenir', Arial, sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}

.two{
	position: relative;
	top: 540px;
	text-align: center;
  	color: #16163F;
  	font-family: 'Avenir LT W01 85 Heavy', sans-serif;
  	font-size: 24px;
  	font-weight: 700; /* Heavy font weights usually map to 700 or more */
}
.subtwo{
	position: relative;
	top: 550px;
    color: #16163F;
    font-family: 'Avenir', Arial, sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}
.three{
	position: relative;
	top: 640px;
	text-align: center;
  	color: #16163F;
  	font-family: 'Avenir LT W01 85 Heavy', sans-serif;
  	font-size: 24px;
  	font-weight: 700; /* Heavy font weights usually map to 700 or more */
}
.subthree{
	position: relative;
	top: 650px;
    color: #16163F;
    font-family: 'Avenir', Arial, sans-serif;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}

.z{
	position: relative;
	top: 800px;
	width: 100%;
	height: auto;
}
.video-section {
    background-color: white;
    position: relative;
    top: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 80px;
    padding: 0 20px;
    
}

.video-wrapper {
    flex: 1 1 320px;
    max-width: 410px; /* 480*/
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 350px;
    height: 227px;
    border: none;
    display: block;
}
/* Desktop: increase height */
@media (min-width: 1168px) {  /*768*/
    .video-wrapper{
        max-width: 618px;    /*710*/
    }
    .video-wrapper iframe {
        width: 100%;
        height: 399px;
    }
/*    .button_d{  
        top:-10px;
    }*/
}

.footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 20px 10px;
    margin-top: 60px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    height: 60px;
}