@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  overflow: inherit;
  background-image: url(../images/body-bg.png);
  background-repeat: repeat;
  background-position: center;
  margin-top: 80px;
  /* background-color:     #B153DD1A; */
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-family: "Poppins", sans-serif;
  line-height: normal;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  margin: 0 0 10px 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #00000099;
  line-height: 25.89px;
  font-weight: 400;
}

p:first-letter {
  text-transform: uppercase;
}

a {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #0e103d;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  color: #000;
}

ul,
li,
ol,
li {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  list-style-type: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  margin: 0 0 13px 0;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: normal;
  width: 100%;
  outline: none;
  border: none;
  background: #f0f0f0;
  border-radius: 12px;
}

input[type="submit"] {
  margin: 10px 0;
  padding: 12px 22px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border: none;
  outline: none;
  background: #f05820;
  transition: 0.5s;
  border-radius: 0;
}

input[type="submit"]:hover {
  background: #f05820db;
}

textarea {
  height: 100px;
}

/* Global Heading */
.global-heading {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 6px;
  color: #000;
}

.global-heading::before {
  position: absolute;
  content: '';
  bottom: 0%;
  left: 0;
  background-color: #f05820;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.global-heading::after {
  position: absolute;
  content: '';
  bottom: 0%;
  left: 50%;
  background-color: #f05820;
  width: 10px;
  height: 10px;
  transform: translateY(28%);
  border-radius: 25%;
}

.centre-heading {
  text-align: center;
  width: 80%;
  margin: 50px auto;
}

.centre-heading .global-heading,
.centre-heading p,
.centre-heading h2 {
  color: #fff;
}

/* Global Heading */

/* global-ul */
.global-ul li {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.global-ul li::before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 7px;
  color: #fff;
  line-height: 8px;
  font-weight: 800;
  background: #f05820;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

/* global-ul */
/* Header */
.header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin-bottom: 50px;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
}

.header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .nav-bar ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header .nav-bar ul li a {
  color: #000000;
  font-size: 16px;
  position: relative;
}

.header .nav-bar ul li a::before {
  position: absolute;
  content: '';
  width: 0%;
  height: 2px;
  background-color: red;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.header .nav-bar ul li:hover a::before {
  width: 100%;
}

.header .nav-bar .logo figure {
  height: 80px;
  width: 80px;
}

/* carousel */
.carousel {
  margin-bottom: 50px;
}

.carousel .carousel-inner .carousel-item {
  height: 650px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: relative;
}


.carousel .carousel-inner .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0 0 20 / 33%) 0%, rgb(0 0 0 / 16%) 100%);
  z-index: 1;
  pointer-events: none;
}

.carousel .carousel-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.carousel .carousel-content p {
  color: #fff;
}

.carousel .carousel-content h1 {
  color: #f05820;
  font-size: 64px;
}

.carousel .carousel-content h1 small {
  color: #fff;
  display: block;
  font-size: 28px;
}

/* about */
.about {
  margin-bottom: 50px;
  text-align: justify;
}



/* about */
/* collections */
.collections {
  background-attachment: fixed;
  background-image: url(../images/selections.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  margin-bottom: 50px;
}



.collections .row {
  width: 100%;
  margin: 0 auto;
}

.collections .col-lg-3 {
  padding: 0;
  position: relative;
}

.collections .col-lg-3 figure {
  width: 100%;

}

.collections .collections-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #00000069;
  transition: 0.3s;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 16px;

}

.collections .collections-content h3,
.collections .collections-content h5,
.collections .collections-content p {
  color: #ffffff;
}

.collections .collections-content h3 {
  font-size: 24px;
}

.collections .collections-content h5 {
  font-size: 18px;
  font-weight: 400;
}

.collections .collections-content h5 span {
  font-weight: 600;
}

.collections .col-lg-3:hover .collections-content {
  height: 100%;
}

/* testimonial */
.testimonial {
  background-attachment: fixed;
  background-image: url(../images/selections.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 100px 0;
  margin-bottom: 50px;
}

.centre-heading {
  text-align: center;
  width: 80%;
  margin: 50px auto;
}

.centre-heading .global-heading,
.centre-heading p,
.centre-heading h2 {
  color: #fff;
}

.testimonial .testimonial-content {
  text-align: center;
  background-color: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 8px;
  border-radius: 12px 0;
  height: 350px;
}

.testimonial .testimonial-content h3 {
  font-size: 22px;
  margin-top: 18px;
}

.testimonial .testimonial-content i {
  color: #f05820;
  font-size: 26px;
  margin-bottom: 24px;
}

/* testimonial */
/* Mission Vission value */
.value {
  margin-bottom: 50px;
}

.value .mission {
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px 0px #696969;
  transition: 0.3s;
  background-color: #fff;
  height: 100%;
}

.value .mission:hover {
  box-shadow: 0px 0px 4px 3px #696969;
  transform: translateY(-10px);
}

.value .mission h3 {
  font-size: 24px;
}

/* Mission Vission value */
/* services */
.services {
  margin-bottom: 50px;
}

.services .centre-heading .global-heading,
.services .centre-heading p,
.services .centre-heading h2 {
  color: #000000;
}

.services .col-lg-4 {
  margin-bottom: 20px;
}

.services .services-card {
  border-radius: 6px;
  box-shadow: 0px 0px 3px 0px #696969;
  background-color: #ffffff80;
  height: 100%;
}

.services .services-card figure {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  height: 250px;
}

.services .services-card figure img {
  transition: 0.3s;
  object-fit: cover;
}

.services .services-card:hover figure img {
  transform: scale(1.1);
}

.services .service-content {
  text-align: justify;
  padding: 16px;

}

.services .service-content p span {
  font-weight: 500;
  color: #000
}

/* services */

/* Map */
.map iframe {
  width: 100%;
}

/* Footer  */
footer {
  background-color: #fff;
  padding: 100px 0;
}

footer figure {
  height: 80px;
  width: 80px;
}

footer .footer-main-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

footer .footer-main-content .social-link {
  display: flex;
  align-items: center;
  gap: 16px;
}


footer .footer-main-content .social-link li i {
  font-size: 28px;
  border: 1px solid #000;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-main-content .footer-content p {
  width: 40%;

}

footer input[type="email"] {
  border: 1px solid #000;
  padding: 14px 20px;
  width: 100%;
  border-radius: 32px;
}

footer .row h3 {
  font-size: 22px;
  border-bottom: 1px solid #696969;
  margin-bottom: 28px;
}

footer .row ul li {
  margin-bottom: 12px;
  font-size: 16px;
}

footer .row ul li a {
  font-size: 16px;
}

footer ul li a i {
  margin-right: 6px;
}

footer .footer-link li i {
  margin-left: 6px;
  transition: 0.3s;
  opacity: 0.4;
}

footer .footer-link li a:hover i {
  margin-left: 12px;
  opacity: 1;
}

/* About Us Page */

.breadcrumb {
  height: 400px;
  margin-bottom: 50px;
}

.breadcrumb .breadcrumb-content {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  height: 100%;
}

.breadcrumb .breadcrumb-content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  /* justify-content: center; */
}

.breadcrumb .breadcrumb-content h1,
.breadcrumb .breadcrumb-content ul li a {
  color: #fff;
}

/* about-choose */
.about-choose {
  background-color: #ffffffa6;
  margin-bottom: 50px;
}

.about-choose .about-choose-content {
  width: 60%;
  margin: auto;
  text-align: center;
  padding: 50px 0;
}

/* mission-vision-value */
.mission-vision-value figure {
  height: 250px;
}

/* membership */
.membership {
  margin-bottom: 50px;
}

.membership ul li {
  font-size: 18px;
  margin: 0 0 12px 20px;
}

.membership ul li i {
  color: #f05820;
}

/* Contact Us Page  */
.contact-us {
  margin-bottom: 50px;
}

.contact-us ul li,
.contact-us ul li a {
  font-size: 26px;
  color: #000;
}

.contact-us ul li {
  margin-bottom: 12px;
}

.contact-us ul li i {
  margin-right: 8px;
}

.btn {
  color: #ffffff !important;
  font-size: 14px;
  padding: 8px 30px;
  border-radius: 4px;
  background-color: #f05820;
  border: 2px solid #f05820;

}

.btn:active {
  background-color: #f05820 !important;
   border-color: transparent !important;
}

.btn:hover {
  background-color: #f05820;
   border: 2px solid #f05820;
}
.btn::before{
  display: none;
}

@media only screen and (max-width: 476px) {
  body {
    margin-top: 60px;
  }

  .header .nav-bar ul li a {
    font-size: 12px;
  }

  .btn {
    padding: 8px;
  }

  .header .nav-bar .logo figure {
    height: 60px;
    width: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .header .nav-bar ul {
    gap: 14px;
  }

  h2 {
    font-size: 36px;
  }

  .carousel .carousel-content {
    width: 100%;
  }

  .carousel .carousel-content h1 {
    font-size: 42px;
  }


  .about {
    height: auto;
  }

  .value .col-lg-4 {
    margin-bottom: 12px;
  }

  .testimonial .testimonial-content {
    height: auto;
  }

  footer .footer-main-content .footer-content p {
    width: 100%;
  }

  footer .footer-main-content {
    display: block;
  }

  .contact-us ul li,
  .contact-us ul li a {
    font-size: 18px;
  }
  .about-choose .about-choose-content {
      width:100%;
  }
}