/*------------------------------------------------------*/
        /* 1. MAIN CONTAINER HEIGHT                             */
        /* Change this to 1300px later, and everything adapts!  */
        /*------------------------------------------------------*/
        #fw_al_006 {
          overflow: hidden;
          height: 850px !important; 
          position: relative;
          background: #000000;
        }

        #fw_al_006:hover {
          cursor: -moz-grab;
          cursor: -webkit-grab;
        }
        #fw_al_006:active {
          cursor: -moz-grabbing;
          cursor: -webkit-grabbing;
        }
        
        /*------------------------------------------------------*/
        /* 2. THE RESPONSIVE IMAGE & WRAPPER FIX                */
        /*------------------------------------------------------*/
        /* Force the internal bootstrap wrappers to take up the full 600px */
        #fw_al_006 .carousel-inner,
        #fw_al_006 .carousel-item {
          height: 100% !important;
          width: 100% !important;
        }

        /* The image will now perfectly fill the 100% height and cover the space */
        #fw_al_006 .carousel-item img {
          display: block;
          margin: auto;
          width: 100% !important;
          height: 100% !important; 
          object-fit: cover !important; /* CRUCIAL: Keeps it full-view without stretching */
          object-position: center center !important; /* Centers the crop */
        }

        /*---------- SPREAD VERTICALLY EFFECT ----------*/
        .ps_spread_y {
          opacity: 1;
          -webkit-transform: scale3d(1,1,1);
          transform: scale3d(1,1,1);
        }
        .ps_spread_y .carousel-item {
          top: 0;
          z-index: 1;
          opacity: 0;
          position: absolute;
          left: 0;
          display: block;
          -webkit-transform: scale3d(1,2,1);
          transform: scale3d(1,2,1);
          -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
          transition: transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
        }
        .ps_spread_y .carousel-item:first-child {
          top: auto;
          position: relative;
        }
        .ps_spread_y .carousel-item.active {
          opacity: 1;
          z-index: 2;
          -webkit-transform: scale3d(1,1,1);
          transform: scale3d(1,1,1);
          -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
          transition: transform 1.5s cubic-bezier(0.230, 1.000, 0.320, 1.000) 0s, opacity cubic-bezier(0.230, 1.000, 0.320, 1.000) 1.5s;
        }
        
        /*---------- LEFT/RIGHT CONTROL ----------*/
        .ps_control_bfradius .carousel-control-prev,
        .ps_control_bfradius .carousel-control-next{
          top: 47%;
          opacity: 0;
          width: 50px;
          height: 50px;
          z-index: 100;
          color: #000000;
          display: block;
          font-size: 34px;
          cursor: pointer;
          overflow: hidden;
          line-height: 40px;
          text-shadow: none;
          position: absolute;
          font-weight: normal;
          text-decoration: none;
          border: 2px solid rgba(0, 0, 0, 0.3);
          background: rgba(255, 255, 255, 0.3);
        }
        .ps_control_bfradius:hover .carousel-control-prev,
        .ps_control_bfradius:hover .carousel-control-next{
          opacity: 1;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
        }
        .ps_control_bfradius .carousel-control-prev{
          left: 3%;
          -webkit-border-radius: 100px;
          border-radius:  100px;
        }
        .ps_control_bfradius .carousel-control-next{
          right: 3%;
          -webkit-border-radius: 100px;
          border-radius: 100px;
        }
        .ps_control_bfradius .carousel-control-prev:hover,
        .ps_control_bfradius .carousel-control-next:hover{
          color: #ffffff;
          background: rgba(253, 69, 119, 0.3);
          border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .ps_control_bfradius .carousel-control-prev > span:nth-child(1){
          left: 45%;
        }
        .ps_control_bfradius .carousel-control-next > span:nth-child(1){
          right: 45%;
        }
        
        /*---------- SLIDE CAPTION ----------*/
        .fw_al_006_slide {
          left: 0;
          top: 22%;
          right: 0;
          margin: auto;
          position: absolute;
          text-align: left;
          padding: 10px 150px;
        }
        .fw_al_006_slide_right {
          left: auto;
          text-align: right;
        }
        .fw_al_006_slide > div {
          max-width: 650px;
          padding: 15px 0px 10px 30px;
          border-left: 3px solid #ffc107;
          background: rgba(255, 255, 255, 0.3);
        }
        .fw_al_006_slide_right > div {
          border-left: none;
          border-right: 3px solid #ffc107;
          padding: 15px 30px 10px 20px;
        }
        .fw_al_006_slide > div > h3 {
          padding: 0;
          color: #fee28f;
          font-size: 45px;
          font-weight: 400;
          text-shadow: none;
          font-style: normal;
          margin: 0 0 10px 0;
          text-transform: capitalize;
          font-family: 'Roboto Slab', serif;
          -webkit-box-shadow: none;
          box-shadow: none;
          -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
        }
        .fw_al_006_slide > div > h1 {
          padding: 0;
          color: #ffc107;
          font-size: 40px;
          font-weight: 600;
          text-shadow: none;
          font-style: normal;
          margin: 0 0 10px 0;
          letter-spacing: 2px;
          text-transform: uppercase;
          font-family: 'Roboto Slab', serif;
          -webkit-box-shadow: none;
          box-shadow: none;
          -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
        }

        .fw_al_006_slide > div > h4 {
          padding: 0;
          color: #ffc107;
          font-size: 28px;
          text-shadow: none;
          font-style: normal;
          font-weight: normal;
          letter-spacing: 1px;
          margin: 10px 0 10px 0;
          font-family: 'Roboto Slab', serif;
          -webkit-box-shadow: none;
          box-shadow: none;
          -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
        }
        .fw_al_006_slide > a {
          color: #000000;
          cursor: pointer;
          font-weight: 400;
          font-size: 12px;
          margin: 20px 0 0 0;
          text-align: center;
          padding: 15px 30px;
          white-space: nowrap;
          letter-spacing: 2px;
          display: inline-block;
          text-decoration: none;
          text-shadow: none;
          text-transform: uppercase;
          background:#FFD45C;
          -webkit-font-smoothing: antialiased;
          font-family: 'Montserrat', sans-serif;
          -webkit-border-radius: 0px;
          border-radius: 0px;
          -webkit-box-shadow: none;
          box-shadow: none;
          -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
        }
        .fw_al_006_slide > a:hover,
        .fw_al_006_slide > a:active {
          color: #ffffff;
          background: #3E4FB0;
        }

        /*------------------------------------------------------*/
        /* RESPONSIVE
        /*------------------------------------------------------*/
        @media only screen and (max-width: 480px) {
          .fw_al_006_slide {
            top: 5%;
            padding: 10px;
            text-align: center;
          }
          .fw_al_006_slide_right {
            left: 0;
            text-align: center;
          }
          .fw_al_006_slide > div {
            padding: 0px 0px 10px 10px;
          }
          .fw_al_006_slide_right > div {
            padding: 0px 10px 10px 0px;
          }
          .fw_al_006_slide > div > h3 { font-size: 20px; margin-bottom: 10px; }
          .fw_al_006_slide > div > h1 { font-size: 25px; margin-bottom: 10px; }
          .fw_al_006_slide > div > h4 { font-size: 20px; margin-bottom: 10px; }
          .fw_al_006_slide > a {
            font-size: 11px;
            margin: 10px 0 0 0;
            padding: 5px 10px;
          }
          .ps_control_bfradius .carousel-control { display: none; }
        }

        @media (min-width: 481px) and (max-width: 600px) {
          .fw_al_006_slide { padding: 10px; text-align: center; }
          .fw_al_006_slide_right { left: 0; text-align: center; }
          .fw_al_006_slide > div { padding: 0 0 10px 10px; }
          .fw_al_006_slide_right > div { padding: 0 10px 10px 0; }
          .fw_al_006_slide > div > h3 { font-size: 30px; }
          .fw_al_006_slide > div > h1 { font-size: 45px; }
        }

        @media (min-width: 601px) and (max-width: 767px) {
          .fw_al_006_slide { padding: 10px 10px; }
          .fw_al_006_slide > div { padding: 0 0 10px 10px; }
        }

        @media (min-width: 768px) and (max-width: 889px) {
          .fw_al_006_slide { top: 17%; }
        }

        /*--------------------------------------------*/
        /* SLIDING TIMING FUNCTIONS
        /*--------------------------------------------*/
        .ps_ease .carousel-item{ transition-timing-function: ease; }
        .ps_easeInOut .carousel-item{ transition-timing-function: ease-in-out; }
        .ps_speedy .carousel-item{ transition-timing-function: cubic-bezier(0,1,0,1); }
        .ps_slowSpeedy .carousel-item{ transition-timing-function: cubic-bezier(0.3,1,0,1); }
        .ps_easeOutInCubic .carousel-item{ transition-timing-function: cubic-bezier(0.22,0.81,0.01,0.99); }
        .ps_swing .carousel-item{ transition-timing-function: cubic-bezier(.02,.01,.47,1); }
        .ps_easeOutCubic .carousel-item{ transition-timing-function: cubic-bezier(.215,.61,.355,1); }
        .ps_easeInOutCubic .carousel-item{ transition-timing-function: cubic-bezier(.645,.045,.355,1); }
        .ps_easeOutCirc .carousel-item{ transition-timing-function: cubic-bezier(.075,.82,.165,1); }
        .ps_easeOutExpo .carousel-item{ transition-timing-function: cubic-bezier(.19,1,.22,1); }
        .ps_easeInQuad .carousel-item{ transition-timing-function: cubic-bezier(.55,.085,.68,.53); }
        .ps_easeOutQuad .carousel-item{ transition-timing-function: cubic-bezier(.25,.46,.45,.94); }
        .ps_easeInOutQuad .carousel-item{ transition-timing-function: cubic-bezier(.455,.03,.515,.955); }
        .ps_easeOutQuart .carousel-item{ transition-timing-function: cubic-bezier(.165,.84,.44,1); }
        .ps_easeInOutQuart .carousel-item{ transition-timing-function: cubic-bezier(.77,0,.175,1); }
        .ps_easeOutQuint .carousel-item{ transition-timing-function: cubic-bezier(.23,1,.32,1); }
        .ps_easeInSine .carousel-item{ transition-timing-function: cubic-bezier(.47,0,.745,.715); }
        .ps_easeOutSine .carousel-item{ transition-timing-function: cubic-bezier(.39,.575,.565,1); }
        .ps_easeInOutSine .carousel-item{ transition-timing-function: cubic-bezier(.445,.05,.55,.95); }