@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Saira", sans-serif;
}

:root {
  --themclrone: #e61d33;
}
body,
html {
  height: 100%;
}

ul {
  list-style: none;
}

section {
  padding: 60px 0px;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1180px;
  width: 100%;
  margin: auto;
}
.heading {
  margin-bottom: 35px;
}
.heading h2 {
  font-size: 45px;
  line-height: 55px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.heading h2 span {
  color: var(--themclrone);
  font-size: 50px;
}
.heading p {
  color: #484848;
  font-weight: 600;
  font-size: 18px;
}
.glbl-btn {
  border: 1px solid #a9a7a7;
  padding: 10px 25px;
  display: inline-block;
  color: #1c1c1c;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: all 0.5s ease-in-out;
}
/* header  */
header.extraHeader {
  height: auto;
}
header.extraHeader .main-container {
  height: auto;
}
header.extraHeader .video-container {
  display: none;
}
header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

header::after {
  position: absolute;
  content: "";
  /* background-color: #00000073; */
  height: 100%;
  inset: 0;
  z-index: 0;
}

header .main-container {
  display: flex;
  height: 100vh;
  transition: all 0.5s ease-in-out;
}

header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-contant {
  color: #fff;
  font-size: 40px;
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.banner-contant h1 {
  font-size: 150px;
  font-weight: 800;
  text-shadow: 2px 2px 15px #000;
  line-height: 155px;
}
.banner-contant p {
  font-size: 23px;
}

.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 3;
  width: 70px;
  transition: all 0.5s ease-in-out;
  border-right: 1px solid #ffffff4f;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.fav {
  width: 35px;
  transition: all 0.5s ease-in-out;
}

.nav:hover {
  background-color: #e61d33;
  cursor: pointer;
}
.nav:hover span {
  background-color: #fff;
}
.nav:hover .fav {
  filter: brightness(0) invert(1);
}
.nav:hover .side-text {
  color: #fff;
}
.nav .hamburger {
  width: 100%;
  margin-top: 25px;
  cursor: pointer;
}
.nav span {
  width: 32px;
  height: 3px;
  background: #4f4f4f;
  display: block;
  margin: 7px auto;
  border-radius: 25px;
  transition: all 0.5s ease-in-out;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.side-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  color: #100f0f;
  text-align: center;
  line-height: 1.8;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  max-width: 500px;
  background-color: #e61d33;
  left: -100%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.menu.open {
  left: 70px;
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.menu ul > li > a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  margin: 8px 0px;
  display: inline-block;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  padding-left: 35px;
}
.menu ul li a span {
  padding-left: 25px;
}
.menu ul li a:hover {
  padding-left: 15px;
}

.nav:hover .side-text p {
  color: #fff;
}

.menu ul {
  width: 100%;
}

.menu ul .submenu {
  background: #af24249c;
  max-height: 0; /* start closed */
  overflow: hidden; /* hide content */
  opacity: 0;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  padding: 0;
}
.menu .submenu li {
  padding-left: 0px;
}
.menu .submenu li a {
  font-size: 15px;
  padding-left: 20px;
}

#menu .activeSubMenu .submenu {
  max-height: 500px; /* large enough for submenu */
  opacity: 1;
  visibility: visible;
  padding: 15px 0;
}
/* video banner part  */

.video-container {
  position: relative;
  flex: 1;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-contant {
  color: #fff;
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  transition: left 0.5s ease, padding-left 0.5s ease, text-align 0.5s ease;
}

.banner-contant h1 {
  font-size: 150px;
  font-weight: 800;
  text-shadow: 2px 2px 15px #000;
  line-height: 155px;
  transition: font-size 0.5s ease, line-height 0.5s ease;
}

.banner-contant p {
  font-size: 23px;
  transition: font-size 0.5s ease;
}

.menu-open .banner-contant {
  left: 10%;
  text-align: left;
  padding-left: 30px;
}

.menu-open .banner-contant h1 {
  font-size: 100px;
  line-height: 110px;
}

.menu-open .banner-contant p {
  font-size: 18px;
}

/* about  */
.about .container {
  display: flex;
  justify-content: space-between;
}
.about .container .left {
  width: 55%;
  padding-left: 35px;
}
.about .container .left p {
  margin: 12px 0;
  line-height: 22px;
  font-size: 16px;
  color: #211f1f;
  text-align: justify;
}
.about .container .left a {
  border: 1px solid #a9a7a7;
  padding: 10px 25px;
  display: inline-block;
  color: #1c1c1c;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: all 0.5s ease-in-out;
}
.about .container .left a:hover {
  background-color: var(--themclrone);
  border: 1px solid var(--themclrone);
  color: #fff;
}
.about .container .right img {
  border-radius: 4px;
}

/* services */
.services {
  /* background-image: linear-gradient(to bottom, #e61d33 20%, rgba(0, 0, 0, 0)), url(../img/background-pattern2.jpg); */
  background-image: url(../img/background-pattern2.png);
  background-size: 190px;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: lighten;
}
.services .container {
  padding-left: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.services .box {
  width: 32%;
  background: #fff;
  padding: 5px;
  border-radius: 4px;
  padding-bottom: 25px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.services .box h3 {
  line-height: 0;
  margin: 10px 0px;
  font-size: 21px;
  font-weight: 600;
  color: #000000;
  line-height: 25px;
}
.services .box img {
  width: 100%;
  height: 365px;
  border-radius: 4px;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  object-fit: cover;
}

.services .box a {
  border: 1px solid #a9a7a7;
  padding: 10px 25px;
  display: inline-block;
  color: #1c1c1c;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
  color: #555353;
}

.services .box a:hover {
  background-color: var(--themclrone);
  color: #fff;
  border: 1px solid var(--themclrone);
}
.services .heading {
  text-align: center;
  margin-bottom: 25px;
}
.services .heading h2 {
  margin-bottom: 10px;
}

/* clients */
.clients {
  padding: 100px 0px;
}
.clients .heading {
  text-align: center;
}
.clients .heading h2 {
  margin-bottom: 10px;
}

.logo-slider {
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite; /* slow & smooth */
}

.slider-track img {
  height: 70px;
  margin: 0 40px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* move exactly one set's width */
  }
}

/* media coverage  */
.media-coverage {
  text-align: center;

  background-image: url(../img/background-pattern2.png);
  background-size: 190px;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: lighten;
}

.gallery {
  column-count: 4; /* Number of columns */
  column-gap: 15px;
  padding-left: 35px;
}

.gallery-item {
  break-inside: avoid; /* Prevent split between columns */
  margin-bottom: 20px;
  width: 95%;
}

.gallery-item img {
  width: 100%;
  height: auto; /* Keep original proportions */
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.caption {
  text-align: center;
  color: #ccc;
  padding: 10px;
  font-size: 18px;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #bbb;
}

/* Next & Previous Buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.3s;
  user-select: none;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.prev:hover,
.next:hover {
  color: #bbb;
}
.media-coverage .glbl-btn {
  margin-top: 35px;
  text-transform: capitalize;
}
.media-coverage .glbl-btn:hover {
  background-color: var(--themclrone);
  color: #fff;
  border: 1px solid var(--themclrone);
}

/* about whychoose */
.about.whychoose .left {
  width: 52%;
}
.about.whychoose .right {
  width: 43%;
}
.about.whychoose .right img {
  width: 100%;
}

/* .testimonial */
.testimonial {
  background-image: url(../img/background-pattern2.png);
  background-size: 190px;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: lighten;
}
.testimonial .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  padding-left: 35px;
  align-items: center;
}
.testimonial .left {
  position: relative;
}

@media (max-width: 900px) {
  .testimonial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.testimonial .left h2 {
  margin: 0 0 12px;

  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.testimonial .left h2 .bold {
  display: block;
  font-weight: 800;
}

.testimonial .left p {
  margin: 10px 0 28px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.6;
}

.testimonial .nav-testi {
  display: flex;
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}

.testimonial .nav-testi button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.08s ease, border-color 0.2s;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all ease-in-out 0.5s;
}

.testimonial .nav-testi button:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  background-color: var(--themclrone);
}

.testimonial .nav-testi button:hover svg {
  color: #fff;
}
.testimonial .nav-testi .next-testi {
  margin-left: 10%;
}

.testimonial .nav-testi button:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

.testimonial .nav-testi svg {
  width: 30px;
  height: 30px;
  color: #e61d33;
}

.testimonial .right {
  position: relative;
  background-color: #fff;
  padding: 20px;
  height: 330px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: justify;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.testimonial .quote-mark {
  position: absolute;
  left: 15px;
  top: 0px;
  font-size: 44px;
  font-weight: 900;
  color: #e61d33;
}

@media (max-width: 900px) {
  .quote-mark {
    left: 0;
    top: -10px;
  }
}

.testimonial blockquote {
  margin: 0;
  font-weight: 650;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: #333;
  margin-top: 20px;
}

@media (max-width: 900px) {
  blockquote {
    font-size: 26px;
  }
}

.testimonial .profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.testimonial .profile img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: block;
}

.testimonial .profile .name {
  margin: 0;
  font-weight: 700;
}

.testimonial .profile .role {
  font-size: 14px;
  font-weight: 500;
  color: #e32626;
  margin: 0;
}

.testimonial .fade {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial .fade.show {
  opacity: 1;
  transform: none;
}

.testimonial .visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* cta */

.cta {
  background-color: var(--themclrone);
  background-image: url(../img/cta.png);
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.cta .container {
  padding-left: 35px;
}
.cta .form-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta .heading {
  margin-bottom: 35px;
  text-align: center;
}
.cta p {
  color: #fff;
}

.cta .heading h2 {
  color: #fff;
}
.cta .heading h2 span {
  color: #000;
}

.cta input {
  width: 33%;
  border: unset;
  height: 62px;
  border: unset;
  outline: unset;
  border-radius: 4px;
  padding: 0px 15px;
}
form input[type="submit"] {
  background: #000;
  margin: 30px auto;
  display: block;
  color: #fff;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  width: 32%;
}

input[type="text"],
input[type="email"],
input[type="number"] {
  width: 100%;
  padding: 20px 10px 10px; /* Adjusted padding for label */
  font-size: 16px;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: var(--thmeClrOne);
  border: 1px solid #bdbdbd;
  color: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
  outline: none;
  border-color: #fff;
  color: #fff;
}

.floating-label {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 10px;
  top: 0;
  padding: 0 5px;
  background: var(--themclrone);
  transition: 0.2s ease all;
}

input[type="text"]:focus ~ .floating-label,
input[type="email"]:focus ~ .floating-label,
input[type="number"]:focus ~ .floating-label,
input[type="text"]:not(:placeholder-shown) ~ .floating-label,
input[type="email"]:not(:placeholder-shown) ~ .floating-label,
input[type="number"]:not(:placeholder-shown) ~ .floating-label {
  top: -10px; /* Adjusted position for label */
  font-size: 12px;
  color: #fff;
}

/* footer  */

/* footer  */
footer {
  padding: 35px 0px;
  background-color: var(--themclrone);
}
footer .container {
  padding-left: 35px;
}
.footerBody .topHeader {
  border-bottom: 1px solid #ebebeb87;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footerBody .topHeader .box {
  width: 30% !important;
}

footer .footerBody .topHeader .box img {
  object-fit: cover;
  margin-right: 15px;
  width: 45px;
}

footer .footerBody .topHeader .box {
  margin-left: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
footer .footerBody .topHeader .box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
footer .footerBody .topHeader .box p {
  color: #fff;
  font-size: 15px;
}
footer .footer-ul-parent {
  display: flex;
}
footer .footer-ul-parent .footer-ul {
  width: 45%;
}
footer .footer-ul-parent .footer-ul:last-child {
  margin-left: 25px;
}

footer .footer-ul {
  margin: 12px 0px;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff69;
}
footer .footer-ul h4 {
  color: #fff;
  text-transform: uppercase;
}
footer .footer-ul h4 span {
  font-size: 12px;
}

footer .footer-ul p {
  color: #fff;
}

footer .footer-ul ul {
  display: flex;
  margin-top: 5px;
}

footer .footer-ul ul li {
  border-right: 1px solid #ffffff7a;
  padding: 0px 15px;

  text-transform: capitalize;
  text-decoration: underline;
  font-weight: 500;
  text-transform: capitalize;
}
footer .footer-ul ul li a {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
}

footer .footer-ul ul li:first-child {
  padding-left: 0px;
}
footer .footer-ul ul li:last-child {
  border-right: unset;
}
footer .copyright {
  margin-top: 30px;
}

footer .copyright .container {
  display: flex;
  justify-content: space-between;
}
footer .copyright p {
  color: #fff;
}

footer .copyright ul li {
  display: inline-block;
}

footer .copyright ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  background: #cd172b;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin-left: 8px;
  transition: all ease-in-out 0.5s;
}
footer .copyright ul li a:hover {
  transform: translatey(-5px);
}
footer .copyright ul li a img {
  width: 20px;
}

/* inner pages  */
.inner-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/about-inner.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.inner-banner h2 {
  font-size: 50px;
  color: #fff;
}
.detail-about .heading {
  margin-bottom: 20px;
}

.detail-about .container {
  padding-left: 35px;
}

.detail-about p {
  color: #333;
  margin: 10px 0;
  line-height: 28px;
  text-align: justify;
}

/* our team  */
.our-team {
  background-image: url(../img/background-pattern2.png);
  background-size: 190px;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: lighten;
}
.our-team .our-team-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
.our-team .box {
  background-color: #fff;
  width: 24%;
  padding: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
}
.our-team .box .team-about h4 {
  font-size: 21px;
  text-align: center;
  color: var(--themclrone);
}
.our-team .box .team-about p {
  text-align: center;
  font-weight: 600;
}
.our-team .box img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 300px;
  object-fit: cover;
}
.our-team .container {
  padding-left: 35px;
}

.our-team .heading {
  text-align: center;
}

.detail-about ul li {
  line-height: 28px;
  margin: 8px 0;
  list-style: disc;
  margin-left: 15px;
  font-size: 16px;
}
/* main-contact */
.main-contact {
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../img/background-pattern2.png);
  background-size: 190px;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: lighten;
}
.main-contact .right form {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 20px;
}
.main-contact .right .form-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.main-contact .right {
  width: 32%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: auto;
  background: #fff;
  border-radius: 5px;
}
.main-contact .right .heading {
  margin-bottom: 0;
  background: #e61d33;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.main-contact .right .heading h2 {
  color: #fff;
  font-size: 36px;

  text-align: center;
}
.main-contact .right .heading h2 span {
  color: #fff;
  font-size: 36px;
}
.main-contact .left {
  width: 50%;
}

.main-contact .left img {
  width: 100%;
  margin-bottom: -7px;
}
.main-contact .right input {
  border: 1px solid #bdbdbd;
}

.main-contact .right .floating-label {
  color: #211f1f;
  background-color: #fff;
}

.main-contact .right input[type="text"]:focus ~ .floating-label,
input[type="email"]:focus ~ .floating-label,
input[type="number"]:focus ~ .floating-label,
input[type="text"]:not(:placeholder-shown) ~ .floating-label,
input[type="email"]:not(:placeholder-shown) ~ .floating-label,
input[type="number"]:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  font-size: 12px;
  color: #e61d33;
}

.main-contact .right input[type="text"]:focus,
.main-contact .right input[type="email"]:focus,
.main-contact .right input[type="number"]:focus {
  outline: none;
  border-color: #fff;
  color: #fff;
  border: 1px solid #e61d33;
}

.main-contact form input[type="submit"] {
  background: var(--themclrone);
  border: unset;
  margin: 25px auto;

  width: 100%;
}

/* brandbox */
.brandbox .container {
  padding-left: 35px;
}
.brandbox .container .box {
  margin-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0px;
}
.brandbox .container .box:last-child {
  border-bottom: unset;
}
.brandbox .container ul {
  display: flex;
  align-items: center;
}
.brandbox .container ul li {
  margin-right: 50px;
}
.brandbox .container ul li img {
  width: 160px;
}

.brandbox .box .heading {
  margin-bottom: 0px;
}

.brandbox .box .heading h2,
.brandbox .box .heading h2 span {
  font-size: 30px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.brandbox .box .heading h2 span {
  font-size: 25px;
  margin-bottom: 0px;
  text-transform: lowercase;
  margin-left: -5px;
  color: #000;
}

.brandbox .box:last-child ul li img {
  width: 300px;
}
