.elementor-kit-5{--e-global-color-primary:#F8B94C;--e-global-color-secondary:#751358;--e-global-color-text:#000000;--e-global-color-accent:#751358;--e-global-color-8a94ffe:#585858;--e-global-color-ce3b069:#FFFFFF;--e-global-color-563857f:#000000;--e-global-color-e7a3b8a:#1D1D1D;--e-global-color-8a27818:#EEE5D7;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"],.elementor-kit-5 .elementor-button{background-color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:var( --e-global-color-primary );}.elementor-kit-5 h1{font-size:60px;}.elementor-kit-5 h2{font-size:50px;}.elementor-kit-5 h3{font-size:45px;}.elementor-kit-5 h4{font-size:40px;}.elementor-kit-5 h5{font-size:35px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1366px){.elementor-kit-5 h1{font-size:50px;}.elementor-kit-5 h2{font-size:40px;}.elementor-kit-5 h3{font-size:35px;}.elementor-kit-5 h4{font-size:32px;}.elementor-kit-5 h5{font-size:30px;}.elementor-kit-5 h6{font-size:28px;}}@media(max-width:1024px){.elementor-kit-5 h1{font-size:50px;}.elementor-kit-5 h2{font-size:45px;}.elementor-kit-5 h3{font-size:40px;}.elementor-kit-5 h4{font-size:35px;}.elementor-kit-5 h5{font-size:30px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-5 h1{font-size:40px;}.elementor-kit-5 h2{font-size:35px;}.elementor-kit-5 h3{font-size:30px;}.elementor-kit-5 h4{font-size:25px;}.elementor-kit-5 h5{font-size:20px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.heading {
    color: #fff;
    font-weight: 600;
}

.sub-heading {

font-size: 17px!important;
color: #f8b94c;
letter-spacing: 5px;
text-transform: uppercase;

}


.center {
    text-align: center;
    margin: auto;
}

.shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow:hover {
    box-shadow: none;
}

/*.dark-gradient {*/
/*    background: linear-gradient(109.6deg, rgb(36, 45, 57) 11.2%, rgb(16, 37, 60) 51.2%, rgb(0, 0, 0) 98.6%);*/
/*}*/

.blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.button-icon {
    fill: #F8B84C;
    font-size: 20px;


}
/*Animation*/


.animation-slideup {
  text-align: center;
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  letter-spacing: 1px;
  color: #333;
}
.animation-slideup span {
  display: inline-block;
  animation: slideLeft 1s forwards;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.075, 0.082, 0.0165, 0.3);
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateY(200px);
  } 
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}


.framed img {
  box-shadow:
    -50px -50px 0 -40px #F6B64B,
    50px 50px 0 -40px #F6B64B;
}


/*Read more */
 .expandable-paragraph {
     display: block;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
    max-height: 200px; /* Initial height */
  }

  .expandable-paragraph:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50px;
    width: 100%;
    content: "";
    background: linear-gradient(
      to top,
      rgb(0, 0, 0) 5%,
      rgba(255, 255, 255, 0) 95%
    );
    pointer-events: none; /* so the text is still selectable */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
    opacity: 1; /* Initially fully visible */
  }
    .grey:after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50px;
    width: 100%;
    content: "";
    background: linear-gradient(
      to top,
      rgb(29, 29, 29) 5%,
      rgba(255, 255, 255, 0) 95%
    )!important;
    pointer-events: none; /* so the text is still selectable */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
    opacity: 1; /* Initially fully visible */
  }

  .expandable-paragraph.expanded:after {
    opacity: 0; /* Fade out when expanded */
  }

  .expandable-paragraph.expanded {
    max-height: 1000px;
  }

  .read-more-btn {
    display: block;
    color: #F8B941!important;
    cursor: pointer;
    transition: color 0.3s;
  }

  .read-more-btn:hover {
    color: #fff;

  }/* End custom CSS */