@font-face {
  font-family: GT Walsheim Pro;
  src: local("GT Walsheim Pro Regular"), local("GTWalsheimProRegular"),
    url("../fonts/GTWalsheimProRegular.woff2") format("woff2"),
    url("../fonts/GTWalsheimProRegular.woff") format("woff"),
    url("../fonts/GTWalsheimProRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: local("GT Walsheim Pro Bold"), local("GTWalsheimProBold"),
    url("../fonts/GTWalsheimProBold.woff2") format("woff2"),
    url("../fonts/GTWalsheimProBold.woff") format("woff"),
    url("../fonts/GTWalsheimProBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  font-family: GT Walsheim Pro;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-10 {
  font-size: 10px;
}

.fw-500 {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: black;
}

.color-orange {
  color: #ff4c38;
}

.bg-orange {
  background-color: #ff4c38;
}

.color-gray {
  color: #555;
}

.text-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.highlight {
  height: 4px;
  border-radius: 6px;
  background: #ff4c38;
  width: 0;
  position: absolute;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 992px) {
  .fs-12 {
    font-size: 9px;
  }
}

@media screen and (min-width: 767px) {
  #header .container-xxl {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
  section .container-xxl {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
}

.hero-sec-img-container img,
.hero-sec-sm-img-container-a img,
.second-sec-img img,
.second-sec-main-img img,
.third-sec-main-img img,
.fourth-sec-img img,
.fifth-section-img img,
.sixth-sec-img-container img,
.sixth-section-img img,
.eighth-sec-img img,
.ninth-section-img img,
.tenth-sec-img img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header > div {
  padding: 16px 0;
}
#header .nav-link {
  padding: 0px;
}
#header #search-form {
  position: relative;
}
#header #search-form input {
  border-radius: 66px;
  border: none;
  padding: 8px 26px;
  color: #ff4c38;
  background-color: #ffedea;
}
#header #search-form input:focus {
  box-shadow: none;
}
#header #search-form input::placeholder {
  color: #ff4c38; /* Set the placeholder text color to #fff */
}
#header #search-form button {
  border: none;
  position: absolute;
  right: 0px;
  top: 0;
  border-top-right-radius: 66px;
  border-bottom-right-radius: 66px;
  padding: 13px 18px;
  display: flex;
  background: #ffedea;
}
/* #header .nav {
  margin-right: -10px;
} */

.navbar {
  border-bottom: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
  padding-top: 10px;
  padding-bottom: 10px !important;
}
.dropdown-toggle::after {
  display: none !important;
}
.navbar .nav .nav-link {
  color: #000;
  font-family: GT Walsheim Pro;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.navbar-brand {
  margin-left: 20px;
}
.navbar-brand img {
  height: 40px;
}
.navbar .carousel-container {
  display: flex;
  align-items: center; /* Align items on the cross axis */
  justify-content: space-between; /* Distribute items evenly along the main axis */
  width: 100%;
  padding: 10px 0;
}

.navbar .carousel {
  display: flex;
  white-space: nowrap;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
  overflow: hidden;
  justify-content: start;
}

.navbar .carousel-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  padding: 7px;
}

.navbar .carousel::-webkit-scrollbar {
  display: none; /* For Chrome, Safari and Opera */
}

.navbar .carousel img {
  height: 65px;
  margin: 10px;
}

.navbar .prev,
.navbar .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 0px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
}

.navbar .prev {
  padding-right: 20px;
}
.navbar .next {
  padding-left: 20px;
}
@media (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header > div {
    padding: 2px 10px !important;
  }
  #header img {
    height: 40px;
  }
  .navbar {
    display: none;
    border-bottom: none;
    padding-top: 60px;
  }
  .navbar .container {
    border-top: 2px solid #242731;
    /* margin-top: 18px; */
  }
  .navbar .prev {
    display: none;
  }
  .navbar .next {
    display: none;
  }
  #header .nav {
    display: none;
  }
}

@media (max-width: 575px) {
  .navbar .prev {
    padding-right: 5px;
  }
  .navbar .next {
    padding-left: 5px;
  }
  .navbar .carousel {
    overflow-x: auto;
  }
  .navbar .carousel img {
    height: 50px;
    margin: 5px;
  }
  .navbar .carousel-content {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Mobile Navbar Sidebar
--------------------------------------------------------------*/
.mobile-sidebar {
  background-color: #ff4c38 !important;
}
.mobile-sidebar .sidebar-category {
  background-color: #fff;
  border-radius: 0px 15px 15px 0px;
  padding: 14px 0px;
  /* margin-top: 8px; */
  margin-right: 20px;
}
.mobile-sidebar .sidebar-category .accordion-item {
  border: none;
}
.accordion-button {
  background-color: #fff !important;
  box-shadow: none !important;
  padding: 8px 36px 8px 20px;
}
.accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #fff;
}
.accordion-body {
  padding-left: 77px !important;
}
.accordion-collapse {
  background-color: #f5f5f5;
}
.mobile-sidebar .sidebar-category ul {
  padding: 0;
  margin: 0;
}
.mobile-sidebar .sidebar-category ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #555;
}
.accordion-button img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 17px;
}
.accordion-button.btn-hide:not(.collapsed)::after,
.accordion-button.btn-hide::after {
  background-image: unset !important;
}
.mobile-sidebar .sidebar-category .accordion-button p {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0%;
}
.mobile-sidebar .sidebar-links {
  margin-top: 25px;
  margin-bottom: 40px;
  padding-left: 8px;
}
.mobile-sidebar .sidebar-links p {
  display: block;
  color: #fff;
  font-family: Gilroy-Medium;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}
.mobile-sidebar .copyright {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Gilroy-Medium;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.14px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.mobile-sidebar .copyright a {
  color: rgba(255, 255, 255, 0.8);
}
.accordion-body ul a img {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 10px;
}
.offcanvas {
  visibility: unset;
}
@media (min-width: 768px) {
  .mobile-sidebar {
    display: none;
  }
}

/* -----------------------------------
hero section 
----------------------------------- */

.hero-sec-img-container {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.hero-sec-sm-img-container-a {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.hero-section-main-img-content h2 {
  font-size: 34px;
  font-weight: bold;
  -webkit-line-clamp: 3;
}

.hero-section-img-content h6 {
  -webkit-line-clamp: 2;
}

.hero-sec-box-shad {
  box-shadow: 0px 0px 10.390625px 0px rgba(0, 0, 0, 0.1);
  border: 0.742px solid #e2e2e2;
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .hero-section-main-img-content h2 {
    font-size: 25px;
  }
  .small-img-user {
    width: 25px;
    height: 25px;
  }
  .hero-section-h6 {
    font-size: 12px;
  }
  .hero-section .fs-14 {
    font-size: 12px;
  }
  .hero-section .fs-12 {
    font-size: 9px;
  }
  .big-img-user {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 596px) {
  .hero-section-main-img-content h2 {
    font-size: 22px;
  }
  .small-img-user {
    width: 17px;
    height: 17px;
  }
}

/* -----------------------------------
Second section 
----------------------------------- */

.second-sec {
  background-color: #ff4c38;
  overflow: hidden;
}

.second-sec h2 {
  font-size: 45px;
}

.second-sec h6 {
  font-size: 20px;
}

.second-section-img-content h6 {
  -webkit-line-clamp: 2;
}

.second-sec-img {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.second-sec .hero-sec-box-shad {
  box-shadow: 0px 0px 10.390625px 0px rgba(0, 0, 0, 0.1);
  border: 0.742px solid #e2e2e2;
  background: #cb3625;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .second-sec-slider .slick-arrow {
    position: absolute;
    width: 61px;
    top: -30%;
    cursor: pointer;
  }
  .second-sec-slider svg.slick-arrow.prevArrow {
    right: 55px;
  }
  .second-sec-slider svg.slick-arrow.nextArrow {
    right: 0;
  }
  .second-sec-slider .slick-dots {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .second-sec-slider .slick-arrow {
    width: 60px;
    position: absolute;
    bottom: -17%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
  }
  .second-sec-slider svg.slick-arrow.prevArrow {
    left: 10%;
  }
  .second-sec-slider svg.slick-arrow.nextArrow {
    right: -3%;
  }
  .second-sec-slider .slick-dots li button:before {
    font-size: 17px !important;
    opacity: 0.5 !important;
    color: #fff !important;
  }
  .second-sec-slider .slick-dots li.slick-active button:before {
    opacity: 0.85 !important;
    color: rgb(255, 255, 255) !important;
  }
  .second-sec-slider .slick-dots {
    bottom: -61px;
  }
  .second-sec .fs-12 {
    font-size: 12px;
  }
  .second-section-img-content .small-img-user {
    width: 25px;
    height: 25px;
  }
}

/* -----------------------------------
third section 
----------------------------------- */

.third-sec .top-head ul li {
  cursor: pointer;
}

.third-sec-main-content h2 {
  -webkit-line-clamp: 3;
}

.third-sec-main-img {
  padding-top: 56.2%;
  position: relative;
}

.tab-content.active {
  display: flex;
}

.tab-content {
  display: none;
}

.third-sec .slick-prev {
  left: 85%;
  top: 65%;
  z-index: 1;
}

.third-sec .slick-next {
  left: 90%;
  top: 65%;
  z-index: 1;
}

.third-sec .slick-dots {
  display: none !important;
}

.third-sec-main-img img {
  border-radius: 10px;
}

.third-sec .slick-slider {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .third-sec-main-content {
    box-shadow: 0px 0px 10.390625px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 10px;
    width: 54%;
    top: 50%;
    position: absolute;
    right: -33%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 1200px) {
  .third-sec-main-content h2 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 991px) {
  .third-section .fs-12 {
    font-size: 9px;
  }
  .third-sec-main-content h2 {
    font-size: 20px !important;
  }
  .third-sec .top-head ul li {
    font-size: 20px !important;
  }
  .third-sec-box-shad {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .third-sec .slick-prev {
    display: none;
  }
  .third-sec .slick-next {
    display: none;
  }
  .third-sec-main-content .third-sec-slider {
    pointer-events: none;
  }
  .third-sec-main-content .fs-12 {
    font-size: 12px;
  }
  .third-sec-main-content .small-img-user {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .third-sec .slick-arrow {
    position: absolute;
    width: 61px;
    top: 64%;
    cursor: pointer;
  }
  .third-sec svg.slick-arrow.prevArrow {
    right: 10%;
    z-index: 1;
  }
  .third-sec svg.slick-arrow.nextArrow {
    right: 4%;
  }
  .third-sec .slick-dots {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .third-sec .top-head ul li {
    font-size: 18px !important;
  }
  .second-sec .fs-12 {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .third-sec .slick-arrow {
    position: absolute;
    width: 61px;
    top: 64%;
    cursor: pointer;
  }
  .third-sec svg.slick-arrow.prevArrow {
    right: 10%;
    z-index: 1;
  }
  .third-sec svg.slick-arrow.nextArrow {
    right: 4%;
  }
  .third-sec .slick-dots {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .third-sec .slick-arrow {
    width: 60px;
    position: absolute;
    bottom: -17%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
  }
  .third-sec svg.slick-arrow.prevArrow {
    left: 10%;
  }
  .third-sec svg.slick-arrow.nextArrow {
    right: -3%;
  }
  .third-sec .slick-dots li button:before {
    font-size: 17px !important;
    opacity: 0.2 !important;
    color: #ff4c38 !important;
  }
  .third-sec .slick-dots li.slick-active button:before {
    opacity: 0.85 !important;
    color: #ff4c38 !important;
  }
  .third-sec .slick-dots {
    bottom: -61px;
  }
}

/* -----------------------------------
Fourth section 
----------------------------------- */

.fourth-sec {
  background: #f9f9f9;
}

.fourth-sec .top-head ul li {
  cursor: pointer;
}

.fourth-section-img-content h6 {
  -webkit-line-clamp: 3;
}

.fourth-sec-img {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.fourth-sec-img span {
  border-radius: 8px 0 10px 0;
  color: black;
  background-color: white !important;
}

.fourth-sec .slick-prev {
  left: -50px;
  top: 46%;
  z-index: 1;
}

.fourth-sec .slick-next {
  right: -10px;
  top: 46%;
  z-index: 1;
}

.fourth-sec .slick-dots {
  display: none !important;
}

.fourth-sec h6 {
  font-size: 20px;
}

.fourth-sec .top-head ul li {
  font-size: 18px !important;
}

@media screen and (max-width: 767px) {
  .fourth-sec .slick-prev {
    bottom: -30px;
    top: auto;
    left: 10px;
  }
  .fourth-sec .slick-next {
    bottom: -30px;
    top: auto;
    right: 46px;
  }
  .fourth-sec .slick-dots {
    display: block !important;
  }
  .fourth-sec .slick-arrow {
    width: 60px;
    position: absolute;
    bottom: -17%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
  }
  .fourth-sec svg.slick-arrow.prevArrow {
    left: 10%;
  }
  .fourth-sec svg.slick-arrow.nextArrow {
    right: -3%;
  }
  .fourth-sec .slick-dots li button:before {
    font-size: 17px !important;
    opacity: 0.2 !important;
    color: #ff4c38 !important;
  }
  .fourth-sec .slick-dots li.slick-active button:before {
    opacity: 0.85 !important;
    color: #ff4c38 !important;
  }
  .fourth-sec .slick-dots {
    bottom: -61px;
  }
}

@media screen and (max-width: 991px) {
  .fourth-sec .fs-12 {
    font-size: 12px;
  }
  .fourth-sec .small-img-user {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .fourth-sec .slick-arrow {
    position: absolute;
    width: 61px;
    top: 50%;
    cursor: pointer;
  }
  .fourth-sec svg.slick-arrow.prevArrow {
    left: -50px;
  }
  .fourth-sec svg.slick-arrow.nextArrow {
    right: -50px;
  }
  .fourth-sec .slick-dots {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .fourth-sec .slick-arrow {
    position: absolute;
    width: 61px;
    top: 50%;
    cursor: pointer;
  }
  .fourth-sec svg.slick-arrow.prevArrow {
    left: -50px;
  }
  .fourth-sec svg.slick-arrow.nextArrow {
    right: -50px;
  }
  .fourth-sec .slick-dots {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .fourth-sec .slick-arrow {
    width: 60px;
    position: absolute;
    bottom: -17%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
  }
  .fourth-sec svg.slick-arrow.prevArrow {
    left: 10%;
  }
  .fourth-sec svg.slick-arrow.nextArrow {
    right: -3%;
  }
  .fourth-sec .slick-dots li button:before {
    font-size: 17px !important;
    opacity: 0.2 !important;
    color: #ff4c38 !important;
  }
  .fourth-sec .slick-dots li.slick-active button:before {
    opacity: 0.85 !important;
    color: #ff4c38 !important;
  }
  .fourth-sec .slick-dots {
    bottom: -61px;
  }
}

/* -----------------------------------
fifth section 
----------------------------------- */

.fifth-section-img {
  padding-right: 40%;
  padding-top: 23%;
  position: relative;
}

.fifth-section-img img {
  border-radius: 10px;
}

.fifth-section-img-content h6 {
  -webkit-line-clamp: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .fifth-sec .fs-12 {
    font-size: 10px;
  }
  .fifth-sec .fs-14 {
    font-size: 12px;
  }
}

/* -----------------------------------
sixth section 
----------------------------------- */

.sixth-sec {
  overflow: hidden;
}

.sixth-sec-img-container img {
  border-radius: 10px;
}

.sixth-sec-img-container {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.sixth-section-img {
  padding-right: 42%;
  padding-top: 23.3%;
  position: relative;
}

.sixth-sec h4 {
  -webkit-line-clamp: 2;
}

.sixth-section-img-content h6 {
  -webkit-line-clamp: 2;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .sixth-sec .fs-12 {
    font-size: 10px;
  }
  .sixth-sec .fs-14 {
    font-size: 12px;
  }
}

.sixth-sec-img-content .fs-12 {
  font-size: 12px;
}

/* -----------------------------------
seventh-section 
----------------------------------- */

.seven-section {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
}

.seven-section-img {
  padding-bottom: 0%;
  padding-right: 0%;
  padding-top: 86%;
  padding-left: 0%;
  position: relative;
  margin: 0 7px;
}

.seven-section-img img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  padding: 7%;
}

.seven-section .logo-img-1 {
  background: #7a2cf4;
}

.seven-section .logo-img-2 {
  background: #ffcab9;
}

.seven-section .logo-img-3 {
  background: #dceeff;
}

.seven-section .logo-img-4 {
  background: #573377;
}

.seven-section .last-container {
  background-color: #f1f1f1;
}

.seven-section form button {
  top: 8px;
  margin-right: 8px;
}

.seven-sec-social:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff4c38;
  top: 50%;
  z-index: -1;
}

/*--------------------------------------------------------------
# Fresh Section
--------------------------------------------------------------*/
.fresh-section {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
}
.fresh-section h3 {
  color: #171717;
  font-size: 34px;
  font-weight: 700;
}
.fresh-section .logo-list li a > div {
  width: 150px;
  height: 150px;
  overflow: hidden;
  /* padding: 12px; */
  border-radius: 10px;
}

.fresh-section .logo-list li a > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fresh-section .logo-list li a > p {
  margin-top: 14px;
  color: #000;
  text-align: center;
  width: 180px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.fresh-section .newsletter-form {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 24px;
}
.fresh-section .newsletter-form h4 {
  color: var(--main-blue, #171717);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.fresh-section .newsletter-form h5 {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.fresh-section .newsletter-form form {
  padding: 8px 10px;
  border-radius: 7px;
  display: flex;
}
.fresh-section .newsletter-form input {
  padding: 0;
  border: none;
  padding-right: 15px;
  font-size: 16px;
}
.fresh-section .newsletter-form .form-control:focus {
  box-shadow: none;
}

.fresh-section .newsletter-form button {
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #171717;
  border: none;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 5px;
}
.fresh-section .social-icons {
  position: relative;
  border: 1px solid #e2e2e2;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.social-wrapper {
  position: relative;
}
.social-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #1778f2;
  top: 50%;
}
.fresh-section .social-icons h4 {
  color: #1778f2 !important;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.fresh-section .social-icons ul > li {
  padding: 8px;
}
.fresh-section .social-icons ul > li > a > svg {
  border-radius: 10px;
}
.fresh-section .social-icons .youtube a {
  background-color: #f00;
  padding: 3px;
}

@media (max-width: 768px) {
  .social-wrapper::before {
    display: none;
  }
  .fresh-section h3 {
    font-size: 25px;
  }
  .fresh-section .logo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    /* padding: 0px 12px !important; */
    gap: 0;
  }

  .fresh-section .logo-list li {
    /* width: 50%; */
    padding: 10px;
  }
  .fresh-section .logo-list li a > div {
    width: 120px;
    height: 120px;
    border-radius: 5px;
  }
  .fresh-section .logo-list li a > p {
    font-size: 14px;
    width: auto;
  }
  .fresh-section .newsletter-form {
    border-radius: 10px;
    padding: 15px 18px 18px 18px;
  }
  .fresh-section .social-icons {
    border-radius: 10px;
  }
  .fresh-section .social-icons .list-unstyled a {
    border-radius: 6px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    padding: 0;
  }
  .fresh-section .social-icons .list-unstyled a > svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fresh-section .newsletter-form h4 {
    font-size: 16px;
  }
  .fresh-section .newsletter-form form {
    border-radius: 8px;
    padding: 6px 8px;
  }
  .fresh-section .newsletter-form input {
    font-size: 12px;
  }
  .fresh-section .newsletter-form button {
    border-radius: 4px;
    font-size: 12px;
  }
  .fresh-section .social-icons h4 {
    font-size: 16px;
    font-weight: 400;
  }
}

/* -----------------------------------
eighth-section 
----------------------------------- */

.eighth-sec h2 {
  font-size: 45px;
}

.eighth-sec h3 {
  font-size: 35px;
}

.eighth-sec-img img {
  border-radius: 10px;
}

.eighth-sec-img {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.eighth-sect-img-content h3 {
  -webkit-line-clamp: 2 !important;
}

.eighth-sect-img-content .text-ellipsis {
  -webkit-line-clamp: 3;
}

.eighth-sec .fs-18 {
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .eighth-sec h3 {
    font-size: 20px;
  }
  .eighth-sec .fs-18 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .eighth-sec h2 {
    font-size: 25px;
  }
  .eighth-sec h3 {
    font-size: 20px;
  }
  .eighth-sect-img-content .text-ellipsis {
    -webkit-line-clamp: 2;
  }
  .eighth-sec .fs-18 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 596px) {
  .eighth-sec h3 {
    font-size: 14px;
  }
  .eighth-sect-img-content .text-ellipsis {
    -webkit-line-clamp: 2;
  }
  .eighth-sec .fs-18 {
    font-size: 10px;
  }
}

/* -----------------------------------
ninth-section 
----------------------------------- */

.ninth-section-img {
  padding-right: 40%;
  padding-top: 23%;
  position: relative;
}

.ninth-section-img img {
  border-radius: 10px;
}

.ninth-section-img-content h6 {
  -webkit-line-clamp: 2;
}

.ninth-sec .fs-14 {
  font-size: 10px;
}

.eighth-sect-img-content h3 {
  -webkit-line-clamp: 2 !important;
}

@media screen and (min-width: 1200px) {
  .ninth-section-img-content h6 {
    font-size: 20px;
  }
  .ninth-sec .small-img-john {
    width: 25px;
    height: 25px;
  }
  .ninth-sec .fs-14 {
    font-size: 12px;
  }
}

@media screen and (max-width: 596px) {
  .ninth-section-img-content h6 {
    font-size: 14px;
  }
}

/* -----------------------------------
tenth-section 
----------------------------------- */

.tenth-sec h2 {
  font-size: 45px;
}

.tenth-sec-img {
  padding-top: 56%;
  position: relative;
  margin-right: 0%;
}

.tenth-sec-img img {
  border-radius: 10px;
}

.tenth-sect-img-content .text-ellipsis {
  -webkit-line-clamp: 2;
}

.tenth-sec button {
  background-color: rgb(214, 212, 212);
  margin: 0 auto;
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .tenth-sec h2 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .tenth-sec button {
    background-color: rgb(214, 212, 212);
    margin: 0 auto;
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding-top: 0px !important;
  background-color: #ff4c38;
}

.footer .main {
  border-bottom: 1px solid #ffffff;
}
.footer .logo-wrapper .logo {
  object-fit: contain;
  height: 56px;
  width: 120px;
  margin-top: -6px;
}
.footer .logo-wrapper p {
  color: #ffffffb2;
  font-size: 18px;
  font-family: Gilroy-Medium;
  text-transform: capitalize;
}

.footer .explore-wrapper ul > li {
  display: flex;
  align-items: center;
}
.footer .explore-wrapper ul > li a {
  color: rgba(255, 255, 255, 0.59);
  font-size: 16px;
  font-family: Gilroy-Medium;
  text-transform: capitalize;
}
.footer .explore-wrapper ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  margin: 0 20px;
  width: 8px;
  height: 8px;
  background: #ffffff96;
  border-radius: 50%;
  vertical-align: middle;
}

.footer .form .input-group {
  position: relative;
  display: flex;
  background-color: #ff7060;
  padding: 2px;
  border-radius: 4px;
}
.form-control:focus {
  box-shadow: none;
}

.footer .form .form-control {
  border-radius: 4px;
  flex-grow: 1;
  background-color: #ff7060;
  border: none;
  color: #fff;
}

.footer .form .input-group-append {
  display: flex;
}

.footer .form .input-group button {
  border-radius: 5px;
  font-size: 12px;
  background: #fff;
  height: 100%;
  padding: 0 12px;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-family: Gilroy-Medium;
  font-weight: 700;
}

.footer .links ul {
  gap: 34px;
  margin: 0;
}

.footer .links {
  color: #fff;
  font-size: 16px;
  font-family: Gilroy-Medium;
  letter-spacing: 0.16px;
  text-transform: capitalize;
}

.footer .logo-block {
  width: auto;
}

.footer .afterNotificationAdd p {
  color: #fff;
  font-size: 14px;
}
.footer .afterNotificationAdd .welcome {
  display: flex;
  align-items: center;
}
.footer .afterNotificationAdd .welcome h2 {
  font-size: 20px;
  color: #fff;
  margin: 0px 10px 0px 0px;
}
.footer .newsletter-input-message {
  display: block;
  text-align: left;
  color: red;
}

.footer .form-control.newsletter-input::placeholder {
  color: #fff; /* Set the placeholder text color to #fff */
}

@media (max-width: 768px) {
  .footer .links ul {
    gap: 10px;
    margin-bottom: 20px !important;
  }
  .footer .logo-block {
    width: 100%;
  }
  .footer .main {
    padding-bottom: 20px !important;
  }
}

/*--------------------------------------------------------------
# Search Bar CSS
--------------------------------------------------------------*/
.search-toggle,
.search-cancel {
  display: none;
}

.search-block {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 60px;
  z-index: 10;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.35s ease-in-out;
}

.search-block.is-active {
  top: 0;
  right: 0;
  height: 60px;
  background-color: #ff4c38;
}

.search-form {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.search-input {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  border: none;
  outline: none;
  padding: 0px 10px;
}
.search-input input[type="search"]::placeholder {
  color: #000 !important;
}

.input-search-icon {
  position: absolute;
  right: 6px;
  background: none;
  border: none;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

@media (max-width: 768px) {
  .search-toggle,
  .search-cancel {
    display: block;
    cursor: pointer;
    font-size: 1.45rem;
    line-height: inherit;
    color: #000;
  }
}
/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
  justify-content: center;
  align-items: center;
}
.pagination .page-item .page-link {
  border: none !important;
  color: #555;
}
.pagination .page-item.active .page-link {
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  background: none;
}
.pagination .page-link:focus {
  box-shadow: none !important;
  background-color: transparent !important;
}
.pagination .page-link:hover {
  background-color: transparent !important;
  font-weight: 700;
  color: #000;
}

/*--------------------------------------------------------------
# Article Page
--------------------------------------------------------------*/
/*detail.html page css*/
.article-page .banner {
}

.article-page .detail-section {
  /* margin-top: 40px; */
  margin-bottom: 24px;
}

.article-page .game-section-header-text {
  margin-top: 30px;
  color: #7a2cf4;
  font-size: 24px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
}
.article-page .banner-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
}
.article-page .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.article-page .author img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.article-page .author span {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.article-page .game-section-header h1 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}
.article-page .short-desc {
  font-size: 24px;
  font-style: italic;
  color: #333333;
  padding-bottom: 20px;
  font-weight: 500;
  line-height: 24px;
}
.article-page .description {
  font-size: 18px;
  font-family: Gilroy;
  line-height: 28px;
  color: #555555;
  font-weight: 500;
  margin-bottom: 24px;
}
.article-page .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 30px;
}
.article-page .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-page .description:first-of-type::first-letter {
  font-size: 96px;
  color: #ff4c38;
  opacity: 0.75;
  float: left;
  margin-top: -24px;
  margin-right: 7px;
  margin-bottom: -34px;
  font-weight: bold;
}
/* .game-component-right img {
  margin-bottom: 27px;
} */
/* .article-page .readmore-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 154px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 87.69%);
} */
.article-page .readmore-container {
  display: none;
  text-transform: uppercase;
}
.article-page .game-component-right span {
  color: #000;
  font-size: 24px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 700;
  /* line-height: 151.3%; */
  margin-top: 64px;
  margin-bottom: 27px;
}

/* .article-page .game-component-left-s1 {
  position: sticky;
  top: 80px;
  height: 100%;
} */

.article-page .adventure-section .top-head h3 {
  color: #004e44;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.article-page .adventure-section .normal-card .card-content {
  min-height: 200px;
}

.article-page .game-component-left-s2 {
  flex-shrink: 0;
  align-items: center;
  /* margin-top: 30px; */
}
.article-page .game-component-left-s2 img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 64px;
  object-fit: cover;
}
.article-page .only-border {
  border-bottom: 2px solid #e0e0e0;
  margin-top: 20px;
  margin-bottom: 3px;
}
.article-page .game-component-left-s2 span {
  color: #000;
  font-size: 24px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 17px;
}
.article-page .game-component-left-s2 a {
  color: #fff;
  font-size: 18px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border-radius: 10px;
  padding: 12px 0;
  border: none;
  margin: 8px 0;
}
.article-page .game-component-left-s2 a svg {
  margin-right: 5px;
}
.article-page .game-component-left-s2 i {
  width: 11px;
  height: 20.878px;
  flex-shrink: 0;
  color: #fff;
  margin-right: 10px;
}
.article-page .game-component-left-s2-style {
  border-radius: 15px;
  border: none;
  background: #f3f3f3;
  /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1); */
}
.article-page .btn-instagram {
  background: linear-gradient(90deg, #586be7 0%, #bb4b9b 50%, #f93745 100%);
}
.article-page .btn-twitter {
  background: #00acee;
}
.article-page .btn-linkedin {
  background: #0077b5;
}

.article-page .game-component-left-s1-style {
  border: none;
}
.article-page .game-section-header-text-mobile-view {
  margin-bottom: 14px;
  margin-top: 14px;
}
.article-page .GSHTMV-left {
  float: left;
  width: 50%;
}
.article-page .GSHTMV-left img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 64px;
  object-fit: cover;
}
.article-page .GSHTMV-left span {
  color: #000;
  font-size: 14px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 6px;
}
.article-page .GSHTMV-right {
  float: right;
  width: 50%;
  text-align: right;
}
.article-page .GSHTMV-right span {
  color: #7a2cf4;
  font-size: 14px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.05px;
}
.article-page .facebook-btn a {
  padding: 14px 34px;
  color: #fff;
  font-size: 14px;
  font-family: Gilroy-Bold;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
}
.article-page .long-ad {
  max-width: 728px;
  width: 100%;
  height: 90px;
  margin: 30px auto;
}
.article-page .article-heading {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.article-page .article-desc {
  color: #555;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  /* margin-top: 16px; */
  margin-bottom: 0px;
  line-height: 1.4;
}

.article-page .footer-slider-detail {
  margin-bottom: -180px;
}
.article-page .side-card-text span {
  color: #ff4c38;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.article-page .side-card-container .section-head {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.article-page .side-card-container .section-head h2 {
  color: #ff4c38;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.article-page .side-card-text h3 {
  margin-top: 3px;
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-page .article-card {
  border: none;
}
.article-page .side-card-container a {
  display: flex;
  align-items: center;
}
.article-page .cat-btn {
  color: #ff4c38;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 0px;
}
#initial-content {
  display: none;
}
#full-content {
  display: block;
}
.article-page .readmore {
  display: none;
}
@media (min-width: 768px) {
  .article-page .post-content p:first-of-type::first-letter {
    font-size: 96px;
    color: #ff4c38;
    opacity: 0.75;
    float: left;
    margin-top: -22px;
    margin-right: 5px;
    margin-bottom: -33px;
    font-weight: bold;
  }
}
@media (max-width: 768px) {
  .article-content-parent {
    font-size: 17px;
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .article-page .readmore {
    display: block;
    bottom: 0;
    position: absolute;
    background: linear-gradient(
      transparent,
      rgb(255, 255, 255) 75%,
      rgb(255, 255, 255) 100%
    );
    width: 100%;
    height: 100px;
    padding: 0 20px 0 0;
  }
  .article-page .article-heading {
    font-size: 20px;
  }
  .article-page .author img {
    width: 30px;
    height: 30px;
  }
  .article-page .author span {
    font-size: 18px;
  }
  .article-page .adventure-section .top-head h3 {
    font-size: 24px;
  }
  #initial-content {
    display: block;
    overflow: hidden;
  }
  #full-content {
    display: none;
  }
  .article-page .adventure-section .normal-card .card-content {
    min-height: auto;
  }
  .article-page .readmore-container {
    display: block;
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 120px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    bottom: 10px;
    padding-right: 20px;
  }
  .article-page .side-card-text span {
    font-size: 14px;
  }
  .article-page .side-card-text h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .article-page .game-section-header h1 {
    font-size: 22px;
  }
  .article-page .detail-section {
    margin-top: 0px;
  }
  .article-page .banner-img {
    width: 100%;
    /* height: 210px; */
    margin-top: 0px;
    margin-bottom: 12px;
    padding: 0px;
  }
  .article-page .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
  }

  .article-page .read-more-button {
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    background: #ff4c38;
    color: #fff;
    top: 50px;
    padding: 8px 22px;
    position: relative;
  }

  .article-page .game-section-header p {
    font-size: 24px;
  }

  .article-page .game-component-right p {
    font-size: 14px;
  }
  .article-page .game-component-right span {
    margin-top: 30px;
    margin-bottom: 14px;
  }
  .article-page .GSHTMV-right .btn.active {
    font-size: 12px;
    padding: 10px;
    font-family: Gilroy-Medium;
  }

  .article-page .description:first-of-type::first-letter {
    font-size: 54px;
    margin-right: 7px;
    margin-bottom: 3px;
    margin-top: 18px;
  }
  .article-page .short-desc {
    font-size: 18px;
    padding-bottom: 14px;
  }
  .article-page .footer-slider-detail {
    margin-bottom: -110px;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Category Page
--------------------------------------------------------------*/
.category-page .cate-details .article-card {
  display: inline-block;
}
.category-page .cate-details-banner {
  height: 300px;
  /* background: linear-gradient(
    89.99deg,
    #1b0044 26.57%,
    rgba(27, 0, 68, 0) 99.99%
  ); */
  background-size: cover;
  background-repeat: no-repeat;
}

.category-page .cate-details-banner h1 {
  color: #fff;
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.category-page .cate-details-banner .heading {
  color: #fff;
  text-align: start;
  font-family: Gilroy-Bold;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 128.5%; /* 20.56px */
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .category-page .popular-section {
    padding-bottom: 0px !important;
  }
  .category-page .cate-details-banner h1 {
    font-size: 24px;
  }
  .category-page .cate-card {
    margin-bottom: 16px;
  }
  .category-page .aside-head-cate {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .category-page .cate-list-row {
    gap: 10px;
  }
  .category-page .cate-name {
    font-size: 18px;
  }
  .category-page section {
    margin-bottom: 24px;
  }
  .category-page .international {
    margin-bottom: -110px;
  }
  .category-page .cate-details-banner {
    height: 115px;
  }
  .category-page .cate-details-banner .heading {
    font-size: 16px;
  }
  .category-page .cate-card .article-card .img-block {
    /* height: 188px; */
    height: 100%;
    aspect-ratio: 16 / 9;
  }
  .category-page .cate-card .article-card .text-block {
    padding: 20px;
  }
  .category-page .cate-card .article-card .text-block p {
    color: #000;
    font-family: Gilroy-Bold;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .category-page .cate-latest-banner {
    width: 100%;
    height: auto;
  }
}
