@import url("../webfonts/Helvetica_Neue_Black_Condensed/stylesheet.css");
@import url("Lato_Regular/stylesheet.css");
/* ========================================================================== 
    General 
========================================================================== */
h1,h2,h3,h4,h5,h6,.navbar {
    /*font-family:'Oswald';*/
    font-family: "Helvetica", sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: small;
}

html {
  scroll-behavior: smooth;
 }

body {
    overflow-x: hidden;
    max-width: 100%;	
}

body.no-scroll {
  overflow-x: hidden;	
  overflow: hidden; /* Prevent scrolling when the class is present */
}

a {
    /*transition*/
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
}

a {
    color: #FFFFFF;
    font-family: "Lato Heavy";
}


#background-home {
	
}


.bg-panel {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

#darkbg {
    background-color: rgba(46, 46, 46, 1);
    position: relative;
} 
#lightbg { background-color: #A0FFE7; }
#light2bg {
    background-color: rgba(255,160,162,1.00);
    position: relative;
}

/* --- Standard Hover States (75% / 12.5% / 12.5%) --- */
#background.hover-dark { grid-template-columns: 70fr 15fr 15fr; }
#background.hover-light { grid-template-columns: 15fr 70fr 15fr; }
#background.hover-light2 { grid-template-columns: 15fr 15fr 79fr; }

/* --- Click/Tap Locked States (94% / 3% / 3%) --- */
#background.clicked-dark { grid-template-columns: 94fr 4fr 4fr; }
#background.clicked-light { grid-template-columns: 4fr 94fr 4fr; }
#background.clicked-light2 { grid-template-columns: 4fr 4fr 94fr; }


.viewer-context{
    position: relative; /* Restricts absolute elements to this box */
    overflow: hidden;   /* Cuts off any layers that fan out too far */
    /* Ensure it has a defined boundary so it knows what to clip */
    width: 100%;
    height: 100vh;      /* Or whatever height matches your layout */
}

.contact{
    height: 25px;
    width: 25px;
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    left: 24px;
    float: left;
    background-position: 50% 0%;
    top: 20px;
    background-image: url(../assets/images/icons/contact.png);
    -webkit-box-shadow: 0px 0px;
    box-shadow: 0px 0px;
}

#contact{
	
}

.contactus {
    position: absolute; /* Change from relative to absolute */
    bottom: 0;            /* Flush against the left */
    width: 100%;        /* Let it shrink-wrap the text instead of forcing 100% width */
    padding: 20px;
    right: 0;
}	

#contactus{
    text-align: right;
    font-family: "Lato Black";
}


#we-are{
    padding-left: 45px;
    padding-right: 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    color: #2E2E2E;
    padding-bottom: 50vh;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    width: 80%;
}

#welcome-container {
    position: relative;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 300px;
    padding-right: 0; /* Precise 40px gap from right screen panel edge */
    box-sizing: border-box;
    background: transparent;
    z-index: 10;
    pointer-events: auto;
    display: flex;
    justify-content: flex-end; /* Locks the 3D grid context to the right */
    align-items: center;
}

#welcome-canvas {
    width: 100vw !important;
    height: 100% !important;
    display: block;
}

.modal, .modal-backdrop {
  animation: slide-up 0.3s ease-in-out forwards;
}

.modal.out, .modal-backdrop.out {
    animation: slide-down 0.3s ease-in-out forwards;

}

@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}




/*modal*/

.modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    display: none;
    -webkit-transition: all  0.3s ease-in-out;
    -moz-transition: all  0.3s ease-in-out;
    -o-transition: all  0.3s ease-in-out;
    transition: all  0.3s ease-in-out;
}

.modal-backdrop{
	-webkit-transition:all  0.3s ease-in-out;
    -moz-transition:all  0.3s ease-in-out;
    -o-transition:all  0.3s ease-in-out;
    transition:all  0.3s ease-in-out;
}


.trigger{
    padding-top: 12px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 12px;
    opacity: 1;
    width: 100%;
    z-index: 999;
    cursor: pointer;
    position: absolute;
    height: 16.2%;
	
}


.close-button {
    width: 40px;
    line-height: 3.3rem;
    text-align: center;
    cursor: pointer;
    background-color: #FBBD2E;
    font-weight: 500;
    z-index: 9999999;
    color: hsla(225,39%,35%,1.00);
    float: left;
    position: fixed;
    /* [disabled]left: 0%; */
    margin-top: 80px;
    height: 40px;
    right: 0%;
    border-radius: 80px;
    margin-right: 25px;
    margin-left: 25px;
    font-size: 2em;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 0px;
	-webkit-transition:all  0.3s ease-in-out;
    -moz-transition:all  0.3s ease-in-out;
    -o-transition:all  0.3s ease-in-out;
    transition:all  0.3s ease-in-out;
}

.close-button:hover {
	color: #FBBD2E;
    background-color: hsla(0,0%,66%,0.00);
	-webkit-transition:all  0.3s ease-in-out;
    -moz-transition:all  0.3s ease-in-out;
    -o-transition:all  0.3s ease-in-out;
    transition:all  0.3s ease-in-out;
}


.modal-image1{
    -webkit-transition: all  0.3s ease-in-out;
    -moz-transition: all  0.3s ease-in-out;
    -o-transition: all  0.3s ease-in-out;
    transition: all  0.3s ease-in-out;
}

#adultboxtrigger {
    height: 90%;
    margin-top: 5px;
}

#adultbox2trigger {
    height: 80%;
    margin-top: 45px;
}


.pm-text-popup{
    width: 100%;
    margin-top: 282px;
    top: -143px;
    display: inherit;
    /* [disabled]margin-left: 25px; */
    /* [disabled]margin-right: 25px; */
    font-family: "Helvetica Neue Black Condensed";
    text-align: center;
    position: fixed;
    font-size: 14pt;
    line-height: 18pt;
    /* [disabled]right: 5%; */
    padding-right: 35px;
    padding-left: 35px;
    color: #FFFFFF;
}

.groups{
    font-size: 55pt;
    color: rgba(255,255,255,1.00);
    font-family: "Helvetica Neue Black Condensed";
    line-height: 20pt;
    margin-top: 60px;
    padding-bottom: 12px;
    padding-top: 12px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    position: relative;
    padding-left: 2px;
    padding-right: 2px;
    width: 100%;
    text-shadow: 4px 4px 19px rgba(55,73,126,0.37);
}



.btn-o {
    border: 1.3px solid #5AD1FF;
    /*border-radius*/
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #5AD1FF;
    padding-right: 45px;
    padding-left: 45px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 1;
    text-align: center;
    float: left;
    position: relative;
    left: 25%;
    /* [disabled]right: 25%; */
    top: 35%;
}

.btn-o:hover {
    color: rgba(29,42,80,1.00);
    background-color: #5AD1FF;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.text-o {
    /*border-radius*/
    color: #FFFFFF;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 1;
    text-align: center;
    float: left;
    position: absolute;
    left: 50%;
    /* [disabled]right: 25%; */
    /* [disabled]top: 35%; */
    font-size: 371%;
    border-top-width: thick;
    border-top-style: solid;
    border-bottom-right-radius: 0px;
    border-spacing: 0px 0px;
    text-indent: -85px;
}

.text-o:hover {
    color: rgba(29,42,80,1.00);
}


#compbuttons {
    width: 100%;
    margin-top: 79px;
}

#compdark{
    height: 860px;
    top: 881px;
    position: relative;
}

.btn-kids {
    border: 1.3px solid #5AD1FF;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #5AD1FF;
    padding-right: 7%;
    padding-left: 7%;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 1;
    /* [disabled]display: inline; */
    /* [disabled]width: 30%; */
    font-size: 1.5em;
    text-align: center;
    vertical-align: middle;
    /* [disabled]margin-right: 15%; */
    /* [disabled]margin-left: 15%; */
	
}

.btn-kids:hover {
    color: rgba(29,42,80,1.00);
    background-color: #5AD1FF;
	
	
}


.kidsbuttons{
    display: flex;
    height: 45px;
    top: 4%;
    position: relative;
    justify-content: space-around;
    align-items: center;
    font-size: 1.2em;
}

.btn-i {
    border: 1.3px solid #1D2A50;
    /*border-radius*/
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #1D2A50;
    padding-right: 45px;
    padding-left: 45px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 1;
    text-align: center;
    float: right;
    position: relative;
    /* [disabled]left: 25%; */
    right: 25%;
    top: 35%;
}

.btn-i:hover {
    color: rgba(90,209,255,1.00);
    background-color: #1D2A50;
}


.nav>li>a:focus{
    text-decoration: none;
    background-color: none;
}



/*==========================
Header
==========================*/

.header-area {
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 99999;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    top: 0px;
}



/* ========================================================================== 
Navigation 
========================================================================== */
.navbar-dark {
    /* [disabled]background-color: rgba(255,255,255,0.69); */
    z-index: 99999;
    opacity: 1;
    position: fixed;
    top: 0px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    /* [disabled]overflow-y: auto; */
    max-height: none;
}

.navbar-dark-scroll {
	/* 1. Transparent background color (Controls the tint/lightness of the glass) */
    background-color: rgba(255, 255, 255, 0.2); 
    
    /* 2. The blur effect (Controls how 'frosted' the glass looks) */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Required for Safari support */

   /* background-color: rgba(255,255,255,0.79); */
    z-index: 99999;
    opacity: 1;
    position: fixed;
    top: 0px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.navbar-dark-click {
    background-color: rgba(255,155,159,1.00);
    /*
    background-color: rgba(255,255,255,0.59);
    */
    z-index: 99999;
    opacity: 1;
    position: fixed;
    top: 0px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.navbar-dark a {
    /*color:rgb(153,160,162);*/
    color: rgba(46,46,46,1.00);
    text-align: left;
}



.navbar-nav>li>a {
    line-height: inherit;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 53px;
    padding-right: 6px;
    height: 100%;
}


.nav>li>a:hover,.nav>li>a:focus {
    color: #FF959D;
    background-color: #2E2E2E;
    border-radius: 4px;
    text-indent: 15px;
}

 .navbar-nav {
    font-weight: 900;
    letter-spacing: 0px;
    font-size: 10pt;
    font-family: "Lemonada VariableFont wght";
}

#top{
    /*-webkit-box-shadow: 0px -1px 8px rgba(0,0,0,0.10);
    box-shadow: 0px -1px 8px rgba(0,0,0,0.10);*/
}



/*??????????????*/


 .navbar-toggle {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    right: 40px;
    top: 4px;
}

.menu-icon {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 4px;
    background-color: rgba(45,46,46,1.00);
    transition: transform 0.3s ease;
    transform-origin: center center;
    border-radius: 2px;
}

.menu-icon:before, .menu-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: rgba(46,46,46,1.00);
    transition: transform 0.3s ease;
    transform-origin: center center;
    border-radius: 2px;
}

.menu-icon:before {
  top: -8px;
	left:0px;	
}

.menu-icon:after {
  top: 8px;
	left:0px;	

}

.navbar-toggle.open .menu-icon {
		 transform-origin: center center;
  transform: translateY(16px);
}

.navbar-toggle.open .menu-icon:before {
		 transform-origin: center center;
  transform: translateY(-4.5px) translateX(-7px) rotate(-60deg);
}

.navbar-toggle.open .menu-icon:after {
	 transform-origin: center center;
  transform: translateY(-20.5px) translateX(7px) rotate(60deg);
}

/* ========================================================================== 
mian content 
========================================================================== */



:root {
  --main-red: rgba(255,255,255,1.00);
  --open-green: rgba(255, 160, 162, 1);
}


/* 1. Dynamic Text Injection */
#closeddown::before, 
.layer::before {
    content: var(--text);
    white-space: pre-wrap;
    display: block; /* Ensures the text behaves well with line breaks */
    text-align: left; /* Keeps 'halfa' and 'melon' centered over each other */
    padding-left: 20px;
}

/* 2. Your Original Styles (Enhanced) */
#closeddown, .layer {
    font-size: 120pt;
    font-weight: 900;
    position: absolute;
    text-decoration: none;
    color: var(--current-color, var(--main-red));
    -webkit-text-stroke: 2px var(--current-color, var(--main-red));
    animation: fanOut 10s steps(2) infinite;
    width: 100%;
    text-align: center;
    height: 100%;
    padding-top: 10%;
    font-family: "Lemonada VariableFont wght";
}

.layer {
    animation-delay: calc(var(--i) * 4.1s);
    opacity: 0;

}

/* 3. The Magnifier Lens Logic */
.magnifier-lens {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 100;
    pointer-events: none;
    
    /* The Clipping Circle */
    --x: 0px;
    --y: 0px;
    clip-path: circle(125px at var(--x) var(--y));
    opacity: 0;
    transition: opacity 0.3s;
	backdrop-filter: grayscale(1) contrast(1.2);
	transform: scale(1.1); 
    transform-origin: var(--x) var(--y);
}



.stack-container:hover .magnifier-lens {
    opacity: 1;
}

/* This is what actually creates the magnification */
.grayscale-copy {
    filter: grayscale(1) contrast(1.5); /* B&W effect */
    transform: scale(1.52); /* The Magnification factor */
    transform-origin: var(--x) var(--y); /* Keeps the zoom centered on cursor */
    width: 100%;
    height: 100%;
    position: absolute;
    /* ADD THIS: Forces the lens to use the page's current background */
    background: inherit;
}

/* Ensure the copy uses the same animation as the original */
.grayscale-copy .layer, 
.grayscale-copy #closeddown {
    /* Same animation settings as your original code */
}

/* 4. State Toggles */
.is-open {
    --text: 'halfa\A melon' !important;
    --current-color: var(--open-green) !important;
}

/* 5. Your Original Animation */
@keyframes fanOut {
    0%, 15% {
        transform: translateY(0);
        opacity: 1;
        color: var(--current-color, var(--main-red));
    }
    25% { color: transparent; }
    45%, 75% {
        transform: translateY(calc(var(--i) * -80px));
        opacity: 1;
        color: transparent;
    }
    90%, 100% {
        transform: translateY(0);
        opacity: 1;
        color: var(--current-color, var(--main-red));
    }
} 

#closeddown {
    z-index: 10;
    animation-delay: 0s;
    height: 100%;
    width: auto;
}

.p1  {
}

/* ========================================================================== 
content-block 
========================================================================== */
.content-block {
    padding:60px 0;
    width:100%;
}

.content-block-cyan {
    background:#34c8b2;
    color:#ECF0F1;
}

.content-block-cyan h1 {
    font-weight:100;
    text-transform:uppercase;
    margin-bottom: 30px;
}

#hoverimage {
    display: inline;
    position: relative;
}


.wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 100%;
}

.wrapper-1 {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.wrapper aside {
    width: 100%;
    /* [disabled]position: absolute; */
    display: inline-block;
    margin-top: 27px;
    margin-bottom: 114px;
}

.wrapper aside1 {
    width: 100%;
    position: relative;
    margin-top: 16%;
    display: inline-block;
    height: 900px;
}

.wrapper aside2 {
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    background-color: None;
    max-width: 100%;
}

.wrapper aside3 {
    width: 100%;
    position: relative;
    margin-top: 7%;
    display: inline-block;
    height: 1250px;
}

.wrapper aside4{
    width: 100%;
    position: relative;
    margin-top: 0%;
    display: inline-block;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.wrapper aside5{
    width: 100%;
    position: relative;
}

.wrapper aside6{
    width: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 689px;
    background-color: #1D2B50;
}



.footer{
    height: 80px;
    position: fixed;
    /* [disabled]background-color: #A0FFE7; */
    opacity: 1;
    z-index: 99;
    width: 100%;
    bottom: 0px;
    display: inline;
    left: 0px;
}

.text-foot{
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
    text-transform: uppercase;
    color: #2B2B2B;
    height: 56px;
    padding-top: 9px;
    padding-bottom: 20px;
    font-size: 0.9em;
    display: inline;
    position: absolute;
    font-family: "Lato Regular";
    bottom: 0;            /* Flush against the left */
    width: 100%;        /* Let it shrink-wrap the text instead of forcing 100% width */
}

#title {
    width: 100%;
    height: 200px;
    top: 280px;
}



.halfa {
    width: 100%;
    position: relative;
    background-image: url(../img/LGGO%20HALFAMELON.png);
    left: 0%;
    background-repeat: no-repeat;
    overflow-x: hidden;
    background-size: 180px auto;
    background-position: 50% 90%;
    display: flex;
    height: 100%;
   }


.text-team {
    /*border-radius*/
    color: #5AD1FF;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 1;
    text-align: center;
    position: absolute;
    font-size: 5rem;
    border-bottom-right-radius: 0px;
    border-spacing: 0px 0px;
    width: 100%;
}




#oksanaimage{
   height: 196px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
	width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM);

}


#chrisimage {
     	height: 196px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
	width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM/chris.png);
 
}

.teambox{
    display: inline-block;
    align-content: center;
    width: 33%;
    max-width: 100%;
}


.text-h2, .text-h1{
    color: #DDDDDD;
    text-align: center;
    font-family: "Helvetica Neue Black Condensed";
    font-size: 2em;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    float: none;
    left: 0%;
    -webkit-align-self: center;
    position: relative;
    clear: both;
    padding-top: 20px;
    display: block;
}

ptext{
    text-align: center;
    display: list-item;
}

@font-face {
  font-family: "Helvetica Neue Condensed Bold", "Helvetica Neue Condensed Black";
  src: url(fonts/Helvetica-Neue-Black-Condensed.ttf) format("truetype");
}

/*modal*/

.bgmenu {
    width: 100%;
    padding-left: 13%;
    padding-right: 13%;
    height: 50px;
    padding-top: 0px;
    position: relative;
    top: 1px;
    margin-left: -10px;
    margin-right: -10px;
}

#background-comp {
    background-image: url(../assets/images/Competitive-bg.jpg);
    background-repeat: no-repeat;
    z-index: 0;
    position: absolute;
    width: 100%;
    float: none;
    top: -25px;
    max-width: 100%;
    height: 100%;
    background-size: 120% auto;

}
#background-rhythmic {
    background-image: url("../assets/images/Rhythmic-bg.jpg");
    background-repeat: no-repeat;
    z-index: 0;
    position: absolute;
    width: 100%;
    float: none;
    top: -25px;
    max-width: 100%;
    height: 100%;
    background-size: 120% auto;

}



.item{
    height: 45px;
    /* [disabled]background-color: hsla(0,100%,50%,0.38); */
    /* [disabled]border-style: solid; */
    /* [disabled]border-color: hsla(0,100%,99%,1.00); */
}
.item3, .item4{
flex-grow: 0.12;	
}

.item5{
flex-grow: 0.25;	
}

#compage{
	
}

#locfind{
	
}


.dropmenufiller{
    background-color: hsla(43,100%,49%,1.00);
    height: 180px;
    margin-bottom: -77px;
    margin-top: -83px;
    position: relative;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Use viewport width to secure full-bleed */
    height: 100%;
    z-index: -1;
    /* Grid system anchors layout edges completely */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
    background-color: rgba(255,160,162,1.00); /* Safety fallback: matches light2bg color */
    /* Setting transition on the grid template tracks */

	transition: grid-template-columns 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.followus {
    width: 40%;
    z-index: 999;
    color: #7DFFE6;
    font-family: "Lemonada VariableFont wght";
    text-align: left;
    /* [disabled]font-size: large; */
    height: 100%;
    position: absolute;
    padding-left: 0px;
    left: 28px;
	}

.icons {
    filter: invert(100%);
    height: auto;
    width: 270px;
    padding-top: 5px;
    vertical-align: bottom;
    text-align: left;
	}

	.navbar-brand {
    height: 70px;
    width: 20%;
    padding: 25px 15px;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    left: 40%;
    float: left;
    background-position: 50% 0%;
}



@media (min-width : 300px ){
	
	.icons {
    filter: invert(100%);
    height: auto;
    width: 100%;
    padding-top: 40px;
    vertical-align: bottom;
    text-align: left;
	}
	
	#we-are{
    padding-left: 15px;
    padding-right: 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    color: #2E2E2E;
    padding-bottom: 40vh;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    width: 80%;
    font-size: 0.8em;
}

#welcome-container {
    position: relative;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 300px;
    padding-right: 0; /* Precise 40px gap from right screen panel edge */
    box-sizing: border-box;
    background: transparent;
    z-index: 10;
    pointer-events: auto;
    display: flex;
    justify-content: flex-end; /* Locks the 3D grid context to the right */
    align-items: center;
}

#welcome-canvas {
    width: 100vw !important;
    height: 100% !important;
    display: block;
}
	
	
	#HP{
    /* [disabled]padding-bottom: 100%; */
	}
	
	#closeddown, .layer {
    font-size: 50pt;
    font-weight: 900;
    font-family: "Lemonada VariableFont wght";
	}

.text-foot{
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
    text-transform: uppercase;
    color: #2B2B2B;
    height: 56px;
    padding-top: 9px;
    padding-bottom: 20px;
    font-size: 0.5em;
    display: inline;
    position: absolute;
    font-family: "Lato Regular";
	bottom: 0;            /* Flush against the left */
    width: 100%;        /* Let it shrink-wrap the text instead of forcing 100% width */

}
		
		

	

	

.navbar-nav {
    font-weight: 900;
    letter-spacing: 0px;
    font-size: 10pt;
    font-family: "Lemonada VariableFont wght";
}
	
.navbar-nav>li>a {
    line-height: inherit;
    padding-top: 20px;
    padding-bottom: 20px;
    /* [disabled]padding-left: 6px; */
    /* [disabled]padding-right: 6px; */
    font-size: 25pt;
}	

	
.halfa {
    width: 100%;
    left: 0%;
    background-repeat: no-repeat;
   }
	
#footerlogobox {
    width: 150px;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 126%;
    float: right;
    bottom: 0%;
    right: 0px;
    margin-right: 20px;
    display: none;
}
}



@media (min-width:480px){


	
	.text-foot{
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
    text-transform: uppercase;
    color: #2B2B2B;
    height: 56px;
    padding-top: 9px;
    padding-bottom: 20px;
    font-size: 0.5em;
    width: 100%;
    display: inline;
    position: absolute;
    font-family: "Lato Regular";
}

#footerlogobox {
    width: 150px;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 126%;
    float: right;
    bottom: 0%;
    right: 0px;
    margin-right: 20px;
    display: none;
}
.pm-text-popup {
    width: 100%;
    margin-top: 282px;
    top: -143px;
    display: inherit;
    /* [disabled]margin-left: 25px; */
    /* [disabled]margin-right: 25px; */
    font-family: "Helvetica Neue Black Condensed";
    text-align: center;
    position: fixed;
    font-size: 16pt;
    line-height: 18pt;
    /* [disabled]right: 5%; */
    padding-right: 90px;
    padding-left: 90px;
}
}




@media (min-width:636px){


	
	#closeddown, .layer {
    font-size: 80pt;
    font-weight: 900;
    font-family: "Lemonada VariableFont wght";
	}	
	

	
}




@media (min-width:992px){
	
	.icons {
    filter: invert(100%);
    height: auto;
    width: 270px;
    padding-top: 5px;
    vertical-align: bottom;
    text-align: left;
	}
	
	#we-are{
    padding-left: 45px;
    padding-right: 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    color: #2E2E2E;
    padding-bottom: 50vh;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    width: 80%;
	font-size: 1em;
}

#welcome-container {
    position: relative;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 300px;
    padding-right: 0; /* Precise 40px gap from right screen panel edge */
    box-sizing: border-box;
    background: transparent;
    z-index: 10;
    pointer-events: auto;
    display: flex;
    justify-content: flex-end; /* Locks the 3D grid context to the right */
    align-items: center;
}

#welcome-canvas {
    width: 100vw !important;
    height: 100% !important;
    display: block;
}
	
	#HP{
	padding-bottom: 100%	
	}
	
#closeddown, .layer {
    font-size: 120pt;
    font-weight: 900;
    font-family: "Lemonada VariableFont wght";
	}
	
	.text-foot{
	
	text-align: center;
    padding-right: 30px;
    padding-left: 30px;
    text-transform: uppercase;
    color: #2B2B2B;
    height: 56px;
    padding-top: 9px;
    padding-bottom: 20px;
    font-size: 0.9em;
    display: inline;
    position: absolute;
    font-family: "Lato Regular";
	bottom: 0;            /* Flush against the left */
    width: 100%;        /* Let it shrink-wrap the text instead of forcing 100% width */
	
}
}




@media (min-width:1200px){
	
	
	
	.layer {
    animation-delay: calc(var(--i) * 4.1s);
    opacity: 0;
	font-family: 'Lemonada VariableFont wght'; 
	font-weight: 900; 
	text-align: left;
}
	

#chrisimage {
    height: 250px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
    width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM/chris.png); 
}
	
}

@media (min-width:1400px){
	

#chrisimage {
    height: 220px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
    width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM/chris.png); 
}

.pm-text-popup {
    width: 100%;
    margin-top: 282px;
    top: -143px;
    display: inherit;
    /* [disabled]margin-left: 25px; */
    /* [disabled]margin-right: 25px; */
    font-family: "Helvetica Neue Black Condensed";
    text-align: center;
    position: fixed;
    font-size: 16pt;
    line-height: 18pt;
    /* [disabled]right: 5%; */
    padding-right: 450px;
    padding-left: 450px;
}
	
}

@media (min-width:1600px){
	


#chrisimage {
    height: 280px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
    width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM/chris.png);
}


@font-face {
  font-family: "Helvetica Neue Condensed Bold", "Helvetica Neue Condensed Black";
  src: url(fonts/Helvetica-Neue-Black-Condensed.ttf) format("truetype");
}
	
.pm-text-popup {
    width: 100%;
    margin-top: 282px;
    top: -143px;
    display: inherit;
    /* [disabled]margin-left: 25px; */
    /* [disabled]margin-right: 25px; */
    font-family: "Helvetica Neue Black Condensed";
    text-align: center;
    position: fixed;
    font-size: 16pt;
    line-height: 18pt;
    /* [disabled]right: 5%; */
    padding-right: 580px;
    padding-left: 580px;
}

	
}

@media (min-width:1800px){
			

#chrisimage {
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: rgba(29,42,80,1.00);
    mix-blend-mode: luminosity;
    position: relative;
    padding-bottom: 0px;
    display: list-item;
    width: 100%;
    margin-top: 40px;
    background-image: url(../assets/images/OURTEAM/chris.png); 
}


	
	
}
