/* ==============================================
   DinoNode HTML Template - TaitCloud Custom
   ============================================== */

/* -----------------
   1. Root Variables & Global Styles
   ----------------- */
:root {
  --dark-color: var(--dark);
  --semi-dark: var(--light-dark);
  --hover-blue-color: var(--blue);
  --blue-color: var(--bs-blue);
  --secoundary-color: #9ca0d2;
  --primary-color: var(--white);
  --border-color: var(--light);
  --background: #141627;
  --dark: #1c1f37;
  --light-dark: #252a43;
  --white: #fff;
  --light: #cdcfe3;
  --gray: #6d708a;
  --blue: #0195f4;
  --green: #20bf6c;
  --red: #fd5c65;
  --pink: #fd5c65;
  --yellow: #fed230;
  --orange: #fb8230;
  --purple: #a75eea;
}

body {
  background: var(--background);
  font-family: "Poppins", sans-serif;
  color: var(--light);
}

.container-custom {
  max-width: 1420px; /* Note: I chose the larger of the two values you had (1260px and 1420px) */
}

.blue { color: var(--blue); }
.green { color: var(--green); }
.purple { color: var(--purple); }
.orange { color: var(--orange); }
.pink { color: var(--pink); }
.red { color: var(--red); }
.yellow { color: var(--yellow); }

.btn-primary {
  background: var(--blue-color);
  border: 1px solid var(--blue-color);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: var(--hover-blue-color);
  border: 1px solid var(--hover-blue-color);
}

/* -----------------
   2. Loader
   ----------------- */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1faee;
  --outer-line-color: #a8dadc;
  --middle-line-color: #457b9d;
  --inner-line-color: #1d3557;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:100000;
}
.loader {
  display:block;
  position: relative;
  top:50%;
  left:50%;
  width:150px;
  height:150px;
  margin:-75px 0 0 -75px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius:100%;
  animation: spin 2s linear infinite;
  z-index:1000001;
}
.loader:before {
  content:"";
  position: absolute;
  top:4px;
  left:4px;
  right:4px;
  bottom:4px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius:100%;
  animation: spin 3s linear infinite;
}
.loader:after {
  content:"";
  position: absolute;
  top:14px;
  left:14px;
  right:14px;
  bottom:14px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius:100%;
  animation: spin 1.5s linear infinite;
}
.loader-wrapper .loader-section {
  position:fixed;
  top:0;
  background:var(--dark);
  width:51%;
  height:100%;
  z-index:100000;
}
.loader-wrapper .loader-section.section-left { left:0; }
.loader-wrapper .loader-section.section-right { right:0; }

.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform:translateY(-100%);
  transition: all .3s 1s ease-out;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* -----------------
   3. Navigation Bar
   ----------------- */
.navbar-dark {
  padding-top: 30px;
  display: flow-root;
}
.navbar {
  background: var(--dark-color);
  padding-bottom: 1rem;
}
.fixed-top.scrolled {
  transition: background-color 200ms linear, 0.15s padding ease-out, 0.4s margin ease-out, 0.4s border ease-out;
  padding-top: 25px;
  background: rgba(28, 31, 55, 0.9);
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.navbar .navbar-brand {
  font-weight: 500;
  padding: 0;
}
.navbar .navbar-brand img {
	height: 30px;
}
.navbar .navbar-brand h4 {
	font-family: "Poppins", sans-serif;
	color: var(--primary-color);
	text-transform: uppercase;
}
.navbar .navbar-brand span {
  font-weight: 800;
  color: var(--blue);
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
.navbar .navbar-nav .nav-link {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.02rem;
  text-align: center;
}
.navbar-dark .navbar-nav .nav-link {
	color: var(--secoundary-color);
	letter-spacing: 0.01em;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:focus, .navbar .navbar-nav .nav-link:active {
  color: var(--blue);
}
.navbar .navbar-nav .btn {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 20px;
}
.navbar .btn-primary {
	margin-left: 0px;
	box-shadow: none !important;
	outline: none !important;
	padding: 6px 32px;
	border-radius: 6px;
	font-family: "Poppins", sans-serif;
}
/* Dropdowns */
.dropdown-menu {
  background: var(--light-dark);
  border: 1px solid var(--dark);
  padding: 0.6rem;
  box-shadow: 0 0 1.25rem rgba(31,45,61,.05);
}
.dropdown-menu .dropdown-item {
  color: var(--light);
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  padding: 6px 20px;
  font-family: "Poppins", sans-serif;
  transition: all .4s ease 0s;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:focus {
  color: var(--white);
  background: var(--dark-color);
}
.dropdown-menu .dropdown-item span {
	font-size: 12px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	letter-spacing: .02rem;
	transition: all .4s ease 0s;
}
.dropdown-menu .dropdown-item:hover span {
	color: var(--blue-color);
}
.dropdown-large {
	padding: 0;
	overflow: hidden;
}
.dropdown-menu-panel .dropdown-item {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}
.dropdown-menu-panel .dropdown-item span {
  color: var(--gray);
  font-size: 15px;
  font-weight: 400;
}
.dropdown-footer {
	background: var(--blue-color);
}
.dropdown-footer a {
	color: var(--primary-color);
	font-family: "Poppins", sans-serif;
}

@media all and (min-width: 992px) {
  .dropdown-large { min-width: 400px; }
	.navbar .dropdown-menu-end { right:0; left: auto; }
	.navbar .nav-item .dropdown-menu { display:block; opacity: 0; visibility: hidden; transition:.3s; margin-top:0; }
	.navbar .dropdown-menu.fade-up { top:180%; }
	.navbar .nav-item:hover .dropdown-menu { transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
	.dropdown-large { min-width:500px; }
	.navbar .btn-primary { margin-left: 40px; }
}
@media (max-width: 992px) {
  .navbar-dark { background: rgba(28, 31, 55, 0.9); }
  .navbar .navbar-nav .nav-link { line-height: 40px; }
  .navbar .navbar-nav .btn { margin-left: 0px; margin-top: 20px; }
  .navbar .btn-primary { margin-top: 15px; }
}

/* -----------------
   4. Sale Banner
   ----------------- */
.sale_banner {
  background: var(--blue);
  padding: 6px 0;
  color: #fff !important;
  margin-top: -30px;
  margin-bottom: 15px;
}
.sale_banner .sale-l { font-size: 20px; font-weight: 800; }
.sale_banner .sale-i { font-weight:500; font-size:14px; color: #f9f9f9; }
.sale_banner .sale-i span { font-size: 20px; font-weight: 800; color: var(--white); margin-right: 2px; }
.sale_banner .sale-r {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 4px 24px;
  border: 2px dashed var(--white);
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  .sale_banner .sale-l { font-size: 20px; }
  .sale_banner-left, .sale_banner-right { margin:0 auto; }
  .sale_banner .sale-l, .sale_banner .sale_banner-center { margin-bottom:1rem !important; }
  .sale_banner .sale-r { margin-bottom:.6rem !important; }
}
@media (max-width: 410px) {
  .sale_banner .sale-i { font-size: 14px; letter-spacing: -0.04rem; }
  .sale_banner .sale-i span { font-size: 18px; font-weight: 800; }
}

/* -----------------
   5. Hero Section & Slider
   ----------------- */
.hero { /* Generic Hero */
  background: url("../images/hero.webp") no-repeat;
  background-size: cover;
  height: 858px;
  max-height: 100%;
  position: relative;
  z-index: 0;
}
.hero:before {
  position: absolute;
  content: "";
  background: url("../images/shadow.webp");
  width: 1085px;
  height: 1211px;
  right: 0;
  z-index: 1;
}
.hero .hero_content { z-index: 2; }
.hero .hero_content h2 { color: var(--white); font-weight: 800; font-size: 50px; }
.hero .hero_content p { color: var(--light); font-size: 17px; letter-spacing: 0.02rem; }
.hero .hero_content .btn {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}
.hero .hero_content .btn:hover, .hero .hero_content .btn:active, .hero .hero_content .btn:focus {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  box-shadow: 0px 0px 10px 0px rgba(1, 151, 244, 0.4);
}
@media (max-width: 1400px) { .hero { background-position: 60%; } }
@media (max-width: 1200px) { .hero { background-position: 80%; } }
@media (max-width: 992px) { .hero { background-position: 70%; height: 800px; } }
@media (max-width: 768px) { .hero { background-position: 60%; height: 700px; } }
@media (max-width: 576px) {
  .hero { background-position: 70%; }
  .hero .hero_content { text-align: center; }
  .hero .hero_content h2 { font-size: 40px; }
  .hero .hero_content p { font-size: 15px; }
}
/* Advanced Hero Slider */
.hero_section {
    display: block;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
    z-index: 2;
    position: relative;
  	margin-top: 110px;
}
.hero_main {
    display: block;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
  	margin-top: 85px;
}
.hero_content { display: block; z-index: 3; position: relative; }
.hero_content h2 { font-family: "Poppins", sans-serif; color: var(--primary-color); }
.hero_content p { font-family: "Poppins", sans-serif; line-height: 26px; font-size: 20px; }
.hero_section::after {
    content: '';
    width: 100%;
    height: auto;
    top: 0;
    display: block;
    background: url(../img/hero_header.png) no-repeat center top;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

/* -----------------
   6. Page Sections
   ----------------- */
.title, .section_title {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}
.title h4, .section_title h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding: 8px 0;
}
.title p, .section_title p {
  color: var(--light);
  letter-spacing: 0.02rem;
  font-size: 18px;
  font-weight: 300;
}
.section_title h2 span {
	-webkit-text-stroke: 1px var(--primary-color);
	color: transparent;
	letter-spacing: 0px;
}
.section_title h2::before {
  background: rgba(0, 26, 255, .08);
  box-shadow: 0px 0px 20px 0px rgba(0,26,255,0.06);
  border-radius: 0 30px;
  content: "";
  width: 14%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -20px;
  z-index: -1;
}

/* Features */
.features { position: relative; z-index: 2; }
.features .features-box {
  color: var(--light);
  background: var(--dark);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}
.features .features-box:hover { box-shadow: 0px 0px 20px 0px rgba(28, 31, 55, 0.5); }
.features .features-box h2 { color: var(--white); font-weight: 600; font-size: 26px; }
.features .features-box p { font-size: 15px; }

/* Minecraft Section */
.minecraft { background: url("../images/minecraft_bg.webp"); position: relative; clear: both; overflow: hidden; }
.minecraft .minecraft_content { z-index: 2; }
.minecraft .minecraft_content h2 { color: var(--white); font-weight: 600; }
.minecraft .minecraft_content p { color: var(--light); }
.minecraft .minecraft_content .btn { background: var(--blue); border: 1px solid var(--blue); color: var(--white); padding: 8px 42px; font-size: 16px; font-weight: 500; border-radius: 10px; }
.minecraft .minecraft_img { position: relative; }
.minecraft .minecraft_img img { position: relative; bottom: -24px; margin-left: auto; float: right; }

/* Map Section */
.map, .map .map_img { position: relative; }
.map_box { background: var(--dark); padding: 12px 16px; font-size: 14px; font-weight: 500; position: absolute; }
.map .germany { left: 56%; top: 52%; }
.map .finland { left: 43%; top: 33%; }
@media (max-width: 1400px) { .map .finland { left: 47%; top: 34%; } }
@media (max-width: 1100px) { .map .germany { left: 64%; top: 53.5%; } }
@media (max-width: 992px) { .map .finland { left: 49%; top: 38%; } .map .germany { left: 63%; top: 55.5%; } }
@media (max-width: 768px) { .map .finland { left: 49%; top: 49.5%; } .map .germany { left: 49%; top: 49.5%; } }
@media (max-width: 720px) { .map .germany { margin-bottom: 10px !important; } .map .germany, .map .finland { position: relative; left: 0; right: 0; top: 0; margin: auto; display: block; } }

/* Panel Section */
.panel { background: var(--dark); position: relative; z-index: 1; overflow: hidden; clear: both; }
.panel:before { z-index: -1; content: ""; position: absolute; width: 600px; height: 286px; left: 0; background: var(--light-dark); border-radius: 0px 20px 20px 0px; }
.panel .panel_content h2, .ddos .ddos_content h2 { color: var(--white); font-weight: 600; }
.panel .panel_content ul { list-style: none; padding: 0; }
.panel .panel_content ul li { line-height: 36px; font-size: 17px; }
.panel .panel_content ul li i { color: var(--blue); }
@media (max-width: 992px) { .panel:before { height: 280px; } }
@media (max-width: 768px) { .panel img, .ddos img, .os h4 { margin-bottom: 30px; } .panel:before { opacity: 0; } }

/* DDoS Section */
.ddos { clear: both; overflow: hidden; }

/* Reviews Section */
.review { background-color: #1a1a1a; }
.review .card { background: var(--dark); }
.review .card .reviews_star { display: flex; position: relative; top: -10px; }
.review .card .reviews_star img { width: 24px; height: 24px; margin: 4px; border-radius: 6px; }
.review .card .reviews_star img:first-child { margin-left: 0 !important; }
.review .card h3 { color: var(--white); font-size: 24px; }
.review .card p { font-size: 15px; }
.review .card a { float: right; text-decoration: none; color: var(--white); }
.review .card a i { color: var(--blue); }
.review .reviews_footer h3 { color: var(--light); font-size: 18px; font-weight: 400; }
.review .reviews_footer img { width: 100%; height: 24px; }
.review .title h4 { color: #ffffff; }
.review .title p { color: #cccccc; }

/* Plans Section */
#swicherPlans { margin-bottom: 6rem !important; }
#swicherPlans .nav-item .nav-link { background: transparent; border: 1px solid var(--blue); color: var(--white); padding: 6px 24px; font-size: 15px; font-weight: 600; border-radius: 10px; margin: 0 4px; }
#swicherPlans .nav-item .active { background: var(--blue); }
.plans .card { background: var(--dark); border-radius: 10px; box-shadow: 0px 0px 10px 0px rgba(37, 42, 67, 0.2); }
.plans .mc-card { margin-bottom: 90px !important; }
.plans .card .plan-icons { margin: auto; left: 0; right: 0; width: 140px; height: 140px; position: absolute; top: -70px; }
.plans .card .card-header { background: transparent; border: none; }
.plans .mc-card .card-header { margin-top: 4rem !important; }
.plans .card .card-header h2 { font-weight: 700; color: var(--white); }
.discord .card-header { padding: 40px !important; background: url('../images/discord.png') no-repeat !important; background-size: cover !important; background-position: right bottom !important; }
.plans .card .card-price { background: var(--blue); color: var(--white); font-weight: 700; font-size: 24px; }
.plans .card .card-price span { font-weight: 500; font-size: 17px; }
.discord .card-price { border-radius: 10px; }
.plans .card .card-body ul li { font-size: 20px; line-height: 42px; }
.plans .card .card-body ul li i { color: var(--blue); margin-right: 2px; }
.plans .card .card-body a { background: var(--blue); border: 1px solid var(--blue); color: var(--white); padding: 8px 32px; font-size: 16px; font-weight: 600; border-radius: 10px; }
#servertypes img { max-width: none; text-align: center; margin: 0 auto; height: 50px; width: unset; }

/* Plans Table */
.plans table { border: 0; width: 100%; margin: 0; padding: 0; border-collapse: collapse; border-spacing: 0; color: #c9d6e0; }
.plans table tbody tr { background: var(--dark); border-color: var(--dark); box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06); transition: all 0.3s ease 0s; transform: scale(1); margin-bottom: 20px !important; }
.plans table tr:hover { transform: scale(1.02); }
.plans table tbody tr td { padding: 20px 15px; font-size: 14px; text-align: center; }
.plans table tbody tr td h2 { text-transform: uppercase; font-size: 24px; color: #fff; font-weight: 900; }
.plans table tbody tr td .card { background: var(--light-dark); border-color: var(--light-dark); box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06); padding: 10px; transition: all 0.3s ease 0s; margin-bottom: 0 !important; }
.plans table tbody tr td .card .price { text-align: center; margin: 0 auto; color: #fff; font-size: 20px; font-weight: 900; }
.plans table tbody tr td .card .price span { font-size: 14px; font-weight: 400; }
.plans table tbody tr td .card .btn { font-size: 14px; font-weight: 600; background: var(--blue); color: var(--white); border-radius: 10px; padding: 6px 24px; }
@media screen and (max-width: 800px) {
  .plans table { border: 1px solid transparent; box-shadow: none; }
  .plans table thead { display: none; }
  .plans table tbody tr { padding: 20px; margin-bottom: 20px !important; display: block; }
  .plans table tbody tr td:before { float: left; font-size: 10px; text-transform: uppercase; font-weight: 700; }
  .plans table tbody tr td { display: block; font-size: 14px; padding: 10px 10px !important; text-align: center; }
  .plans table tbody tr td .card { padding: 10px 10px; }
  .plans table tbody tr td .card .price { margin-bottom: 10px; }
  .plans table tbody tr td .card .btn { display: block; }
}

/* OS Section */
.os img { width: 80px; height: 80px; }
.os h4 { color: var(--white); font-weight: 600; }

/* Partners Section */
.partners { margin-top: 60px; }
.partners .card { margin-bottom: 80px; background: var(--dark); }
.partners .card .partner-img { width: 120px !important; height: 120px !important; margin-top: -60px; margin-left: auto; margin-right: auto; }
.partners .card .card-body h3 { color: var(--white); font-weight: 700; }
.partners .card .card-body ul li { display: inline-block; margin: 6px; }
.partners .card .card-body ul li i { font-size: 26px; }

/* -----------------
   7. Footer
   ----------------- */
footer { background: var(--dark); }
footer h3 { font-weight: 500; color: var(--white); }
footer h3 span { font-weight: 800; }
footer h4 { color: var(--white); font-size: 20px; font-weight: 500; }
footer ul { padding: 0; list-style: none; }
footer ul li { line-height: 30px; }
footer ul a { color: var(--light); text-decoration: none; }
@media (max-width: 768px) { footer { text-align: center; } }


/* -----------------
   8. Misc & Plugins
   ----------------- */

/* Generic Header for Pages */
.header { padding-top: 150px; padding-bottom: 100px; }
.header h2 { color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: 0.01rem; font-size: 40px; }
.minecraft-h { background: url("../images/hero/minecraft.webp");}
.fivem-h { background: url("../images/hero/fivem.webp");}
.csgo-h { background: url("../images/hero/csgo.webp");}
.rust-h { background: url("../images/hero/rust.webp");}
.ark-h { background: url("../images/hero/ark.webp");}
.vps-h { background: url("../images/hero/vps.webp");}
.partners-h { background: url("../images/hero/partners.webp");}
.legal-h { background: url("../images/hero/legal.webp");}
@media (max-width: 768px) { .minecraft-h, .fivem-h, .csgo-h, .rust-h, .ark-h, .vps-h, .partners-h, .legal-h { background-position: 36% !important; } }
@media (max-width: 576px) { .minecraft-h, .fivem-h, .csgo-h, .rust-h, .ark-h, .vps-h, .partners-h, .legal-h { background-position: 46% !important; } }

/* Font Awesome Social Colors */
.fa-youtube { color: #ff0000; } .fa-twitter { color: #1da1f2; } .fa-facebook { color: #4267b2; } .fa-instagram { color: #bc2a8d; } .fa-discord { color: #7289da; } .fa-twitch { color: #6441a5; } .fa-globe { color: #4a4a77; }

/* Legal Page */
.legal h2 { color: var(--white); font-weight: 600; }

/* SVG Icon Colors */
.ddosa1{fill:none;stroke:#2f334b}
.ddosa1,.ddosa2,.ddosa3{stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}
.ddosa2{fill:none;stroke:#2f334b}
.ddosa3{stroke:#0195f4;stroke-width:4;fill:#0195f4}
.ssd-drive {fill: var(--blue);}
.firewall {fill: var(--red);}
.setup {fill: var(--green);}
.guranteed {fill: var(--yellow);}
.cpu {fill: var(--purple);}
.support {fill: var(--yellow);}

/* Swal Alert (SweetAlert2) */
.swal2-popup { background: var(--dark) !important; }
.swal2-title { color: var(--white) !important; }
.swal2-html-container { color: var(--light) !important; }
.swal2-icon.swal2-success { border-color: var(--blue) !important; color: var(--blue) !important; }
.swal2-icon.swal2-success .swal2-success-ring { border: .25em solid var(--blue) !important; }
.swal2-icon.swal2-success [class^="swal2-success-line"] { background-color: var(--blue) !important; }
.swal2-styled.swal2-confirm { border-radius: 50px !important; padding: 8px 32px !important; font-weight: 700 !important; background: var(--blue) !important; }
.swal2-styled.swal2-confirm:focus { box-shadow:0 0 0 3px rgba(24, 115, 211, .5) !important; }


/* BX Slider Styles */
.bx-wrapper { position: relative; margin-bottom: 60px; padding: 0; touch-action: pan-y; box-shadow: 0 0 5px #ccc; border: 5px solid #fff; background: #fff; }
.bx-wrapper img { max-width: 100%; display: block; }
ul.bxslider { list-style: none; margin: 0; padding: 0; }
.bx-viewport { -webkit-transform: translateZ(0); }
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager { position: absolute; bottom: -30px; width: 100%; }
.bx-wrapper .bx-loading { min-height: 50px; background: url('../img/bx_loader.gif') center center no-repeat #fff; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; }
.bx-wrapper .bx-pager { text-align: center; font-size: .85em; font-family: "Poppins", sans-serif; font-weight: 700; color: #666; padding-top: 20px; }
.bx-wrapper .bx-pager.bx-default-pager a { background: #666; text-indent: -9999px; display: block; width: 10px; height: 10px; margin: 0 5px; outline: 0; border-radius: 5px; }
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover { background: #000; }
.bx-wrapper .bx-controls-auto .bx-controls-auto-item, .bx-wrapper .bx-pager-item { display: inline-block; vertical-align: bottom; }
.bx-wrapper .bx-pager-item { font-size: 0; line-height: 0; }
.bx-wrapper .bx-prev { left: 10px; background: url('../img/controls.png') 0 -32px no-repeat; }
.bx-wrapper .bx-prev:focus, .bx-wrapper .bx-prev:hover { background-position: 0 0; }
.bx-wrapper .bx-next { right: 10px; background: url('../img/controls.png') -43px -32px no-repeat; }
.bx-wrapper .bx-next:focus, .bx-wrapper .bx-next:hover { background-position: -43px 0; }
.bx-wrapper .bx-controls-direction a { position: absolute; top: 50%; margin-top: -16px; outline: 0; width: 32px; height: 32px; text-indent: -9999px; z-index: 9999; }
.bx-wrapper .bx-controls-direction a.disabled { display: none; }
/* Hero Slider Specifics */
.hero_main .bx-wrapper { background: none; border: none; box-shadow: none; margin-bottom: 0; }
.hero_section .bx-controls-direction { display: none; }
.hero_dots { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-end; position: relative; z-index: 6; margin-top: 40px; }
.hero_dots a { width: 19%; position: relative; }
.hero_box { display: flex; align-items: center; width: 100%; padding: 18px; min-height: 76px; background: rgba(30, 33, 62, .6); border-radius: 10px; position: relative; }
.hero_box .pager__icons { display: inline-block; margin-right: 15px; }
.hero_box .pager__icons .icon img { width: 50px; height: 50px; }
.hero_box h5 { font-family: "Poppins", sans-serif; color: var(--primary-color); font-size: 16px; margin-bottom: 0; display: block; width: 100%; }
.hero_box p { display: none; margin-bottom: 0; font-size: 14px; line-height: 18px; padding-top: 8px; width: 100%; }
.hero_box .icon_active { display: none; }
.hero_dots a::before { content: ''; width: 0; height: 4px; display: block; background: var(--blue-color); position: absolute; right: 0; left: 0; top: 0; margin: auto; border-radius: 6px; z-index: 2; transition: all ease-out 0.5s; }
.hero_dots a::after { content: ''; width: 0; height: 0; display: block; border: 8px solid var(--blue-color); border-color: transparent transparent var(--blue-color) transparent; z-index: 2; position: absolute; top: -16px; left: 0; right: 0; margin: auto; transition: all ease-out 0.5s; opacity: 0; }
.hero_dots a.active::before { width: 80%; }
.hero_dots a.active::after { opacity: 1; }
.hero_dots a.active .hero_box { padding: 22px 18px; align-items: flex-start; background: var(--semi-dark); }
.hero_dots a.active .hero_box .pager__icons { width: 55px; }
.hero_dots a.active .hero_box .icon_active { display: block; }
.hero_dots a.active .hero_box .icon { display: none; }
.hero_dots a.active .hero_box h5 { color: var(--primary-color); }
.hero_dots a.active .hero_box h5 br { display: none; }
.hero_dots a.active .hero_box p { display: block; }
@media (max-width: 1400px) { .hero_section { padding-bottom: 100px; } }
@media (max-width: 1200px) {
    .hero_section { padding-bottom: 0; }
    .hero_main { z-index: 2; min-height: auto; }
    .hero_content h2 { font-size: 45px; }
    .hero_content { padding-bottom: 0; }
    .hero_dots { margin-top: 40px; }
    .hero_box { flex-direction: column; align-items: center; justify-content: center; }
    .hero_box .pager__icons { margin: 0 0 10px 0; }
    .hero_box h5 { text-align: center; }
    .hero_dots a.active .hero_box { text-align: center; align-items: center; }
    .hero_dots a.active .hero_box .icon_active { display: inline-block; }
}
@media (max-width: 991px) {
    .hero_content_image { display: none; }
    .hero_content { padding-top: 50px; text-align: center; }
    .hero_content p { margin-bottom: 25px; }
    .hero_section .bx-controls-direction { display: block; }
}
@media (max-width: 768px) {
    .hero_dots { flex-wrap: wrap; flex-direction: column; }
    .hero_dots a { width: 100%; margin-top: 10px; }
    .bx-pager { display: none !important; }
}
@media (max-width: 575px) {
    h2 { font-size: 36px !important; line-height: 40px !important; }
    h3 { font-size: 28px !important; line-height: 36px !important; }
    .hero_dots { margin-top: 0; }
}
/* --- FIX: Force a specific section to show --- */
.your-missing-section-class {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1000 !important; /* Brings it to the front */
}
/* --- Desktop Navbar Styling --- */

/* Add spacing and style to the navigation links */
.navbar-dark .navbar-nav .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 500;
}

/* Add a bit of extra space to the left of the "SignIN" button */
.navbar .navbar-nav .nav-item:last-child {
    margin-left: 1rem;
}