@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/pretendard/Pretendard-Regular.otf') format('.otf'),
    url('../fonts/pretendard/Pretendard-Medium.otf') format('.otf'),

}

button {
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* navbar */
.bh-navbar {}

/* Top */
.bh-navbar-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #EC661A;
  color: #FFF;
  height: 43px;
}

.bh-navbar-top-img {
  margin-right: 134px;
}

/* Bottom */
.bh-navbar-bottom {
  /* height: 122px; */
  padding: 30px 0;
  padding-right: 50px;
  padding-left: 5%;
  background-color: #FFF;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 0;

}

.bh-navbar-bottom-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 660px;
  color: #373737;
  font-weight: 500;

}

.bh-navbar-bottom button {
  border: none;
  border-radius: 6px;
  background: #EC661A;
  padding: 10px 30px;
  color: #FFF;
  width: 102px;
}

.bh-navbar a {
  font-style: none;
  text-decoration: none;
  color: #646464;
  cursor: pointer;
  padding-bottom: 40px;
  padding-top: 30px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  font-size: 16px;
  font-weight: 500;
}

.bh-navbar a:hover,
.bh-navbar .dropdown-name:hover {
  color: #EC661A;
  border-bottom: 1px solid #EC661A;
}

.bh-navbar .dropdown-name {
  color: #646464;
  cursor: pointer;
  padding-bottom: 40px;
  padding-top: 30px;
  border-bottom: 1px solid #fff;
}

.bh-navbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  z-index: 1;
  margin: -30px;
}

.bh-navbar-bottom-middle-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  list-style: none;
  padding-bottom: 20px;
}

.dropdown-content li {
  margin-top: 1rem;
  cursor: pointer;
}

.dropdown-content li:hover a {
  color: #EC661A;
  border: none;
}

/* .top-nav .dropdown-content  a {
  padding-bottom: 0px;
  padding-top: 0px;
  border: 0;
} */


@media screen and (min-width: 1400px) {}

@media screen and (max-width: 900px) {
  .bh-navbar-logo {
    object-fit: contain;
    width: 100px;
  }

  .bh-navbar-logo img {
    width: 100%;
  }

  body {
    font-size: 14px;
  }

  .bh-navbar-bottom {
    padding-left: 16px;
    padding-right: 16px;
    gap: 10px;
  }

  .bh-navbar-bottom-middle {
    gap: 20px;
  }

  .bh-navbar-bottom button {
    width: 90px;
    height: 35px;
    padding: 0;
  }
}

/* mobile screen */
.top-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.menu>li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #EC661A;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}



@media (max-width: 900px) {
  .bh-navbar-top {
    justify-content: center;

  }

  .bh-navbar-top-img {
    margin-right: 0;
  }

  .bh-navbar-bottom {
    display: none;
  }

  .top-nav {
    display: flex;
    border-bottom: 1px solid #ECECEC;
  }

  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 40px;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;

  }

  .bh-navbar .dropdown-name {
    padding-bottom: 0px;
    padding-top: 0px;
    border: none;
  }

  .bh-navbar .dropdown-content {
    margin-top: 20px;
  }

  #menu-toggle:checked~.menu {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding-top: 10px;
    padding-bottom: 50px;
  }

  #menu-toggle~.menu .menu-item {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked~.menu .menu-item {
    height: 3.5em;
    padding: 0.5em;
    opacity: 1;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>.menu-item {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;

  }

  .menu button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    border-radius: 6px;
    background: #EC661A;
    color: #FFF;
    width: 80% !important;
    height: 40px;
  }

}

/* main */
/* .bh-main {} */

.slide-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 93px;
}

/* slide 1 */

.slide-1-bg,
.slide-3-bg {
  background-image: url('../images/bh-slides/bg-slide-1.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-3-bg {
  background-image: url('../images/bh-slides/bg-slide-3.png');
}

.slide-wrapper-left-text {
  color: #373737;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.slide-wrapper-left-title {
  color: #EC661A;
  font-family: Pretendard;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 5px;
}

.slide-wrapper-left-bottom {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.slide-wrapper-left-bottom-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;

}



.slide-wrapper-left-bottom-img {
  height: 100px;
  width: 100px;
  object-fit: contain;

}

.slide-wrapper-left-bottom-img img {
  width: 100%;
  height: 100%;
}

.slide-wrapper-left-bottom-buttons .btn-color,
.slide-wrapper-left-bottom-buttons .btn-normal {
  width: 174px;
  border-radius: 6px;
  background: #EC661A;
  border: solid 1px #EC661A;
  padding: 10px 0;
  color: #FFF;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  cursor: pointer;
}

.slide-wrapper-left-bottom-buttons .btn-normal {
  color: #EC661A;
  border: 1px solid #EC661A;
  background: #FFF;
}

.slide-wrapper-right {
  border-radius: 30px;
  background: var(--Neutral-1, #FFF);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  width: 686px;
  height: 350px;
  padding: 60px;
  padding-bottom: 40px;
  position: relative;
}

.slide-1-bg .slide-wrapper-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
}

.slide-1-right-texts {
  color: #373737;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 28px;
}

.slide-1-right-texts .normal {
  font-weight: 400;
  line-height: 46px;
  margin-top: 24px;
  margin-bottom: -10px;
}

.slide-1-right-texts .bold-text {
  font-size: 36px;

  font-weight: 700;
  line-height: 46px;
}

.slide-1-right-texts .colored-text {
  color: #EC661A;
}

/* slide 2 */
.slide-wrapper-2-right {
  position: relative;
}

.slide-wrapper-right-2-texts {
  color: #373737;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slide-wrapper-right-2-texts h5 {
  font-size: 24px;
  font-weight: 400;
}

.slide-wrapper-right-2-texts h4 {
  color: #0056BB;
  font-size: 36px;
  font-weight: 700;
}

.slide-wrapper-right-2-img {
  position: absolute;
  bottom: 0;
  right: 21px;
}

/* slide 3 */
.slide-3-right-texts {
  color: #373737;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slide-3-right-texts h5 {
  color: #561F7D;

  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

.slide-3-right-img {
  display: flex;
  justify-content: flex-end;
}

/* slide 4 */
.slide-4-right-texts {
  color: #373737;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slide-4-right-texts .normal {
  font-size: 24px;
  font-weight: 400;
  margin-top: 24px;
}

.slide-4-right-texts .color-text {
  color: #90C31F;
  font-size: 36px;
  font-weight: 700;

}

.slide-4-right-texts .logo-text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 7.6px;

}

.slide-4-right-img {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 300px;
}


/* slides */
.slider-container {
  position: relative;
  z-index: -1;

}

.slider {
  width: 100%;
  min-height: 700px;
  display: none;
  padding: 60px;
}

.slider-dots {
  position: absolute;
  right: 300px;
  bottom: -30px;
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 150px;
  opacity: 0.5;
  background: #525252;
  cursor: pointer;
}

.active {
  width: 20px;
  height: 8px;
  border-radius: 150px;
  background: #525252;
  opacity: 1;
  cursor: pointer;
}





/* SOCIAL ICON */
.sm-icons-new {
  position: fixed;
  right: 100PX;
  bottom: 100px;
  display: flex;
  flex-direction: column;
}

/* ITEM SECTION */

.items-section {
  width: 70%;
  border-radius: 20px;
  border: 1px solid var(--main2, #EC661A);
  background-color: #FFF;
  margin: 0 auto;
  margin-top: -85px;
  z-index: 20000;
  margin-bottom: 200px;
  display: flex;
  padding: 34px 60px;
  justify-content: space-between;
  align-items: center;
  color: #373737;
  max-width: 876px;
}

.first-item-sm {
  display: none;
}

.first-item {
  font-size: 20px;
  display: block;
}

.second-item {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.second-item .title {
  margin-top: 10px;
}

/* FOOTER */

footer {
  background-color: #262626;

  display: flex;
  width: 100%;
  padding: 40px 5%;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.footer-texts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 800px;
}

.footer-texts .text {
  border-left: 1px solid #fff;
  padding-left: 5px;
}

.sm-icons-mobile {
  display: none;
}

@media screen and (max-width: 1400px) {
  .slide-wrapper {
    gap: 50px
  }

  .slide-wrapper-right {
    padding: 30px;
  }

  .slide-wrapper-left-text {
    font-size: 20px;
  }

  .slide-wrapper-left-title {
    font-size: 34px;
  }

  .slide-1-right-texts .bold-text {
    font-size: 30px;
  }
}


@media screen and (max-width: 950px) {
  .slide-wrapper {
    gap: 100px
  }

  .slide-1-bg,
  .slide-3-bg {
    background-image: url('../images/bh-slides/bg-slide-1-sm.png');
  }

  .slide-3-bg {
    background-image: url('../images/bh-slides/bg-slide-3-sm.png');

  }

  .slide-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .slider {
    padding: 60px 20px;
  }

  .slider-dots {
    right: calc(50vw - 58px);
  }

  .slide-wrapper-left {
    text-align: center;
  }

  .slide-wrapper-left-bottom {
    margin: 0 auto;
    justify-content: center;
    margin-top: 40px;
  }

  .slide-wrapper-right {
    width: 90%;
  }

  .items-section {
    margin-top: 100px;
    width: 90%;
  }

  .sm-icons-new {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 30px;
  }

  .footer-texts,
  text {
    text-align: center;
    justify-content: center;
  }

  .sm-icons-mobile {
    display: flex;
  }

  .mobile-sm-icon {
    width: 40px;
    cursor: pointer;
    margin-right: 20px;
  }

  .items-sectionitems-section {
    padding: 34px 20px;
  }
}

@media screen and (max-width: 700px) {
  .items-section {
    margin-top: 0;
    padding: 34px 40px
  }

  .first-item {
    display: none;
  }

  .slide-wrapper-right {
    width: 90%;
  }



  .first-item-sm {
    display: block;
    cursor: pointer;
    /* justify-items: center; */
    /* align-items: center; */
    width: 100%;
    margin: 50px auto;
    margin-bottom: 20px;
    text-align: center;
    /* background-color: #EC661A; */
  }
}

@media screen and (max-width: 610px) {
  .items-section {
    padding: 34px 10px;
    width: 98%;
  }

  .slide-wrapper-left-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px
  }

  .slide-wrapper-left-title {
    font-size: 24px;
    font-weight: 700;
  }

  .slide-wrapper-left-bottom {
    gap: 20px;
  }

  .slide-wrapper-left-bottom-img {
    width: 100px;
    height: 100px;
    /* object-fit: cover; */
  }

  .slide-wrapper-left-bottom-buttons {
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-wrapper-left-bottom-img img {
    width: 100%;
  }

  .slide-wrapper-left-bottom-buttons button {
    width: 101px;
  }

  .slide-wrapper-right {
    width: 98%;
    padding: 20px;
    padding-top: 33px;
    height: 200px;
  }

  .slide-1-bg .slide-wrapper-right {
    align-items: flex-start !important;
  }

  .slide-1-right-texts {
    font-size: 18px;
  }

  .slide-1-right-texts .bold-text {
    font-size: 20px;
    line-height: 20px;
  }

  .slide-1-right-texts .colored-text {
    font-size: 16px;
    line-height: 20px;
  }

  .slide-1-right-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  .slide-1-right-texts .normal {
    margin-top: 12px;
  }

  .slide-1-right-img img {
    width: 100%;
  }

  .slide-wrapper-right-2-texts h6,
  .slide-wrapper-right-2-texts h5,
  .slide-wrapper-right-2-texts h4 {
    font-size: 20px;
  }

  .slide-wrapper-right-2-img {
    width: 180px;
    object-fit: contain;
  }

  .slide-wrapper-right-2-img img {
    width: 100%;
  }

  .slide-3-right-texts h6 {
    font-size: 18px;
  }

  .slide-3-right-texts h5 {
    font-size: 20px;
    line-height: normal;
  }

  .slide-3-right-texts .last {
    font-size: 16px;
  }

  .slide-3-right-img {
    width: 100px;
    height: 70px;
    object-fit: contain;
    margin-left: auto;
    margin-top: -30px;
  }

  .slide-3-right-img img {
    width: 100%;
  }

  .slide-4-right-texts h6,
  .slide-4-right-texts h5,
  .slide-4-right-texts .normal,
  .slide-4-right-texts .color-text,
  .slide-4-right-texts .logo-text {
    font-size: 18px;
  }

  .slide-4-right-texts .logo-text {
    letter-spacing: 0.32px;
  }

  .slide-4-right-img {
    width: 140.941px;
    object-fit: contain;
    padding-bottom: 0;
    margin-left: auto;
    margin-top: -45px;
    margin-right: 10px;
  }

  .slide-4-right-img img {
    width: 100%;
  }


}

@media screen and (max-width: 450px) {
  .items-section {
    padding: 34px 10px;
    width: 98%;
  }

  .slide-wrapper-left-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px
  }

  .slide-wrapper-left-title {
    font-size: 24px;
    font-weight: 700;
  }

  .slide-wrapper-left-bottom {
    gap: 20px;
  }

  .slide-wrapper-left-bottom-img {
    width: 80px;
    height: 80px;
    /* object-fit: cover; */
  }

  .slide-wrapper-left-bottom-buttons {
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-wrapper-left-bottom-img img {
    width: 100%;
  }

  .slide-wrapper-left-bottom-buttons .btn-color,
  .slide-wrapper-left-bottom-buttons .btn-normal {
    width: 101px;
    font-size: 12px;
  }

  .slide-wrapper-right {
    width: 98%;
    padding: 20px;
    padding-top: 33px;
    height: 170px;
  }

  .slide-1-bg .slide-wrapper-right {
    align-items: flex-start !important;
  }

  .slide-1-right-texts {
    font-size: 16px;
  }

  .slide-1-right-texts .bold-text {
    font-size: 18px;
    line-height: 20px;
  }

  .slide-1-right-texts .colored-text {
    font-size: 14px;
    line-height: 20px;
  }

  .slide-1-right-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  .slide-1-right-texts .normal {
    /* font-weight: 400;
    line-height: 46px; */
    margin-top: 12px;
    /* margin-bottom: -10px; */
  }

  .slide-1-right-img img {
    width: 100%;
  }

  .slide-wrapper-right-2-texts h6,
  .slide-wrapper-right-2-texts h5,
  .slide-wrapper-right-2-texts h4 {
    font-size: 16px;
  }

  .slide-wrapper-right-2-img {
    width: 142px;
    height: 87px;
    object-fit: contain;
  }

  .slide-wrapper-right-2-img img {
    width: 100%;
  }

  .slide-3-right-texts h6 {
    font-size: 16px;
  }

  .slide-3-right-texts h5 {
    font-size: 18px;
    line-height: normal;
  }

  .slide-3-right-texts .last {
    font-size: 14px;
  }

  .slide-3-right-img {
    width: 76px;
    height: 40.923px;
    object-fit: contain;
    margin-left: auto;
    margin-top: -30px;
  }

  .slide-3-right-img img {
    width: 100%;
    height: 100%;
  }

  .slide-4-right-texts h6,
  .slide-4-right-texts h5,
  .slide-4-right-texts .normal,
  .slide-4-right-texts .color-text,
  .slide-4-right-texts .logo-text {
    font-size: 16px;
  }

  .slide-4-right-texts .logo-text {
    letter-spacing: 0.32px;
  }

  .slide-4-right-img {
    width: 120.941px;
    height: 48px;
    object-fit: contain;
    padding-bottom: 0;
    margin-left: auto;
    margin-top: -45px;
    margin-right: 10px;
  }

  .slide-4-right-img img {
    width: 100%;
    height: 100%;
  }

  .second-item .title,
  .second-item .text {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }

  .footer-texts {
    font-size: 12px;
  }

}