html,
body {
  height: 100%;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(45deg, #fddc21, #fdd006);
}

::-webkit-scrollbar-track {
  background: #e8e8e8;
}




a:focus {
  outline: 0px solid;
}

img {
  max-width: 100%;
  height: auto;
}


a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
}

body {
  background: #fff none repeat scroll 0 0;
  color: #222;
  font-family: Calibri;
  font-size: 17px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 10px;
  bottom: 60px;
  z-index: 996;
  background: #cab5d5;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  border-radius: 50%;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #cbb8d4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.clear {
  clear: both;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
input[type=text],
input[type=date],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
button,
button[type=submit] {
  -moz-appearance: none;
  box-shadow: none !important;
}

div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.gif") no-repeat center center;
}


/* ================================================================= common page  css  start*/

.page-anner {
  margin-top: 65px;
  width: 100%;
}

.page-anner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}



/* ================================================================= common page  css  end*/




/* ============================================================   header styling started */
p {
  font-size: 17px;
  color: #333;
}


/* #===================================================================F Header */

#header {
  height: 85px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header.header-scrolled {
  background: #000000;
  height: 85px;
  color: #fff;
}

#header.header-scrolled li a {
  color: #fff;
}

#header.header-scrolled li a:hover {
  color: #fec30d;
}

#header.header-scrolled .brochure-li p {
  color: #fff;
}


#header.header-scrolled .dropdown ul a {
  color: #000;
}

#header.header-scrolled .dropdown ul a:hover {
  color: #fec30d;
}


#header.header-scrolled .logo a img {
  transition: 0.5s;
  background-color: #000;
}

@media (max-width: 768px) {
  #header {
    height: 64px;
    background: #000;
  }

}

.logo {
  position: relative;
  width: 146px;
  padding: 0px 20px;

}

.logo a img {
  position: absolute;
  padding: 0px 10px;
  top: -44px;
  left: 0px;
  transition: 0.5s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
}







.header-bg {
  background: url(../img/background/page-header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 120px 0 60px;
}

.header-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1025px) {
  .header-bg {
    background-attachment: fixed;
  }
}


/*================================================== Navigation Menu  Desktop Navigation  */

.navbar {
  padding: 0;
  display: flex;
  align-self: end;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: end;
  align-self: end;
}

.navbar li {
  position: relative;
}



.navbar li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 8px 10px;
  margin-right: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.navbar li a:hover {
  color: #fec30d;
  border-bottom: 2px solid #fec30d;
}

.navbar .dropdown ul li a {

  border-bottom: 1px dashed #ddd;

}



.navbar .dropdown ul li a:hover {
  background-color: #fec30d;
  color: #000;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  margin: 0px !important;
  font-size: 14px;
  text-transform: none;
  color: #0d2529;
}

.navbar .dropdown ul li a:hover {
  color: #000 !important;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3ec1d5;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}



/*========================================================== Mobile Navigation  */

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 2, 2, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0d2529;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3ec1d5;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3ec1d5;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



.brochure-li {
  transform: translateY(-8px);
}

.brochure-li p {
  margin: 0px !important;
  padding-bottom: 8px;
  font-size: 15px !important;
  font-weight: 700;
  color: #555;
}

.brochure-btn {
  background-color: #fec30d;
  border: 1px solid #fec30d;
  outline: 0;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.brochure-btn:hover {
  color: #000;
  background-color: #cdb4db;
  border: 1px solid #cdb4db;
}



@media (max-width: 1200px) {
  .navbar li a {
    margin-right: 7px;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 130px;
    padding: 0px 20px;
  }

  .navbar li a {
    padding: 5px 10px 6px 10px;
    margin-right: 5px;
    font-size: 14px;
  }

  .brochure-li p {
    font-weight: 600;
  }

  .brochure-btn {
    background-color: #fec30d;
    border: 1px solid #fec30d;
    outline: 0;
    padding: 7px 17px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #000;
  }

  .logo a img {
    padding: 0px 10px;
    top: -15px;
  }

  #header {
    height: 78px;
  }

  #header.header-scrolled {
    height: 78px;
  }

  .brochure-li {
    transform: translateY(-6px);
  }
}

@media (max-width: 992px) {
  #header .mobile-nav-toggle {
    color: #000 !important;
    font-size: 42px !important;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background-color: #fff !important;
  }
}

@media (max-width: 991px) {



  #header .mobile-nav-toggle {
    color: #fff !important;
    font-size: 40px !important;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background-color: var(--color-primary) !important;
    display: block !important;
  }

  #header.header-scrolled .dropdown ul a {
    color: #000 !important;
  }

  #header .dropdown ul a {
    color: #000 !important;
  }

  .navbar li a {
    padding: 5px 10px 6px 10px;
    margin-right: 5px;
    font-size: 14px;
    color: #000 !important;
  }

  .brochure-li {
    padding-right: 40px;
  }

}

@media (max-width: 768px) {
  #header {
    height: 64px;
  }

  #header.header-scrolled {
    height: 64px;
  }

  .logo {
    width: 106px;
    padding: 0px 10px;
  }

  .logo a img {
    padding: 0px 10px;
    top: -9px;
  }

  .brochure-li {
    padding-right: 40px;
  }

  .brochure-btn {
    background-color: #fec30d;
    border: 1px solid #fec30d;
    outline: 0;
    padding: 4px 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #000;
  }

  .brochure-li p {
    margin: 0px !important;
    padding-bottom: 1px;
    font-size: 12px !important;
    font-weight: 700;
    color: #555;
  }

  #header {
    background-color: #fff !important;
  }

  #header.header-scrolled {
    background-color: #000 !important;
  }

  .brochure-li {
    padding-right: 10px;
  }



}

@media (max-width: 425px) {
  #header .mobile-nav-toggle {
    color: #fff !important;
    font-size: 44px !important;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background-color: var(--color-primary) !important;
    display: block !important;
  }

  .footer-box:nth-child(1) {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 375px) {

  #header {
    height: 59px;
  }

  #header.header-scrolled {
    height: 59px;
  }

  .logo {
    width: 104px;
    padding: 0px 0px;
  }


  .logo a img {
    padding: 0px 10px;
    top: -15px;
  }

  .brochure-li p {
    margin: 0px !important;
    padding-bottom: 2px;
    font-size: 10px !important;
    font-weight: 700;
    color: #555;
    padding: 0px !important;
  }

  .brochure-btn {
    border: 1px solid #fec30d;
    padding: 3px 8px;
    font-size: 12px;
    color: #000;
  }

  #header .mobile-nav-toggle {
    color: #fff !important;
    font-size: 39px !important;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background-color: var(--color-primary) !important;
    display: block !important;
  }
}


#whatsapp-icon {
  width: 38px;
  height: 38px;
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 11111111111111011111111111;
}

 #whatsappButton {
border:0px solid #111;
background-color: transparent;
border-radius: 4px;

}

#whatsapp-icon img {
  background-color: #fff;
  border-radius: 6px;
}

/* ============================================================   header styling end */







/*============================================================ index page  designs started  */


/* hero  section  */

#hero {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
}



#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  overflow: hidden;

}


#hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 50px;
  width: 100%;
  /* bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px; */
}

#hero .container {
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  height: fit-content;
  background-color: #fec30d8c;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  border-radius: 5px;
}

.banner-text h2 {
  font-size: 21px;
  color: #fff;
  font-weight: 100 !important;
  margin-bottom: 0px;
}


#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 2s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
  background-color: #fec30d;
  width: 30px;
  height: 8px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #3ec1d5;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #3ec1d5;
}


@media (max-width: 1200px) {
  #hero {
    width: 100%;
    height: 650px;
  }
}

@media (max-width: 1024px) {

  #hero {
    width: 100%;
    height: 550px;
  }

  .banner-text h2 {
    font-size: 19px;
  }
}

@media (max-width: 768px) {

  #hero {
    width: 100%;
    height: 450px;
  }

  .banner-text h2 {
    font-size: 15px;
    text-align: center;

  }
}

@media (max-width: 425px) {
  #hero {
    width: 100%;
    height: 350px;
  }
}




@media (max-width: 375px) {}

@media (max-width: 325px) {}




/*--------------------------------------------------- home about section  */


#about-section {
  padding: 80px 0px;
}

.about-section-info {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding-left: 30px;
  text-align: left;
}

.about-section-info .heading-box h2 {
  background-color: #fec30d;
  padding: 4px 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 20px;
}

.about-section-info .heading-box p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}

.about-section-info .about-btn {
  border: 2px solid #000;
  width: 140px;
  text-align: center;
  font-size: 17px;
  color: #000;
  padding: 10px 0px;
  border-radius: 5px;
  margin-top: 20px;
}

.about-section-info .about-btn:hover {
  border: 2px solid #fec30d;
  background-color: #fec30d;
}

.about-section-info .about-btn a {
  color: #000;
}

.aout-image {
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}




.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 4px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
  width: 150px;
  margin-top: 20px;
}

.button::before,
.button::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .5s ease;
}

.button::before {
  top: 0;
  border-bottom-width: 0;
}

.button::after {
  bottom: 0;
  border-top-width: 0;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 4px 10px;
  color: #222;
  background-color: #fff;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: transparent;
  transition: all .5s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: var(--color-primary);
  transform: skew(-15deg);
  transition: all .5s ease;
}


.button:hover .button_lg {
  color: #fff;
}

.button_text {
  position: relative;
}

.button:hover {
  color: var(--color-primary);
}

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: #fff;
}



@media (max-width: 1200px) {
  .about-section-info {
    padding-left: 0px;
  }

  #about-section {
    padding: 70px 0px;
  }

  .about-section-info .heading-box p {
    font-size: 16px;
    padding-top: 10px;
    line-height: 28px;
  }

  .about-section-info .heading-box h2 {
    background-color: #fec30d;
    padding: 4px 30px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;

  }
}

@media (max-width: 1024px) {
  .about-section-info .about-btn {
    border: 1px solid #000;
    width: 140px;
    text-align: center;
    font-size: 16px;
    color: #000;
    padding: 10px 0px;
    border-radius: 3px;
    margin-top: 13px;
  }

  .about-section-info .heading-box h2 {
    background-color: #fec30d;
    padding: 4px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {

  .about-section-info {
    margin-bottom: 40px;
  }

  #about-section {
    padding: 50px 0px 70px 0px;
  }
}

@media (max-width: 425px) {
  #about-section {
    padding: 36px 13px 60px 13px;
  }

}

@media (max-width: 375px) {}

@media (max-width: 325px) {}




/* -----------------chooseus  */

#choose-us {
  padding: 60px 0px 110px 0px;
  background-color: #f9f7f7;
}

#choose-us .heading-container {
  position: relative;
  display: flex;
  justify-content: center;
  transform: translateY(-80px);
}

#choose-us .section-heading {
  background-color: #fec30d;
  width: fit-content;
  padding: 6px 50px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

#choose-us .choose-us-row {
  display: flex;
  justify-content: space-around;
}

#choose-us .choose-us-card {
  width: 20%;
}


#choose-us .card {
  transition: .4s all ease-in;
  width: 100%;
  border: 2px solid #cbb3d9;
  border-radius: 10px;
  overflow: hidden;
}

#choose-us .card-yellow {
  transition: .4s all ease-in;
  width: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
  overflow: hidden;
}

#choose-us .card-blue {
  transition: .4s all ease-in;
  width: 100%;
  border: 2px solid #cbb3d9;
  border-radius: 10px;
  overflow: hidden;
}

#choose-us .choose-us-img {
  display: flex;
  justify-content: center;
  height: 210px;
  padding-top: 50px;
}

#choose-us .choose-us-img img {
  width: 40%;
  height: 50%;

}

#choose-us .product-detail {
  position: absolute;
  overflow: hidden;
  padding: 0px 20px;
  transition: all 0.8s;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
  transform: translateY(80%);

}


#choose-us .card-yellow .product-detail {
  background-color: var(--color-primary);
  left: 0px !important;
  right: -1px !important;
  bottom: 0px !important;
}

#choose-us .card-blue .product-detail {
  background-color: #ccb4da;
  left: 0px !important;
  right: -1px !important;
  bottom: 0px !important;
}



#choose-us .product-detail p {
  text-align: justify;
  height: 100%;
  line-height: 22px !important;
  color: #333;
  font-size: 15px !important;
}



#choose-us .card:hover .product-detail {
  transform: translateY(0%);
  padding-top: 10px;
}



#choose-us .product-detail h5 {
  color: #000;
  font-size: 15px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.card:hover .product-detail h5 {
  margin-bottom: 10px !important;
  border-bottom: 1px solid #fff;
}



@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 768px) {

  #choose-us {
    padding: 14px 0px 35px 0px;
    background-color: #f9f7f7;
  }

  #choose-us .choose-us-card {
    width: 33%;
    margin-bottom: 30px;
  }
}

@media (max-width: 425px) {
  #choose-us .choose-us-card {
    width: 85%;
    margin-bottom: 30px;
  }

#choose-us .choose-us-img img {
    width: 36%;
    height: 54%;
}


#choose-us .choose-us-img {

    padding-top: 40px;
}

  #choose-us .section-heading {
    padding: 5px 50px;
    font-size: 17px;
  }

  #choose-us .heading-container {
    transform: translateY(-30px);
  }
}

@media (max-width: 375px) {
  #choose-us .choose-us-card {
    width: 90%;
    margin-bottom: 30px;
  }
}


/*---------------- choose us   end  */

/*============================================================ index page  designs end */
























/* ================================================================= Footer started  */

#footer .footer-logo {
  width: 111px;
  background-color: transparent
}

#footer .footer-top {
  background: #e3e3e3;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  width: fit-content;
  border-bottom: 3px solid #cdb4db;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

/* #footer .footer-top h4::after {
  background: #cdb4db;
  width: 80px;
  height: 3px;
} */

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}


#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}


.Careers {
  padding-left: 50px;
}

#footer .footer-links li {
  padding-bottom: 3px;
  list-style: none;
}

#footer .footer-links li:nth-child(1) {
  padding-top: 11px;
  padding-bottom: 4px;
  list-style: none;
}



#footer .footer-links a {
  color: #111;
  font-size: 15px !important;
}

#footer .footer-links a:hover {
  /* color:var(--color-primary); */
  text-decoration: underline !important;
}

#footer .footer-contact p {
  color: #111;
  font-size: 15 px !important;
  padding-top: 10px;
  line-height: 28px;
  letter-spacing: .5px;
}

#footer .copyright {
  background-color: #fec30d;
  padding: 10px 0px;
}

#footer .copyright .copyright-para {
  padding: 0px !important;
  margin: 0px !important;
  font-weight: 500;
  font-size: 13px !important;
  color: #444;
  text-align: left;
}

#footer .copyright .copyright-para a {
  padding: 0px !important;
  margin: 0px !important;
  font-weight: 600;
  font-size: 13px;
  color: #444;
}

#footer .copyright .copyright-para a:hover {
  color: #000;
}

#footer .powerd-by {
  display: flex;
  justify-content: end;
  padding-right: 8px;
}


@media (max-width: 1024px) {
  #footer .footer-contact br {
    display: none;
  }

  #footer .footer-contact p {
    font-size: 15px;
    padding-top: 0px;
    line-height: 26px;
    letter-spacing: .5px;
  }

  #footer .footer-logo {
    padding-right: 00px;
    width: 100px;
    background-color: transparent;
  }
}

@media (max-width: 768px) {

  #footer .footer-box-a {
    margin-bottom: 30px;
  }
}

@media (max-width: 425px) {
  #footer .footer-top {
    padding: 5px 11px;
  }

  #footer .copyright-para {
    text-align: center;
    padding: 5px 0px;
  }

  #footer .powerd-by {
    display: flex;
    justify-content: center;
  }
}

/* ================================================================= Footer end  */