*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:#050505;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    /* =========================
        HEADER
    ========================== */

    header{
      width:100%;
      position:fixed;
      top:0;
      left:0;
      z-index:999;
      background:rgba(0,0,0,0.45);
      background:rgba(0,0,0,.85);
-webkit-backdrop-filter:blur(12px);
backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(255,0,60,0.25);
    }

    .navbar{
      max-width:1300px;
      margin:auto;
      padding:10px 30px;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    /* LOGO */

.logo img{
    width: 70px;
    height:auto;
    display:block;
    object-fit:contain;
}

/* TABLET */

@media(max-width:991px){

    .logo img{
        width: 50px;
    }

}

/* MOBILE */

@media(max-width:600px){

    .logo img{
        width: 50px;
    }

}

    /* NAVIGATION */

    .nav-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links li a{
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    font-weight:500;
    transition:0.3s;
    position:relative;
    text-decoration:none;
}

.nav-links li a:hover{
    color:#ff0055;
    text-shadow:0 0 10px #ff0055;
}

.nav-links li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-7px;
    width:0%;
    height:2px;
    background:#ff0055;
    transition:all .4s ease;
    box-shadow:
    0 0 12px rgba(255,0,76,0.4);
}

.nav-links li a:hover::after{
    width:100%;
}

/* LOGIN BUTTON */

.login-btn{
    padding:12px 26px;
    border-radius:50px;
    background:#ff0055;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    text-decoration:none;
    transition:0.4s;
    box-shadow:
    0 0 12px rgba(255,0,85,0.5);
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 0 15px #ff0055,
    0 0 35px rgba(255,0,85,0.7);
}

    /* MOBILE MENU */

    .menu-toggle{
      display:none;
      color:#fff;
      font-size:30px;
      cursor:pointer;
    }

    

    /* =========================
        HERO SLIDER
    ========================== */

    .hero-slider{
      width:100%;
      height:100vh;
      position:relative;
      overflow:hidden;
    }

    .slide{
      position:absolute;
      width:100%;
      height:100%;
      top:0;
      left:0;
      background-size:cover;
      background-position:center;
      opacity:0;
      visibility:hidden;
      transform:scale(1.1);
      transition:all 1.2s ease;
    }

    .slide.active{
      opacity:1;
      visibility:visible;
      transform:scale(1);
    }

    /* OVERLAY */

    .overlay{
      position:absolute;
      width:100%;
      height:100%;
      background:
      linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
      );
      z-index:1;
    }

    /* CONTENT */

    .hero-content{
      position:relative;
      z-index:5;
      width:100%;
      height:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      text-align:center;
      padding:0 20px;
    }

    .sub-title{
      color:#ff0055;
      font-size:18px;
      letter-spacing:4px;
      text-transform:uppercase;
      margin-bottom:18px;
      text-shadow:0 0 10px #ff0055;
    }

    .hero-content h1{
      color:#fff;
      font-size: 38px;
      line-height:1.2;
      font-family:'Oswald',sans-serif;
      text-transform:uppercase;
      max-width:1100px;
      margin-bottom:22px;
     text-shadow:0 0 10px #ff0055;
    }

    .hero-content p{
      max-width:780px;
      color:#ddd;
      font-size:17px;
      line-height:1.8;
    
    }

    .hero-list{
  width:100%;
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:35px;
  flex-wrap:wrap;
}

.hero-list a{
  color:#fff;
  font-size: 17px;
  font-family:'Oswald',sans-serif;
  letter-spacing:1px;
  transition:all .4s ease;
}

.hero-list a:hover{
  color:#ff0055;
text-shadow:0 0 10px #ff0055;
}

/* MOBILE */

@media(max-width:600px){

  .hero-list{
    gap:18px;
    flex-direction:column;
  }

  .hero-list a{
    font-size:16px;
  }

}

   
    /* =========================
        SLIDER BUTTONS
    ========================== */

    .slider-btn{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      width:55px;
      height:55px;
      border-radius:50%;
      border:none;
      cursor:pointer;
      z-index:20;
      background:rgba(255,0,60,0.15);
      color:#fff;
      font-size:26px;
      backdrop-filter:blur(10px);
      transition:all .4s ease;
      box-shadow:0 0 12px rgba(255,0,76,0.15);
    }

    .slider-btn:hover{
      background:#ff003c;
      box-shadow:
      0 0 10px #ff003c,
      0 0 20px #ff003c,
      0 0 40px #ff003c;
    }

    .prev-btn{
      left:25px;
    }

    .next-btn{
      right:25px;
    }

    /* DOTS */

    .slider-dots{
      position:absolute;
      bottom:40px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:12px;
      z-index:20;
    }

    .dot{
      width:14px;
      height:14px;
      border-radius:50%;
      background:#777;
      cursor:pointer;
      transition:all .4s ease;
    }

    .dot.active{
      background:#ff003c;

     box-shadow:0 0 12px rgba(255,0,76,0.15);
    }


.main-content{
    text-align:center;
   background:
      linear-gradient(to bottom,#12122e);
    padding:45px;
    border:1px solid rgba(255,0,76,0.15);
    box-shadow:
    0 0 20px rgba(255,0,76,0.08);
}

.main-content p{
    color:#ffffff;
    font-size:15px;
    line-height: 1.8;
}

/* TABLET */

@media(max-width:991px){

    .main-content p{
        font-size:16px;
        line-height:1.9;
    }

}

/* MOBILE */

@media(max-width:600px){

    .main-content p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:18px;
    }

}

    /* =========================
        SECTION
    ========================== */

    .attraction-section{
      padding:80px 5%;
      background:
      linear-gradient(to bottom,#12122e,#0a0a18);
    }

    .section-title{
      text-align:center;
      margin-bottom:20px;
    }

    .section-title h2{
      font-size: 36px;
      font-family:'Oswald',sans-serif;
      text-transform:uppercase;
      color:#fff;
      letter-spacing:2px;
      position:relative;
        text-shadow:
  0 0 10px #ff0055;

    }

    .section-title h2::after{
      content:'DAMAN GAMING';
      position:absolute;
      left:50%;
      top:28px;
      transform:translateX(-50%);
      font-size:55px;
      opacity:0.04;
      white-space:nowrap;
    }

    /* =========================
        GRID
    ========================== */

    .attraction-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:35px;
      align-items:center;
    }

    .attraction-card{
      text-align:center;
      cursor:pointer;
      transition:all .4s ease;
    }

    .attraction-card:hover{
      transform:translateY(-8px);
    }

    /* IMAGE */

    .circle-img{
      width:170px;
      height:170px;
      border-radius:50%;
      overflow:hidden;
      margin:auto;
      border:3px solid #ff0055;
      margin-bottom: 30px;
      box-shadow:0 0 12px rgba(255,0,76,0.15);
      transition:all .4s ease;
    }

    .circle-img img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .attraction-card:hover .circle-img{
      transform:scale(1.05);
    }

    /* HEADING */

    .attraction-card h3{
      margin-top:18px;
      font-size:20px;
      font-family:'Oswald',sans-serif;
      text-transform:uppercase;
      line-height:1.2;
      color: #fff;
      text-shadow:
      0 0 10px rgba(255,0,76,0.4);
    }

    /* =========================
        POPUP
    ========================== */

    .popup{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:rgba(0,0,0,0.8);
      z-index:9999;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      visibility:hidden;
      transition:all .4s ease;
      padding:20px;
    }

    .popup.active{
      opacity:1;
      visibility:visible;
    }

    .popup-box{
      width:100%;
      max-width:1100px;
      background:#232347;
      border-radius:18px;
      overflow:hidden;
      position:relative;
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      gap:25px;
      border:1px solid rgba(255,0,76,0.3);
     box-shadow:0 0 12px rgba(255,0,76,0.15);
      transform:scale(0.8);
      transition:all .4s ease;
    }

    .popup.active .popup-box{
      transform:scale(1);
    }

    /* CLOSE */

    .close-popup{
      position:absolute;
      top:12px;
      right:18px;
      font-size:32px;
      color:#fff;
      cursor:pointer;
      z-index:10;
    }

    /* CONTENT */

    .popup-content{
      padding:35px;
      overflow-y:auto;
      max-height:85vh;
    }

    .popup-sub{
      color:#ff0055;
      text-transform:uppercase;
      font-size:14px;
      margin-bottom:10px;
      letter-spacing:2px;
      text-shadow:
      0 0 10px #ff004c;
    }

    .popup-title{
      font-size:40px;
      font-family:'Oswald',sans-serif;
      text-transform:uppercase;
      margin-bottom:25px;
      color: #d7d7e8;
      text-shadow:
      0 0 10px rgba(255,0,76,0.5);
    }

    .popup-content p{
      font-size:16px;
      line-height:2;
      color:#d7d7e8;
    }

    /* IMAGE */

    .popup-image{
      height:100%;
    }

    .popup-image img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

   

    /* =========================
      ABOUT SECTION
  ========================== */

  .dmg-about-sec{
    width:100%;
    padding:70px 5%;
    background:#050505;
  }

  .dmg-about-box{
    max-width:1200px;
    margin:auto;
    background:#131322;
    border-radius:16px;
    padding:35px;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:35px;
    align-items:center;

    box-shadow:
    0 0 15px rgba(255,0,76,0.12);
  }

  /* =========================
      HEADING
  ========================== */

  .dmg-about-content h2{
    color:#fff;
    font-size:36px;
    line-height:1.2;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:25px;
    text-shadow:
  0 0 10px #ff0055;
  }

  .dmg-about-content h2 span{
    color:#ff0055;

    
  }

  /* =========================
      CONTENT
  ========================== */

  .dmg-about-content p{
    color:#d9d9ea;
    font-size:15px;
    line-height:1.9;
    margin-bottom:18px;
  }

  /* =========================
      IMAGE
  ========================== */

  .dmg-about-image{
    width:100%;
    height:320px;
    border-radius:12px;
    overflow:hidden;
    border:2px solid rgba(255,0,76,0.2);
    box-shadow:
    0 0 15px rgba(255,0,76,0.18);
  }

  .dmg-about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
  }

  .dmg-about-image:hover img{
    transform:scale(1.05);
  }

  /* =========================
    RESPONSIVE DESIGN
========================== */

/* =========================
    TABLET
========================== */

@media(max-width:991px){

  /* HEADER */
/* 
  .navbar{
    padding:16px 20px;
  } */


  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top: 75px;
    left:0;
    width:100%;
    background:#0c0c12;
    flex-direction:column;
    padding:25px 0;
    display:none;
    gap:22px;
    border-top:1px solid rgba(255,0,60,0.2);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li a{
    font-size:14px;
  }

  /* HERO SECTION */

  .hero-slider{
    height:90vh;
  }

  .hero-content{
    padding:0 25px;
  }

  .sub-title{
    font-size:14px;
    letter-spacing:3px;
  }

  .hero-content h1{
    font-size:42px;
    line-height:1.2;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.8;
    max-width:650px;
  }

  .hero-btns{
    gap:15px;
  }

  .btn{
    padding:13px 28px;
    font-size:14px;
  }

  /* SLIDER BUTTON */

  .slider-btn{
    width:48px;
    height:48px;
    font-size:22px;
  }

  .prev-btn{
    left:15px;
  }

  .next-btn{
    right:15px;
  }

  /* STAR ATTRACTION */

  .attraction-section{
    padding:70px 5%;
  }

  .section-title{
    margin-bottom:45px;
  }

  .section-title h2{
    font-size:30px;
  }

  .section-title h2::after{
    font-size:30px;
    top:24px;
  }

  .attraction-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .circle-img{
    width:150px;
    height:150px;
  }

  .attraction-card strong{
    font-size:22px;
  }

  /* POPUP */

  .popup-box{
    grid-template-columns:1fr;
    max-width:700px;
  }

  .popup-image{
    height:320px;
  }

  .popup-content{
    padding:30px;
  }

  .popup-title{
    font-size:30px;
  }

  .popup-content p{
    font-size:15px;
    line-height:1.9;
  }

  /* ABOUT SECTION */

  .dmg-about-sec{
    padding:60px 5%;
  }

  .dmg-about-box{
    grid-template-columns:1fr;
    gap:28px;
    padding:28px;
  }

  .dmg-about-content h2{
    font-size:30px;
  }

  .dmg-about-content p{
    font-size:15px;
    line-height:1.9;
  }

  .dmg-about-image{
    height:280px;
  }

}

/* =========================
    MOBILE
========================== */

@media(max-width:600px){

  /* HEADER */

  header{
    padding:0;
  }

  /* .navbar{
    padding:14px 16px;
  } */


  .menu-toggle{
    font-size:28px;
  }

  .nav-links{
    top:70px;
    padding:20px 0;
    gap:18px;
  }

  .nav-links li a{
    font-size:13px;
  }

  /* HERO SECTION */

  .hero-slider{
    height:85vh;
  }

  .hero-content{
    padding:0 15px;
  }

  .sub-title{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:12px;
  }

  .hero-content h1{
    font-size:28px;
    line-height:1.3;
    margin-bottom:15px;
  }

  .hero-content p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:25px;
  }

  .hero-btns{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }

  .btn{
    width:100%;
    max-width:240px;
    padding:12px 22px;
    font-size:13px;
  }

  /* SLIDER BUTTON */

  .slider-btn{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .prev-btn{
    left:8px;
  }

  .next-btn{
    right:8px;
  }

  .slider-dots{
    bottom:20px;
    gap:8px;
  }

  .dot{
    width:11px;
    height:11px;
  }

  /* STAR ATTRACTION */

  .attraction-section{
    padding:55px 4%;
  }

  .section-title{
    margin-bottom:35px;
  }

  .section-title h2{
    font-size:26px;
  }

  .section-title h2::after{
    font-size:32px;
    top:18px;
  }

  .attraction-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .circle-img{
    width:120px;
    height:120px;
  }

  .attraction-card strong{
    font-size:20px;
    margin-top:14px;
  }

  /* POPUP */

  .popup{
    padding:15px;
  }

  .popup-box{
    border-radius:14px;
  }

  .popup-content{
    padding:22px;
  }

  .popup-title{
    font-size:24px;
    margin-bottom:18px;
  }

  .popup-sub{
    font-size:12px;
  }

  .popup-content p{
    font-size:13px;
    line-height:1.8;
  }

  .popup-image{
    height:220px;
  }

  .close-popup{
    font-size:28px;
    top:8px;
    right:14px;
  }

  /* ABOUT SECTION */

  .dmg-about-sec{
    padding:50px 4%;
  }

  .dmg-about-box{
    padding:22px;
    gap:22px;
    border-radius:14px;
  }

  .dmg-about-content h2{
    font-size:24px;
    margin-bottom:18px;
  }

  .dmg-about-content p{
    font-size:13px;
    line-height:1.8;
    margin-bottom:15px;
  }

  .dmg-about-image{
    height:220px;
    border-radius:10px;
  }

}

/* =========================
      SECTION
  ========================== */

  .dgh-choose-wrapper{
    width:100%;
    padding:80px 5%;
    background:
    linear-gradient(to bottom,#090909,#141428);
  }

  .dgh-choose-container{
    max-width:1250px;
    margin:auto;
  }

  /* =========================
      HEADING
  ========================== */

  .dgh-choose-heading{
    text-align:center;
    margin-bottom:60px;
  }

  .dgh-choose-heading h2{
    color:#fff;
    font-size:36px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:25px;
      text-shadow:
  0 0 10px #ff0055;

   
  }

  .dgh-choose-heading p{
    max-width:950px;
    margin:auto;
    color:#d6d6e7;
    font-size:16px;
    line-height:2;
  }

  /* =========================
      FEATURE GRID
  ========================== */

  .dgh-feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
    margin-bottom:70px;
  }

  /* =========================
      FEATURE CARD
  ========================== */

  .dgh-feature-card{
    background:#17172d;
    border-radius:18px;
    padding:35px 28px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,0,76,0.12);
    box-shadow:
    0 0 15px rgba(255,0,76,0.08);
  }

  .dgh-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 12px rgba(255,0,76,0.15);
  }

  /* ICON */

  .dgh-feature-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#ff0055;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;

   
  }

  /* TITLE */

  .dgh-feature-card strong{
    color:#fff;
    font-size: 18px;
    line-height:1.4;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:15px;
  }

  /* TEXT */

  .dgh-feature-card p{
    color:#cfcfe2;
    font-size:15px;
    line-height:1.9;
  }

  /* =========================
      MEMORY BOX
  ========================== */

  .dgh-memory-box{
    background:#1b1b34;
    border-radius:20px;
    padding:45px;
    border:1px solid rgba(255,0,76,0.15);
    box-shadow:
    0 0 20px rgba(255,0,76,0.08);
  }

  .dgh-memory-box h2{
    color:#fff;
    font-size:36px;
    line-height:1.3;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:25px;
      text-shadow:
  0 0 10px #ff0055;
  }

  .dgh-memory-box p{
    color:#d7d7ea;
    font-size:16px;
    line-height:2;
    margin-bottom:22px;
  }

  /* =========================
      RESPONSIVE
  ========================== */

  @media(max-width:991px){

    .dgh-choose-wrapper{
      padding:70px 5%;
    }

    .dgh-choose-heading h2{
      font-size:30px;
    }

    .dgh-memory-box h2{
      font-size:30px;
    }

    .dgh-feature-grid{
      grid-template-columns:repeat(2,1fr);
    }

  }

  @media(max-width:600px){

    .dgh-choose-wrapper{
      padding:55px 4%;
    }

    .dgh-choose-heading{
      margin-bottom:40px;
    }

    .dgh-choose-heading h2{
      font-size:28px;
      margin-bottom:18px;
    }

    .dgh-choose-heading p{
      font-size:14px;
      line-height:1.8;
    }

    .dgh-feature-grid{
      grid-template-columns:1fr;
      gap:20px;
      margin-bottom:45px;
    }

    .dgh-feature-card{
      padding:25px 20px;
    }

    .dgh-feature-icon{
      width:58px;
      height:58px;
      font-size:24px;
      margin-bottom:18px;
    }

    .dgh-feature-card strong{
      font-size:14px;
    }

    .dgh-feature-card p{
      font-size:14px;
      line-height:1.8;
    }

    .dgh-memory-box{
      padding:28px 22px;
    }

    .dgh-memory-box h2{
      font-size:24px;
      margin-bottom:18px;
    }

    .dgh-memory-box p{
      font-size:14px;
      line-height:1.8;
      margin-bottom:16px;
    }

  }

  
  .dgc-cafe-wrapper{
    width:100%;
    padding:80px 5%;
    background:
    linear-gradient(to bottom,#080808,#131323);
  }

  .dgc-cafe-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
    background:#17172b;
    padding:40px;
    border-radius:18px;
    border:1px solid rgba(255,0,76,0.15);
    box-shadow:
    0 0 20px rgba(255,0,76,0.08);
  }

  /* =========================
      CONTENT
  ========================== */

  .dgc-cafe-content h2{
    color:#fff;
    font-size:36px;
    line-height:1.3;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    margin-bottom:25px;
  text-shadow:
  0 0 10px #ff0055;
  }

  .dgc-cafe-content p{
    color:#d7d7e8;
    font-size:15px;
    line-height:2;
    margin-bottom:20px;
  }

  /* =========================
      SLIDER
  ========================== */

  .dgc-cafe-slider{
    position:relative;
    width:100%;
    height:420px;
    border-radius:16px;
    overflow:hidden;
    border:2px solid rgba(255,0,76,0.2);
    box-shadow:
    0 0 15px rgba(255,0,76,0.15);
  }

  .dgc-cafe-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:0.5s;
  }

  .dgc-cafe-slide.active{
    opacity:1;
  }

  .dgc-cafe-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  /* =========================
      BUTTONS
  ========================== */

  .dgc-slide-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:rgba(255,0,76,0.2);
    color:#fff;
    font-size:18px;
    backdrop-filter:blur(5px);
    transition:all .4s ease;
    z-index:5;
  }

  .dgc-slide-btn:hover{
    background:#ff004c;
  box-shadow:0 0 12px rgba(255,0,76,0.15);
  }

  .dgc-prev-btn{
    left:15px;
  }

  .dgc-next-btn{
    right:15px;
  }

  /* =========================
      RESPONSIVE
  ========================== */

  @media(max-width:991px){

    .dgc-cafe-container{
      grid-template-columns:1fr;
      padding:30px;
    }

    .dgc-cafe-content h2{
      font-size:30px;
    }

    .dgc-cafe-slider{
      height:350px;
    }

  }

  @media(max-width:600px){

    .dgc-cafe-wrapper{
      padding:55px 4%;
    }

    .dgc-cafe-container{
      padding:22px;
      gap:25px;
    }

    .dgc-cafe-content h2{
      font-size:24px;
      margin-bottom:18px;
    }

    .dgc-cafe-content p{
      font-size:14px;
      line-height:1.8;
      margin-bottom:16px;
    }

    .dgc-cafe-slider{
      height:240px;
      border-radius:12px;
    }

    .dgc-slide-btn{
      width:38px;
      height:38px;
      font-size:15px;
    }

  }

  /* =========================
      OFFERS SECTION
  ========================== */

  .dgx-offer-section{
    width:100%;
    padding:80px 5%;
    background:
    linear-gradient(to bottom,#090909,#151526);
  }

  .dgx-offer-container{
    max-width:1200px;
    margin:auto;
  }

  /* HEADING */

  .dgx-offer-heading{
    text-align:center;
    margin-bottom:45px;
  }

  .dgx-offer-heading h2{
    color:#fff;
    font-size:36px;
    margin-bottom:18px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
      text-shadow:
  0 0 10px #ff0055;
  }

  .dgx-offer-heading p{
    color:#d7d7e8;
    font-size:16px;
    line-height:1.9;
    max-width:950px;
    margin:auto;
  }

  /* OFFER CARD */

  .dgx-offer-card{
    display:flex;
    gap:22px;
    align-items:flex-start;
    background:#1d1d35;
    border-radius:20px;
    padding:22px;
    margin-bottom:25px;
    border:1px solid rgba(255,0,76,0.12);
    transition:all .4s ease;
    box-shadow:
    0 0 15px rgba(255,0,76,0.08);
  }

  .dgx-offer-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 25px rgba(255,0,76,0.15);
  }

  /* SMALL IMAGE */

  .dgx-card-image{
    width:140px;
    min-width:140px;
    height:140px;
    overflow:hidden;
    border-radius:16px;
    border:2px solid rgba(255,0,76,0.2);
  }

  .dgx-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
  }

  .dgx-offer-card:hover .dgx-card-image img{
    transform:scale(1.08);
  }

  /* CONTENT */

  .dgx-card-content{
    flex:1;
  }

  .dgx-card-content strong{
    display:block;
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
    text-shadow:
    0 0 8px rgba(255,0,76,0.4);
  }

  .dgx-card-content p{
    color:#d7d7e8;
    font-size:15px;
    line-height:1.9;
  }

  /* LAST TEXT */

  .dgx-last-offer-text{
    margin-top:30px;
    background:#1d1d35;
    padding:22px;
    border-radius:18px;
    border:1px solid rgba(255,0,76,0.12);
  }

  .dgx-last-offer-text p{
    color:#d7d7e8;
    font-size:15px;
    line-height:1.9;
  }

  /* =========================
      GALLERY SECTION
  ========================== */

  .dgx-gallery-section{
    width:100%;
    padding:0 5% 80px;
    background:#151526;
  }

  .dgx-gallery-heading{
    text-align:center;
    margin-bottom:45px;
  }

  .dgx-gallery-heading h2{
    color:#fff;
    font-size:36px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
     text-shadow:
  0 0 10px #ff0055;
  }

  /* GRID */

  .dgx-gallery-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }

  /* ITEM */

  .dgx-gallery-item{
    height:270px;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    position:relative;
    border:2px solid rgba(255,0,76,0.12);
    transition:0.5s;
    box-shadow:
    0 0 15px rgba(255,0,76,0.08);
  }

  .dgx-gallery-item:hover{
    transform:translateY(-8px);
  }

  .dgx-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
  }

  .dgx-gallery-item:hover img{
    transform:scale(1.1);
  }

  

  /* =========================
      TABLET
  ========================== */

  @media(max-width:991px){

    .dgx-gallery-grid{
      grid-template-columns:repeat(2,1fr);
    }

    .dgx-offer-heading h2,
    .dgx-gallery-heading h2{
      font-size:30px;
    }

  }

  /* =========================
      MOBILE
  ========================== */

  @media(max-width:600px){

    .dgx-offer-section{
      padding:55px 4%;
    }

    .dgx-gallery-section{
      padding:0 4% 55px;
    }

    .dgx-offer-heading h2,
    .dgx-gallery-heading h2{
      font-size:28px;
    }

    .dgx-offer-heading p{
      font-size:14px;
      line-height:1.8;
    }

    .dgx-offer-card{
      flex-direction:column;
      padding:18px;
      border-radius:16px;
    }

    .dgx-card-image{
      width:100%;
      min-width:100%;
      height:200px;
    }

    .dgx-card-content strong{
      font-size:20px;
    }

    .dgx-card-content p,
    .dgx-last-offer-text p{
      font-size:14px;
      line-height:1.8;
    }

    .dgx-gallery-grid{
      grid-template-columns:1fr;
      gap:16px;
    }

    .dgx-gallery-item{
      height:220px;
      border-radius:14px;
    }

    .dgx-close-popup{
      font-size:34px;
      top:10px;
      right:18px;
    }

  }

  /* =========================
    VISIT SECTION
========================== */

.dgh-visit-section{
  width:100%;
  padding:0 5% 80px;
  background:#191933;
}

.dgh-visit-box{
  max-width:1100px;
  margin:auto;
  background:#232343;
  border-radius:22px;
  padding:45px;
  text-align:center;
  border:1px solid rgba(255,0,85,0.15);
  box-shadow:
  0 0 20px rgba(255,0,85,0.08);
}

.dgh-visit-box h2{
  color:#fff;
  font-size: 36px;
  margin-bottom:18px;
  text-transform:uppercase;
  font-family:'Oswald',sans-serif;
  text-shadow:
  0 0 10px #ff0055;
}

.dgh-visit-box p{
  color:#d7d7e8;
  font-size:15px;
  line-height:1.9;
}

.dgh-visit-info{
  margin:35px 0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.dgh-info-item{
  background:#2a2a4c;
  padding:18px;
  border-radius:15px;
}

.dgh-info-item strong{
  display:block;
  color:#ff0055;
  margin-bottom:7px;
}

.dgh-info-item span{
  color:#fff;
}

.dgh-last-text{
  margin-bottom:35px;
}

.dgh-visit-btn{
  display:inline-block;
  padding:14px 38px;
  border-radius:50px;
  background:#ff0055;
  color:#fff;
  text-decoration:none;
  font-weight:600;
 box-shadow:0 0 12px rgba(255,0,76,0.15);
  transition:all .4s ease;
}

.dgh-visit-btn:hover{
  transform:translateY(-4px);
}

/* =========================
    FAQ SECTION
========================== */

.dgh-faq-section{
  width:100%;
  padding:80px 5%;
  background:
  linear-gradient(to bottom,#191933,#10101e);
}

.dgh-faq-heading{
  text-align:center;
  margin-bottom:55px;
  position:relative;
}

.dgh-faq-heading span{
  position:absolute;
  left:50%;
  top:-35px;
  transform:translateX(-50%);
  font-size:50px;
  font-weight:700;
  color:rgba(255,255,255,0.03);
  text-transform:uppercase;
  font-family:'Oswald',sans-serif;
}

.dgh-faq-heading h2{
  position:relative;
  z-index:2;
  color:#fff;
  font-size:46px;
  text-transform:uppercase;
  font-family:'Oswald',sans-serif;
  text-shadow:
  0 0 10px #ff0055,
  0 0 20px #ff0055;
}

.dgh-faq-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.dgh-faq-card{
  display:flex;
  gap:20px;
  background:#232343;
  padding:28px;
  border-radius:18px;
  border:1px solid rgba(255,0,85,0.15);
  transition:all .4s ease;
}

.dgh-faq-card:hover{
  transform:translateY(-5px);
}

.dgh-faq-number{
  width:60px;
  min-width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ff0055;
  color:#fff;
  font-size:20px;
  font-weight:700;
box-shadow:0 0 12px rgba(255,0,76,0.15);
}

.dgh-faq-content h3{
  color:#fff;
  font-size:21px;
  margin-bottom:12px;
  line-height:1.5;
  font-family:'Oswald',sans-serif;
}

.dgh-faq-content p{
  color:#d7d7e8;
  font-size:15px;
  line-height:1.9;
}

/* =========================
    TABLET
========================== */

@media(max-width:991px){

  .dgh-faq-grid,
  .dgh-visit-info{
    grid-template-columns:1fr;
  }


  .dgh-faq-heading h2,
  .dgh-visit-box h2{
    font-size:30px;
  }

 
}

/* =========================
    MOBILE
========================== */

@media(max-width:600px){

 
  .dgh-faq-section{
    padding:55px 4%;
  }

  .dgh-visit-section{
    padding:0 4% 55px;
  }

  
  .dgh-faq-heading span{
    font-size:50px;
    top:-18px;
  }
 
  .dgh-faq-heading h2,
  .dgh-visit-box h2{
    font-size:28px;
  }

  .dgh-testimonial-card{
    width:300px;
    padding:20px;
  }

  .dgh-faq-content p,
  .dgh-visit-box p{
    font-size:14px;
    line-height:1.8;
  }

  .dgh-faq-card{
    flex-direction:column;
    padding:20px;
  }

  .dgh-faq-content h3{
    font-size:18px;
  }

  .dgh-faq-number{
    width:52px;
    min-width:52px;
    height:52px;
    font-size:17px;
  }

  .dgh-visit-box{
    padding:25px 20px;
  }

}

/* =========================
    TESTIMONIAL SECTION
========================== */

.dgh-testimonial-section{
  width:100%;
  padding:90px 5%;
  overflow:hidden;
  background:
  linear-gradient(to bottom,#111122,#1a1a35);
}

/* HEADING */

.dgh-testimonial-heading{
  text-align:center;
  margin-bottom:70px;
  position:relative;
}

.dgh-testimonial-heading span{
  position:absolute;
  left:50%;
  top:-38px;
  transform:translateX(-50%);
  font-size:50px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  color:rgba(255,255,255,0.03);
  letter-spacing:3px;
  white-space:nowrap;
}

.dgh-testimonial-heading h2{
  position:relative;
  z-index:2;
  color:#fff;
  font-size:36px;
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
    text-shadow:
  0 0 10px #ff0055;
}

/* =========================
    SLIDER
========================== */

.dgh-review-slider{
  width:100%;
  max-width:1250px;
  margin:auto;
  overflow:hidden;
  position:relative;
}

.dgh-review-track{
  display:flex;
  gap:25px;
  width:max-content;

  animation:dghAutoSlide 22s linear infinite;
}

@keyframes dghAutoSlide{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* =========================
    CARD
========================== */

.dgh-review-card{
  width:500px;
  background:#1f1f3c;
  border-radius:14px;
  padding:40px 35px;
  position:relative;
  border:1px solid rgba(255,0,85,0.12);
  overflow:hidden;
}

/* QUOTE */

.dgh-review-card::before{
  content:"❝";
  position:absolute;
  top:15px;
  right:25px;
  font-size:120px;
  line-height:1;
  color:rgba(111,79,255,0.12);
  font-family:serif;
}

/* NAME */

.dgh-review-card strong{
  color:#fff;
  font-size:24px;
  text-transform:uppercase;
  margin-bottom:12px;
  font-family:'Oswald',sans-serif;
  letter-spacing:1px;
  display:block;
  text-align:center;
}


/* TEXT */

.dgh-review-card p{
  color:#fff;
  font-size:18px;
  line-height:1.9;
  text-align:center;
  font-style:italic;
}

/* DOTS */

.dgh-review-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:35px;
}

.dgh-review-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  opacity:0.5;
}

.dgh-review-dots span.active{
  opacity:1;
  background:#fff;
}

/* =========================
    MOBILE
========================== */

@media(max-width:991px){

  .dgh-review-card{
    width:420px;
  }

  .dgh-testimonial-heading h2{
    font-size:30px;
  }

  .dgh-testimonial-heading span{
    font-size:70px;
  }

}

@media(max-width:600px){

  .dgh-testimonial-section{
    padding:60px 4%;
  }

  .dgh-review-card{
    width:300px;
    padding:28px 20px;
  }

  .dgh-review-card strong{
    font-size:22px;
  }

  .dgh-review-role{
    font-size:13px;
  }

  .dgh-review-follow{
    font-size:12px;
    margin-bottom:22px;
  }

  .dgh-review-card p{
    font-size:14px;
    line-height:1.8;
  }

  .dgh-testimonial-heading h2{
    font-size:28px;
  }

  .dgh-testimonial-heading span{
    font-size:45px;
    top:-18px;
  }

}

/* =========================
      ess PAGE
========================= */

.dgh-page{
    width:100%;
    min-height:100vh;
    margin-top: 50px;
    padding:90px 5%;
    background:
    linear-gradient(to bottom,#0d0d1f,#0d0d0f);
}

.dgh-container{
    max-width:1200px;
    margin:auto;
    background:#232343;
    padding:55px;
    border-radius:24px;
    border:1px solid rgba(255,0,85,0.15);
    box-shadow:
    0 0 20px rgba(255,0,85,0.08);
    transition:all .4s ease;
}

.dgh-container:hover{
    transform:translateY(-4px);
}

/* =========================
      HEADING
========================= */

.dgh-container h1{
    color:#fff;
    font-size: 42px;
    text-align:center;
    margin-bottom:40px;
    text-transform:uppercase;
    font-family:'Oswald',sans-serif;
    letter-spacing:2px;
    position:relative;
    text-shadow:0 0 10px #ff0055;
}

.dgh-container h1::after{
   
    position:absolute;
    left:50%;
    top:-35px;
    transform:translateX(-50%);
    font-size:50px;
    opacity:0.04;
    white-space:nowrap;
    pointer-events:none;
}

/* =========================
      CONTENT
========================= */

.dgh-container p{
    color:#d7d7e8;
    font-size:17px;
    line-height:2;
    margin-bottom:28px;
    text-align:left;
}

/* =========================
      EMAIL BOX
========================= */

.dgh-contact-box{
    margin-top:35px;
    padding:25px;
    background:#2c2c52;
    border-radius:18px;
    border:1px solid rgba(255,0,85,0.15);
    text-align:center;
}

.dgh-contact-box strong{
    display:block;
    color:#ff0055;
    font-size:20px;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
    letter-spacing:1px;
}

.dgh-contact-box span{
    color:#fff;
    font-size:17px;
    word-break:break-word;
}

/* =========================
      CONTACT INFO
========================= */

.dgh-contact-info{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.dgh-contact-card{
    background:#2c2c52;
    padding:24px;
    border-radius:18px;
     border:1px solid rgba(255,0,85,0.15);
    transition:0.4s;
}

.dgh-contact-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 0 15px rgba(255,0,85,0.15);
}

.dgh-contact-card strong{
    display:block;
    color:#ff0055;
    font-size:18px;
    margin-bottom:10px;
    font-family:'Oswald',sans-serif;
    letter-spacing:1px;
}

.dgh-contact-card span{
    color:#fff;
    font-size:16px;
    word-break:break-word;
}

/* =========================
      LAST TEXT
========================= */

.dgh-last-text{
    margin-top:35px;
    text-align:center !important;
}

/* =========================
      CONTACT FORM
========================= */

.dgh-contact-form-box{
    margin-top:50px;
    background:#2b2b52;
    padding:35px;
    border-radius:22px;
    border:1px solid rgba(255,0,85,0.15);
    box-shadow:
    0 0 15px rgba(255,0,85,0.08);
}

/* =========================
      FORM HEADING
========================= */

.dgh-contact-form-box h2{
    color:#fff;
    font-size:34px;
    margin-bottom:28px;
    text-align:center;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:1px;
    text-shadow:
    0 0 10px #ff0055;
}

/* =========================
      FORM GRID
========================= */

.dgh-contact-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

/* =========================
      INPUTS
========================= */

.dgh-input-box{
    width:100%;
}

.dgh-input-box input,
.dgh-input-box textarea{
    width:100%;
    background:#1c1c38;
    border:1px solid rgba(255,255,255,0.08);
    padding:16px 18px;
    border-radius:14px;
    color:#fff;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:0.3s;
}

.dgh-input-box input:focus,
.dgh-input-box textarea:focus{
    border-color:#ff0055;
    box-shadow:
    0 0 10px rgba(255,0,85,0.25);
}

.dgh-input-box input::placeholder,
.dgh-input-box textarea::placeholder{
    color:#bdbdd3;
}

/* =========================
      TEXTAREA
========================= */

.dgh-textarea-box{
    grid-column:1 / -1;
}

.dgh-input-box textarea{
    height:180px;
    resize:none;
}

/* =========================
      BUTTON
========================= */

.dgh-form-btn{
    grid-column:1 / -1;
    height:58px;
    width: 250px;
   margin: auto;
    border:none;
    border-radius:50px;
    background:#ff0055;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
    box-shadow:
    0 0 10px #ff0055,
   
}

.dgh-form-btn:hover{
    transform:translateY(-4px);
    background:#ff0055;
}

/* =========================
      TABLET
========================= */

@media(max-width:991px){

  
    .dgh-contact-info{
        grid-template-columns:1fr;
    }

    .dgh-contact-form{
        grid-template-columns:1fr;
    }

    .dgh-contact-form-box h2{
        font-size:28px;
    }

}

/* =========================
      MOBILE
========================= */

@media(max-width:600px){

    .dgh-contact-card{
        padding:18px;
    }

    .dgh-contact-card strong{
        font-size:16px;
    }

    .dgh-contact-card span{
        font-size:14px;
    }

    .dgh-contact-form-box{
        padding:22px;
        border-radius:18px;
    }

    .dgh-contact-form-box h2{
        font-size:22px;
        margin-bottom:20px;
    }

    .dgh-input-box input,
    .dgh-input-box textarea{
        padding:14px 16px;
        font-size:14px;
        border-radius:12px;
    }

    .dgh-input-box textarea{
        height:150px;
    }

    .dgh-form-btn{
        height:52px;
        font-size:14px;
    }

}


/* =========================
      TABLET
========================= */

@media(max-width:991px){

    .dgh-container{
        padding:35px;
    }

    .dgh-container h1{
        font-size:42px;
    }

    .dgh-container h1::after{
        font-size:65px;
        top:-25px;
    }

    .dgh-container p{
        font-size:15px;
        line-height:1.9;
    }

     
    .dgh-policy-list li{
        font-size:15px;
        line-height:1.9;
    }

}

/* =========================
      MOBILE
========================= */

@media(max-width:600px){

    .dgh-page{
        padding:60px 4%;
        margin-top: 80px;
    }

    .dgh-container{
        padding:25px;
        border-radius:18px;
    }

    .dgh-container h1{
        font-size:30px;
        margin-bottom:28px;
    }

    .dgh-container h1::after{
        font-size:42px;
        top:-12px;
    }

    .dgh-container p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:18px;
    }

      .dgh-contact-box{
        padding:18px;
    }

    .dgh-contact-box strong{
        font-size:16px;
    }

    .dgh-contact-box span{
        font-size:14px;
    }

     .dgh-container p,
    .dgh-policy-list li{
        font-size:14px;
        line-height:1.8;
    }

      .dgh-container h2{
        font-size:20px;
        margin-top:28px;
    }

}

/* =========================
      LIST
========================= */

.dgh-policy-list{
    margin-bottom:20px;
    padding-left:22px;
}

.dgh-policy-list li{
    color:#ffffff;
    margin-bottom:14px;
    line-height:1.9;
    font-size:16px;
}

/* =========================
      SUB HEADINGS
========================= */

.dgh-container h2{
    color:#ff0055;
    font-size:28px;
    margin-top:40px;
    margin-bottom:18px;
    font-family:'Oswald',sans-serif;
    letter-spacing:1px;
    
}

/* =========================
      FOOTER
========================= */

.dgh-footer{
    width:100%;
    background:
    linear-gradient(to bottom,#111122,#090912);
    padding:70px 5% 25px;
    border-top: 1px solid #ff0055;
}

.dgh-footer-container{
    max-width:1300px;
    margin:auto;
}

/* =========================
      TOP AREA
========================= */

.dgh-footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:45px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* =========================
      ABOUT
========================= */

.dgh-footer-about h2{
    color:#fff;
    font-size:36px;
    margin-bottom:20px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:1px;
    text-shadow:0 0 10px #ff003c;
}

.dgh-footer-about p{
    color:#cfcfe4;
    font-size:15px;
    line-height:1.9;
}

/* =========================
      LINKS
========================= */

.dgh-footer-links h3,
.dgh-footer-contact h3{
    color:#ff0055;
    font-size:22px;
    margin-bottom:20px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dgh-footer-links ul{
    list-style:none;
}

.dgh-footer-links ul li{
    margin-bottom:14px;
}

.dgh-footer-links ul li a{
    color:#e1e1f2;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
    position:relative;
}

.dgh-footer-links ul li a:hover{
    color:#ff0055;
    padding-left:6px;
}

/* =========================
      CONTACT
========================= */

.dgh-footer-contact p{
    color:#d7d7e8;
    font-size:15px;
    line-height:1.9;
    margin-bottom:12px;
}

/* =========================
      BOTTOM
========================= */

.dgh-footer-bottom{
    text-align:center;
    padding-top:25px;
}

.dgh-footer-bottom p{
    color:#bdbdd3;
    font-size:14px;
    letter-spacing:0.5px;
}

/* =========================
      TABLET
========================= */

@media(max-width:991px){

    .dgh-footer-top{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

}

/* =========================
      MOBILE
========================= */

@media(max-width:600px){

    .dgh-footer{
        padding:55px 4% 20px;
    }

    .dgh-footer-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .dgh-footer-about h2{
        font-size:28px;
    }

    .dgh-footer-links h3,
    .dgh-footer-contact h3{
        font-size:20px;
    }

    .dgh-footer-about p,
    .dgh-footer-contact p,
    .dgh-footer-links ul li a{
        font-size:14px;
        line-height:1.8;
    }

    .dgh-footer-bottom p{
        font-size:13px;
    }

}

/* =========================
      AUTHOR PAGE
========================= */

.dgh-author-page{
    width:100%;
    padding:90px 5%;
    background:
    linear-gradient(to bottom,#0d0d1f,#171731);
    margin-top: 50px;
}

.dgh-author-container{
    max-width:1200px;
    margin:auto;
    background:#232343;
    border-radius:24px;
    padding:50px;
    border:1px solid rgba(255,0,85,0.12);
    box-shadow:
    0 0 20px rgba(255,0,85,0.08);
}

/* =========================
      TOP SECTION
========================= */

.dgh-author-top{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:50px;
}

/* IMAGE */

.dgh-author-image{
    width:100%;
    height:380px;
    border-radius:22px;
    overflow:hidden;
    border:2px solid rgba(255,0,85,0.15);
    box-shadow:
    0 0 18px rgba(255,0,85,0.12);
}

.dgh-author-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */

.dgh-author-content h1{
    color:#fff;
    font-size: 38px;
    line-height:1.2;
    margin-bottom:22px;
    font-family:'Oswald',sans-serif;
    text-transform:uppercase;
    letter-spacing:2px;
    text-shadow:
    0 0 10px #ff0055;
}

.dgh-author-content p{
    color:#d7d7e8;
    font-size:16px;
    line-height:2;
}

/* =========================
      SECTION
========================= */

.dgh-author-section{
    margin-top:40px;
}

.dgh-author-section h2{
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
    font-family:'Oswald',sans-serif;
    letter-spacing:1px;
    text-shadow:
    0 0 8px rgba(255,0,85,0.5);
}

.dgh-author-section p{
    color:#d7d7e8;
    font-size:16px;
    line-height:2;
    margin-bottom:20px;
}

/* =========================
      LIST
========================= */

.dgh-author-list{
    margin-top:25px;
    display:grid;
    gap:18px;
}

.dgh-author-list-item{
    background:#2d2d55;
    padding:20px 24px;
    border-radius:16px;
    border-left:4px solid #ff0055;
    color:#fff;
    font-size:15px;
    line-height:1.8;
    transition:0.4s;
}

.dgh-author-list-item:hover{
    transform:translateY(-4px);
    box-shadow:
    0 0 15px rgba(255,0,85,0.12);
}

/* =========================
      MOBILE
========================= */

@media(max-width:991px){

    .dgh-author-top{
        grid-template-columns:1fr;
    }

    .dgh-author-image{
        height:340px;
    }

    .dgh-author-content h1{
        font-size:30px;
    }

}

@media(max-width:600px){

    .dgh-author-page{
        padding:60px 4%;
    }

    .dgh-author-container{
        padding:25px;
        border-radius:18px;
    }

    .dgh-author-image{
        height:260px;
        border-radius:16px;
    }

    .dgh-author-content h1{
        font-size:24px;
    }

    .dgh-author-section h2{
        font-size:20px;
    }

    .dgh-author-content p,
    .dgh-author-section p,
    .dgh-author-list-item{
        font-size:14px;
        line-height:1.8;
    }

    .dgh-author-list-item{
        padding:16px;
    }

}

