*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      overflow-x:hidden;
      font-family:'Roboto',sans-serif;
      background:black;
    }

  
.page-banner{
  position:relative;
  width:100%;
  height:540px;
  background:url('Assets/banner/197469_68849f9d9b104be68b83a2ab969b60f2~mv2 (1).jpeg');
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

/* OVERLAY */

.page-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
}

/* CONTENT */

.page-banner-content{
  position:relative;
  z-index:5;
  margin-top:120px;
}

/* TITLE */

.page-banner-content h1{
  color:#fff;
  font-size:90px;
  font-family:'Anton',sans-serif;
  letter-spacing:2px;
  margin-bottom:18px;
}

/* BREADCRUMB */

.breadcrumb-text{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}

.breadcrumb-text a,
.breadcrumb-text span{
  color:#fff;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
}

.breadcrumb-text a:hover{
  color:#F8DC57;
}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

  .page-banner{
    height:420px;
  }

  .page-banner-content{
    margin-top:100px;
    padding:0 15px;
  }

  .page-banner-content h1{
    font-size:48px;
  }

  .breadcrumb-text a,
  .breadcrumb-text span{
    font-size:16px;
  }

}

/* =========================
   STICKY HEADER
========================== */

.sticky-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
      top: 0px !important;
    backdrop-filter: blur(8px);
}

/* =========================
   TOP BAR
========================== */

.top-bar{
  padding:14px 70px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:transparent;
}

.top-bar span{
  color:#d9d9d9;
  font-size:14px;
  font-weight:500;
}

/* SOCIAL ICONS */

.social-icons a{
  color:#fff;
  margin-left:20px;
  font-size:16px;
  transition:.3s;
  text-decoration:none;
}

.social-icons a:hover{
  color:#F8DC57;
}

/* =========================
   NAVBAR
========================== */

.custom-navbar{
  padding:22px 70px;
  background:transparent;
  
}

/* LOGO */

.navbar-brand{
  padding:30px 0;
}

.navbar-brand img{
  width:160px;
}

/* NAV LINKS */

.nav-link{
  color:#fff !important;
  font-size:17px;
  font-weight:700;
  margin:0 18px;
  transition:.3s;
  position:relative;
}

.nav-link:hover{
  color:#F8DC57 !important;
}

/* BUTTON */

.member-btn{
  background:#fff;
  color:#111;
  border:none;
  padding:18px 38px;
  font-size:14px;
  font-weight:800;
  transition:.3s;
}

.member-btn:hover{
  background:#F8DC57;
  color:#fff;
}

/* =========================
   DROPDOWN MENU
========================== */

.custom-dropdown{
  position:relative;
}

/* MAIN DROPDOWN */

.custom-dropdown-menu{
  background:#000 !important;
  border:none !important;
  min-width:230px;
  padding:10px 0;
  border-radius:6px;
  margin-top:12px;
  box-shadow:none !important;
  
}

/* DROPDOWN ITEMS */

.custom-dropdown-menu .dropdown-item{
  color:#fff !important;
  font-size:14px;
  font-weight:600;
  padding:9px 18px;
  transition:.3s;
  background:transparent !important;
  line-height:1.3;
}

/* HOVER EFFECT */

.custom-dropdown-menu .dropdown-item:hover{
  color:#F8DC57 !important;
  padding-left:24px;
  background:transparent !important;
}

/* REMOVE BOOTSTRAP WHITE */

.dropdown-menu{
  --bs-dropdown-bg:#000;
  --bs-dropdown-border-color:transparent;
  --bs-dropdown-link-hover-bg:transparent;
}

/* REMOVE DEFAULT ARROW */

.dropdown-toggle::after{
  display:none;
}

/* DESKTOP HOVER */

@media(min-width:992px){

  .custom-dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

  /* TOP BAR */

  .top-bar{
    display:none !important;
  }

  /* NAVBAR */

  .custom-navbar{
    padding:15px 20px;
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(10px);
  }

  /* LOGO */

  .navbar-brand{
    padding:0;
  }

  .navbar-brand img{
    width:120px;
  }

  /* TOGGLER */

  .navbar-toggler{
    border:none;
    box-shadow:none !important;
  }

  .navbar-toggler:focus{
    box-shadow:none;
  }

  /* MOBILE MENU */

  .navbar-collapse{
    background:#000;
    padding:25px;
    margin-top:20px;
    border-radius:10px;
  }

  .nav-link{
    margin:14px 0;
  }

  /* MOBILE DROPDOWN */

  .custom-dropdown-menu{
    min-width:100%;
    padding:6px 0;
    background:#111 !important;
    border-radius:8px;
  }

  .custom-dropdown-menu .dropdown-item{
    font-size:13px;
    padding:8px 15px;
  }

  .custom-dropdown-menu .dropdown-item:hover{
    padding-left:22px;
  }

  /* BUTTON */

  .member-btn{
    display:none;
  }

}    

/* =========================
   BLOG SECTION
========================= */


    a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* =========================
   BLOG DETAILS SECTION
========================= */

.blog-details{
  padding:70px 0;
  background: black;

}

/* =========================
   MAIN IMAGE
========================= */

.main-image{
  overflow:hidden;
}

.main-image img{
  width:100%;
  height:420px;
  object-fit:cover;
}

/* =========================
   ARTICLE CONTENT
========================= */

.article-date{
  font-size:14px;
  color:#d6d6d6;
  margin:18px 0 12px;
  font-family:'Anton',sans-serif;
  text-transform:uppercase;
}

.article-title{
  font-family:'Anton',sans-serif;
  font-size:38px;
  line-height:1.3;
  margin-bottom:24px;
  color:#f2f2f2;
}

.article-text{
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,0.82);
  margin-bottom:22px;
}

.article-subtitle{
  font-family:'Anton',sans-serif;
  font-size:18px;
  margin-bottom:12px;
  color:#fff;
}

/* =========================
   INNER IMAGE
========================= */

.inner-image{
  margin:30px 0;
  overflow:hidden;
}

.inner-image img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* =========================
   SHARE BUTTON
========================= */

.share-btn{
  width:150px;
  height:48px;
  border:none;
  background:#2f2b33;
  color:#fff;
  font-size:14px;
  font-family:'Anton',sans-serif;
  text-transform:uppercase;
  position:relative;
  margin-top:15px;
  transition:.3s;
}

.share-btn::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background: #F8DC57;
}

.share-btn:hover{
  background:#F8DC57;
    color:#111;

}

/* =========================
   SIDEBAR
========================= */

.sidebar{
  padding-left:25px;
}

/* SIDEBAR TITLE */

.sidebar-title{
  font-family:'Anton',sans-serif;
  font-size:22px;
  margin-bottom:22px;
  text-transform:uppercase;
  color:#fff;
}

/* =========================
   RECENT ARTICLE
========================= */

.recent-item{
  display:flex;
  gap:12px;
  margin-bottom:22px;
}

.recent-img{
  width:85px;
  height:75px;
  overflow:hidden;
  flex-shrink:0;
}

.recent-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.recent-item:hover .recent-img img{
  transform:scale(1.08);
}

.recent-content h5{
  font-family:'Anton',sans-serif;
  font-size:14px;
  line-height:1.4;
  margin-bottom:5px;
  color:#fff;
}

.recent-content span{
  font-size:12px;
  color:rgba(255,255,255,0.75);
}

/* =========================
   COMMENTS
========================= */

.comment-item{
  display:flex;
  gap:12px;
  margin-bottom:24px;
}

.comment-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
}

.comment-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.comment-content h6{
  font-size:13px;
  margin-bottom:4px;
  font-weight:600;
  color:#fff;
}

.comment-time{
  font-size:11px;
  color:#b8b8b8;
  margin-bottom:6px;
}

.comment-text{
  font-size:12px;
  line-height:1.8;
  color:rgba(255,255,255,0.8);
  margin-bottom:6px;
}

.reply{
  color:#F8DC57;
  font-size:11px;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   COMMENT FORM
========================= */

.comment-form input,
.comment-form textarea{
  width:100%;
  background:#2a2730;
  border:none;
  padding:12px 14px;
  margin-bottom:14px;
  color:#fff;
  font-size:13px;
  outline:none;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder{
  color:rgba(255,255,255,0.6);
}

.comment-form textarea{
  height:120px;
  resize:none;
}

.comment-form button{
  width:150px;
  height:45px;
  border:none;
  background:#F8DC57;
  color:#111;
  font-size:13px;
  font-family:'Anton',sans-serif;
  text-transform:uppercase;
  transition:.3s;
}

.comment-form button:hover{
  background:#F8DC57;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

  .article-title{
    font-size:32px;
  }

}

@media(max-width:991px){

  .sidebar{
    padding-left:0;
    margin-top:45px;
  }

  .main-image img{
    height:360px;
  }

}

@media(max-width:768px){

  .blog-details{
    padding:50px 0;
  }

  .main-image img{
    height:300px;
  }

  .article-title{
    font-size:28px;
  }

  .article-text{
    font-size:14px;
  }

  .inner-image img{
    height:220px;
  }

}

@media(max-width:576px){

  .blog-details{
    padding:40px 0;
  }

  .main-image img{
    height:220px;
  }

  .article-date{
    font-size:12px;
  }

  .article-title{
    font-size:22px;
    line-height:1.4;
  }

  .article-text{
    font-size:13px;
    line-height:1.8;
  }

  .article-subtitle{
    font-size:16px;
  }

  .sidebar-title{
    font-size:18px;
  }

  .recent-item{
    gap:10px;
    margin-bottom:18px;
  }

  .recent-img{
    width:75px;
    height:65px;
  }

  .recent-content h5{
    font-size:13px;
  }

  .recent-content span{
    font-size:11px;
  }

  .comment-avatar{
    width:36px;
    height:36px;
  }

  .comment-content h6{
    font-size:12px;
  }

  .comment-text{
    font-size:11px;
  }

  .share-btn,
  .comment-form button{
    width:140px;
    height:42px;
    font-size:12px;
  }

}




/* =========================
       SCROLL BUTTON
    ==========================*/

    .scroll-top{
      position:fixed;
      right:20px;
      bottom:20px;
      width:65px;
      height:65px;
      border-radius:50%;
      background:#000;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      font-size:28px;
      z-index:999;
      transition:0.5s;
    }

    .scroll-top:hover{
      background:#F8DC57;
      color:#fff;
      transform:translateY(-8px);
    }






/* =========================
   FOOTER
========================= */

.footer{
  position:relative;

  background:
  rgb(19, 19, 19);

  padding-top:55px;

  overflow:hidden;
}

/* CONTAINER */

.container{
  width:78%;
  max-width:1100px;
  margin:auto;
}

/* =========================
   WRAPPER
========================= */

.footer-wrapper{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1.2fr;

  border:1px solid rgba(255,255,255,0.08);

  position:relative;
}

/* COLUMN */

.footer-col{
  padding:40px 26px;

  border-right:1px solid rgba(255,255,255,0.08);
}

/* REMOVE LAST BORDER */

.footer-col:last-child{
  border-right:none;
}

/* LEFT BORDER */

.contact-col{
  position:relative;
}

.contact-col::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:3px;
  height:100%;

  background:#F8DC57;
}

/* =========================
   TITLE
========================= */

.footer-col h3{
  color:#fff;

  font-family:'Anton',sans-serif;

  font-size:18px;

  margin-bottom:20px;
}

/* =========================
   TEXT
========================= */

.footer-col p{
  color:#fff;

  font-size:13px;

  line-height:1.7;

  margin-bottom:14px;
}

/* ORANGE TEXT */

.footer-col p span{
  color:#F8DC57;
  font-weight:700;
}

/* =========================
   LINKS
========================= */

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a{
  color:#fff;

  text-decoration:none;

  font-size:13px;

  transition:0.3s;
}

/* HOVER */

.footer-col ul li a:hover{
  color:#F8DC57;
  padding-left:4px;
}

/* =========================
   LOGO
========================= */

.footer-logo{
  display:flex;
  align-items:center;

  gap:10px;

  margin-bottom:16px;
}

.footer-logo i{
  color:#F8DC57;
  font-size:22px;
}

.footer-logo h2{
  color:#fff;

  font-family:'Anton',sans-serif;

  font-size:24px;
}

/* =========================
   btn
========================= */
.footer-btn{
  display:inline-block;
  padding:10px 22px;
  background:#F8DC57;
  color:#111;
  font-size:13px;
  font-weight:700;
  border:none;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s ease;
}
.footer-btn a{
  color: #000;
  text-decoration: none;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
  text-align:center;

  padding:20px 0;

  border:1px solid rgba(255,255,255,0.08);

  border-top:none;
}

.footer-bottom p{
  color:#fff;
  font-size:12px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .footer-wrapper{
    grid-template-columns:1fr 1fr;
  }

  .footer-col:nth-child(2){
    border-right:none;
  }

}

@media(max-width:768px){

  .footer{
    padding-top:40px;
  }

  .container{
    width:90%;
  }

  .footer-wrapper{
    grid-template-columns:1fr;
  }

  .footer-col{
    border-right:none;

    border-bottom:1px solid rgba(255,255,255,0.08);

    padding:30px 20px;
  }

  .footer-col:last-child{
    border-bottom:none;
  }

  .footer-col h3{
    font-size:16px;
  }

  .footer-logo h2{
    font-size:22px;
  }

  .footer-phone span{
    font-size:20px;
  }

}
    
