/* Code to change page width START */
.container_12 {
    width: 1000px;
}
.s1_grid_12{
    width: auto;
}
@media only screen and (max-width: 1000px) and (min-width: 600px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    max-width: 1000px;
    min-width: 600px;
}}
@media only screen and (max-width: 1000px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    max-width: 1000px;
    min-width: 600px;
    display: block;
}}
/* Code to change page width END */ 

/* Code to make video embeds responsive */

.container_12 {
width : 1299px;
}
.s1_grid_12 {
width : auto;
}
.video-responsive {
overflow : hidden;
padding-bottom : 56.25%;
position : relative;
height : 0;
}
.video-responsive iframe {
left : 0;
top : 0;
height : 100%;
width : 100%;
position : absolute;
}
/* Code to make video embeds responsive END */

/* Code to create a custom navigation menu */
/* ---------------- HEADER PLACEHOLDER ---------------- */
.header-placeholder {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}

/* Container: logo left, menu right */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertical center */
  max-width: 1200px; /* optional max width */
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo */
.logo img {
  height: 50px; /* adjust as needed */
  width: auto;
  display: block;
}

/* ---------------- MENU ---------------- */
.menu {
  display: flex;
  align-items: center;
  font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

/* prevent text wrapping */
.menu a,
.submenu a {
  white-space: nowrap;
  font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

/* Main menu */
.menu-main {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-main li {
  position: relative;
  margin-left: 28px;
}

/* Links */
.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

/* Animated underline hover */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 10px 22px;
  font-weight: 400;
}

/* Show submenu on hover */
.menu-main li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------- HAMBURGER ---------------- */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 28px;
  height: 22px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

/* Hamburger -> X */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* ---------------- MOBILE ---------------- */
@media(max-width: 900px) {
  .menu-icon {
    display: flex;
  }

  .menu-main {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    width: 250px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  }

  #menu-toggle:checked + .menu-icon + .menu-main {
    display: flex;
  }

  .menu-main li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .menu-main a {
    padding: 14px 20px;
    display: block;
  }

  /* mobile submenu */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 0;
  }

  .submenu a {
    padding-left: 36px;
  }

  .menu-main li:hover .submenu {
    display: none;
  }

  .menu-main li:active .submenu {
    display: block;
  }
}

/* Code to create a custom navigation menu END */

/* Code for the template footer */
/* FOOTER */

.site-footer{
background:#0f1720;
color:#ffffff;
font-family:'Inter','Montserrat','Helvetica',Arial,sans-serif;
padding-top:50px;
}

/* Container */

.footer-container{
max-width:1200px;
margin:0 auto;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
padding:0 20px;
}

/* Sections */

.footer-section{
flex:1;
min-width:220px;
}

.footer-section h4{
font-size:16px;
margin-bottom:15px;
font-weight:600;
letter-spacing:0.5px;
}

/* Links */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
text-decoration:none;
color:#cbd5e1;
font-size:14px;
transition:color .25s ease;
}

.footer-links a:hover{
color:#ffffff;
}

/* Newsletter */

.newsletter-form{
display:flex;
margin-top:12px;
}

.newsletter-form input{
flex:1;
padding:10px;
border:none;
border-radius:4px 0 0 4px;
font-size:14px;
}

.newsletter-form button{
padding:10px 16px;
border:none;
background:#ffffff;
color:#000;
font-weight:600;
border-radius:0 4px 4px 0;
cursor:pointer;
transition:background .25s ease;
}

.newsletter-form button:hover{
background:#e5e5e5;
}

/* Contact section */

.footer-logo{
height:45px;
margin:10px 0;
}

/* Bottom bar */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
margin-top:40px;
padding:18px;
font-size:13px;
color:#cbd5e1;
}

/* Responsive */

@media(max-width:900px){

.footer-container{
flex-direction:column;
text-align:center;
}

.newsletter-form{
flex-direction:column;
}

.newsletter-form input{
border-radius:4px;
margin-bottom:8px;
}

.newsletter-form button{
border-radius:4px;
}

}

/* Code for the template footer END */