html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
}

:root {
  --primary-color: #feb20d;
  --primary-light-color: #ffcc00;
  --secondary-color: #fdffaa;
  --light-yellow-color: #fcff89;
  --light-color: #ffffff;
  --dark-color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  padding: 0;
  margin: 0;
  font-family: "inter";
}

a,
a:focus {
  color: var(--dark-color);
  text-decoration: none;
  color: var(--light-color);
}

.btn {
  border-radius: 0;
  padding: 12px 24px;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--dark-color);
}

p {
  font-size: 16px;
  font-weight: 400;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  position: relative;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
}

.section-title:after {
  content: "";
  width: 120px;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  background: var(--primary-color);
  transform: translateX(-50%);
}

h3 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 600;
}

.padding-section {
  padding: 60px 0;
}

.breadgram-main {
  width: 100%;
  display: inline-block;
  background-image: url(../images/breadgram-bg-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadgram-main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0 0 0 /0.5);
}

.page-title {
  position: relative;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 999;
  font-size: 46px;
  margin-top: 50px;
}

.section-paragraph {
  width: 100%;
  max-width: 700px;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 20px;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

/* THE HEADER CSS START FORM HERE  */
.logo {
  width: auto;
  position: relative;
  z-index: 99;
}

header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  z-index: 9999;
}

header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.4);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background: rgba(0, 0, 0, 0.6);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-main {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main nav {
  width: auto;
}

.header-main nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  column-gap: 20px;
}

.header-main nav ul li a {
  padding: 10px 18px;
  color: var(--light-color);
  font-size: 18px;
  font-family: "inter";
  text-transform: uppercase;
  font-weight: 500;
}

/* .header-main nav ul li a:last-child {
  padding-right: 0;
} */

.header-main nav ul li a:hover,
.header-main nav ul li a.active {
  color: var(--primary-color);
  transition: all ease 0.5s;
}

.header-main .menu-bar {
  width: auto;
  display: none;
}

.header-main .menu-bar span {
  width: 35px;
  display: inline-block;
  background: var(--light-color);
  height: 3px;
  position: relative;
  border-radius: 100px;
  cursor: pointer;
  transition: all ease 0.5s;
}

.header-main .menu-bar span:after,
.header-main .menu-bar span:before {
  content: "";
  width: 35px;
  height: 3px;
  position: absolute;
  background: var(--light-color);
  border-radius: 100px;
  left: 0;
  transition: all ease 0.5s;
}

.header-main .menu-bar span:after {
  top: -8px;
}

.header-main .menu-bar span:before {
  bottom: -8px;
}



.menu {
  display: block;
}

.header-main nav ul li ul.sub-menu, .header-main nav ul li ul.sub-menu ul {
  display: block;
}

.menu li {
  display: inline-block;
  position: relative;
  /* z-index: 100; */
}

.menu li:first-child {
  margin-left: 0;
}

.header-main nav ul li ul.sub-menu li a {
  font-weight: 600;
  text-decoration: none;
  padding: 12px 15px;
  display: block;
  color: #000;
  font-size: 14px;
  transition: all 0.2s ease-in-out 0s;
}

.menu li a:hover,
.menu li:hover>a {
  color: var(--primary-color);
}



.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 200px;
  position: absolute;
  left: -30px;
  background: #eee;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.2s ease-out;
}

.menu ul:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #eee;
  border-width: 6px;
  margin-left: -6px;
}

.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  font-size: 12px;
  font-weight: normal;
  display: block;
  color: #797979;
  background: #eee;
}

.menu ul li a:hover,
.menu ul li:hover>a {
  background: var(--primary-color);
  color: #fff !important;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 8px);
}
.menu ul.sub-menu ul {  transform: translate(0, 0px); }
.menu ul ul {
  left: 200px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
  display: none !important;
}
.menu ul li:hover ul {
  display: block !important;
}
.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #eee;
  border-width: 6px;
  margin-top: -6px;
}

.menu li>ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

/* THE HEADER CSS END FORM HERE  */

/* THE HERO SECTION CSS START FORM HERE  */
.hero {
  width: 100%;
  position: relative;
  z-index: 999;
}

.hero .slick-slide:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
}

.hero .hero-slider-01 {
  width: 100%;
  padding: 200px 0 250px 0;
  background-image: url(../images/hero-bg1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero .hero-slider-02 {
  width: 100%;
  padding: 200px 0 250px 0;
  background-image: url(../images/hero-bg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero .hero-slider-01:after,
.hero .hero-slider-02:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0 0 0 / 50%);
}

.hero .slider-contant {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.hero .slider-contant .slider-heading {
  flex-direction: column;
}

.hero .slider-contant .slider-heading h1 {
  color: var(--primary-color) !important;
}

.hero .slider-contant .slider-heading h1,
.hero .slider-contant .slider-heading h2 {
  font-weight: 600;
  font-size: 38px;
  color: var(--light-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: rgba(0 0 0 / 55%);
  padding: 4px 15px;
  display: inline-block;
}

.hero .slider-contant button {
  border: none;
  padding: 10px 20px;
  margin-top: 20px;
  font-family: "Inter";
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: var(--dark-color);
  transition: all ease 0.5s;
}

.hero .slider-contant button:hover {
  background-color: var(--light-color);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero .slick-dots {
  bottom: inherit;
  top: 50%;
  right: 12%;
  transform: translateY(10px);
  width: auto;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.hero .slick-dots li {
  width: 0;
}

.hero .slick-dots li button {
  padding: 0;
  width: 0;
}

.hero .slick-dots li button:before {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--light-color);
  content: "";
  border-radius: 50%;
  opacity: 1;
}

.hero .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: var(--light-yellow-color);
  border-color: var(--light-yellow-color);
}

/* THE HERO SECTION CSS END FORM HERE  */

/* THE WHO WE ARE SECTION CSS START FORM HERE  */

.who-we-are-main {
  width: 100%;
  margin-top: -120px;
  position: relative;
  z-index: 999;
  padding-bottom: 50px;
}

.box img {
  max-width: 40px;
}

.who-we-are-main .who-we-are-card {
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(to right, #ffcc00 50%, white 50%);
}

.left-contain p {
  margin: 10px 0 20px 0;
}

.left-contain a.contact-us {
  border: 1px solid var(--dark-color);
}

.left-contain a.contact-us:hover {
  background-color: var(--light-color);
  border-color: transparent;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.left-contain {
  width: auto;
  padding: 20px;
}

.left-contain p {
  font-weight: 600;
}

.right-contain {
  width: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 30px;
}

.right-contain .box {
  width: calc(50% - 30px);
  height: 150px;
  text-align: center;
  border: 1.5px solid var(--secondary-color);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
}

.right-contain .box h4 {
  font-size: 16px;
  font-weight: 300;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}

/* THE WHO WE ARE SECTION CSS END FORM HERE  */

/* THE OUR PRODUCT SECTION CSS START FORM HERE  */
.tab-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-main .nav-tabs {
  border: 1px solid #ddd !important;
  border-radius: 30px;
  padding: 8px 4px;
}

.tab-main .nav-tabs li button {
  border-radius: 30px;
  padding: 8px 20px;
  border: transparent !important;
  font-size: 16px;
  color: var(--dark-color);
}

.tab-main .nav-tabs li {
  margin: 0 5px;
}

.tab-main .nav-tabs .nav-link.active,
.tab-main .nav-tabs .nav-item.show .nav-link,
.tab-main .nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.product-main {
  display: grid;
  grid-template-columns: auto auto auto;
  width: 100%;
  justify-content: space-between;
  row-gap: 30px;
  column-gap: 30px;
}

.accordion-item:first-of-type {
  border-top-left-radius: inherit !important;
  border-top-right-radius: inherit !important;
}

.accordion-item {
  border: none !important;
  background: none !important;
}

.product-main .product-card {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.product-main .product-card a {
  color: var(--dark-color)
}

.product-main .product-card a .product-img {
  width: auto;
}

.product-main .product-card a .product-img img {
  border-radius: 5px 5px 0 0;
}

.product-main .product-card a .product-card-body {
  padding: 20px 15px 20px 15px;
}

.product-main .product-card a .product-card-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-main .product-card a .product-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.tab-content {
  margin-bottom: 50px;
}

.single-product-page {
  width: 100%;
  display: inline-block;
}

.single-product-page .product-img {
  width: 100%;
  border: 1px solid var(--primary-light-color);
  padding: 20px;
}

.single-product-page .product-img img {
  width: 100%;
  height: auto;
}

.single-product-page .product-details {
  background: #FEFFE5;
  height: 100%;
  padding: 30px;
}

.single-product-page .product-details h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-product-page .product-details h6 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.single-product-page .product-details p {
  color: var(--dark-color);
  font-weight: 500;
  line-height: 24px;
}

/* THE OUR PRODUCT SECTION CSS END FORM HERE  */

/* THE BRANDED SECTION CSS START FORM HERE  */
.branded-main {
  width: 100%;
  display: inline-block;
  background-image: url(../images/branded-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.branded-main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(254 178 13 / 80%);
  z-index: 9;
}

.branded {
  width: auto;
  position: relative;
  z-index: 999;
}

.branded .branded-contant {
  width: calc(100% - 300px);
  display: inline-block;
}

.branded .branded-contant p {
  font-weight: 600;
}

.branded .branded-button {
  width: auto;
}

.branded .branded-button a {
  background-color: var(--light-color);
}

.branded .branded-button a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

/* THE BRANDED SECTION CSS END FORM HERE  */

/* THE MATERIAL SECTION CSS START FORM HERE  */
.material-main {
  width: 100%;
  display: inline-block;
}

.material-main .material-img {
  width: 100%;
  display: inline-block;
  padding: 30px 0 30px 30px;
  position: relative;
  z-index: 9;
}

.material-main .material-img img {
  width: 540px;
}

.material-main .material-contant {
  border: 1px solid var(--primary-light-color);
  padding: 30px 50px 30px 120px;
}

.material-main .material-contant h6 {
  font-size: 24px;
  text-transform: capitalize;
}

.material-main .material-contant p {
  font-size: 16px;
  color: #888888;
  margin-bottom: 30px;
  font-weight: 300;
}

.material-main .material-contant .trusted {
  width: auto;
}

.material-main .material-contant .trusted .users {
  background-color: var(--secondary-color);
  padding: 30px;
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  border-radius: 5px;
  max-width: 100%;
}

.material-main .material-contant .trusted .users p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-color);
}

.material-main .material-contant .trusted .users h4 {
  font-weight: 700;
  font-size: 36px;
}

/* THE MATERIAL SECTION CSS END FORM HERE  */

/* THE TETIMONIAL SECTION CSS START FORM HERE */
.testimonial-main {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-image: url(../images/testimonial-bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-main:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0 0 0 / 50%);
}

.testimonial-main .row {
  position: relative;
  z-index: 999;
}

.testimonial-main .testimonial-right-contant {
  background-color: rgb(253 255 170 / 80%);
  padding: 60px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.testimonial-main .testimonial-right-contant h5 {
  font-size: 50px;
  font-weight: 700;
  position: relative;
  margin-bottom: 50px;
}

.testimonial-main .testimonial-right-contant h5:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  width: 100px;
  height: 100px;
  z-index: -1;
  border-radius: 50%;
}

.testimonial-main .testimonial-right-contant h6 {
  font-size: 40px;
  font-weight: 700;
}

.testimonial-slider .slider-contant {
  width: auto;
  display: inline-block;
  color: var(--light-color);
}

.testimonial-slider .slider-contant .fa.fa-quote-left {
  font-size: 80px;
  margin-left: 3px;
  color: var(--primary-light-color);
}

.testimonial-slider .slider-contant span {
  display: block;
  letter-spacing: 7px;
}

.testimonial-slider .slider-contant h4 {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0;
  text-transform: capitalize;
}

.testimonial-slider .slider-contant .profile {
  margin: 30px 0;
  width: auto;
  column-gap: 10px;
}

.testimonial-slider .slider-contant .profile .profile-pic {
  width: 100%;
  max-width: 100px;
  display: inline-block;
}

.testimonial-slider .slider-contant .profile .profile-pic img {
  width: 90px;
  border-radius: 50%;
  border: 2px solid var(--light-color);
}

.testimonial-slider .slider-contant .profile .profile-details {
  width: auto;
}

.testimonial-slider .slider-contant .profile .profile-details strong {
  font-size: 20px;
  font-weight: 600;
}

.testimonial-slider .slider-contant .profile .profile-details span {
  letter-spacing: inherit;
  font-size: 18px;
  font-weight: 300;
}

.testimonial-slider .slick-arrow {
  position: absolute;
  top: inherit;
  bottom: 20px;
  right: 0px;
  width: 50px;
  height: 50px;
  background-color: var(--light-yellow-color);
}

.testimonial-slider .slick-arrow.slick-prev {
  left: inherit;
  right: 60px;
  z-index: 99;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
  color: var(--dark-color);
  font-family: "FontAwesome";
  font-weight: 300;
  font-size: 30px;
}

.testimonial-slider .slick-next:before {
  content: "\f105";
}

.testimonial-slider .slick-prev:before {
  content: "\f104";
}

/* THE TETIMONIAL SECTION CSS END FORM HERE */


/* THE CLIENTS SECTION CSS START FORM HERE  */

.client-main {
  overflow: hidden;
}

/* THE CLIENTS SECTION CSS END FORM HERE  */

/* THE ABOUT US SECTION CSS START FORM HERE */
.contact-main {
  width: 100%;
  display: inline-block;
}

.about-main .about-img {
  width: auto;
}

.about-main .about-img img {
  padding: 10px;
  border: 1px solid var(--primary-light-color);
}

.about-main .about-contant {
  width: auto;
}

.about-main .about-contant h6 {
  font-size: 18px;
  font-weight: 600;
}

.about-main .about-contant p {
  color: #888888;
  font-weight: 300;
  margin-bottom: 30px;
}

ul.checkbox-list {
  width: auto;
  margin: 10px 0;
  padding: 0;
  align-items: flex-start;
  column-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

ul.checkbox-list li {
  color: #000;
  width: calc(50% - 30px);
  margin: 5px 0 5px 10px;
  position: relative;
}

ul.checkbox-list li a {
  color: #585858;
  padding: 0px 12px;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

ul.checkbox-list li:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: -7px;
  top: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}

ul.checkbox-list li:before {
  content: "";
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -12px;
  top: 5px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.our-main {
  width: 100%;
  display: inline-block;
}

.our-main .our-box {
  border: 1px solid;
  height: 100%;
  width: 100%;
  padding: 30px;
}

.our-main .our-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.our-main .our-box h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #feb20d;
}

.our-main .our-box p {
  color: #585858;
  font-size: 16px;
  font-weight: 500;
}

/* THE ABOUT US SECTION CSS END FORM HERE */

/* THE LEADERSHIP SECTION CSS START FORM HERE */
.leadership-main {
  width: 100%;
  display: inline-block;
  background-color: #f5f6f6;
}

.leadership-main .team-card {
  background-color: #fff;
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.leadership-main .team-card .team-img {
  width: 100%;
  display: inline-block;
}

.leadership-main .team-card .team-img img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50%;
  object-fit: cover;
}

.leadership-main .team-card h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 10px 0;
  color: #000;
}

.leadership-main .team-card p {
  color: #585858;
}

/* THE LEADERSHIP SECTION CSS END FORM HERE */


/* THE CONTACT US SECTION CSS START FORM HERE */
.contact-main {
  width: 100%;
  display: inline-block;
}

.contact-main .contact-form {
  width: 100%;
  display: inline-block;
}

.contact-main .contact-form .contact-item {
  display: flex;
  justify-content: space-between;
}

.contact-main .contact-form .contact-item .contact-info {
  width: calc(50% - 10px);
  border: 1px solid var(--primary-color);
  padding: 20px 20px;
}

.contact-main .contact-form .contact-item .contact-info p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.contact-main .contact-form .contact-item .contact-info .fa {
  color: var(--primary-color);
}

.contact-main .contact-form .contact-item .contact-info ul {
  padding: 0;
  margin: 0;
}

.contact-main .contact-form .contact-item .contact-info ul li {
  list-style: none;
}

.contact-main .contact-form .contact-item .contact-info ul li a {
  color: #797979;
}


.contact-main .contact-form .contact-address {
  display: flex;
  justify-content: space-between;
}


.contact-main .contact-form .contact-address .contact-info {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 20px 20px;
}

.contact-main .contact-form .contact-address .contact-info p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.contact-main .contact-form .contact-address .contact-info .fa {
  color: var(--primary-color);
}

.contact-main .contact-form .contact-address .contact-info ul {
  padding: 0;
  margin: 0;
}

.contact-main .contact-form .contact-address .contact-info ul li {
  list-style: none;
}

.contact-main .contact-form .contact-address .contact-info ul li {
  color: #797979;
}

.contact-main .contact-form .contact-address .contact-info ul li a {
  color: #797979;
}

















.contact-main .contact-form form {
  margin-top: 10px;
}

.contact-main .contact-form form .form-label {
  font-family: "Inter";
  font-size: 18px;
  color: #545454;
}

.contact-main .contact-form form .form-control {
  border-radius: 3px;
  border-color: #d9d9d9;
  padding: 8px 10px;
}

.contact-main .contact-form form .form-control:focus {
  box-shadow: none;
}

.contact-main .contact-form form .send {
  background-color: var(--primary-color);
  padding: 12px 50px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 18px;
}

.contact-img {
  width: 100%;
  height: 100%;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* THE CONTACT US SECTION CSS END FORM HERE */



/* THE FOOTER SECTION CSS START FORM HERE */
.footer-main {
  width: 100%;
  display: inline-block;
  background-color: var(--secondary-color);
}

.footer-main .row {
  padding: 70px 0;
}

.footer-main .footer-heading {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-main ul.footer-link {
  width: auto;
  padding-left: 24px;
}

.footer-main ul.footer-link li {
  list-style: none;
  position: relative;
  margin: 10px 0;
}

.footer-main ul.footer-link li a {
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 400;
  position: relative;
}

.footer-main ul.footer-link li a:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: -19px;
  top: 9px;
  background: var(--primary-color);
  border-radius: 50%;
}

.footer-main ul.footer-link li a:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -24px;
  top: 4px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

.contact-details ul {
  width: auto;
  margin-top: 25px;
  background: var(--light-yellow-color);
  padding: 30px;
  border-radius: 10px;
}

.contact-details ul li.d-flex {
  column-gap: 12px;
}

.contact-details ul li i.fa {
  font-size: 20px;
}

.contact-details ul li i.fa.fa-map-marker {
  font-size: 30px;
}

.contact-details ul li p {
  font-size: 16px;
  font-weight: 400;
}

.contact-details ul li {
  margin-bottom: 22px;
}

.contact-details ul li:last-child {
  margin-bottom: 0;
}

.contact-details ul li a {
  font-size: 18px;
  color: var(--dark-color);
  padding-left: 6px;
}

.contact-details ul li i.fa.fa-phone {
  font-size: 26px;
}

.copy-right {
  width: 100%;
  background-color: var(--light-yellow-color);
  padding: 10px 0 0 10px;
}

.copy-right ul {
  display: flex;
  justify-content: end;
  column-gap: 20px;
}

.copy-right ul li a {
  width: 40px;
  height: 40px;
  background: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.copy-right ul li a i.fa {
  font-size: 20px;
}

.copy-right ul li a:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
  transform: rotate(360deg);
}

/* THE FOOTER SECTION CSS END FORM HERE */