* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.top-nav {
  background-color: #ffffff;
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
}

/* Other styles remain the same... */




.menu,
.menu-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100000;
}

.menu-line {
  width: 35px;
  height: 2px;
  background-color: rgb(0, 0, 0);
  margin: 6px 0;
}

.menu-close .menu-line {
  width: 35px;
  height: 2px;
  background-color: black;
}

.menu-close .menu-line:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 8px;
}

.menu-close .menu-line:nth-child(2) {
  transform: rotate(-45deg);
  margin-top: -8px;
}

.menu-panel {
  width: 300px;
  right: -300px;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0px;
  padding: 10px 10px 10px 10px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  font-size: 0.5em;
  z-index: 10000;
}

.menu-panel.show {
  right: 0px;
  background-color: white;
  -webkit-transition: all 1s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.menu-background {
  width: 100vw;
  height: 100vh;
  top: 0;
  right: -400vh;
  position:fixed;
  z-index: 10;
  top: 0px;
}

.menu-background.show {
  right: 0px;
  background-color: rgba(0, 0, 0, 0.479);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.menu-title {
  margin: 50px 0;
  font-size: 1em;
}

.menu-links {
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  display: block;
  transition: 0.3s;
  text-align: center;
}
.menu-links:hover{
	color: #33d15af6;
  text-decoration: none;

}



.zoom{
  transition: transform .6s; /* Animation */
}

.zoom:hover {
  transform: scale(1.15); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}




                                                    /* IMAGES FOR SOCIALS*/
img { display:block; }

.img-social{
  object-fit: contain;
  height: 65%;
  width: 65%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-social:hover{
  transition: transform .6s; /* Animation */
  transform: scale(1.08);
}

/* FORM CONTROL*/

input[type=text], select {
  width: 100%;
  padding: 20px 20px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  box-sizing: border-box;
}

input[type=email], select {
  width: 100%;
  padding: 20px 20px;
  margin: 0px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  box-sizing: border-box;
}

input[type=submit] {
  width: 100%;
  background-color: #464646;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

textarea[name=message], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 15px;
}


.box {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 100px;
  text-transform: uppercase;
  color: #0000;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: bold;
  background: 
    repeating-radial-gradient(#00000075 0 0.0001%,#fff 0 0.0002%) 50% 0/2500px 2500px,
    repeating-conic-gradient(#000 0 0.0001%,#fff 0 0.0002%) 50% 50%/2500px 2500px;
  background-blend-mode: difference;
  mix-blend-mode: lighten;
  -webkit-background-clip: text;
          background-clip: text;
}

/*Video Background*/
.background-video {
  position: absolute;
  background-image: url('image');
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* This ensures the video stays behind other content */
  
}

/*FEMTO*/


* {
  box-sizing: border-box;
}

.mycarousel {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 900px;
    max-height: 550px;   
    overflow: hidden;
  position: relative;
}

.mycarousel-item {
  visibility:visible;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
      -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    position: relative;
    background-color: #fff;
    flex-shrink: 0;
   -webkit-flex-shrink: 0;
    position: absolute;
    z-index: 0;
  transition: 0.6s all linear;
}

.mycarousel-item__info {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  
    display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  
  order: 1;
  left: 0;
  margin: auto;
  padding: 0 40px;
  width: 40%;

}

.mycarousel-item__image {
    width: 60%;
    height: 100%;
    order: 2;
    align-self: flex-end;
    flex-basis: 60%;
  
      -webkit-order: 2;
    -webkit-align-self: flex-end;
    -webkit-flex-basis: 60%;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   position:relative;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}

.mycarousel-item__subtitle {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    color: #7E7E7E;    
    font-weight: 700;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease-in-out;
}

.mycarousel-item__title {
    margin: 15px 0 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 45px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #ffffff;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}

.mycarousel-item__description {
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
    margin-top: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #7e7e7e;
    line-height: 22px;
    margin-bottom: 35px;
}

.mycarousel-item__btn {
    width: 35%;
    color: #2C2C2C;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    width: 35%;
    font-weight: 700;
  text-decoration: none;
      transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}

.mycarousel__nav {
    position: absolute;
    right: 0;
    z-index: 2;
    background-color: #fff;
  bottom: 0;
}

.mycarousel__icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
  fill: #5d5d5d;
}

.mycarousel__arrow {
    cursor: pointer;
    display: inline-block;
    padding: 11px 15px;
    position: relative;
}

.mycarousel__arrow:nth-child(1):after {
    content:'';
    right: -3px;
    position: absolute;
    width: 1px;
    background-color: #b0b0b0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
}

.active{
   z-index: 1;
  display: flex;
  visibility:visible;
}

.active .mycarousel-item__subtitle, .active .mycarousel-item__title, .active .mycarousel-item__description,.active .mycarousel-item__btn{
    transform: translateY(0);
    opacity: 1;
  transition: 0.6s all ease-in-out;
    visibility: visible;
}



.active .mycarousel-item__image{ 
transition: 0.6s all ease-in-out;
transform: translateX(0);
}

