.elementor-17 .elementor-element.elementor-element-98e4fd8{--display:flex;}/* Start custom CSS for container, class: .elementor-element-98e4fd8 */<style>
/*********************************************************************************************

                                                GENERAL

*********************************************************************************************/


body {

  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  background-size: 400% 400%;
  animation: background-animation 8s ease infinite;
  z-index: 0;
  position: relative;
  transition: filter 0.3s ease;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: #000;

}


.body-animation {

  filter: blur(5px);

}

body.clear {
  filter: none;
}

/* BG-Animation */
@keyframes background-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


a
 { color: inherit;

} 

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #0989c5;
}

a:active {
  text-decoration: none;
}



.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://cdn.prod.website-files.com/6783d1cac9a42a48f4617c0c/678cf3ceec8afcb96a161784_bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
  filter: blur(5px);
  transition: filter 0.3s ease;
}

body.clear .background-image {
  filter: none;
}



.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  cursor: pointer;
  width: 300px; 
  height: 300px; 

  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.logo-container .logo {
  opacity: 1;
  z-index: 1;

}

.logo-container .logo2 {
  opacity: 0;
  z-index: 2;


}

.logo-container:hover .logo {
  opacity: 0;
  transform: scale(0.9);


}

.logo-container:hover .logo2 {
  opacity: 1;
  transform: scale(1.1);

}


.logo-corner {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 180px;
  height: auto;
  z-index: 1000;
  filter: blur(5px);
  transition: filter 0.3s ease;

}

body.clear .logo-corner {
  filter: none;

}

.page-transition {
  position: absolute;
  top: 0;
  left: 50;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001833, #151515); 
  transform: scaleX(0); 

  transition: transform 0.2s ease; 
  z-index: 9999; 
}

.page-transition.active {
  transform: scaleX(1); 
}


/*********************************************************************************************

                                                GENERAL END

*********************************************************************************************/




/*********************************************************************************************

                                                HOME

*********************************************************************************************/


/****** DELETE! 

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(120deg, #0989c5, #661a2d);
  background-size: 400% 400%;
  animation: background-animation 8s ease infinite;
}

@keyframes background-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

.logo-left {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 200px;
  height: auto;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #305674;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease-in-out;
  z-index: 999;
}

.fullscreen-menu.active {
  transform: scaleY(1);
}

.fullscreen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-menu ul li {
  margin: 20px 0;
}

.fullscreen-menu ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.fullscreen-menu ul li a:hover {
  color: #ff6f61;
}

.menu-icon.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

**********/


.welcome-text {
  position: absolute;
  top: 50%;
  left: -100;
  font-size: 4rem;
  width: 100%;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: move-text 8s linear infinite;
}

@keyframes move-text {
  0% {
    left: -35%;
  }
  50% {
    left: 50%;
    transform: translateX(-50%);
  }
  100% {
    left: 100%;
  }
}

.logo-corner-visible {

  position: absolute;
  top: 20px;
  left: 25px;
  width: 180px;
  height: auto;
  z-index: 1000;


}


/*********************************************************************************************

                                                HOME END

*********************************************************************************************/



/*********************************************************************************************

                                                MENU

*********************************************************************************************/


/*** DELETE !

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: #000;
}

****/


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),  url("bg.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start; 
  padding: 0px 100px; 
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}


.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  margin: 30px 0; 
}


.menu-items a {

  text-decoration: none;
  font-size: 3rem; 
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 0.8px white; 
  text-transform: uppercase;
  transition: color 0.3s ease;

}


.menu-items a:hover {
  color: #0094c7 !important;
  -webkit-text-stroke: 0px; 
}


#about {

  color: #0094c7 !important;
  -webkit-text-stroke: 0px; 

}



.social-links {
  position: fixed;
  bottom: 200px;
  right: 300px; 
  display: flex;
  flex-direction: column; 
  gap: 20px; 
  z-index: 20; 
  text-align: right;
}

.social-links a {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;

  text-decoration: none;
  gap: 10px;
}

.social-links:hover a:hover {

  color: #0094c7;

}


.social-links a img {
  width: 40px; 
  height: 40px; 
  object-fit: cover;
  border-radius: 5px;
}

.social-links a:hover {
  color: white;
}



.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 21;
  cursor: pointer;

}

.hamburger-icon {
  width: 40px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items:end;

}

.hamburger-icon span {
background-color: rgba(255, 255, 255, 0) !important;
border: solid 0.5px white !important;


}

#hamburger-icon-2 {

  width: 30px;
  align-items: right;
  
}

#hamburger-icon-3 {

  width: 20px;
  align-items: right;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/*********************************************************************************************

                                                MENU END

*********************************************************************************************/



/*********************************************************************************************

                                                CONTENT

*********************************************************************************************/


.content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 90%; 
  z-index: 2; 
}

.text-content {
  flex: 1;
  max-width: 50%;
}

.text-content h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.image-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  padding: 10%;
  cursor: pointer;

}



/* Image default styling */
.image-content img {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  display: block;
}


.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}


@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .image-content {
    max-width: 100%;
  }
}


/*********************************************************************************************

                                                CONTENT END
                                              
*********************************************************************************************/



/*********************************************************************************************

                                                CONTACT 

*********************************************************************************************/



.contact-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(120deg, #0989c5, #001833);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.contact-button:hover {
  background: linear-gradient(120deg, #001833, #0989c5);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: white;
}


/*********************************************************************************************

                                                CONTACT END
                                                
*********************************************************************************************/





/*********************************************************************************************

                                                Slider Container
                                                
*********************************************************************************************/




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #fff;
  background: #000;
}
li {
  list-style: none;
}
input[type="radio"] {
  display: none;
}
.js-slider {
  position: relative;
  width: 80%;
  height: 100vh;
  margin: 0 auto;
}
.js-slider_item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform-origin: right center;
  transform: translate3d(0%, 0%, 0) rotateY(30deg) scaleX(0.95);
  transition: all 1s ease,transform 1s cubic-bezier(0.43, 0.28, 0.51, 1);
}
#s-1:checked ~ .js-slider .js-slider_item.img-1,
#s-2:checked ~ .js-slider .js-slider_item.img-2,
#s-3:checked ~ .js-slider .js-slider_item.img-3 {
  opacity: 1;
  visibility: visible;
  transform-origin: left center;
  transform: translate3d(0, 0, 0) rotateY(0deg) scaleX(1);
}
.js-slider_img {
  width: 100%;
  height: 60%;
  position: relative;
  overflow: hidden;
}
.c-img-w-full {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate3d(-50%, -50%, 0);
}
.c-img-h-full {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
}
figcaption {
  display: block;
}
.wo-h3 {
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e60012;
}
.c-label {
  display: inline-block;
  color: #eee;
  background-color: rgba(139,0,10,0.9);
  line-height: 1;
  padding: 0.5em 0.9em;
  margin-right: 0.5em;
  font-size: 1.4rem;
  font-weight: bold;
}
.view-sm {
  display: none;
}
.js-slider_nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translate3d(0, -50%, 0);
}
.js-slider_nav_item.prev {
  left: 0;
}
.js-slider_nav_item.next {
  right: 0;
  transform: rotateY(180deg);
}
.js-slider_nav_item {
  position: absolute;
  display: none;
  width: 4rem;
  height: 4rem;
  border: 1px solid #e60012;
  border-radius: 50%;
  cursor: pointer;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.js-slider_nav_item:before {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  top: 55%;
  width: 1rem;
  height: 1px;
  background-color: #e60012;
  transform-origin: left bottom;
  transform: translate3d(0, -50%, 0) rotate(-45deg);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.js-slider_nav_item:hover {
   transform: translate3d(-30%, 0, 0);
}
.js-slider_nav_item.next:hover {
   transform: rotateY(180deg) translate3d(-30%, 0, 0);
}
.js-slider_nav_item:hover:before {
  transform: translate3d(0, -50%, 0) rotate(-30deg);
}
.js-slider_nav_item:after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 2rem;
  height: 1px;
  background-color: #e60012;
  transform: translate3d(-50%, -50%, 0);
}
#s-1:checked ~ .js-slider .js-slider_nav .s-nav-1,
#s-2:checked ~ .js-slider .js-slider_nav .s-nav-2,
#s-3:checked ~ .js-slider .js-slider_nav .s-nav-3 {
  display: block;
}
.js-slider_indicator {
  position: absolute;
  left: 0;
  top: 63%;
  width: 100%;
  text-align: center;
}
.js-slider-indi {
  position: relative;
  display: inline-block;
  padding: 2rem;
  cursor: pointer;
}
.js-slider-indi:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: #e60012;
  transform: translate3d(-50%, -50%, 0);
}
.js-slider-indi:hover:after {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
#s-1:checked ~ .js-slider .js-slider_indicator .indi-1:after,
#s-2:checked ~ .js-slider .js-slider_indicator .indi-2:after,
#s-3:checked ~ .js-slider .js-slider_indicator .indi-3:after {
  transform: translate3d(-50%, -50%, 0) scale(2.5);
}



/*********************************************************************************************

                                                Slider Container End
                                                
*********************************************************************************************/
</style>/* End custom CSS */