@font-face {
  font-family: bariol;
  src: url(fonts/Bariol_Bold.woff);
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
}

/* Header */
.header {
  height: 100vh;
  width: 100%;
  position: relative;
}
.nav-back-bg {
  z-index: 100;
  position: relative;
}
.header-custom-hover a {
  position: relative;
}
.header-custom-hover a::after {
  content: '';
  background: #ff3d00;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s;
}
.header-custom-hover a:hover::after {
  width: 100%;
}
@media (max-width: 992px) {
  .nav-back-bg {
    background: rgb(168, 151, 151, 0.6);
  }
}
.header-brand {
  display: flex;
  align-items: center;
}
.back-photo-main {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}
@media (min-aspect-ratio: 16/9) {
  .back-photo-main {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back-photo-main {
    width: auto;
    height: 100%;
  }
}
.content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
  text-align: left;
  color: gray;
}

/* End Header */

/* Start Services */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='goldenrod'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='goldenrod'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-indicators [data-bs-target] {
  background-color: goldenrod;
  width: 20px;
}
.slider-content-wrapper {
  padding: 30px;
}
.slider-img {
  padding: 30px;
}

/* End Services */

/* Contact-us */
.about-us {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/about-us-hr-knit-fashion.jpg);
  background-size: cover;
}
.text-justify {
  text-align: justify;
}
@media (min-aspect-ratio: 16/9) {
  .about-us {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .about-us {
    width: auto;
    height: 100%;
  }
}
.justify-my-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* End Contact-us */
/* Why Choose HR Knit Fashion */
.why-hr-knit {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/why-hr-knit.jpg);
  background-size: cover;
}
@media (min-aspect-ratio: 16/9) {
  .why-hr-knit {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .why-hr-knit {
    width: auto;
    height: 100%;
  }
}
ul.why-hr-knit-list li {
  list-style: none;
  line-height: 3;
}
/* End Why Choose HR Knit Fashion */
/* Contact US */
.full-width {
  max-width: 1280px;
  margin: auto;
}
/* End Contact US */
/* Contact Us */
.awesome-font-size {
  font-size: 40px;
  margin-bottom: 15px;
  text-align: center;
  display: block;
  color: #7f5003;
}
@media (min-width: 992px) {
  .brd-right {
    border-right: 1px solid #7f5003;
  }
}

.golden-color {
  color: #7f5003;
}
.golden-color-bg {
  background: #7f5003;
}

/* End Contact Us */
/* Footer Section */
.usefull-links li {
  list-style: none;
}
ul.usefull-links {
  padding-left: 0;
}
.usefull-links li a {
  text-decoration: none;
  color: gray;
  position: relative;
}
.usefull-links li a::after {
  content: '';
  background: #ff3d00;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s;
}
.usefull-links li a:hover::after {
  width: 100%;
}
.social-connect a {
  text-decoration: none;
}
.social-connect i {
  text-decoration: none;
  font-size: 40px;
  color: #7f5003;
  padding-right: 15px;
}
