@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  font-family: var(--f1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: var(--f1);
}
.spacing{
    padding: 100px 0;
}
.web-btn a {
    font-family: var(--f1);
    background: var(--c4);
    color: var(--c3);
    font-size: 15px;
    padding: 5px 30px;
    transition: .5s;
}
.web-title h6 {
    font-size: 39px;
}
:root {
  --c1: #000; /* Black */
  --c2: #fff; /* White */
  --c3: #333333; /* Red */
  --c4: #D4AF37; /* Background Color */
   --c5: linear-gradient(90deg, #020e26 0%, #00347e 50%, #02071a 100%);
  --c6: linear-gradient(90deg, #020e26 0%, #00347e 50%, #02071a 100%);
  --f1: 'Inter';
  --f2:  'Open Sans';
}
::selection {
  background: var(--c1);
 color:var(--c2)
}
.wrapper {
    overflow: hidden;
}
/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
}

/* end inner-wrapper */

/* header-Start */
header.header {
    padding: 10px 0;
    position: relative;
    z-index: 9;
}
.header-logo a h2 {
    font-size: 40px;
    color: var(--c3);
    font-weight: bold;
}
.web-btn a:hover {
    background: var(--c1);
    color: var(--c2);
}
.header-nav-bar nav ul li a {
    font-family: var(--f1);
    color: var(--c3);
    font-size: 15px;
    position: relative;
    transition: .5s;
	text-transform: uppercase;
}
.header-nav-bar nav ul li a:before:hover {
    width:100%;
}

.header-nav-bar nav ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background: var(--c4);
    bottom: 0;
    transition: .5s;
}

.header-nav-bar nav ul li a:hover::before {
    width: 100%;
}

.header-nav-bar nav ul li a:hover {
    color: var(--c4);
}
.header-nav-bar nav ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/*banner-Start  */
.banner {
    position: relative;
    z-index: 1;
    height: 600px;
}

.banner:before {
    position: absolute;
    content: '';
    background-color: #cab568d1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-title h2 {
    font-size: 59px;
    text-align: center;
    color: var(--c2);
    font-family: var(--f2);
    font-weight: bold;
    line-height: 65px;
}
.who-heading h6 {
    font-size: 43px;
    font-weight: bold;
    color: var(--c3);
}
.inner-hed h6 {
    font-size: 39px;
}

.who-heading.inner-hed {
    text-align: center;
    margin-top: 40px;
}
.main-wrapper {
  width: 100%;
  margin-top: 50px;
}

.card-list {
  display: flex;
  list-style: none;
  align-items: stretch;
}

.card-list > li {
  flex: 1;
  padding: 60px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.card-list > li h3 {
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*card  */
.card-list > li img {
  width: 95px;
  height: 95px;   
  object-fit: contain;
  margin: 24px auto;
}

.inner-list {
  padding-left: 20px;
  margin-top: 10px;
  flex-grow: 1; 
}

.inner-list li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 300;
  list-style: disc;
  font-family: var(--f1);
}

.inner-list li::marker {
  color: #fff;
}

.card-list > li:nth-child(1) { background: var(--c5); }
.card-list > li:nth-child(2) { background: #013a81d6; }
.card-list > li:nth-child(3) { background: var(--c6); }
.card-list > li:nth-child(4) {background: #013a81d6;}
.card-list > li:nth-child(5) { background: var(--c5); }

/* content-sec */
section.content-sec {
    background: var(--c5);
    overflow: hidden;
    padding-bottom: 30px;
}
.content-text {
    color: var(--c1);
}
.content-text h6 {
    color: var(--c4);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 47px;
}
.content-img {width: 83%;}
.content-img img {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% {transform: translateY(-30px);}
    100% { transform: translateY(0px); }
}
.content-text p:first-of-type {
    margin-bottom: 7px;
}
.content-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--c1);
}
.web-btn.content-btn a {
    padding: 15px 25px;
    margin-top: 40px;
}
/* another-sec */
section.content-sec.another-sec {
    background: var(--c5);
}
.content-img.another-img {
    margin: 0 0 0 auto;
}
.another-text {padding-left: 105px;}
.another-text h6 {
    font-size: 39px;
    color: var(--c2);
}
/* data-sec */
section.data-section {
}
.content-text.data-text {
    padding-left: 160px;
}
.web-btn.content-btn.detail-btn {
    text-align: end;
    margin-top: 50px;
}

.web-btn.content-btn.detail-btn a {
    background: linear-gradient(
        to bottom,
        #FFAA4A 0%,      /* Top */
        #E6613F 50%,     /* Center */
        #FFAA4A 100%     /* Bottom */
    );
    color:var(--c2
             );
    font-size: 16px;
}

.web-btn.content-btn.detail-btn a i {
    padding-left: 10px;
}
/* Video Section */
section.video-sec {
    background: var(--c4);
}

/* Video wrapper */
.video-area {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: visible; /* important */
}

/* Video */
.video-area video {
    width: 100%;
    display: block;
}

/* Shadow Effect Under Video */
.video-area::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 60px;
    background: rgb(0 0 0 / 94%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: -1;
}

/* Play button overlay */
.video-btn {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Play Button */
.video-btn a {
    position: relative;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #44444482;
    transition: 0.3s ease;
    z-index: 1;
}

/* Ripple Effect */
.video-btn a::before,
.video-btn a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: ripple 2s infinite;
    z-index: -1;
}

.video-btn a::after {
    animation-delay: 1s;
}
.newsletter input::placeholder {
    font-family: var(--f1);
}

.quick-links ul li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background: var(--c4);
    transition: .5s;
    bottom: 0;
}

.quick-links ul li a:hover::before {
    width: 100%;
}
.footer-logo a:hover {
    color: var(--c4);
}

.social-icons a {}

.social-icons a:hover {
    background: var(--c4);
}
/* Keyframes */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Hover */
.video-btn a:hover {
    transform: scale(1.1);
}
.web-btn.content-btn.video {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.web-btn.content-btn.video a {
    background: var(--c5);
    color: var(--c2);
    padding: 13px 30px;
}

.web-btn.content-btn.video a:hover {
    background: var(--c2);
    color: var(--c1);
}

/* footer */

.footer {
 background: var(--c1);
 color: #fff;
 padding: 60px 0;
 font-family: Arial, sans-serif;
}

.footer-logo  h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.quick-links p {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer ul {
  list-style: none;
}

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

.quick-links ul li a {
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.footer ul li a:hover {
  color: var(--c4);
}

/* Newsletter */
.newsletter input {
  width: 100%;
  padding: 10px;
  margin: 12px 0;
  border: 1px solid var(--c3);
  outline: none;
  border-radius: 5px;
}

.newsletter button {
  width: 100%;
  padding: 10px;
  background: var(--c5);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--f1);
}

.newsletter button:hover {
  background: var(--c4);
}

/* Social Icons */
.social-icons {
  margin-top: 50px;
  text-align: center;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: var(--c5);
  color: var(
  --c2);
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  font-weight: bold;
  transition: .5s;
}
.footer-logo {
    text-align: center;
}

.footer-logo a {
    font-size: 18px;
    color: #ccc;
    font-family: var(--f1);
    display: block !important;
    margin-bottom: 10px;
    transition: .5s;
}
.quick-links {
    text-align: center;
}
.newsletter {
    background: var(--c2);
    padding: 20px;
    border-radius: 5px;
}

.newsletter p {
    color: var(--c3);
}
.newsletter h3 {
    font-size: 30px;
    color: var(--c3);
    font-weight: 300;
}
.newsletter input::placeholder {
    font-family: var(--f2);
}
.another-img img {
    transition: transform 0.6s ease;
}

.another-sec:hover .another-img img {
    transform: scale(1.05);
}
.another-img img {
    animation: floatAlt 5s ease-in-out infinite;
}

@keyframes floatAlt {
    0% { transform: translateY(0px); }
    50% {transform: translateY(12px);}
    100% { transform: translateY(0px); }
}
.detail-btn a i {
    transition: transform 0.3s ease;
}

.detail-btn a:hover i {
    transform: translateX(6px);
}
.data-img img {
    transition: transform 0.6s ease;
}

.data-img:hover img {
    transform: scale(1.05);
}
/*about-css  */
.web-title.abou-content-text h2 {
    font-size: 40px;
    padding-bottom: 20px;
}

section.about-content-section {
    background: var(--c5);
}

.web-title.abou-content-text {
    color: var(--c2);
}
/*counter-css  */
span.counter {
    font-size: 60px;
    color: var(--c5);
    font-weight: 600;
    font-family: var(--f1);
}

.counter-inner {
    text-align: center;
}

.counter-inner h6 {
    font-size: 20px;
}
.about-user-img {
    height: 700px;
}

.about-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content.web-title h2 {
    font-size: 50px;
    padding-bottom: 20px;
}

.about-content.web-title {padding: 0 0px;}
/* marquee-section */

.marquee-slider .marquee {
  overflow: hidden;
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
}

.marquee-slider .marquee--inner {
  width: 200%;
  position: absolute;
  display: flex;
  align-items: center;
  animation: marquee 40s linear infinite;
}

.marquee-slider .marquee--inner:hover {
  animation-play-state: paused;
}

/* logo container */

.marquee--inner > span {
  display: flex;
}

.marquee--inner > span div {
  display: flex;
  align-items: center;
}

/* logos */

.marquee--inner span div span {
  margin: 0 0px;
  display: flex;
  align-items: center;
}

.marquee--inner span div span img {
  max-height: 60px;
  height: 210px;
  width: 200px;
  object-fit: cover;
  transition: 0.3s;
  filter: invert(1);
}

/* hover effect */

.marquee--inner span div span img:hover {
  transform: scale(1.1);
}

/* background section */

.marquee-slider .slider-left-right {
  transition: 0.5s;
  background: var(--c5);
  position: relative;
}

.marquee-slider .slider-left-right:hover {
  background: #111;
}

/* animation */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about-user-img-logo h2 {
    text-align: center;
}
.service-card-area ul li img {
    width: 10%;
    height: 190px;
    object-fit: contain;
}
section.counter-sec {
    padding-bottom: 0px;
}
.service-card-area a {
    color: var(--c1);
}
.service-card img {
    width: 10%;
}
.service-card {
    border: 9px solid rgba(82, 173, 225, 1);
    text-align: center;
    padding: 40px 0;
    height: 100%;
}

.service-card img {
    width: 100px;
    margin: 0 auto;
}

.service-card a {
    font-family: var(--f1);
    font-size: 31px;
    color: var(--c2);
    font-weight: 600;
    margin-top: 20px;
    line-height: 41px;
    font-weight: 700;
}
.service-card-section .row .col-12:nth-child(2) .service-card{
    border-color: var(--c4);
}

.service-card-section .row .col-12:nth-child(4) .service-card{
    border-color: var(--c4);
}
section.service-card-section {
    background: var(--c5);
}
.web-title.card-con {
    margin-bottom: 50px;
}

.web-title.card-con h2 {
    font-size: 50px;
    color: var(--c2);
}
.contact-sec-con h6 {
    font-size: 50px;
    padding-bottom: 20px;
    color: var(--c2);
}
.contact-socila ul li a {
    font-family: var(--f1);
    display: flex !important;
    line-height: 20px;
    color: var(--c2);
}

.contact-socila ul li {
    padding-bottom: 20px;
}

.contact-socila ul li a i {
    padding-right: 10px;
}

.contact-sec-con p {
    margin-bottom: 30px;
    color: var(--c2);
}
.contact-form{background: var(--c2);padding:50px;margin-left: 50px;border-radius: 10px;}

.form-title{text-align:center;font-size:36px;margin-bottom:40px;color: var(--c1);}

.contact-form label{display:block;margin-bottom:6px;font-weight:500;font-family: var(--f1);color: var(--c2);}

.contact-form .form-control{width:100%;padding:14px;border:none;margin-bottom:20px;border: 1px solid;}

.captcha-box{
display:flex;
justify-content:center;
margin:20px 0;
}

.captcha-placeholder{
background:#eee;
padding:20px 40px;
border:1px solid #ccc;
}

.submit-btn{width:100%;background:#5a4700;color:#fff;border:none;font-family: var(--f1);padding:16px;font-size:18px;}
.contact-form .form-control::placeholder {
    font-family: var(--f1);
}
section.contact-sec {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background: var(--c5);
}
section.service-card-section .web-title.card-con p {
    color: var(--c2);
    padding-top: 10px;
}
/*card-project  */
/* Container styling */
.project-con {
    font-family: 'Arial', sans-serif;
    color: #444;
    padding: 20px;
    max-width: 600px;
}

/* Header styling */
.project-title {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Meta info styling */
.project-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.category {
    color: #f1c40f; /* Yellow from the image */
    font-weight: bold;
}

/* Social Icon Blocks */
.social-links {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: white;
    text-decoration: none;
}

.fb { background-color: #3b5998; }
.x  { background-color: #000000; }
.li { background-color: #0077b5; }

/* Paragraph styling */
.project-excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
}

/* Rounded Yellow Button */
.read-more-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: #333;
    padding: 12px 30px;
    border-radius: 50px; /* High radius for the pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s ease;
}
.social-links a:hover {
    color: var(--c2);
}
.read-more-btn:hover {
    background-color: #d4ac0d;
    color: var(--c2);
}
.service-con-sec-area h6 {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-con-sec-area p {
    padding: 0 130px;
}
section.service-con {
    background-position: center center;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
/*Trusted-sec  */
section.trusted-client .web-title h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--c2);
}
.image-div {
    height: 400px;
}

.image-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.client-sec {
    position: relative;
}

.client-sec p {
    /* position: absolute; */
    top: 0;
    left: 0;
    /* width: 100%; */
    padding: 0 !important;
    /* margin: 0 auto; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* height: 100%; */
    text-align: center;
    padding: 0 270px;
    color: var(--c2);
}
.service-card img {
    filter: invert(1);
}
section.trusted-client {
    background: var(--c4);
}

.serv-p-item-content h3 {
    font-family: var(--f1);
    font-size: 28px;
    margin: 20px 0px 10px 0px !important;
    line-height: 1.3;
}

.serv-p-item-img img {
    height: 300px;
    object-fit: cover;
    transition: all .7s;
}

.serv-p-item {
    background-color: rgba(246, 246, 246, 1);
    padding: 22px;
    border-radius: 20px;
    height: 100%;
    display: table;
    width: 100%;
}

.serv-p-item-img a {
    display: block;
}

.serv-p-item-img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.serv-p-item:hover .serv-p-item-img img {
    transform: scale(1.1);
}

.serv-p-item-content p {
    font-size: 16px;
}

.serv-p-item-content p {
    margin-bottom: 20px !important;
}

.serv-p-item-content .web-btn {
    background: var(--c4);
    color: var(--c3);
    font-size: 15px;
    padding: 13px 30px;
    transition: .5s;
    text-transform: uppercase;
    font-family: var(--f1);
}

.serv-p-item-content h3 a {
    transition: all .5s;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    color: var(--c3);
}

.serv-p-item-content h3 a:hover {
    color: var(--c1);
}

.web-title.tit-gap h2 {
    font-size: 39px;
    font-weight: bold;
    color: var(--c3);
}

.serv-p-item-content .web-btn:hover {
    background: #000;
    color: #fff;
}

.serv-p-item-img img {
    width: 100%;
}

.serv-p-item-img a {
    display: table;
    width: 100%;
    height: 100%;
}

.cust-gap {
    row-gap: 24px;
}

.service-image {
    border-radius: 14px;
    overflow: hidden;
    /* margin-right: 40px; */
    padding: 30px;
    border: 2px dashed var(--c1);
    height: max-content;
}

.service-image img {
    transition: all .6s;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
}

.header-nav-bar nav ul li ul {
    background-color: var(--c2);
    flex-direction: column;
    position: absolute;
    top: 100%;
    gap: 0px;
    width: 350px;
    left: 0;
    transition: all .5s;
    transform: scaleY(0);
    transform-origin: top;
    z-index: 999 !important;
    padding: 11px 0;
    box-shadow: -1px 0 22px -16px #999;
}
.about-content.web-title p {
    font-size: 19px;
}
section.marquee-slider .web-title h2 {
    font-size: 50px;
    padding-bottom: 40px;
    text-transform: uppercase;
}
.header-nav-bar nav ul li:hover ul {
    transform: scaleY(1);
}

.header-nav-bar nav ul li {
    position: relative;
}

.header-nav-bar nav ul li ul li {
    padding: 3px 19px;
    border-bottom: 1px solid #999;
}
/* RESPONSIVE MENU CSS */

.ham-menu-btn a span {
    width: 32px;
    height: 3px;
    background-color: var(--c2);
}

.ham-menu-btn a {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all .5s;
}

.responsive-menu-inner {
    height: 100%;
    padding: 30px;
    position: relative;
    width: 80%;
    background-color: var(--c2);
    left: -100%;
}

.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.respon-cross a,
.respon-cross a i {
    display: block;
}

.respon-cross a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--c1);
    transition: all .5s;
}

.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1);
    border-color: var(--c1);
}

.respon-logo a {
    display: block;
}

.respon-logo {
    width: 220px;
}

.responsive-links ul li a {
    color: var(--c1);
    transition: all .5s;
    font-size: 28px;
    font-family: var(--f2);
    font-weight: 600;
    display: block !important;
    border-bottom: 1px solid #80808047;
    padding: 10px 0px;
}

.responsive-links {
    margin-top: 50px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}

.responsive-links ul li ul {
    display: none;
}

.responsive-links ul li a:hover {
    color: var(--c1);
}

.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 16px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 22px;
    color: var(--c1);
}

.responsive-links ul li {
    position: relative;
}

.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}

.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 12px 0px;
}

.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.responsive-socials ul li a {
    color: var(--c2);
    font-size: 20px;
}

.responsive-menu.active {
    left: 0;
}
.respon-logo.header-logo a h2 {
    color: var(--c2);
}
.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}
.ham-menu-btn a {
    color: var(--c2);
    font-size: 25px;
    background: var(--c1);
    padding: 0 10px;
    border-radius: 5px;
}
.content-text.data-text ul {
    padding-left: 20px;
}

.content-text.data-text ul li {
    list-style: disc;
    font-family: var(--f1);
}
.ham-menu-btn {
    text-align: end;
}
body.stop-scroll {
    overflow-y: hidden;
}
section.distribution-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

section.distribution-sec:before {
    position: absolute;
    content: '';
    background-color: #00000080;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.distribution-content {
    color: var(--c2);
}

.distribution-content h2 {
    font-size: 60px;
    text-transform: uppercase;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}
.contact-socila ul li {
     text-align: start;
     font-family: var(--f1);
     display: flex !important;
     line-height: 20px;
     color: var(--c2);
}
.about-text ul li {
    list-style: disc;
    font-family: var(--f1);
    font-size: 17px;
}
.about-content.web-title h3 {
    padding-bottom: 20px;
}
.about-text ul {
    padding: 10px 20px;
}
.contact-socila ul li i {
    padding-right: 10px;
}
.Distributor-dep a img {
    width: 70%;
    padding-bottom: 15px;
}
.Distributor-dep.second a img {
    filter: invert(1);
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 500px;
}
.footer-logo li {
    padding-bottom: 20px;
}
.banner-qr-code {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    z-index: 99999;
}
.content-para {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 60px;
}
.client-sec:before {
    position: absolute;
    content: '';
    background: #00000061;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.content-text.web-title.text-center p {
color:var(--c2);
}
.content-text.another-text.web-title p {
    color: var(--c2);
}