.elementor-1735 .elementor-element.elementor-element-80b0e3a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--position:absolute;top:0px;}body:not(.rtl) .elementor-1735 .elementor-element.elementor-element-80b0e3a{left:0px;}body.rtl .elementor-1735 .elementor-element.elementor-element-80b0e3a{right:0px;}.elementor-1735 .elementor-element.elementor-element-6292ae3{--display:flex;}.elementor-1735 .elementor-element.elementor-element-73ecbfc{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-end;--align-items:flex-end;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1735 .elementor-element.elementor-element-73ecbfc.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1735 .elementor-element.elementor-element-e9be940{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--align-items:center;}.elementor-1735 .elementor-element.elementor-element-e9be940.e-con{--align-self:flex-end;--order:99999 /* order end hack */;--flex-grow:0;--flex-shrink:0;}.elementor-1735 .elementor-element.elementor-element-4626905{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1735 .elementor-element.elementor-element-4626905.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1735 .elementor-element.elementor-element-d97b839{padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-1735 .elementor-element.elementor-element-80b0e3a{--width:100%;}.elementor-1735 .elementor-element.elementor-element-6292ae3{--width:70%;}.elementor-1735 .elementor-element.elementor-element-73ecbfc{--width:30%;}.elementor-1735 .elementor-element.elementor-element-e9be940{--width:80%;}.elementor-1735 .elementor-element.elementor-element-4626905{--width:20%;}}/* Start custom CSS for html, class: .elementor-element-e98f066 */.animated-button {
    position: fixed; 
    top: 30px;
    right: 120px; 
    display: inline-block;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    background-color: orange;
    color: #2b2b2b;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    font-family: 'Poppins';
    overflow: hidden;
    cursor: pointer;
    z-index: 2001; 
    outline: none;
    margin-top: 0; 
    -webkit-tap-highlight-color: transparent;
}

.animated-button span {
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
    white-space: nowrap;
}

.animated-button .default-text {
    transform: translateY(0%);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.animated-button .hover-text {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, 100%);
    opacity: 0;
    color: black;
    z-index: 1;
}

.animated-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background-color: white;
    transition: height 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.animated-button:hover::before {
    height: 100%;
}

.animated-button:hover .default-text {
    transform: translateY(-100%);
    opacity: 0;
}

.animated-button:hover .hover-text {
    transform: translate(-50%, 0%);
    opacity: 1;
}

.animated-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: orange; 
}

.animated-button:hover,
.animated-button:focus,
.animated-button:active {
    background-color: orange; 
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d97b839 */body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
}
body.menu-open {
  overflow: hidden;
}

#menu-checkbox {
  display: none;
}

.hamburger {
  position: fixed;
  top: 30px;
  right: 60px;
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 2001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: orange;
  margin: 10px 0;
  transition: 0.4s;
  border-radius: 10px;
}
#menu-checkbox:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}
#menu-checkbox:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}
#menu-checkbox:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
#menu-checkbox:checked + .hamburger span {
  background: white;
}

.fullscreen-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,1);
  display: flex;
  flex-direction: row;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2000;
}
#menu-checkbox:checked ~ .fullscreen-menu {
  opacity: 1;
  pointer-events: auto;
}

.menu-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  padding: 40px;
  color: white;
  position: relative;
}
.menu-right {
  flex: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  overflow-y: auto;
}

.menu-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 0px;
}
.menu-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 300px;
}

.main-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav li {
  margin: 0; /* no space */
  white-space: nowrap;
  position: relative;
}
.main-nav a {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 10px; 
  color: white;
}
.main-nav a span {
  display: inline-block;
  transform: none !important;
  transition: none !important;
}
.main-nav a::before {
  content: none;
}
.has-submenu-1.open > a {
  color: orange;
}
.has-submenu-1 > a {
  color: white;
}

.submenu-1 {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;            
  overflow: hidden;         
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.8s ease, opacity 0.8s ease, transform 0.4s ease;
}

.has-submenu-1.open .submenu-1 {
  max-height: 500px;        
  opacity: 1;
  transform: translateY(0);
}

.submenu-1 li {
  margin: 8px 0;
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.has-submenu-1.open .submenu-1 li {
  opacity: 1;
  transform: translateY(0);
}
.has-submenu-1.open .submenu-1 li:nth-child(1) { transition-delay: 0.05s; }
.has-submenu-1.open .submenu-1 li:nth-child(2) { transition-delay: 0.1s; }
.has-submenu-1.open .submenu-1 li:nth-child(3) { transition-delay: 0.15s; }
.has-submenu-1.open .submenu-1 li:nth-child(4) { transition-delay: 0.2s; }
.has-submenu-1.open .submenu-1 li:nth-child(5) { transition-delay: 0.25s; }
.has-submenu-1.open .submenu-1 li:nth-child(6) { transition-delay: 0.3s; }

.submenu-1 a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.submenu-1 a:hover {
  color: #fff;
  transform: translateX(6px);
}

.extra-links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 100px;
}
.extra-links .column {
  flex: 1;
  text-align: left;
}
.extra-links h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
.extra-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.extra-links li {
  margin: 8px 0;
}
.extra-links a {
  color: #aaa;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.extra-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

.animated-button-2 {
  display: inline-block;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  background-color: orange;
  color: #2b2b2b;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: 'Poppins';
  overflow: hidden;
  cursor: pointer;
  z-index: 10; 
  outline: none;
  margin-top: 20px; 
  position: relative; 
}
.animated-button-2 span {
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
}
.animated-button-2 .default-text-2 {
  transform: translateY(0%);
  opacity: 1;
  position: relative;
  z-index: 2;
}
.animated-button-2 .hover-text-2 {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, 100%);
  opacity: 0;
  color: black;
  z-index: 1;
}
.animated-button-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background-color: white;
  transition: height 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}
.animated-button-2:hover::before {
  height: 100%;
}
.animated-button-2:hover .default-text-2 {
  transform: translateY(-100%);
  opacity: 0;
}
.animated-button-2:hover .hover-text-2 {
  transform: translate(-50%, 0%);
  opacity: 1;
}
.animated-button-2:hover,
.animated-button-2:focus,
.animated-button-2:active {
  background-color: orange; 
}/* End custom CSS */