.registration, .profile-edit, .login-page{
    text-align: center;
}

.custom-form{
    display: inline-block;
}

.custom-form label{
    margin: 0;
}

.registration .control-group,
.profile-edit .control-group,
.login-page .control-group{
    margin-bottom: 5px;
}

.registration .control-label,
.profile-edit .control-label,
.login-page .control-label{
    text-align: left;
    min-width: 300px;
}

.registration .control-label,
.profile-edit .control-label,
.registration .controls,
.profile-edit .controls,
.login-page .control-label,
.login-page .controls{
    display: inline-block;
}

.custom-form input, .custom-form textarea{
    padding: 5px 10px;
    font-size: 18px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#member-registration fieldset:last-of-type legend, #member-profile fieldset:last-of-type legend{
    display: none;
}

#member-registration fieldset:first-of-type,
#member-profile fieldset:first-of-type,
#users-profile-core{
    margin-bottom: 0;
}

.custom-form-btns{
    text-align: right;
}

.custom-form-btns .btn.btn-primary{
    width: 39%;
}

.custom-form-btns .btn{
    width: 15%;
}

.reset .custom-form .btn.btn-primary, .remind .custom-form .btn.btn-primary{
    width: 365px;
}

.reset .custom-form fieldset, .remind .custom-form fieldset{
    margin-bottom: 5px;
}

#member-registration textarea{
    vertical-align: text-top;
}

.login-page .btn.btn-primary, .login-page #remember{
    width: 310px;
}

.login-page .nav-tabs.nav-stacked{
    text-align: left;
    border-bottom: 0;
    margin-top: 10px; 
    float: right;
}

.login-page .nav-tabs.nav-stacked > li > a{
    padding: 0;
}

.login-page .nav-tabs.nav-stacked > li > a:hover{
    background: none;
    border-color: transparent;
}

@media (max-width: 767px) {
    .registration .control-label, .profile-edit .control-label, .registration .controls, .profile-edit .controls, .login-page .control-label, .login-page .controls{
        display: block;
    }

    .custom-form input, .custom-form textarea, .custom-form-btns .btn.btn-primary, .custom-form-btns .btn{
        width: 100%;
    }

    .registration .control-label, .profile-edit .control-label, .login-page .control-label{
        text-align: center;
        max-width: 100%;
    }

    .custom-form-btns{
        text-align: center;
    }
}



/* info */
/* =========================
   ZA SHOUTO SECTION
========================= */

.za-shouto-section {
    padding: 30px;
    /* background: #050f29; */
    color: #ffffff;
    position: relative;
}


.section-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: left;
    letter-spacing: 1px;
    color: #fff;
    font-family: Inter;
}

/* =========================
   GRID
========================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* =========================
   CARD STYLE
========================= */

.glow-card {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
        border: 1px solid transparent;
    background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
      transition: .3s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    /* background-color: rgb(15 23 42 / 0.8); */
}

/* Neon border glow */
.glow-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* Image */
.glow-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

.card-content p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Button */

 .glow-card .btn-outline {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 13px;
    color: #00ffff;
    border: 1px solid #00ffff;
    border-radius: 999px !important;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
}

.glow-card .btn-outline:hover {
    background: linear-gradient(45deg,#00ffff,#ff00ff);
    color: #fff;
    border-color: transparent;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        text-align: center;
        font-size: 36px;
    }
}

#content {
    position: relative;
    overflow: hidden;
    

}

/* info end */

/* ================================
  Slider SECTION
================================ */


/* ================================
   EVENTS SECTION
================================ */
/* ================================
   EVENTS SECTION
================================ */

.events-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.events-container {
    margin: auto;
}

/* ================================
   HEADER
================================ */

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
}



/* ================================
   SLIDER CONTROLS
================================ */

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    border: 1px solid #00e1ff;
    background: rgba(0,225,255,0.08);
    backdrop-filter: blur(6px);
    color: #00e1ff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
     box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgb(15 23 42 / 0.8);
}

.slider-controls button:hover {
    background: #00e1ff;
    color: #000;
    box-shadow: 0 0 15px #00e1ff;
}

/* ================================
   SLIDER
================================ */

.events-slider {
    overflow: hidden;
}

.events-track {
    display: flex;
    gap: 0px;
    transition: transform 0.5s ease-in-out;
}

.event-item {
    margin-bottom: 10px;

}

/* EVENT CARD */
/* ================================
   LAPTOP (≤1200px)
================================ */

@media (max-width: 1200px) {

    .event-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }

}

/* ================================
   TABLET (≤992px)
   → 2 cards
================================ */

@media (max-width: 992px) {

    .events-header h2 {
        font-size: 36px;
    }

    .event-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }

}

/* ================================
   MOBILE & SMALL TABLET (≤768px)
   → swipe slider
================================ */

@media (max-width: 768px) {

    .events-section {
        padding: 80px 0;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .slider-controls {
        align-self: flex-end;
    }

    /* enable swipe */
    .events-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    

    .event-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }

    /* hide scrollbar */
    .events-slider::-webkit-scrollbar {
        display: none;
    }
}

/* ================================
   SMALL MOBILE (≤480px)
================================ */

@media (max-width: 480px) {

    .events-header h2 {
        font-size: 28px;
    }

    .event-card {
        flex: 0 0 88%;
    }

    .event-card img {
        height: 200px;
    }

    .event-content {
        padding: 20px;
    }

    .slider-controls button {
        width: 42px;
        height: 42px;
    }
}
/* SLider end */

/* SECTION BACKGROUND */
.info-sections {
    padding: 100px 0;
}

/* Container width control */
.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.info-sections h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 50px;
}

/* GRID FIX */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  
}

/* CARD */
.info-card {
    border-radius: 18px;
    overflow: hidden;
    background: #10244d;
    transition: .3s ease;
box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgb(15 23 42 / 0.8);
background-color: #132A5A;
border: 1px solid transparent;
    background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
}

/* IMAGE */
.info-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.info-content {
    padding: 22px;
    background: #132a5a;
}

.info-content h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: #9fb3d1;
    margin-bottom: 18px;
}

/* BUTTON */
.outline-btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 20px;
    /* border: 1px solid #00e0ff; */
    color: #00e0ff;
    font-size: 12px;
    text-decoration: none;
    transition: .3s;
    border: 1px solid transparent;
    background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
}

.outline-btn:hover {
    background: #00e0ff;
    color: #081c3a;
}

/* Subtle hover */
.info-card:hover {
    transform: translateY(-6px);
}

.info-sections {
    padding: 100px 0;
    background: #06112D url("images/banners/background.png") no-repeat center center;
    background-size: cover;
}

/* Map */

/* =========================
   VISITOR SECTION
========================= */

.visitor-section {
  padding: 0px 0;
}

.visitor-container {
  margin: 0 auto;
  margin-top: 0px;
}



/* .visitor-grid {
  display: flex;
  gap: 20px;
  align-items: center;
} */

.visitor-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: .3s ease;
        background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgb(15 23 42 / 0.8);
    border-radius: 20px;
    margin: 10px;
}

/* MAP */
.visitor-map {
    flex: 1;
    border-radius: 16px 3px 0px 16px;
    overflow: hidden;
    width: 100%;
    transition: .3s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15), 0 0 40px rgba(217, 70, 239, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgb(15 23 42 / 0.8);
        background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
}
/* .visitor-map {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
} */

.visitor-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* INFO */

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.info-item i {
  color: #00e1ff;
  font-size: 18px;
  margin-top: 6px;
}

.info-item h4 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.info-item p {
  color: #cbd5e1;
}


/* =========================
   GRADIENT STRIP
========================= */

.footer-gradient-strip {
  height: 2px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(
    90deg,
    #00d4ff 0%,
    #06b6d4 25%,
    #8b5cf6 50%,
    #d946ef 75%,
    #ff00ff 100%
  );
  box-shadow: 0 0 8px rgba(217, 70, 239, 0.5);
}



/* =========================
   RESPONSIVE DESIGN
========================= */


/* ✅ TABLET */
@media (max-width: 992px) {

  .visitor-grid {
    gap: 40px;
  }

  .visitor-map iframe {
    height: 360px;
  }

  .visitor-title {
    font-size: 30px;
  }

}


/* ✅ SMALL TABLET */
@media (max-width: 768px) {

  .visitor-container {
    margin-top: -120px;
  }

  .visitor-grid {
    flex-direction: column;
    gap: 35px;
  }

  .visitor-map iframe {
    height: 320px;
  }

  .visitor-title {
    font-size: 26px;
    text-align: center;
    margin-top: 80px;
  }

  .info-item {
    gap: 15px;
  }

}


/* ✅ MOBILE */
@media (max-width: 480px) {

  .visitor-section {
    padding: 80px 0;
  }

  .visitor-container {
    margin-top: -60px;
  }

  .visitor-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .visitor-map iframe {
    height: 260px;
  }

  .info-item {
    gap: 12px;
    margin-bottom: 22px;
  }

  .info-item i {
    font-size: 16px;
  }

  .info-item h4 {
    font-size: 15px;
  }

  .info-item p {
    font-size: 14px;
  }

}


/* ✅ EXTRA SMALL DEVICES */
@media (max-width: 360px) {

  .visitor-map iframe {
    height: 230px;
  }

  .visitor-title {
    font-size: 20px;
  }

}
/* Footer */
/* =========================
   FOOTER BASE
========================= */

.site-footer {
  background: #090C1A;
  padding: 22px 0;
  color: #fff;
}

.footer-inner {
  width: 1200px;
  max-width: 92%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO */

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* MENU */

.footer-menu {
  display: flex;
  gap: 28px;
}

.footer-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .5px;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-menu a:hover {
  color: #00e1ff;
}


/* SOCIAL ICONS */


.footer-socials{
  display:flex;
  gap:12px;
  float: right;
  margin-top: -39px;
  margin-left: -75px;
}

.footer-socials a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50% !important;
  border:1px solid rgba(34,211,238,.4);
  color:#22d3ee;
  transition:.3s;
  border: 1px solid transparent;
  background: url(../assets/canvas/images/roundborder.png) transparent 50% / cover no-repeat !important;
}

.footer-socials a:hover{
  background:#22d3ee;
  color:#041028;
  box-shadow:0 0 12px #22d3ee;
}



/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

  .footer-menu {
    gap: 20px;
  }

}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .footer-menu a {
    font-size: 13px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

}

 
/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

  .site-footer {
    padding: 18px 0;
  }

  .footer-menu a {
    font-size: 12px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
    margin-left: 6px;
  }

  .footer-logo img {
    height: 24px;
  }

}


/* =========================
   EXTRA SMALL
========================= */

@media (max-width: 360px) {

  .footer-menu a {
    font-size: 11px;
  }

}

/* =========================
   HEDER BAR TOP CENTER MANU
========================= */

#header.transparent-header {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 999;
    border-bottom: none;
}

#header.transparent-header #header-wrap {
    display: flex;
    justify-content: center;
}



#header.transparent-header .container {
    background: rgb(28 52 80 / 55%);
    padding: 12px 0px 12px 0px;
    border-radius: 60px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 15px 40px rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1100px;
}






#header.sticky-header #logo, #header.sticky-header #logo .mod-custom, #header.dark.sticky-header.transparent-header #header-wrap:not(.not-dark) {
   
    background: none !important;
}

#header #logo img {
    width: 75% !important;
}

/* =========================
   Footer - 1
========================= */
.footer-widgets-wrap {
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: space-between; /* left-logo / center-menu / right-icons */
    text-align: center;
}
.footer_top_1 {
    display: flex;
    align-items: center;
}
.footer-widgets-wrap .col-sm-6,
.footer-widgets-wrap .col-md-6 {
    display: flex;
    justify-content: center;
}
.footer-widgets-wrap ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-widgets-wrap .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.col-sm-3.col-md-3.footer_top_1 {
    display: flex;
}
.footer_top_1 .footerModules {
    margin-left: 0px !important;
}

#footer.dark, .dark #footer {
    background-color: #030c22 !important;
    color: #CCC;
    border-top-color: rgba(0, 0, 0, 0.2);
}
/* Event */

.quick-booking-wrapper {
    position: absolute;
    margin-top: -140px;
    z-index: 20;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 50px;
    border-radius: 30px;
    /* background: linear-gradient(135deg,#0b1835,#122a52); */
    background: linear-gradient(#050f29, #050f29) padding-box, linear-gradient(90deg, #06b6d4, #d946ef) border-box;
    /* box-shadow: 0 30px 70px rgba(0,0,0,0.6);
    border: 1px solid rgba(0,255,255,0.15); */
    box-shadow:
  0 0 20px rgba(6, 182, 212, 0.15),
  0 0 40px rgba(217, 70, 239, 0.1);
    background-color: rgb(15 23 42 / 0.8);
    
}

.quick-booking-title {
    color: #CBC3D3;
    font-family: 'Inter',sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.quick-booking-form {
    display: flex;
    gap: 25px;
    align-items: center;
}

.qb-field {
    flex: 1;
}

/* .qb-field select {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #081633;
    color: #fff;
    font-size: 15px;
    outline: none;
} */

.qb-field select {
    width: 100%;
    height: 40px;
    padding: 0 45px 0 45px;
    border-radius: 40px !important;
    background:
        url('../assets/canvas/images/lang-arrow.png') right 20px center / 14px no-repeat,
        url('../assets/canvas/images/eventicon.png') left 20px center / 16px no-repeat,
        url('../assets/canvas/images/event-select-background.png') center / cover no-repeat;
    color: #868B98;
    font-size: 15px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
}

/* Options */
.qb-field select option {
  background-color: #0f1b2d;
  color: #ffffff;
}

/* Selected option */
.qb-field select option:checked {
  background-color: #153944;
  color: #00c8d6;
}



.qb-button {
    flex: 1;
}

.qb-button button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,255,255,0.4);
}
.qb-button button {
    height: 40px;
    padding: 0 45px;
    border-radius: 50px !important;
    border: none;
    background: url('../assets/canvas/images/takeaseat.png') transparent 50% / cover no-repeat !important;
    width: 100%;
    
    cursor: pointer;
    transition: .3s ease;

    color: #37636E;
     
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header-wrapper .homepage-events {
    left: 52%;
    transform: translateX(-50%);
    width: 1100px;
    padding: 28px 0px;

    /* top: 500px; */
}

@media (max-width: 768px) {
    .quick-booking-form {
        flex-direction: column;
    }
    .qb-button button {
        width: 100%;
    }
}


.qb-field input[type="date"] {
    width: 100%;
    height: 40px;
    padding: 0 45px 0 45px;
    border-radius: 40px !important;
    /* background: #081633; */
    color: #868B98;
    font-size: 15px;
    outline: none;
    background: 
        url('../assets/canvas/images/lang-arrow.png') right 20px center / 14px no-repeat,
        url('../assets/canvas/images/dateicon.png') left 20px center / 16px no-repeat,
        url('../assets/canvas/images/date-select-background.png') center / cover no-repeat !important;
}

.qb-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.qb-field input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.qb-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* /*  */
.no-event-message {
    margin-top: 8px;
    font-size: 14px;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.no-event-message.show {
    opacity: 1;
}



/* =========================
   4-image deasing CSS
========================= */

/* ===================================
   SIDE NEON DECORATION (FINAL FIX)
   =================================== */

#content {
    position: relative;
    overflow: visible !important;
    min-height: 600px; /* ensure enough height for decorations */
}

/* Keep content above */
.main_content_inner {
    position: relative;
    z-index: 2;
}

/* LEFT SIDE (pseudo elements) */
#content::before,
#content::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: url("/images/body-4-image/neon_arrow_upscaled-Photoroom.png") no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* LEFT TOP */
#content::before {
    left: -200px;
    top: 180px;
}

/* LEFT BOTTOM */
#content::after {
    left: -200px;
    bottom: 0;
}

/* RIGHT SIDE (real div elements) */
.neon-right-top,
.neon-right-bottom {
    position: absolute;
    width: 500px;
    height: 500px;
    background: url("/images/body-4-image/neon_arrow_upscaled-Photoroom.png") no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* RIGHT TOP */
.neon-right-top {
    right: -200px;
    top: 180px;
    transform: rotate(180deg);
}

/* RIGHT BOTTOM */
.neon-right-bottom {
    right: -200px;
    bottom: 0;
    transform: rotate(180deg);
}

/* Hide mobile */
@media (max-width: 992px) {
    #content::before,
    #content::after,
    .neon-right-top,
    .neon-right-bottom {
        display: none;
    }
}


/* ===================================
   main_content
   =================================== */


@media (min-width: 1280px) {
    .container {
        max-width: 1100px !important;
    }
}


 