@font-face {
  font-family: YuMincho;
  font-style: normal;
  font-weight: 500;
  src: url("../font/yumindb.ttf");
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  color: rgb(17, 17, 17);
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
  text-size-adjust: 100%;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

.font-yugothic {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

ul {
  list-style-type: none;
}

a {
  color: currentcolor;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}
h1 {
  display: none;
}
.c-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.c-bg--before,
.c-bg--after{
  position: relative;
}
.c-bg--before::before,
.c-bg--after::after{
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.c-flex{
  display: flex;
  justify-content: space-between;
}
.c-highlight{
  display: inline-block;
  border-bottom: 1px solid #1A7EAE;
  color: #1A7EAE;
  line-height: 1.4;
}

/*Title*/
.c-title {
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: center;
}

/*custom*/
.c-bord::after{
  content: '';
  width: 16px;
  height: 1px;
  display: block;
  margin: 25px auto 0;
  background: #111;
}
.c-title1 {
  font-size: 34px;
}
.c-title2 {
  font-size: 26px;
}

.c-title1 span,
.c-title2 span
{
  display: block;
  color: #1A7EAE;
  margin-bottom: 15px;
  font-size: 12px;
}
.c-title3 {
  font-size: 30px;
  line-height: 1.6;
}
.c-txt1{
  font-size: 20px;
  line-height: 1.8;
}
.c-txt2{
  font-size: 18px;
  line-height: 2;
}
.c-txt3{
  font-size: 16px;
  line-height: 2;
}
.c-txt4{
  font-size: 15px;
  line-height: 2;
}
.c-txt5{
  font-size: 13px;
  line-height: 1.8;
}
@media(max-width: 1024px){
  .c-title1{
    font-size: 28px;
  }
  .c-title2 {
    font-size: 22px;
  }
  .c-title1 span, .c-title2 span{
    margin-bottom: 6px;
  }
  .c-title3 {
    font-size: 24px;
  }
  .c-txt1{
    font-size: 18px;
  }
  .c-txt2{
    font-size: 16px;
  }
  .c-txt3{
    font-size: 15px;
  }
  .c-bord::after{
    margin-top: 18px;
  }
}
@media(max-width: 767px){
  .c-title1{
    font-size: 24px;
  }
  .c-title2 {
    font-size: 20px;
  }
  .c-title1 span, .c-title2 span{
    margin-bottom: 5px;
  }
  .c-title3 {
    font-size: 22px;
  }
  .c-txt1{
    font-size: 16px;
  }
  .c-txt2{
    font-size: 14px;
  }
  .c-txt3,
  .c-txt4{
    font-size: 13px;
  }
  .c-txt5{
    font-size: 12px;
  }
}
/**End Title */
/**Btn*/
.c-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0px;
  position: relative;
  line-height: 1;
  transition: all 0.4s ease 0s;
}

.c-btn::before, .c-btn::after {
  content: "";
  flex-shrink: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: inherit;
}

.c-btn:hover {
  opacity: 1;
}
@media(max-width: 1024px){
  .c-btn-list{
    gap: 15px 20px;
  }
}
@media(max-width: 768px){
  .c-btn-list{
    gap: 15px 10px;
  }
  .c-btns{
    gap: 20px 4%;
  }
}
.c-btn1 {
  background: transparent;
  border-bottom: 1px solid #CCCCCC;
  padding: 0 20px 28px;
  width: 480px;
  justify-content: space-between;
  text-align: left;
  line-height: 1.4;
}
.c-btn1::after {
  background-image: url("../images/common/ic-arr-black.png");
  width: 10px;
  height: 17px;
  transition: all ease 0.4s;
}
.c-btn1::before {
  width: 60px;
  background: #1A7EAE;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
}
.c-btn1:hover{
  color: #1A7EAE;
}
.c-btn1:hover::before {
  width: 100%;
}
.c-btn1:hover::after{
  background-image: url("../images/common/ic-arr-blue.png");
}
.c-btn2{
  background-color: #1A7EAE;
  color: #fff;
  width: 515px;
  height: 80px;
  border-radius: 10px;
  justify-content: space-between;
  padding: 0 4.5%;
}
.c-btn2::before{
  display: none;
}
.c-btn2::after{
  background-image: url('../images/common/ic-arr-white.png');
  width: 9px;
  height: 15px;
    transition: all ease 0.4s;
}
.c-btn2 *{
  transition: all ease 0.4s;
}
.c-btn2:hover *,
.c-btn2:hover::after{
  opacity: 0.5;
}
.c-btn3{
  width: 270px;
  background-color: #fff;
  border-radius: 100px;
  height: 60px;
  font-size: 15px;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.c-btn3::before{
  display: none;
}
.c-btn3::after{
  background-image: url('../images/common/ic-arrR-black.png');
  width: 11px;
  height: 11px;
}
.c-btn3:hover{
  color: #fff;
  background-color: #1A7EAE;
  opacity: 1;
}
.c-btn3:hover::after{
    background-image: url('../images/common/ic-arrR-white.png');
}

.c-btn-cart{
  font-size: 18px;
  border: 1px solid #E82020;
  background-color: #E82020;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 100px;
  width: 340px;
  height: 76px;
  color: #fff;
  gap: 13px;
}
.c-btn-cart::before{
  background-image: url('../images/common/ic-cartW.png');
  width: 19px;
  height: 18px;
  margin-bottom: 1px;
}
.c-btn-cart:hover{
  color: #E82020;
  background-color:#fff;
}
.c-btn-cart:hover::before{
    background-image: url('../images/common/ic-cartRed.png');
}
@media(max-width: 1024px){
  .c-btn1{
    width: 280px;
    font-size: 13px;
    padding: 0 10px 15px;
  }
  .c-btn1::after{
    width: 8px;
    height: 15px;
  }
  .c-btn2{
    /* max-width: 48%; */
    width: 48%;
  }
}
@media(max-width: 767px){
  .c-btn2{
    height: 60px;
    font-size: 13px;
    width: 100%;
    margin: auto;
  }
  .c-btn2::after{
    width: 7px;
    height: 13px;
  }
  .c-btn-cart{
    
font-size: 13px;
    
width: 180px;
    
height: 47px;
  }
  .c-btn-cart::before{
    width: 15px;
    height: 14px;
  }
}
/**end Btn*/
/**pallarax*/
.c-pallarax {
  height: 656px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.c-parallax--bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}

.parallax__container {
  position: absolute;
  clip: rect(0px, auto, auto, 0px);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -10;
}

.parallax {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 100% !important;
  background-color: #0F5779;
}

/*custom*/
.c-pallarax__content {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgb(255, 255, 255);
  width: 683px;
  padding: 72px 55px 94px 160px;
}

.c-pallarax__title {
  font-size: 97px;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 120%;
}

.c-pallarax__subtt {
  font-size: 37px;
  line-height: 120%;
  margin: 17px 0px 0px;
  letter-spacing: 1.8px;
}

.c-pallarax__desc {
  line-height: 200%;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 26px;
  font-weight: bold;
}

@media(max-width: 767px){
  .c-pallarax{
    /* height: 200px; */
  }
}
/**End pallarax*/

/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: center;
  /* font-family: YuMincho; */
  padding-right: 3px;
}

.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 12px 25px;
  position: relative;
}

.c-header.active .c-nav__link {
  /* color: rgb(17, 17, 17); */
}

.c-nav__link:hover {opacity: 1;color: #1A7EAE;}

.c-nav__link::before {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  background-color: #1A7EAE;
  transition: all 0.4s ease 0s;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-nav__link:hover::before {
  width: 14px;
}

.c-nav__item--last .c-btn {
  width: 240px;
  height: 50px;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 100px;
  background-size: cover;
  background-position-x: right;
  background-image: url('../images/common/bg-btn.png');
  margin-left: 45px;
  padding-top: 12px;
  display: inline-flex;
}

.c-nav__link.c-btn::before {
  position: relative;
  top: -1px;
  left:0;
  margin-right: 4px;
  transform: unset;
  width: 20px !important;
  height: 14px;
  background-color: transparent;
  background-image: url('../images/common/ic-cartW.png');
}
.c-nav__link.c-btn:hover {
  border-color: #F63F3F;
  background: transparent;
  color: #F63F3F;
}
.c-nav__link.c-btn:hover::before {
  background-image: url('../images/common/ic-cartRed.png');
}
.c-menuIcon {
  display: none;
}
.c-nav__item.c-nav__item--last{
  margin-top: -15px;
}
@media screen and (max-width: 1450px) {
  .c-nav__link {
    padding: 10px 18px;
    font-size: 14px;
  }
  .c-nav__item--last .c-btn{
    margin-left: 20px;
    width: 200px;
    height: 45px;
  }
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
  }

  .c-nav__item ~ .c-nav__item {
    margin-top: 5px;
  }

  .c-nav__link {
    /* color: #fff !important; */
  }
  .c-nav__link:hover{
    opacity: 1;
    /* color: rgb(179, 152, 32) !important; */
  }

  .c-nav__item--last .c-btn {
      margin: 0px auto;
      width: 100%;
      max-width: 300px;
      /* padding: 20px; */
      margin-top: 20px;
  }
  .c-nav__item.c-nav__item--last{
  margin-top: 0;
  }
}
/**End Nav Menu*/

/**Menu Icon*/
@media screen and (max-width: 1200px) {
  .c-menuIcon {
      display: block;
      height: 25px;
      width: 40px;
      z-index: 1001;
      cursor: pointer;
      margin-left: 25px;
      position: relative;
      margin-bottom: 25px;
  }
  .c-menuIcon p{
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 13px;
  }

  .c-menuIcon span {
      width: 100%;
      height: 3px;
      background-color: #1A7EAE;
      position: absolute;
      left: 0px;
      transition: all 0.2s ease 0s;
    border-radius: 100px;
  }

  .c-menuIcon span:nth-child(1) {
      top: 0px;
  }

  .c-menuIcon span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
  }

  .c-menuIcon span:nth-child(3) {
      bottom: 0px;
  }

  .c-menuIcon.active span:nth-child(1) {
      top: 50%;
      transform: rotate(45deg) translateY(-50%);
  }

  .c-menuIcon.active span:nth-child(2) {
      left: 150%;
      opacity: 0;
  }

  .c-menuIcon.active span:nth-child(3) {
      bottom: 45%;
      transform: rotate(-45deg) translateY(45%);
  }
}
@media(max-width: 1024px){
  .c-menuIcon{
    margin-bottom: 20px;
  }
  .c-menuIcon p{
    bottom: -27px;
  }
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
      height: 20px;
      margin-bottom: 18px;
      width: 32px;
  }
  .c-menuIcon p{
    font-size: 10px;
    bottom: -23px;
  }
}
/**End Menu Icon*/

/**Header*/
.c-header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  width: 100%;
  height: 120px;
  color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  transition: all 0.4s ease 0s;
  background: #fff;
}

.c-header.active {
  background-color: rgb(255, 255, 255);
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
  position: relative;
  width: 100%;
  padding: 10px 50px 0;
}

.c-header__logo {
  flex-shrink: 0;
  width: 320px;
  position: relative;
  z-index: 99999;
}

.c-header__logo img {
  width: 100%;
  display: block;
}

.c-header__group {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

@media(max-width: 1450px){
  .c-header__logo{
    width: 250px;
  }
}
@media screen and (max-width: 1200px) {
  .c-header{
    height: 100px;
  }
  .c-header__inner{
    padding: 10px 20px 0;
  }
  .c-header__group {
      display: none;
  }
  .c-header__group {
    position: absolute;
    top: -30px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    z-index: 1000;
    display: flex;
    transform: translateX(100%);
    transition: all ease 0.4s;
    padding-top: 0 !important;
  }
  .c-header__group::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/common/bg-menu.png');
    background-size: cover;
    background-position: center;
  }

  .c-header__group.active {
    transform: translateX(0);
  }

}
@media(max-width: 1024px){
  .c-header {
    height: 70px;
  }
  .c-header__inner{
    
padding: 3px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-header {
    height: 100px;
  }
  .c-header__logo{
    width: 200px;
  }
  .c-header__logo img{
    /* width: 150px; */
  }
  .c-header__inner{
    padding: 0 20px;
  }
}
/**End Header*/

/**Footer*/
.c-footer{
  margin-top: 125px;
  position: relative;
}

.c-footer__logo {
  max-width: 100%;
  margin: auto;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.c-footer__logo .c-logo__content{
  margin-bottom: 0;
  color: #fff;
}
.c-footer__logo .c-logo__content span{
  font-size: 13px;
}
.c-footer__logo .c-logo__content p{
  font-size: 30px;
}
.c-footer .c-nav__menu{
  justify-content: center;
  display: flex;
  margin: auto;
  max-width: 100%;
}
.c-footer .c-nav__item a{
  font-size: 16px;
  line-height: 1;
}
.c-footer .c-nav__item a:hover{
  opacity: 1;
}
.c-footer .c-nav__item{
  border-right: 1px solid #111;
  padding: 0 22px;
  line-height: 1.4;
}
.c-footer .c-nav__item:last-child{
  border-right: 0;
}
.c-footer .c-nav__link{
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.c-footer .c-nav__link:hover{
  opacity: 1;
}
.c-copyright {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
}
@media(max-width: 1024px){
  .c-footer .c-nav__item{
    margin-top: 0;
  }
}
@media(max-width: 767px){
  .c-footer .c-nav__link{
    font-size: 13px;
  }
  .c-footer__logo{
    width: 280px;
    gap: 15px;
    justify-content: center;
  }
  .c-footer__logo .c-logo__img{
    width: 200px;
  }
  .c-footer .c-nav__link.c-btn{
    width: 200px;
    font-size: 13px;
  }
  .c-footer .c-nav__menu{
    max-width: 280px;
    flex-wrap: wrap;
    gap: 13px 0;
  }
  .c-footer .c-nav__item{
    padding: 0 8px;
  }
  .c-footer .c-nav__item:first-child{
    border-left: 0;
  }
  .c-footer .c-nav__item:nth-of-type(3n){
    border: 0;
  }
  .c-footer{
    margin-top: 0;
    padding: 60px 0;
  }
  .c-footer::after{
    /* height: 100px; */
    /* background-position-y: top; */
  }
  .c-footer__logo .c-logo__content span{
    font-size: 7px;
  }
  .c-footer__logo .c-logo__content p{
    font-size: 18px;
  }
}
/**End footer*/
/**Loading*/
.c-loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all ease 1s;
}
.c-loading.open{
  z-index: 9999999;
  opacity: 1;
}
.c-loading__header {
  position:relative;
  text-align:center;
  background-color: #fff;
  color:white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.c-loading__logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}
.c-loading__img{
  width: 100%;
  max-width: 156px;
  opacity: 1;
  animation: fade 2s linear infinite;
}
.c-loading__inner-header {
  width:100%;
  margin: 0;
  position: absolute;
  padding: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes fade {
  0%,100% { opacity: 0.4 }
  50% { opacity: 1 }
}

/**End Loading*/

/**News*/
.c-news__card{
  display: flex;
  gap: 10px 0;
  font-weight: bold;
  letter-spacing: 0.6px;
  padding: 22px 20px;
  border-bottom:1px solid #ccc;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: 0.8px;
}
.c-news__card:last-child{
  border-bottom: 0;
}
.c-news__card::after{
  background-image: url('../images/common/ic-arr-black.png');
  width: 9px;
  height: 16px;
  transition: all ease 0.4s;
  position: absolute;
  right: 20px;
  top: 51%;
  transform: translateY(-50%);
}
.c-news__date{
  font-size: 15px;
  color: #666666;
  transition: all ease 0.4s;
  margin-right: 20px;
}
.c-news__new{
  width: 54px;
  height: 23px;
  color: #fff;
  font-size: 11px;
  background-color: #E82020;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  line-height: 1;
  border-radius: 5px;
  padding-top: 2px;
  transform: translateY(-2px);
}
.c-news__new.--gold{
 background-color: #B8A131;
}
.c-news__title{
  font-size: 15px;
  line-height: 1.2;
  /* flex: 1; */
  /* min-width: 300px; */
  transition: background-size 0.4s;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(26, 126, 174, 1), rgba(26, 126, 174, 1), rgba(26, 126, 174, 1));
  background-size: 100% 1px, 0 1px;
  background-position: 100% 100%, 0px 100%;
  background-repeat: no-repeat;
}
.is-hover:hover .c-news__title{
  background-size: 0 1px, 100% 1px;
}
.c-news__card:hover{
  opacity: 1;
  color: #1A7EAE;
}
.c-news__card:hover::after{
  background-image: url('../images/common/ic-arr-blue.png');
}

@media(max-width: 767px){
  .c-news__card:last-child{
    border: 0;
  }
  .c-news__card{
    padding: 15px 10px;
    padding-right: 30px;
  }
  .c-news__title{
    font-size: 13px;
    flex: auto;
    width: 100%;
    min-width: auto;
  }
  
  .c-news__date{
    font-size: 12px;
    color: #666666;
    justify-content: center;
    margin-right: 10px;
    display: inline-flex;
  }
  .c-news__new{
    font-size: 9px;
    width: 40px;
    height: 20px;
    margin-right: 0;
  }
  .c-news__card::after{
    right: 10px;
    width: 7px;
    height: 14px;
     top: 70%;
  }
}
/**End News*/

/**Top news*/
.c-pallarax-news{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}
.c-pallarax-news__btns{
  display: flex;
  gap: 30px;
  justify-content: center;
}
.top-news__inner{max-width: 1060px;background: #fff;border-radius: 10px;padding: 40px 70px;}
.top-news-flex{
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.top-news__title{
  width: 200px;
  text-align: center;
  /* padding-top: 50px; */
}
.top-news__title h2{
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
  color: #1A7EAE;
}
.top-news__title a{
  font-size: 16px;
  color: #666666;
  font-weight: bold;
  display: block;
  letter-spacing: 0;
}
.top-news__title a:hover{
  opacity: 1;
  color: #1A7EAE;
}
.top-news__content{
  flex: 1;
}
.top-news .c-btns{
  gap: 20px 30px;
}
@media(max-width: 1200px){
  .top-news__title{
    width: 160px;
  }
}
@media(max-width: 1024px){
  .top-news__inner{
    max-width: 760px;
    padding: 20px 30px;
  }
  .top-news__title{
    width: 120px;
  }
  .c-pallarax-news__btns{
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    max-width: 760px;
    margin: auto;
  }
}
@media(max-width: 767px){
  .top-news{
    border-radius: 0;
  }
  .top-news-flex{
    flex-wrap: wrap;
    padding: 0;
  }
  .top-news__title{
    width: auto;
    padding-top: 10px;
  }
  .top-news__content{
    flex: auto;
    width: 100%;
  }
  .top-news__title a{
    font-size: 14px;
    color: #666;
  }
  .top-news__title h2{
    line-height: 1.2;
  }
  .c-pallarax-news__btns{
    flex-wrap: wrap;
  }
  .top-news__inner{
    padding: 20px;
  }
}
/**End Top News*/
/**Slider*/
.swiper{
  margin-bottom: -20px;
}
.swiper-button-next, .swiper-button-prev{
  width: 55px;
  height: 108px;
  margin-top: 0;
  transform: translateY(-65%);
  transition: all ease 0.4s;
  opacity: 1 !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 0.5;
}
.swiper-button-next{
  right: 20px;
}
.swiper-button-prev{
  left: 20px;
}
.swiper-button-next::after,
.swiper-button-prev::after{
  font-family: initial;
  background-image: url('../images/common/ic-slide-prev.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  content: '';
}
.swiper-button-next::after{
  background-image: url('../images/common/ic-slide-next.png');
}
.swiper-pagination{
  display: none;
}
.swiper-wrapper{
  padding: 25px 0;
}
.swiper-pagination-bullet {
	background: #ccc;
	width: 10px;
	height: 10px;
	opacity: 1;
	margin: 0 5px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #1A7EAE;
}
@media(max-width: 1200px){
  .swiper-button-next, .swiper-button-prev{
    width: 30px;
    height: 100px;
  }
}
@media(max-width: 800px){
  .swiper-pagination{
    display: block;
    position: relative;
    margin-top: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev{
    display: none !important;
  }
  .swiper{
    padding: 0 !important;
  }
}

/*End Slider*/
/* SCROLLDOWN */
.c-socials{
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9;
  transition: all ease 0.7s;
}
.c-socials.hide{
  right: -100%;
}
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  bottom: 44px;
  right: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all ease 0.7s;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/common/ic-arr-downb.png');
  width: 24px;
  height: 14px;
  margin-bottom: 10px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}

@media(max-width: 1024px){
  .c-scrolldown{
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }
  .c-scrolldown::before{
    width: 18px;
    height: 8px;
    margin: 8px 0 3px;
  }
}
@media(max-width: 768px){
  .c-scrolldown{
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 20PX;
  }
}
/* END SCROLLDOWN */
/**c-card*/
.c-card{
  position: relative;
  z-index: 2;
}
.c-card:hover{
  opacity: 1;
}
.c-card__img{
  height: 390px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  position: relative;
  overflow: hidden;
}
.c-card__img img{
  position: absolute;
  bottom: 0;
  left: 50%;
  /* width: 100%; */
  max-width: 100%;
  transform: translateX(-50%) scale(1);
  transition: all ease 0.4s;
}
.c-card:hover img{
  transform: translateX(-50%) scale(1.1);
}
.c-card__label{
  background-color: #1A7EAE;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 2px 0;
  font-size: 12px;
  width: 100px;
  display: block;
  margin: -13px auto 17px;
  position: relative;
}
.c-card__title{
  font-size: 17px;
}
.c-card__txt{
  max-width: 235px;
}
.c-card__new{
  border-radius: 50%;
  background-color: #F51212;
  width: 58px;
  height: 58px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  left: 25px;
  z-index: 2;
}
@media(max-width: 767px){
  .c-card__img{
    height: 300px;
  }
  .c-card__img img{
    max-width: 100%;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    /* width: 100%; */
  }
  .c-card__content{
    text-align: center;
  }
  .c-card__txt{
    max-width: 100%;
    font-size: 13px;
  }
  .c-card__title{
    font-size: 15px;
  }
}
/**end c-card*/
/**c-items*/
.c-items{
  gap: 30px 4%;
  max-width: 1200px;
}
.c-item{
  width: 47.5%;
  background: #fff;
}
.c-item:hover{
  opacity: 1;
}
.c-item__img{
  /* height: 367px; */
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 550 / 367;
  position: relative;
  width: 100%;
}
.c-item__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease 0.4s;
  border-radius: 10px;
  transform: scale(1);
}
.c-item__title{
  background-color: #fff;
  border-top-right-radius: 10px;
  padding: 30px 30px 0;
  width: 100%;
  max-width: 343px;
  position: absolute;
  bottom: -16px;
  left: 0;
  transition: all ease 0.4s;
}
.c-item__txt{
  padding: 30px 20px;
  background: #fff;
}
.c-item:hover img{
   transform: scale(1.1);
}
.c-item:hover .c-item__title{
  color: #1A7EAE;
}
@media(max-width: 767px){
  .c-items{
    flex-wrap: wrap;
  }
  .c-item{
    width: 100%
  }
  .c-item__title{
    bottom: 0;
    max-width: 220px;
    padding: 10px 20px 0;
  }
  .c-item__txt{
    font-size: 13px;
    padding: 20px;
  }
}
/**end c-items*/

/**Product*/
.product-cates{
  position: relative;
}
.product-cates__inner{
  max-width: 890px;
}
.product-cates__title{
  font-size: 22px;
  padding: 5px 30px 0;
  border-left: 1px solid;
  margin-left: 23px;
  line-height: 1.2;
}
.product-cates__list{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 2.3%;
}
.product-cate{
  width: 31.8%;
  background-color: #fff;
  border-radius: 100px;
  padding: 16px 5%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: space-between;
  position: relative;
}
.product-cate::after{
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/common/ic-arrR-black.png');
  width: 12px;
  height: 13px;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}
.product-cate:hover{
  color: #fff;
  background-color: #1A7EAE;
  opacity: 1;
}
.product-cate:hover::after{
  background-image: url('../images/common/ic-arrR-white.png');
}
@media(max-width: 767px){
  .product-cates__list{
    justify-content: space-between;
  }
  .product-cate{
    width: 48%;
    font-size: 13px;
    padding: 10px 5%;
  }
  .product-cate::after{
    right: 16px;
    width: 10px;
    height: 11px;
  }
  .product-cates__title{
    font-size: 18px;
    margin-left: 0;
    padding: 0 15px;
  }
}
/**End Product*/