@import url("https://fonts.googleapis.com/css2?family=Kanit&display=swap");

:root {
  --gx-yellow: #fed141;
  --gx-lighseagreen: #20b2aa;
  --gx-lightsteelblue: #b0c4de;
  --gx-halloween-orange: #eb5e28;
  --gx-cherry-red: #d2042d;
  --gx-pink: #d63384;
  --gx-pale-silver: #ccc5b9;
  --gx-rich-black: #090b10;
  --gx-black: #141414;
  --gx-floral-white: #fffcf2;
  --gx-link-color: #0ce;
  --gx-body-color: var(--gx-pale-silver);
  --gx-body-bg: var(--gx-rich-black);
  --gx-heading-primary-color: var(--gx-halloween-orange);
  --gx-heading-secondary-color: var(--gx-floral-white);

  --gx-verydarkgray: #121212;
  --gx-lightgray: #e0e0e0;
  --gx-mutedgray: #b0b0b0;
  --gx-softpurple: #bb86bb;
  --gx-bright-teal: #03dac0;
  --gx-calm-blue: #1e88e5;
  --gx-darkgray: #292929;
  --gx-mutedred: #cf6679;
  --gx-orange: #ffa726;

  --gx-background: var(--gx-verydarkgray);
  --gx-primary-text: var(--gx-lightgray);
  --gx-secondary-text: var(--gx-mutedgray);
  --gx-primary-accent: var(--gx-softpurple);
  --gx-secondary-accent: var(--gx-bright-teal);
  --gx-highlight-link: var(--gx-calm-blue);
  --gx-border: var(--gx-darkgray);
  --gx-error: var(--gx-mutedred);
  --gx-warning: var(--gx-orange);
  --gx-primary-button-backgorund: #333333;
  --gx-primary-button-text: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  display: none;
}

*:focus,
*:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  color: var(--gx-primary-text) !important;
  font-family: "Kanit", sans-serif !important;
  background-color: var(--gx-background) !important;
  line-height: 1.6;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--gx-heading-secondary-color);
}

a {
  color: var(--gx-link-color) !important;
  text-decoration: none !important;
}

img {
  width: 100% !important;
  overflow: hidden !important;
}

ul {
  list-style: none;
}

section {
  padding: 100px 15% 50px;
}

.hidden {
  display: none;
}

.select-all {
  user-select: all;
}

@media (max-width: 576px) {
  .img-col img {
    width: 10% !important;
  }
}

.btn-dark-mode {
  background-color: #333333;
  color: var(--gx-primary-button-text) !important;
  border: 1px solid var(--gx-border);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.btn-dark-mode:hover {
  background-color: #444444;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.btn-dark-mode:active {
  background-color: #555555;
  box-shadow: none;
}

.show-on-small-screen {
  display: none !important;
}

@media (max-width: 992px) {
  .hide-on-small-screen {
    display: none !important;
  }
  .show-on-small-screen {
    display: block !important;
  }
}

@media (min-width: 790px) {
  .hide-on-small-screen {
    display: block;
  }
  .show-on-small-screen {
    display: none;
  }
}

.b-section-divider {
  width: 100%;
  height: 150px;
  background-color: var(--gx-background);
}

.rounded-button {
  border-radius: 16px !important;
  line-height: 1 !important;
  border-color: var(--gx-halloween-orange) !important;
  color: var(--gx-halloween-orange) !important;
}

.rounded-button:hover {
  color: var(--gx-floral-white) !important;
  background-color: var(--gx-halloween-orange) !important;
}

/** Common Css Style Start  */
.heading {
  position: relative;
  z-index: 2;
}
.heading-text {
  color: var(--gx-floral-white);
  font-weight: bold;
}
.heading-text span {
  color: var(--gx-halloween-orange);
  font-weight: bold;
}

.heading h6 {
  font-weight: 700;
  color: var(--gx-halloween-orange) !important;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.heading h4 {
  font-size: 2.188rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.heading h4 em {
  font-style: normal;
  color: var(--gx-halloween-orange);
}

.heading .line-dec-center {
  width: 50px;
  height: 2px;
  background-color: var(--gx-halloween-orange);
  margin: 0 auto;
}

.heading .line-dec-start {
  width: 50px;
  height: 2px;
  background-color: var(--gx-halloween-orange);
}

@media (max-width: 768px) {
  .heading h6 {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }

  .heading h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .heading .line-dec-center,
  .heading .line-dec-start {
    width: 80px;
    margin: 0 auto;
  }
}

.center-heading h1 {
  color: var(--gx-floral-white);
  text-transform: capitalize;
  margin-bottom: 35px;
  position: relative;
}

.center-heading h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--gx-halloween-orange);
  height: 2px;
  box-sizing: border-box;
  width: 12%;
  margin-left: 44%;
}

.center-heading h2 {
  color: var(--gx-floral-white);
  text-transform: capitalize;
  margin-bottom: 35px;
  position: relative;
}

.center-heading h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--gx-halloween-orange);
  height: 2px;
  box-sizing: border-box;
  width: 12%;
  margin-left: 44%;
}

.dat-section-banner {
  height: 600px;
  background-position: 25% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  padding-top: 100px;
  border-radius: 34px;
}

.dat-orange-banner {
  /* height: 230px; */
  /* background-image: linear-gradient(to left, #fab818, #f47521 47%, #ef4323);
  background-repeat: repeat; */
  /* margin-top: 115px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dat-orange-banner-text {
  position: relative;
}
@media (max-width: 1024px) {
  .dat-orange-banner {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .dat-orange-banner {
    height: 180px;
    margin-top: 75px;
  }
}
@media (max-width: 576px) {
  .dat-orange-banner {
    height: 160px;
  }
}

.dat-blue-banner {
  height: 230px;
  margin-top: 115px;
  background-image: linear-gradient(180deg, #2abdbb, #2d9594);
  background-repeat: repeat;
  height: 260px;
  margin-top: 115px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dat-blue-banner-text {
  position: relative;
}
@media (max-width: 1024px) {
  .dat-blue-banner {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .dat-blue-banner {
    height: 180px;
    margin-top: 75px;
  }
}
@media (max-width: 576px) {
  .dat-blue-banner {
    height: 160px;
  }
}

/*! Common Css Style End  */

/** NavBar Css Style Start  */
.navbar {
  padding: 15px !important;
  background-color: var(--gx-background) !important;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  font-size: 18px;
  position: relative;
}

.offcanvas {
  background-color: var(--gx-background) !important;
  color: var(--gx-primary-text) !important;
}
.offcanvas-header .btn-close {
  color: var(--gx-primary-text) !important;
}

.nav-link {
  position: relative;
  color: var(--gx-primary-text) !important;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gx-primary-text);
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: var(--gx-orange) !important;
  width: 100% !important;
}

.navbar .nav-link.active {
  color: var(--gx-orange) !important;
  width: 100% !important;
}

.nav-item {
  margin-right: 15px;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px !important;
}

/* Dropdown toggle specific styles */
.navbar .dropdown-toggle::after {
  content: none; /* Remove the underline pseudo-element */
}

/* Dropdown hover styles */
.navbar .dropdown-toggle:hover {
  color: var(--gx-orange) !important; /* Optional hover color */
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  overflow: hidden;
}

.dropdown .dropdown-menu {
  width: 630px;
  background-color: var(--gx-floral-white);
  padding: 10px;
}

.dropdown-menu .dropdown-header {
  font-size: 16px;
  color: var(--gx-background);
  text-transform: capitalize;
  position: relative;
  margin-bottom: 10px;
}

.dropdown-menu .dropdown-header::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  background-color: var(--gx-orange);
  height: 2px;
  box-sizing: border-box;
  width: 30px;
}

.dropdown-menu .list-unstyled li a {
  line-height: 15px;
  text-decoration: none !important;
  color: var(--gx-black) !important;
}

.dropdown-menu .list-unstyled li a:hover {
  color: var(--gx-lighseagreen) !important;
  background-color: var(--gx-floral-white) !important;
}

@media (max-width: 768px) {
  .dropdown .dropdown-menu {
    width: 330px;
    background-color: var(--gx-black);
  }
}

/*! NavBar Css Style End  */

/* * ------------ Home Pages Section CSS Start ------------ */

.airnass,
.object-storage {
  position: relative;
}

/* * all section banner css */
.dat-section-banner {
  height: 600px;
  background-position: 25% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  padding-top: 100px;
  border-radius: 34px;
}

/* * align left */
.dat-section-banner .dat-section-left-align-text {
  width: 100%;
  margin: auto;
  text-align: right;
  padding-left: 500px;
}
.dat-section-banner .dat-section-left-align-text h1 {
  color: var(--gx-floral-white);
  text-transform: uppercase;
  font-weight: 500;
  padding-right: 50px;
}
.dat-section-left-align-text h2 {
  color: var(--gx-floral-white);
  text-transform: uppercase;
  font-weight: 500;
  padding-right: 50px;
}
.dat-section-left-align-text p {
  color: var(--gx-floral-white);
  line-height: 25px;
  letter-spacing: normal;
  padding: 10px 50px;
}

/* * align right */
.dat-section-banner .dat-section-right-align-text {
  text-align: left;
}
.dat-section-banner .dat-section-right-align-text h1 {
  color: var(--gx-floral-white);
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 30px;
}
.dat-section-right-align-text h2 {
  color: var(--gx-floral-white);
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 500px;
}
.dat-section-right-align-text p {
  color: var(--gx-floral-white);
  padding-left: 30px;
  padding-right: 550px;
}
.dat-section-banner-sub span {
  color: var(--gx-floral-white);
  font-size: 1.2rem;
}

/* * home airnass section css */
.dat-home-airnass-img {
  background-image: linear-gradient(
      to right,
      rgb(0 0 0 / 0.2),
      rgb(0 0 0 / 0.2)
    ),
    url("../images/Landing.jpg");
  width: 100%;
}

/* * home object storage section css */
.dat-home-object-storage-img {
  background-image: linear-gradient(
      to right,
      rgb(0 0 0 / 0.2),
      rgb(0 0 0 / 0.2)
    ),
    url("../images/object_storage_landing.webp");
  width: 100%;
}

/* * custom btn of let's go */
.cust-home-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}
.cust-home-btn * {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cust-home-btn a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 48px;
  border: 1px solid #000;
  font-weight: var(--dns-font-weight);
  padding: 0 30px;
  padding-top: 8px;
  background: #000;
  color: var(--gx-floral-white);
  text-decoration: none;
}
.cust-home-btn span {
  width: 20px;
  height: 2px;
  background: var(--gx-floral-white);
  display: inline-block;
  margin-left: 20px;
}
.cust-home-btn i {
  width: 0;
  height: 0;
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--gx-floral-white);
  opacity: 1;
}
.cust-home-btn:hover span {
  width: 50px;
  margin-left: 20px;
}
.cust-home-btn:hover i {
  opacity: 0;
}
.cust-home-btn.white a {
  background: var(--gx-halloween-orange);
  color: var(--gx-floral-white);
  border: 1px solid var(--gx-halloween-orange);
  border-radius: 58px;
}

.feature-box {
  transition: all 0.4s;
  border-radius: 25px;
  background-color: var(--gx-black);
}

.feature-icon img {
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}

.feature-box-text {
  color: var(--gx-floral-white);
  font-size: 18px;
}

.feature-box-container:hover .feature-box {
  transform: translate3d(0px, 0px, 0px) scale3d(0.9, 0.9, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.feature-box-container:hover .feature-box:hover {
  transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  box-shadow: 0px 4px 4px var(--gx-halloween-orange);
}

/* ! ------------ Home Pages Section CSS End ------------ */

/* * ------------ airnss pricing and tco Pages Section CSS Start ------------ */

.pricing-content-text {
  text-align: center;
}
.pricing-content-text p {
  text-align: start;
  color: var(--gx-pale-silver);
}
.pricing-content-text img {
  width: 100%;
  height: auto;
  padding: 80px;
}
.pricing-content-plans {
  text-align: center;
}
.pricing-content-plans h2 {
  text-transform: capitalize;
  color: var(--gx-floral-white);
}
.pricing {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  height: 450px;
  border-radius: 50px;
  background: var(--gx-black);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}
.pricing .title {
  margin: 0 0 10px;
  font-size: 2.5rem;
  color: var(--gx-floral-white);
}
.price.top {
  font-size: 22px;
  line-height: 45px;
}
.price.down {
  font-size: 16px;
  line-height: 40px;
}

/* ! ------------ airnss pricing and tco Pages Section CSS End ------------ */

/* * ------------ airnss Feature Pages Section CSS Start ------------ */

.service-item {
  position: relative;
  padding: 45px 30px;
  background: #2c2c2c;
  overflow: hidden;
  transition: 0.5s;
  height: 500px;
}
.service-item:hover {
  margin-top: -15px;
  padding-bottom: 60px;
  background: #121212;
}
.service-item h5,
.service-item p {
  transition: 0.5s;
}
.service-item:hover h5 {
  color: #db5000;
}
.service-item:hover p {
  color: #c9c9c9;
}
.service-icon img {
  height: 90px;
}

/* ! ------------ airnss Feature Pages Section End ------------ */

/* * ------------ object storage overview Pages Section CSS Start ------------ */
.dat-overview-content h2 {
  color: var(--dns-white);
}
.dat-overview-content p {
  font-size: var(--dns-fs-sm);
  color: var(--dns-font-color);
  line-height: 25px;
}
.dat-overview-banner {
  height: 600px;
  background-position: 25% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  padding-top: 100px;
  border-radius: 34px;
}
.dat-overview-banner-img {
  background-image: url("../images/object_storage_banner.webp");
}
.dat-overview-banner-text {
  text-align: center;
  position: absolute;
  top: 35%;
  left: 80%;
  transform: translate(-80%, -50%);
  color: var(--dns-white);
  width: 100%;
}
.dat-overview-banner-text ul li {
  font-size: var(--dns-fs-xxl);
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #fff;
  width: 100%;
}
@media (max-width: 840px) {
  .dat-overview-banner {
    margin-top: 80px;
    width: 100%;
  }
  .dat-overview-banner-text h3 {
    font-size: 26px;
  }
  .dat-overview-banner-text ul li {
    font-size: 26px;
    padding-right: 10px;
  }
}

/* ! ------------ object storage overview Pages Section CSS End ------------ */

/* * ------------ object storage Feature Pages Section CSS Start ------------ */
.text-primary-gradient {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-item {
  transition: 0.5s;
  background: var(--gx-darkgray);
  height: 240px;
}
.feature-item:hover {
  margin-top: -15px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}
.feature-item-box {
  background: var(--gx-darkgray);
}
.feature-item-icon img {
  width: 100%;
  height: 100px;
  padding-bottom: 10px;
}
.feature-item-icon-other img {
  width: 100%;
  height: 120px;
  padding-bottom: 10px;
}

/* ! ------------ object storage Feature Pages Section CSS End ------------ */

/* * ------------ object storage price Pages Section CSS Start ------------ */

.object-pricing-body {
  display: flex;
  flex-direction: row;
  text-align: center;
}
.object-pricing-title h2 {
  font-weight: 500;
  line-height: 1.6;
  width: 70%;
  margin: auto;
  position: relative;
  color: var(--dns-white);
}
.object-pricing-title p {
  font-size: var(--dns-fs-sm);
  line-height: 1.44;
  padding-top: 30px;
  color: var(--dns-gray);
}
.object-pricing-box {
  width: 60%;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  background: var(--dns-dark);
}
.object-pricing-box-content-left {
  line-height: 60px;
  padding: 50px;
  text-align: left;
  background-color: #1c1c1c;
  border-radius: 8px 0px 0px 8px;
}
.object-pricing-box-content-right {
  line-height: 40px;
  padding: 50px;
  text-align: left;
  background-color: #1c1c1c;
  border-radius: 0px 8px 8px 0px;
}
.object-pricing-box-content-right .checked li::before {
  content: "";
  background-repeat: no-repeat;
  background-image: url(../svg/checked-2.png);
  background-position: left center;
  background-size: 25px;
  width: 25px;
  height: 25px;
  padding-right: 30px;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: middle;
  margin-bottom: 6px;
}
.object-pricing-box-content-right .checked li {
  list-style: none;
}
.object-pricing-box-content-right h4,
.object-pricing-box-content-left h4 {
  font-size: var(--dns-fs-xs);
  font-weight: var(--dns-font-weight);
  line-height: var(--dns-line-height);
}
.object-pricing-box-content-left h5 {
  color: var(--gx-orange);
  font-size: var(--dns-fs-xs);
  font-weight: var(--dns-font-weight);
  line-height: var(--dns-line-height);
}
.object-pricing-box-content-left h2 {
  margin: 0 0 18px;
}
.object-pricing-box-content-bottom {
  line-height: var(--dns-line-height);
}
.chartBox {
  width: 700px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  height: auto;
  margin-left: 300px;
}
@media (max-width: 1024px) {
  .chartBox {
    margin: auto;
  }
}
@media (max-width: 768px) {
  .object-pricing-title h2 {
    width: 100%;
  }
  .object-pricing-box-content-left {
    border-radius: 8px 8px 0px 0px;
  }
  .object-pricing-box-content-right {
    border-radius: 0px 0px 8px 8px;
  }
}
@media (max-width: 576px) {
  .object-pricing-box {
    width: 100%;
  }
  .chartBox {
    width: 100%;
    padding: 0px;
  }
}

/* ! ------------ object storage price Pages Section CSS End ------------ */

.cover-container {
  background-image: linear-gradient(
      to top,
      var(--gx-body-bg) 5%,
      transparent 20%
    ),
    url(/images/GeoDistributedCloud_Website_1.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 47vw;
}

.blog-posts {
  margin-top: 100px;
}

.blog-posts .blog-post {
  margin-bottom: 30px;
}

.blog-posts .blog-thumb img {
  width: 100%;
  overflow: hidden;
}

.blog-posts .down-content {
  padding: 20px;
}

.blog-posts .down-content span a {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--gx-heading-primary-color) !important;
}

.blog-posts .down-content h3 {
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-weight: 900;
  margin: 10px 0px 12px 0px;
}

.blog-posts .down-content ul.post-info li {
  display: inline-block;
  margin-right: 8px;
}

.blog-posts .down-content ul.post-info li a {
  text-transform: capitalize;
  color: var(--gx-halloween-orange) !important;
}

.blog-posts .down-content ul.post-info li:after {
  content: "|";
  margin-left: 8px;
}

.blog-posts .down-content h3 {
  letter-spacing: 0.25px;
}

.grid-system .down-content ul.post-info li {
  margin-right: 3px;
}

.grid-system .down-content ul.post-info li:after {
  margin-left: 5px;
}

.blog-posts .down-content ul.post-info li:last-child::after {
  display: none;
}

.blog-posts .down-content ul.post-info li a {
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
}

.blog-posts .down-content ul.post-info li a:hover {
  color: var(--gx-heading-primary-color) !important;
}

.blog-posts .down-content p {
  padding: 5px 0px;
  margin: 5px 0px;
}

.blog-posts .down-content ul.post-share {
  text-align: right;
}

.blog-posts .down-content ul.post-tags li,
.blog-posts .down-content ul.post-share li {
  display: inline-block;
}

.blog-posts .down-content ul.post-tags li:first-child i,
.blog-posts .down-content ul.post-share li:first-child i {
  color: var(--gx-heading-primary-color) !important;
  margin-right: 5px;
}

.blog-posts .down-content ul.post-tags li,
.blog-posts .down-content ul.post-share li {
  color: var(--gx-floral-white) !important;
  text-transform: capitalize;
}

.blog-posts .down-content ul.post-tags li a,
.blog-posts .down-content ul.post-share li a {
  font-size: 14px;
  color: var(--gx-floral-white) !important;
  font-weight: 400;
  transition: all 0.3s;
}

.blog-posts .down-content ul.post-tags li a:hover,
.blog-posts .down-content ul.post-share li a:hover {
  color: var(--gx-halloween-orange) !important;
}

.blog-posts .main-button a {
  height: 60px;
  line-height: 60px;
  padding: 0px;
  width: 100%;
  text-align: center;
}

ul.pagination {
  text-align: center;
}

ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

ul.pagination li a {
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  font-size: 15px;
  color: #20232e !important;
  border: 1px solid #eee;
  font-weight: 500;
  transition: all 0.3s;
}

ul.pagination li.active a {
  background-color: var(--gx-heading-primary-color) !important;
  border-color: var(--gx-heading-primary-color) !important;
  color: var(--gx-floral-white) !important;
}

ul.pagination li.active a:hover {
  color: var(--gx-floral-white) !important;
}

ul.pagination li a:hover {
  color: var(--gx-heading-primary-color) !important;
}

.blog-posts .sidebar-heading h2 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #20232e;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.sidebar {
  margin-left: 30px;
}

.sidebar .sidebar-item {
  margin-top: 50px;
}

.sidebar .search {
  margin-top: 0px;
}

.sidebar .sidebar-heading h2 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ccc5b9;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.sidebar .search input {
  width: 100%;
  height: 50px;
  border: 1px solid #eee;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gx-floral-white);
  outline: none;
  padding: 0px 15px;
}

.sidebar .search input::placeholder {
  color: var(--gx-floral-white);
}

.sidebar .recent-posts ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  list-style-type: none;
}

.sidebar .recent-posts ul li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.sidebar .recent-posts ul li h5 {
  font-size: 19px;
  font-weight: 900;
  color: var(--gx-floral-white);
  line-height: 30px;
  transition: all 0.3s;
}

.sidebar .recent-posts ul li h5:hover {
  color: var(--gx-heading-primary-color);
}

.sidebar .recent-posts ul li span {
  display: block;
  font-size: 14px;
  color: var(--gx-floral-white);
  margin-top: 8px;
}

.sidebar .categories ul li {
  margin-bottom: 15px;
  list-style-type: none;
}

.sidebar .categories ul li:last-child {
  margin-bottom: 0px;
}

.sidebar .categories ul li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gx-floral-white) !important;
  text-transform: capitalize;
  transition: all 0.3s;
}

.sidebar .categories ul li a:hover {
  color: var(--gx-heading-primary-color) !important;
}

.sidebar .tags ul li {
  margin-right: 6px;
  display: inline-block;
}

.sidebar .tags ul li {
  margin-bottom: 10px;
}

.sidebar .tags ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gx-floral-white) !important;
  text-transform: capitalize;
  display: inline-block;
  border: 1px solid #eee;
  padding: 10px 18px;
  transition: all 0.3s;
}

.sidebar .tags ul li a:hover {
  background-color: var(--gx-heading-primary-color);
  border-color: var(--gx-heading-primary-color);
  color: var(--gx-floral-white);
}

.form {
  position: relative;
}

.form .fa-search {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #9ca3af;
}

.form span {
  position: absolute;
  right: 17px;
  top: 13px;
  padding: 2px;
  border-left: 1px solid #d1d5db;
}

.left-pan {
  padding-left: 7px;
}

.left-pan i {
  padding-left: 10px;
}

.form-input {
  height: 55px;
  text-indent: 33px;
  border-radius: 10px;
}

.form-input:focus {
  box-shadow: none;
  border: none;
}

.border-first-button a {
  display: inline-block !important;
  padding: 10px 20px !important;
  color: var(--gx-heading-primary-color) !important;
  border: 1px solid var(--gx-heading-primary-color) !important;
  border-radius: 23px;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  transition: all 0.5s;
}

.border-first-button a:hover {
  background-color: var(--gx-heading-primary-color);
  color: #fff !important;
}

.main-banner {
  padding: 0px 0px 120px 0px;
  position: relative;
  overflow: hidden;
}

.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h6 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  color: var(--gx-heading-primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-banner .left-content h2 {
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-size: 50px;
  color: #fffcf2;
  margin-bottom: 20px;
}

.main-banner .left-content p {
  margin-bottom: 30px;
  margin-right: 45px;
}

.main-banner .right-image {
  text-align: right;
  position: relative;
  z-index: 20;
}

.main-banner .right-image img {
  max-width: 593px;
}
.services {
  padding-top: 130px;
  position: relative;
}

.services .heading {
  text-align: center;
  margin-bottom: 80px;
}

.services .naccs {
  position: relative;
  z-index: 1;
}

.services .icon {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.services .icon img {
  margin-bottom: 10px;
  max-width: 60px;
  min-width: 60px;
}

.services .naccs .menu {
  text-align: center;
  margin-bottom: 30px;
}

.services .naccs .menu div {
  color: #2a2a2a;
  margin: 0px;
  width: 15%;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-radius: 15px;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.services .naccs .menu div .thumb {
  display: inline-block;
  width: 100%;
  padding: 30px 0px;
  background-color: #fff;
}

/* @media (max-width: 768px) {
  .services .naccs .menu div {
    width: 28%;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .services .naccs .menu div {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
  }
} */

#about {
  padding-top: 130px;
}

.about-left-image img {
  margin-right: 45px;
}

.about-right-content p {
  margin-top: 30px;
  margin-bottom: 45px;
}

.free-quote {
  background-image: url(../images/quote-bg-v2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 45px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 150px;
  height: 300px;
}

.free-quote .heading {
  margin-bottom: 60px;
}

.free-quote .heading h6,
.free-quote .heading h4 {
  color: #fff !important;
}

.free-quote .heading .line-dec-center {
  margin: 0 auto;
  background-color: #fff !important;
}

.cust-home-btn {
  display: flex;
  justify-content: center;
  text-align: center;
}

.cust-home-btn * {
  transition: all 0.25s ease-in-out;
}

.cust-home-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  padding: 0 30px;
  background: #000;
  color: #fffcf2 !important;
  text-decoration: none;
}

.cust-home-btn span {
  width: 20px;
  height: 2px;
  background: #fffcf2;
  display: inline-block;
  margin-left: 20px;
}

.cust-home-btn i {
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #fffcf2;
  opacity: 1;
}

.cust-home-btn:hover span {
  width: 50px;
  margin-left: 20px;
}

.cust-home-btn:hover i {
  opacity: 0;
}

.cust-home-btn.white a {
  background: var(--gx-heading-primary-color);
  color: #fffcf2;
  border: 1px solid var(--gx-heading-primary-color);
  border-radius: 58px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .free-quote {
    margin-top: 120px;
  }
}

@media (max-width: 992px) {
  .free-quote {
    height: auto;
    padding: 30px 0;
  }
  .free-quote .heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .free-quote {
    margin-top: 100px;
    padding: 20px 0;
  }
  .free-quote .heading {
    margin-bottom: 30px;
  }
  .cust-home-btn a {
    font-size: 14px;
    height: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .free-quote {
    margin-top: 50px;
    padding: 15px 0;
  }
  .free-quote .heading {
    margin-bottom: 20px;
  }
  .cust-home-btn a {
    font-size: 12px;
    height: 36px;
    padding: 0 15px;
  }
  .cust-home-btn span {
    margin-left: 10px;
  }
}

/* * ------------ Footer section CSS Start ------------ */

.dat-footer {
  background-color: var(--gx-background);
  margin: auto;
  padding: 50px 3% 50px;
  position: relative;
  width: 100%;
  bottom: 0;
  left: 0;
}
.dat-footer-row {
  display: grid;
  gap: 1rem;
}
.dat-footer-logo {
  height: 25px;
}
.dat-footer-col h3 {
  margin-bottom: 20px;
  width: 100px;
}
ul {
  list-style: none;
}
.dat-footer-col h4 {
  color: var(--gx-floral-white);
  font-weight: 400;
  position: relative;
}
.dat-footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--gx-link-color);
  height: 2px;
  width: 35px;
}
.dat-footer-col ul li:not(:last-child) {
  margin-bottom: 4px;
}
.dat-footer-col ul li .dat-footer-col-a {
  margin-left: -30px;
  font-weight: 300;
  color: var(--gx-pale-silver) !important;
  transition: all 0.4s ease;
}
.dat-footer-col ul li .dat-footer-col-a:hover {
  color: var(--gx-floral-white);
  padding-left: 8px;
}
.dat-footer-col ul li p {
  display: block;
  font-weight: 300;
  margin-left: -30px;
  color: var(--gx-floral-white);
  transition: all 0.3s ease;
}

@media (min-width: 0) {
  .dat-footer-col h4 {
    margin-bottom: 18px;
  }
}
@media (min-width: 576px) {
  .dat-footer-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .dat-footer-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .dat-footer-row {
    grid-template-columns: 350px repeat(5, 230px);
  }
  .dat-footer-col h4 {
    margin-bottom: 30px;
  }
}

.dat-social-links-wrapper {
  display: inline-flex;
  list-style: none;
}
.dat-social-links-wrapper .dat-social-links-icon {
  position: relative;
  margin-left: -30px;
  margin-right: 35px;
  background: var(--gx-pale-silver);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dat-social-links-wrapper .dat-social-links-tooltip {
  position: absolute;
  top: 0;
  font-size: 0.8rem;
  background: var(--gx-floral-white);
  color: var(--gx-floral-white);
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dat-social-links-wrapper .dat-social-links-tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: var(--gx-pale-silver);
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.dat-social-links-wrapper
  .dat-social-links-icon:hover
  .dat-social-links-tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dat-social-links-wrapper .dat-social-links-icon:hover span,
.dat-social-links-wrapper
  .dat-social-links-icon:hover
  .dat-social-links-tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.dat-social-links-wrapper .dat-social-links-icon a i {
  color: var(--gx-rich-black);
  padding-top: 11px;
  height: 40px;
  width: 40px;
}
.dat-social-links-wrapper .dat-social-links-icon a img {
  height: 20px;
  padding-bottom: 4px;
}
.dat-social-links-wrapper .dat-social-links-icon a i:hover,
.dat-social-links-wrapper .dat-social-links-icon a img:hover {
  color: var(--gx-floral-white);
}
.dat-social-links-wrapper .linkedin:hover,
.dat-social-links-wrapper .linkedin:hover .dat-social-links-tooltip,
.dat-social-links-wrapper .linkedin:hover .dat-social-links-tooltip::before {
  background: var(--gx-link-color);
  color: var(--gx-floral-white);
}
.dat-social-links-wrapper .twitter:hover,
.dat-social-links-wrapper .twitter:hover .dat-social-links-tooltip,
.dat-social-links-wrapper .twitter:hover .dat-social-links-tooltip::before {
  background: var(--gx-floral-white);
  color: var(--gx-rich-black);
}
.dat-social-links-wrapper .instagram:hover {
  background: linear-gradient(
    to right top,
    #f9ed32,
    #ffc725,
    #ffa034,
    #ff7a48,
    #ff565d,
    #fc3d6d,
    #f4217f,
    #e50094,
    #d600ab,
    #bc00c5,
    #8e00e2,
    #002aff
  );
  color: var(--gx-floral-white);
}
.dat-social-links-wrapper .instagram:hover .dat-social-links-tooltip,
.dat-social-links-wrapper .instagram:hover .dat-social-links-tooltip::before {
  background: var(--gx-pink);
  color: var(--gx-floral-white);
}
.dat-social-links-wrapper .youtube:hover,
.dat-social-links-wrapper .youtube:hover .dat-social-links-tooltip,
.dat-social-links-wrapper .youtube:hover .dat-social-links-tooltip::before {
  background: var(--gx-cherry-red);
  color: var(--gx-floral-white);
}

@media (max-width: 840px) {
  .dat-footer-col .dat-footer-social-links {
    display: flex;
    justify-content: space-evenly;
  }
}

/* ! ------------ Footer section CSS End ------------ */
