/* color */
/* rest ------------------------------------ */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  border: 0;
  appearance: none;
  box-sizing: border-box;
  list-style: none;
}

/* default styling and custom-helper-classes-------------------------------*/
html {
  font-size: 10px;
}

body {
  font-family: 'DM Sans Regular';
  font-size: 10px;
  overflow-x: hidden;
  line-height: 10px;
  margin: 0px;
}

a {
  text-decoration: none;
}

h1 {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 6.4rem;
  line-height: 96px;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 0px;
  text-transform: capitalize;
}

h2 {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 43px;
  color: var(--color-heading);
  margin-bottom: 0px;
  text-transform: capitalize;
}

h3 {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 26px;
  color: var(--color-heading);
  margin-bottom: 0px;
  text-transform: capitalize;
}

p {
  margin-bottom: 0px;
}

ul {
  padding: 0;
  margin: 0;
}

.wrapper {
  padding-left: 12.8%;
  padding-right: 12.8%;
}

@media screen and (max-width: 1440px) {
  .wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
}

.row {
  margin: 0px;
  padding: 0px;
}

.col-lg-3, .col-lg-4, .col-lg-5.col-lg-6, .col-lg-7, .col-lg-9 {
  padding: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.row > * {
  padding-right: 0px;
  padding-left: 0px;
}

.site-btn {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  color: #FFFFFF;
  background-color: #56B4B4;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  text-transform: capitalize;
}

@media (max-width: 1440px) {
  .site-btn {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .site-btn {
    font-size: 12px;
  }
}

.section-title {
  font-family: 'Montserrat Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  color: #333333;
  text-align: center;
  position: relative;
  display: inline-block;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 24px;
}

.section-title::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  height: 4px;
  width: 30%;
  content: "";
  background-color: #56B4B4;
}

@media (max-width: 1440px) {
  .section-title {
    font-size: 36px;
    padding-bottom: 18px;
  }
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
    padding-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

/* dm-sans-regular - latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dm-sans-v11-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/dm-sans-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/dm-sans-v11-latin-regular.woff2") format("woff2"), url("../fonts/dm-sans-v11-latin-regular.woff") format("woff"), url("../fonts/dm-sans-v11-latin-regular.ttf") format("truetype"), url("../fonts/dm-sans-v11-latin-regular.svg#DMSans") format("svg");
  /* Legacy iOS */
}

/* animated keyframes functions--------------------------------------------- */
/* navbar-------------------------------------------------------------------*/
/* newsletter--------------------------------------------------------------- */
/* footer------------------------------------------------------------------- */
/* breadcrum section-------------------------------------------------------- */
.top-header {
  display: flex;
  flex-direction: row;
  grid-gap: 20px;
  background: #222222;
  padding-top: 14px;
  padding-bottom: 14px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    grid-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.top-header__call, .top-header__gmail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .top-header__call, .top-header__gmail {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .top-header__call, .top-header__gmail {
    font-size: 12px;
  }
}

.top-header__call i, .top-header__gmail i {
  font-size: 24px;
}

@media (max-width: 767px) {
  .top-header__call i, .top-header__gmail i {
    font-size: 20px;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
}

.navbar .logo {
  max-width: 340px;
}

.navbar .logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 1440px) {
  .navbar .logo img {
    width: auto;
    height: 60px;
  }
}

@media (max-width: 424px) {
  .navbar .logo img {
    width: auto;
    height: 48px;
  }
}

.navbar .hamburger-lines {
  position: absolute;
  display: none;
  width: 25px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.navbar .hamburger-lines .line {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #333333;
}

.navbar .hamburger-lines .line1 {
  top: 0;
}

.navbar .hamburger-lines .line2 {
  top: 50%;
  transform: translateY(-50%);
}

.navbar .hamburger-lines .line3 {
  bottom: 0;
}

.navbar .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 60px;
  flex-wrap: wrap;
}

@media (max-width: 1440px) {
  .navbar .menu-items {
    grid-gap: 35px;
  }
}

@media (max-width: 1439px) {
  .navbar .menu-items {
    grid-gap: 20px;
  }
}

.navbar .menu-items li {
  position: relative;
}

.navbar .menu-items li a {
  text-transform: capitalize;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  transition: all 0.1s ease-in-out;
}

.navbar .menu-items li a.active {
  color: #56B4B4;
}

.navbar .menu-items li::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  background: #56B4B4;
  height: 2px;
  width: 0%;
  transition: all 0.1s ease-in-out;
}

.navbar .menu-items li:hover a {
  color: #56B4B4;
}

.navbar .menu-items li:hover::after {
  transform: translateX(-50%);
  width: 100%;
}

@media (max-width: 1023px) {
  .navbar {
    display: block;
  }
  .navbar input[type="checkbox"],
  .navbar .hamburger-lines {
    display: block;
  }
  .navbar .menu-items {
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    left: -100%;
    background: #56B4B4;
    grid-gap: 35px;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    z-index: 999;
  }
  .navbar .menu-items li a {
    color: #fff;
  }
  .navbar .menu-items li a.active {
    color: #333333;
    font-weight: bold;
    border-bottom: 2px solid #333333;
  }
  #check:checked ~ .menu-items {
    left: 0;
  }
}

.hero-section {
  height: 62vh;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 1024px) {
  .hero-section {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-size: cover;
  }
}

.hero-section .hero-text-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 75%;
}

@media (max-width: 768px) {
  .hero-section .hero-text-box {
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

.hero-section .hero-text-box__title {
  font-family: 'Montserrat Medium';
  font-style: normal;
  font-weight: 700;
  font-size: 68px;
  line-height: 83px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-section .hero-text-box__title .hero-color {
  color: #56B4B4;
}

@media (max-width: 1440px) {
  .hero-section .hero-text-box__title {
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 18px;
  }
}

@media (max-width: 1024px) {
  .hero-section .hero-text-box__title {
    font-size: 50px;
    line-height: 55px;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-text-box__title {
    font-size: 40px;
    line-height: 45px;
  }
}

@media (max-width: 585px) {
  .hero-section .hero-text-box__title {
    font-size: 35px;
    line-height: 40px;
  }
}

.hero-section .hero-text-box__text {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 26px;
  max-width: 550px;
}

@media (max-width: 1440px) {
  .hero-section .hero-text-box__text {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .hero-section .hero-text-box__text {
    font-size: 12px;
  }
}

@media (max-width: 585px) {
  .hero-section .hero-text-box__text {
    font-size: 11px;
    line-height: 25px;
  }
}

.hero-section .hero-text-box__btn {
  background-color: #56B4B4;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
}

@media (max-width: 1440px) {
  .hero-section .hero-text-box__btn {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-section .hero-text-box__btn {
    font-size: 12px;
  }
}

.our-products {
  padding-top: 62px;
  margin-bottom: 80px;
}

@media (max-width: 1440px) {
  .our-products {
    padding-top: 45px;
  }
}

@media (max-width: 670px) {
  .our-products {
    padding-top: 35px;
    margin-bottom: 50px;
  }
}

.our-products .products-flex {
  position: relative;
}

@media (max-width: 670px) {
  .our-products .products-flex {
    margin-top: 35px;
  }
}

.our-products .products-flex .product-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item {
    flex-direction: column;
    grid-gap: 20px;
  }
}

.our-products .products-flex .product-item > * {
  flex-basis: 100%;
}

.our-products .products-flex .product-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-products .products-flex .product-item .product-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 18px;
}

@media (max-width: 1440px) {
  .our-products .products-flex .product-item .product-item__content {
    grid-gap: 12px;
  }
}

@media (max-width: 768px) {
  .our-products .products-flex .product-item .product-item__content {
    grid-gap: 8px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item .product-item__content {
    margin-bottom: 52px;
  }
}

.our-products .products-flex .product-item .product-item__content > * {
  padding-left: 45px;
}

@media (max-width: 768px) {
  .our-products .products-flex .product-item .product-item__content > * {
    padding-left: 30px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item .product-item__content > * {
    padding: 0px;
    text-align: center;
  }
}

.our-products .products-flex .product-item .product-item__content h3 {
  font-family: 'Montserrat Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 52px;
  line-height: 63px;
}

@media (max-width: 1440px) {
  .our-products .products-flex .product-item .product-item__content h3 {
    font-size: 45px;
  }
}

@media (max-width: 1024px) {
  .our-products .products-flex .product-item .product-item__content h3 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media (max-width: 768px) {
  .our-products .products-flex .product-item .product-item__content h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item .product-item__content h3 {
    font-size: 25px;
  }
}

.our-products .products-flex .product-item .product-item__content p {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  max-width: 70%;
}

@media (max-width: 1440px) {
  .our-products .products-flex .product-item .product-item__content p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .our-products .products-flex .product-item .product-item__content p {
    font-size: 13px;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .our-products .products-flex .product-item .product-item__content p {
    font-size: 12px;
  }
}

.our-products .products-flex .product-item:nth-child(odd) {
  position: relative;
  margin-top: 80px;
}

@media (max-width: 1440px) {
  .our-products .products-flex .product-item:nth-child(odd) {
    margin-top: 50px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item:nth-child(odd) {
    margin-top: 0px;
  }
}

.our-products .products-flex .product-item:nth-child(odd) .product-item__img img {
  border-radius: 10px 10px 0px 10px;
}

.our-products .products-flex .product-item:nth-child(odd) .product-item__img::after {
  position: absolute;
  content: "";
  top: 80px;
  left: 0;
  height: 100%;
  width: 44%;
  background-color: #A6DBDB;
  z-index: -1;
}

@media (max-width: 1023px) {
  .our-products .products-flex .product-item:nth-child(odd) .product-item__img::after {
    top: 50px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item:nth-child(odd) .product-item__img::after {
    width: 100%;
  }
}

.our-products .products-flex .product-item:nth-child(odd) .product-item__content {
  color: #333333;
}

.our-products .products-flex .product-item:nth-child(even) {
  margin-top: 80px;
  flex-direction: row-reverse;
  position: relative;
}

@media (max-width: 1023px) {
  .our-products .products-flex .product-item:nth-child(even) {
    margin-top: 50px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item:nth-child(even) {
    flex-direction: column;
  }
}

.our-products .products-flex .product-item:nth-child(even) .product-item__content {
  color: #FFFFFF;
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .our-products .products-flex .product-item:nth-child(even) .product-item__content {
    padding-top: 50px;
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item:nth-child(even) .product-item__content {
    padding-top: 0px;
  }
}

.our-products .products-flex .product-item:nth-child(even) .product-item__content::after {
  width: 58%;
  height: calc(100% + 80px);
  background: #57A6A6;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1023px) {
  .our-products .products-flex .product-item:nth-child(even) .product-item__content::after {
    height: calc(100% + 50px);
  }
}

@media (max-width: 670px) {
  .our-products .products-flex .product-item:nth-child(even) .product-item__content::after {
    width: 100%;
  }
}

.our-products .products-flex .product-item:nth-child(even) .product-item__img {
  margin-top: -80px;
}

@media (max-width: 1023px) {
  .our-products .products-flex .product-item:nth-child(even) .product-item__img {
    margin-top: -50px;
  }
}

.our-products .products-flex .product-item:nth-child(even) .product-item__img img {
  border-radius: 0px 10px 10px 10px;
}

.featured-products {
  position: relative;
  padding-top: 62px;
  padding-bottom: 122px;
  background-size: cover;
}

@media (max-width: 1440px) {
  .featured-products {
    padding-top: 45px;
  }
}

@media (max-width: 670px) {
  .featured-products {
    padding-top: 35px;
  }
}

.featured-products__carousel {
  margin-top: 85px;
  position: relative;
}

.featured-products__item {
  height: 340px;
}

.featured-products__item img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1440px) {
  .featured-products__item {
    height: 330px;
  }
}

@media (max-width: 1024px) {
  .featured-products__item {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .featured-products__item {
    height: 290px;
  }
}

@media (max-width: 540px) {
  .featured-products__item {
    height: 350px;
  }
}

@media (max-width: 539px) {
  .featured-products__item {
    height: 290px;
  }
}

.featured-products::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, #DEDEDE -9.17%, rgba(0, 0, 0, 0) 100%);
}

.featured-products .owl-nav {
  width: 100%;
  display: flex;
  color: #fff;
  font-size: 80px;
  font-weight: 800;
}

.featured-products .owl-nav .owl-prev,
.featured-products .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.featured-products .owl-nav .owl-prev:hover,
.featured-products .owl-nav .owl-next:hover {
  background-color: #56B4B4;
  border-radius: 0px;
}

.featured-products .owl-nav .owl-prev {
  left: 5.5%;
}

.featured-products .owl-nav .owl-next {
  right: 5.5%;
}

.news-updates {
  padding-bottom: 172px;
  position: relative;
}

@media (max-width: 1440px) {
  .news-updates {
    padding-top: 45px;
  }
}

@media (max-width: 670px) {
  .news-updates {
    padding-top: 35px;
  }
}

.news-updates .section-title {
  padding-top: 62px;
  margin-bottom: 100px;
}

.news-updates .design-boxes {
  position: absolute;
  right: 0;
  z-index: -1;
}

.news-updates .design-boxes--1 {
  top: 0;
  width: 624px;
  height: 329px;
  background: #A6DBDB;
}

@media (max-width: 1440px) {
  .news-updates .design-boxes--1 {
    width: 50%;
    height: 200px;
  }
}

.news-updates .design-boxes--2 {
  top: 158px;
  width: 440px;
  height: 360px;
  background: #56B4B4;
}

@media (max-width: 1440px) {
  .news-updates .design-boxes--2 {
    width: 40%;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .news-updates .design-boxes {
    display: none;
  }
}

.news-updates__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 74px;
}

@media (max-width: 1440px) {
  .news-updates__block {
    grid-gap: 40px;
  }
}

@media (max-width: 1024px) {
  .news-updates__block {
    grid-gap: 30px;
  }
}

@media (max-width: 767px) {
  .news-updates__block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 470px) {
  .news-updates__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-updates__item {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}

.news-updates__item .item__img-wrapper {
  position: relative;
  height: 390px;
}

@media (max-width: 1024px) {
  .news-updates__item .item__img-wrapper {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .news-updates__item .item__img-wrapper {
    height: 240px;
  }
}

.news-updates__item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.news-updates__item__label {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
  background: #56B4B4;
  color: #fff;
  padding: 8px;
  padding-right: 45px;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
}

.news-updates h3 {
  font-family: 'Montserrat Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  margin-top: 18PX;
  color: #000000;
}

.news-updates P {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.news-updates .distributor-and-date {
  display: flex;
  flex-direction: row;
  grid-gap: 25px;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-transform: uppercase;
  align-items: center;
}

.news-updates .distributor-and-date .dot {
  width: 8px;
  height: 8px;
  background-color: #56B4B4;
  border-radius: 100%;
}

.news-updates .site-btn {
  margin-top: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ---- particles.js container ---- */
.footer {
  padding-top: 35px;
  width: 100%;
  height: 100%;
  background-color: #000103;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.footer .particles-js-canvas-el {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.footer .brand-logo {
  border-radius: 5px;
}

@media (max-width: 760px) {
  .footer .brand-logo {
    width: 100%;
  }
}

.footer__content {
  z-index: 1;
  position: relative;
  margin-top: 85px;
  background-color: transparent;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  grid-column-gap: 15%;
  color: #fff;
  padding-bottom: 40px;
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .footer__content {
    grid-gap: 5%;
  }
}

@media (max-width: 760px) {
  .footer__content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer__content h3 {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
}

.footer__left {
  display: flex;
  flex-direction: column;
  grid-gap: 35px;
}

.footer__left p {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.footer__left .social-icons {
  display: flex;
  flex-direction: row;
  grid-gap: 24px;
}

.footer__left .social-icons li a {
  color: #fff;
  font-size: 25px;
}

.footer__middle .nav-links {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  margin-top: 35px;
}

.footer__middle .nav-links a {
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #E4E7EC;
}

.footer__right h3 {
  margin-bottom: 35px;
}

.footer__right .contact-details {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #E4E7EC;
}

.footer__right .contact-details li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  grid-gap: 10px;
}

.footer__right .contact-details a {
  color: #E4E7EC;
}

.footer__bottom {
  background-color: #000000;
  border-top: 1px solid #C8C3C3;
  padding: 17px 0px;
  text-align: center;
  font-family: 'Montserrat Regular';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.section__about-wrap {
  position: relative;
}

.section__about-wrap .about__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.section__about-wrap .about__banner-content h1 {
  font-size: 68px;
  font-weight: 700;
  color: #56B4B4 !important;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 767px) {
  .section__about-wrap .about__banner-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section__about-wrap .about__banner-content h1 {
    font-size: 40px;
  }
}

.about__group-content {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about__group-content {
    padding: 50px 0;
  }
}

.about__group-content .group__content-title {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

@media (max-width: 991px) {
  .about__group-content .group__content-title {
    margin-bottom: 10px;
  }
}

.about__group-content .group__content-title:before {
  content: "";
  height: 75px;
  width: 4px;
  position: absolute;
  background-color: #56B4B4;
  top: -1px;
  right: -22px;
}

.about__group-content .group__content-title h2, .about__group-content .group__content-title p {
  font-family: 'Poppins', sans-serif;
}

.about__group-content .group__content-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #363636;
}

@media (max-width: 575px) {
  .about__group-content .group__content-title h2 {
    font-size: 34px;
  }
}

.about__group-content .group__content-title p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 3px;
  line-height: 40px;
}

.about__group-content .group__content-title.career__content-title h2 {
  font-weight: 500;
  line-height: 52px;
}

.about__group-content .group__content-title.career__content-title p {
  letter-spacing: 0;
  line-height: 28px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #696969;
}

.about__group-content .group__content-title.career__content-title:before {
  height: 80px;
  top: 14px;
  right: 88px;
}

.about__group-content .about__right-content {
  position: relative;
}

@media (max-width: 991px) {
  .about__group-content .about__right-content {
    margin-top: 90px;
  }
}

.about__group-content .about__right-content img {
  width: 100%;
}

@media (max-width: 767px) {
  .about__group-content .about__right-content img {
    width: 95%;
  }
}

.about__group-content .about__right-content:before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #56B4B4;
  position: absolute;
  top: -230px;
  right: -42%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .about__group-content .about__right-content:before {
    right: -32%;
  }
}

@media (max-width: 991px) {
  .about__group-content .about__right-content:before {
    top: -50px;
  }
}

@media (max-width: 479px) {
  .about__group-content .about__right-content:before {
    top: -40px;
  }
}

.about__group-content .about__right-content:before.product__green {
  top: -194px;
}

.about__group-content.group__career-content .career__main-content .main__career-text {
  display: flex;
  grid-gap: 93px;
  padding: 0 72px 0 96px;
  margin-bottom: 35px;
}

.about__group-content.group__career-content .career__main-content .main__career-text .career__top-text h3, .about__group-content.group__career-content .career__main-content .main__career-text .career__top-text p, .about__group-content.group__career-content .career__main-content .main__career-text .career__bottom-text h3, .about__group-content.group__career-content .career__main-content .main__career-text .career__bottom-text p {
  font-family: 'Poppins', sans-serif;
}

.about__group-content.group__career-content .career__main-content .main__career-text .career__top-text h3, .about__group-content.group__career-content .career__main-content .main__career-text .career__bottom-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: #363636;
}

.about__group-content.group__career-content .career__main-content .main__career-text .career__top-text p, .about__group-content.group__career-content .career__main-content .main__career-text .career__bottom-text p {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  line-height: 24px;
}

.top-header {
  background: #056666;
}

.top-header .top-header__call, .top-header .top-header__gmail {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.top-header .top-header__call i, .top-header .top-header__gmail i {
  font-size: 18px;
}

.about__left-content p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  line-height: 24px;
  color: #696969;
  margin-top: 20px;
}

.section__product-wrap {
  display: flex;
  justify-content: space-between;
}

.owl-carousel .owl-stage:last-child {
  width: 0;
}

.about__right-content {
  position: relative;
}

.about__right-content:before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #56B4B4;
  position: absolute;
  top: -465px;
  right: -42%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .about__right-content:before {
    right: -32%;
  }
}

@media (max-width: 991px) {
  .about__right-content:before {
    top: -50px;
  }
}

@media (max-width: 479px) {
  .about__right-content:before {
    top: -40px;
  }
}

.about__right-content:before.product__green {
  top: -194px;
}

.product__square-content {
  height: 300px;
  width: 35%;
  background-color: #56B4B4;
  position: absolute;
  top: -61px;
  right: 0;
}

@media (max-width: 991px) {
  .product__square-content {
    display: none;
  }
}

.group__content-title {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

@media (max-width: 991px) {
  .group__content-title {
    margin-bottom: 10px;
  }
}

.group__content-title:before {
  content: "";
  height: 75px;
  width: 4px;
  position: absolute;
  background-color: #56B4B4;
  top: -1px;
  right: -22px;
}

.group__content-title h2, .group__content-title p {
  font-family: 'Poppins', sans-serif;
}

.group__content-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #363636;
}

@media (max-width: 575px) {
  .group__content-title h2 {
    font-size: 34px;
  }
}

.group__content-title p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 3px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .group__content-title.group__next-content {
    padding-top: 30px;
  }
}

.group__content-title.group__next-content:before {
  display: none;
}

@media (max-width: 991px) {
  .group__content-title.group__next-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 390px) {
  .group__content-title.group__next-content h2 {
    font-size: 34px;
  }
}

.product__title-sheet {
  position: relative;
}

.product__title-sheet h3 {
  font-size: 35px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 1;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 56px;
  text-align: center;
}

.product__title-sheet h3::before {
  content: "";
  height: 4px;
  width: 295px;
  background-color: #56B4B4;
  position: absolute;
  top: 42px;
  left: 0;
}

@media (max-width: 334px) {
  .product__title-sheet h3::before {
    font-size: 33px;
  }
}

.product__title-sheet.product__title-next::before {
  display: none;
}

.product__title-sheet.product__title-next h3 {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .product__title-sheet.product__title-next h3 {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .product__title-sheet.product__title-next h3 {
    font-size: 24px;
  }
}

.product__title-sheet.product__title-next p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #696969;
  line-height: 24px;
  text-align: justify;
}

.product__title-sheet.product__title-next ul {
  margin-top: 30px;
}

.product__title-sheet.product__title-next ul li {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
  font-family: 'Poppins', sans-serif;
}

.product__title-sheet.product__title-next ul li span {
  color: #696969;
}

.product__title-sheet.career__title-content {
  text-align: center;
}

.product__title-sheet.career__title-content h3::before {
  /* width: 100%; */
  left: 40%;
}

.product__title-sheet.career__title-content p {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  font-family: 'Poppins', sans-serif;
}

.about__group-content .row {
  margin: 0 -15px;
}

.about__group-content .row > * {
  padding: 0 15px;
}

.contact__common-title {
  font-size: 40px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #363636;
  margin-bottom: 50px;
}

@media (max-width: 330px) {
  .contact__common-title {
    font-size: 35px;
  }
}

.contact__btn {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #fff !important;
  font-family: "Poppins", sans-serif !important;
  background-color: #56B4B4;
  width: 35% !important;
  margin-top: 50px;
  border: 1px solid #56B4B4 !important;
  transition: 0.5s ease-in-out;
}

@media (max-width: 575px) {
  .contact__btn {
    width: 100% !important;
  }
}

.contact__btn:hover {
  background-color: #fff;
  color: #56B4B4 !important;
}

.main__news-icon span {
  font-size: 20px;
  font-weight: 400;
  color: #696969;
}

.main__news-icon span iconify-icon {
  vertical-align: sub;
}

.left__icon {
  margin-left: 24px;
}

.news__content-right h2 {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #363636;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.news__content-right h2::before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #56B4B4;
  position: absolute;
  top: 45px;
  left: 0;
}

.news__content-right.news__media {
  margin-top: 47px;
}

.news__content-right.news__media h2 {
  margin-bottom: 20px;
}

.news__content-right.news__media .media__content-news a {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .news__content-right.news__media {
    margin-top: 35px;
  }
}

.news__number-content {
  height: 40px;
  width: 40px;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 18%;
  margin-top: 7px;
}

@media (max-width: 1199px) {
  .news__number-content {
    flex-basis: 4%;
  }
}

.news__number-content span {
  font-size: 20px;
  font-weight: 600;
  color: #898989;
}

.career__image-content {
  display: flex;
  grid-gap: 30px;
  padding-top: 50px;
}

.career__image-content .career__image-person h3, .career__image-content .career__image-person p {
  font-family: 'Poppins', sans-serif;
}

.career__image-content .career__image-person h3 {
  margin: 20px 0 10px 0;
  font-size: 20px;
  font-weight: 500;
  color: #363636;
}

.career__image-content .career__image-person p {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
}

.news--placeholder {
  display: flex;
  grid-gap: 20px;
  align-items: center;
}

.news--placeholder .news-date, .news--placeholder .news-likes {
  font-size: 20px;
  line-height: 30px;
  color: #696969;
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
}

.product__sheet-content .thermol__density .main__density {
  display: flex;
  grid-gap: 50px;
}

@media (max-width: 575px) {
  .product__sheet-content .thermol__density .main__density {
    grid-gap: 28px;
    flex-direction: column;
  }
}

.product__sheet-content .thermol__density .main__density span {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #333333;
}

.product__sheet-content .thermol__density .main__density span iconify-icon {
  vertical-align: middle;
}

.product__sheet-content .thermocol__slider-content {
  padding: 80px 0 120px 0;
  border-bottom: 1px solid #CFCFCF;
}

@media (max-width: 575px) {
  .product__sheet-content .thermocol__slider-content {
    padding: 80px 0;
  }
}

.product__sheet-content .thermocol__slider-content .owl-prev, .product__sheet-content .thermocol__slider-content .owl-next {
  position: absolute;
  top: 40%;
  left: -27px;
  transform: translate(0, -50%);
}

@media (max-width: 767px) {
  .product__sheet-content .thermocol__slider-content .owl-prev, .product__sheet-content .thermocol__slider-content .owl-next {
    left: 0;
  }
}

@media (max-width: 479px) {
  .product__sheet-content .thermocol__slider-content .owl-prev, .product__sheet-content .thermocol__slider-content .owl-next {
    left: -12px;
  }
}

.product__sheet-content .thermocol__slider-content .owl-prev i, .product__sheet-content .thermocol__slider-content .owl-next i {
  font-size: 50px;
}

@media (max-width: 767px) {
  .product__sheet-content .thermocol__slider-content .owl-prev i, .product__sheet-content .thermocol__slider-content .owl-next i {
    font-size: 40px;
  }
}

.product__sheet-content .thermocol__slider-content .owl-next {
  left: auto;
  right: -34px;
}

@media (max-width: 767px) {
  .product__sheet-content .thermocol__slider-content .owl-next {
    right: 0;
  }
}

@media (max-width: 479px) {
  .product__sheet-content .thermocol__slider-content .owl-next {
    right: -12px;
  }
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image {
  border: 1px solid #D7D7D7;
  padding-top: 50px;
  transition: box-shadow .3s;
  width: 80%;
  margin: 0 auto;
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image h3 {
  padding: 35px 0;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #333333;
  text-align: center;
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image img {
  padding: 15px;
  height: 250px;
  object-fit: contain;
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image .sheet__image {
  width: 100%;
  display: inline-block;
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image .check__btn a {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  background-color: #56B4B4;
  color: #fff;
  display: block;
  font-family: 'Poppins', sans-serif;
  padding: 20px 0;
  border: 1px solid #56B4B4;
  transition: 0.5s ease-in-out;
}

.product__sheet-content .thermocol__slider-content .thermocol__slider-image .check__btn a:hover {
  background-color: #fff;
  color: #56B4B4;
}

.product__sheet-content.rubber-content {
  padding-top: 90px;
}

.product__detail-content {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .product__detail-content {
    padding: 58px 0;
  }
}

.product__detail-content .row > * {
  padding-left: 36px;
}

@media (max-width: 767px) {
  .product__detail-content .row > * {
    padding-left: 0;
  }
}

.product__detail-content .detail__left-content img {
  width: 100%;
}

.section__gallery__wrap {
  padding: 98px 0 75px 0;
}

@media (min-width: 767px) and (max-width: 991px) {
  .section__gallery__wrap [class*="col-"]:nth-child(2n) .gallery__image-content {
    margin-right: 0;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .section__gallery__wrap [class*="col-"]:nth-child(3n) .gallery__image-content {
    margin-right: 0;
  }
}

@media (min-width: 1199px) {
  .section__gallery__wrap [class*="col-"]:nth-child(4n) .gallery__image-content {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .section__gallery__wrap [class*="col-"] .gallery__image-content {
    margin-right: 0;
  }
}

.section__gallery__wrap .gallery__image-content {
  height: 392px;
  background-color: #082C42;
  margin: 0 23px 23px 0;
  position: relative;
}

.section__gallery__wrap .gallery__image-content:hover .gallery__text {
  opacity: 1;
  visibility: visible;
}

.section__gallery__wrap .gallery__image-content .gallery__text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.section__gallery__wrap .gallery__image-content .gallery__text h2, .section__gallery__wrap .gallery__image-content .gallery__text p {
  font-family: 'Poppins', sans-serif;
  color: #3F3F3F;
}

.section__gallery__wrap .gallery__image-content .gallery__text h2 {
  font-size: 20px;
  font-weight: 500;
}

.section__gallery__wrap .gallery__image-content .gallery__text p {
  font-size: 12px;
  font-weight: 300;
}

.section__gallery__wrap .gallery__image-content:hover:before {
  opacity: 0.5;
  visibility: visible;
}

.section__gallery__wrap .gallery__image-content:before {
  transition: 0.5s ease-in-out;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.section__gallery__wrap .gallery__image-content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section__contact-wrap {
  padding: 100px 0 50px 0;
}

@media (max-width: 991px) {
  .section__contact-wrap {
    padding-top: 55px;
  }
}

@media (max-width: 991px) {
  .section__contact-wrap .contact__content-left .contact__form {
    margin-bottom: 25px;
  }
}

.section__contact-wrap .contact__content-left .contact__form input, .section__contact-wrap .contact__content-left .contact__form textarea {
  border: 1px solid #D7D7D7;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  padding: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #696969;
}

.section__contact-wrap .contact__content-left .contact__form input {
  margin-bottom: 30px;
}

.section__contact-wrap .contact__content-left .contact__form textarea {
  resize: none;
}

.section__contact-wrap .contact__content-right {
  padding-left: 95px;
}

@media (max-width: 991px) {
  .section__contact-wrap .contact__content-right {
    padding-left: 0;
  }
}

.section__contact-wrap .contact__content-right h4 {
  font-size: 20px;
  font-weight: 500;
  color: #363636;
  line-height: 60px;
}

.section__contact-wrap .contact__content-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #696969;
}

.section__contact-wrap .contact__content-right h4, .section__contact-wrap .contact__content-right p {
  font-family: 'Poppins', sans-serif;
}

.section__contact-wrap .contact__content-right .contact__details {
  margin-top: 40px;
}

.section__contact-wrap .contact__content-right .contact__details p, .section__contact-wrap .contact__content-right .contact__details a {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
  font-family: 'Poppins', sans-serif;
}

.section__news-wrap {
  padding: 75px 0 100px 0;
}

@media (max-width: 991px) {
  .section__news-wrap {
    padding: 30px 0;
  }
}

.section__news-wrap .column {
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .section__news-wrap .news__content-left {
    margin-bottom: 25px;
  }
}

.section__news-wrap .news__content-left img {
  width: 100%;
}

.section__news-wrap .news__content-left h2, .section__news-wrap .news__content-left span {
  font-family: 'Poppins', sans-serif;
}

.section__news-wrap .news__content-left h2 {
  font-size: 35px;
  font-weight: 500;
  color: #363636;
  margin: 30px 0 0 0;
}

.section__news-wrap .news__content-left p {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  line-height: 25px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  margin-top: 25px;
}

.section__news-wrap .news__content-right .related-news--details {
  display: flex;
  align-items: flex-start;
  grid-gap: 16px;
  margin-bottom: 40px;
}

.section__news-wrap .news__content-right .related-news--details * {
  font-family: 'Poppins', sans-serif;
}

.section__news-wrap .news__content-right .related-news--details .news-list-number {
  background-color: #D9D9D9;
  padding: 3px 15px;
  font-size: 20px;
  line-height: 30px;
  color: #898989;
  margin-top: 10px;
  font-weight: 600;
}

.section__news-wrap .news__content-right .related-news--details .news-list-content h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #696969;
}

.section__news-wrap .news__content-right.follow-us-wrap h2 {
  margin-bottom: 20px;
}

.section__news-wrap .news__content-right .follow-social-icons a {
  margin-right: 12px;
  display: inline-block;
}

.section__news-wrap .news__content-right .follow-social-icons a:last-child {
  margin-right: 0;
}

.section__news-wrap .news__content-right .follow-social-icons a iconify-icon {
  transition: 0.3s all ease-in-out;
}

.section__news-wrap .news__content-right .follow-social-icons a:hover iconify-icon {
  color: #56B4B4 !important;
}

.section__career-team {
  padding-bottom: 100px;
}

.section__passion-wrap {
  background-color: #F6F6F6;
  padding: 71px 0 100px 0;
}

.section__passion-wrap .passion-time-content .passion__time-area {
  display: flex;
  grid-gap: 20px;
  padding-top: 70px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply {
  width: 100%;
  background-color: #fff;
  padding: 30px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply h2, .section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply h3, .section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply p, .section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply a {
  font-family: 'Poppins', sans-serif;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply h2 {
  font-size: 16px;
  font-weight: 400;
  color: #3D8888;
  background-color: #CBECEC;
  padding: 5px 35px 5px 8px;
  display: inline-block;
  letter-spacing: 5px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply h3 {
  font-size: 18px;
  font-weight: 500;
  color: #363636;
  margin-top: 25px;
  padding-bottom: 12px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply p, .section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply a {
  font-size: 16px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply p {
  font-weight: 400;
  color: #696969;
  line-height: 28px;
  padding: 24px 3px 35px 0px;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply .apply__btn {
  background-color: #56B4B4;
  color: #fff;
  padding: 16px 0;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #56B4B4;
  transition: 0.5s ease-in-out;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply .apply__btn:hover {
  color: #56B4B4;
  background-color: #fff;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply a {
  display: block;
  text-align: center;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply .apply__btn, .section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply .detail__btn {
  font-weight: 500;
}

.section__passion-wrap .passion-time-content .passion__time-area .passion__time-apply .detail__btn {
  margin-top: 20px;
  color: #363636;
  letter-spacing: 5px;
}
