/* CSS Document */

@import url("fonts.css");


/* html5doctor.com/html-5-reset-stylesheet/ */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,time,mark,audio,video { margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; } 
body { line-height:1; }
ol,ul { list-style:none; }
blockquote,q { quotes:none; }
blockquote:before,blockquote:after,q:before,q:after { content:'';content:none; }
ins { text-decoration:none; }
del { text-decoration:line-through; }
table { border-collapse:collapse;border-spacing:0; }




/* root */
:root{
  --white: #fff;
  --black: #000;
  --default: #010101;
  --primary: #ef3f24; 
  --primary2: #ec3d22;

  --t-header2: 58px;
  --t-header3: 50px;
  --t-header4: 42px;
  --t-detail: 25px;
}
@media (max-width: 1999px) {
  :root {
    --t-header2: 42px;
    --t-header3: 40px;
    --t-header4: 32px;
    --t-detail: 20px;
  }
}
@media (max-width: 1399px) {
  :root {
    --t-header2: 42px;
    --t-header3: 36px;
    --t-header4: 30px;
  }
}
@media (max-width: 1199px) {
  :root {
    --t-header2: 34px;
    --t-header3: 30px;
    --t-header4: 26px;
    --t-detail: 18px;
  }
}
@media (max-width: 576px) {
  :root {
    --t-header2: 22px;
    --t-header3: 20px;
    --t-header4: 20px;
    --t-detail: 16px;
  }
}


/* -- CUSTOM CSS -- */
html, body {width:100%; height:100%; padding:0px; margin:0px}

body{ 
	background-color:#fff; 
}
body{ font-family: 'Proxima Nova', sans-serif; font-size:100%; font-weight:normal; color:var(--default); text-decoration:none; }
img {
	border:0px;
}
.img-responsive { display: block; height: auto; max-width: 100%; }

a,
a:hover{
  text-decoration:none;
  color: inherit;
  outline:0; transition: all 0.3s ease;
}
a:focus {
  text-decoration:none;
  outline:0;
}

.btn.focus, .btn:focus{
	outline:0;
	box-shadow: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
.form-control:focus {
  outline: none !important;
  box-shadow: none;
}
input,
select,
textarea{
  background-clip: padding-box;
}




.div-container{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .div-container, .div-container--fluid{
    max-width: 540px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .div-container, .div-container--fluid{
    max-width: 750px;
  }
  .div-container--fluid{ max-width: 100%; padding: 0; }
}

@media (min-width: 992px) {
  .div-container{
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .div-container {
    max-width: 1230px;
  }
}
@media (min-width: 1400px) {
  .div-container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .div-container {
    max-width: 1420px;
  }
}
@media (min-width: 2000px) {
  .div-container {
    max-width: 1720px;
  }
}




section{ position: relative; }
.page-section{ padding: 50px 0; }


h1, h2, h3, h4{ font-weight: bold; }

p{ font-size: var(--t-detail); line-height: 1.5; }




@media (max-width: 576px) {

  .page-section{ padding: 30px 0; }

}



/* button */
.btn{ font-weight: bold; padding: 5px; border: 1px solid var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.btn--solid{ background-color: var(--white); color: var(--black); }
.btn--red{ background-color: var(--primary); color: var(--white); }
.btn--black{ background-color: var(--black); color: var(--white); border-color: var(--black); }
.btn--white{ background-color: var(--white); color: var(--primary); }

.btn:hover{ background-color: var(--white); color: var(--primary); }
.btn--black:hover{ border-color: var(--primary); }
.btn--white:hover{ background-color: var(--black); color: var(--white); }




/**********************************************************/
/************************** nav ***************************/
/**********************************************************/

.div-header{ padding: 25px 0; position: absolute; top: 0; left: 0; width: 100%; z-index: 99; background-color: var(--white); }
.div-header--content{ display: flex; justify-content: space-between; align-items: center; }
.div-logo{ max-width: 220px; }

.header--btn{ display: flex; gap: 45px; }
.header--btn .btn{ width: 295px; height: 65px; font-size: 30px; }


@media (max-width: 1999px) {

  .div-header{ padding: 20px 0; }
  .div-logo{ max-width: 200px; }

  .header--btn{ gap: 35px; }
  .header--btn .btn{ width: 200px; height: 55px; font-size: 20px; }

}
@media (max-width: 1199px) {

  .header--btn{ gap: 25px; }
  .header--btn .btn{ width: 180px; height: 50px; }

}
@media (max-width: 991px) {

  .header--btn{ gap: 15px; }
  .header--btn .btn{ width: 150px; height: 40px; font-size: 16px; }

}
@media (max-width: 767px) {

  .div-header{ padding: 12px 0; }
  .div-logo{ max-width: 120px; }

  .header--btn{ gap: 5px; }
  .header--btn .btn{ width: 100px; height: 30px; font-size: 12px; border-radius: 6px; }

}



/**********************************************************/
/**********************************************************/


/*
 *  Owl Carousel - nav arrow
*/
.owl-carousel .owl-stage-outer{ z-index: 9; }
.owl-carousel .owl-nav{ 
  position:absolute; width:100%; top: calc(50% - 80px); height:50px; margin-top: -30px;
}
.owl-carousel .owl-nav button.owl-prev{
  background: url('../images/arrow/arrow-prev.png') no-repeat 0 0; background-size: cover;
  text-indent:-9999px;
  width:50px;
  height:50px;
  left: -70px;
  position:absolute;z-index:101;
  border-radius: 0;
  padding: 0;
  margin:0;
}
.owl-carousel .owl-nav button.owl-next{
  background: url('../images/arrow/arrow-next.png') no-repeat 0 0; background-size: cover;
  text-indent:-9999px;
  width:50px;
  height:50px;
  right: -70px;
  position:absolute;z-index:101;
  border-radius: 0;
  padding: 0;
  margin:0;
}
.owl-carousel .owl-nav button.owl-prev:hover{
  background: url('../images/arrow/arrow-prev.png') no-repeat 0 0; background-size: cover;
}

.owl-carousel .owl-nav button.owl-next:hover{
  background: url('../images/arrow/arrow-next.png') no-repeat 0 0; background-size: cover;
}

/* .owl-theme .owl-nav .disabled{ display: none; } */

.owl-carousel.off {
  display: block;
}

.owl-theme .owl-dots{ width: 100%; text-align: center; z-index: 9; }
.owl-theme .owl-dots{ margin-top: 30px; }
.owl-theme .owl-dots .owl-dot span{ background: #b7b7b7; width: 8px; height: 8px; border-radius: 50%; margin: 5px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{ background: var(--primary); }
.owl-theme .owl-nav.disabled + .owl-dots{ margin-top: 30px; }


@media (max-width: 576px) {

  .owl-carousel .owl-nav button.owl-prev{ left: -10px; }
  .owl-carousel .owl-nav button.owl-next{ right: -10px; }

}



/**********************************************************/
/**********************************************************/

.bg-1{ background-image: url('../images/bg/bg-1.png'); width: 100%; background-repeat: no-repeat; background-size: 100%; overflow: hidden; padding-bottom: 100px; }

.s1-box{ padding-top: 200px; padding-bottom: 50px; }
.s1-box--text{ text-align: center; color: var(--white); }
.s1-box--text h1{ font-size: 50px; margin-bottom: 10px; }
.s1-box--text p{ font-size: 32px; }


.s1-box--btn{ display: flex; gap: 60px; justify-content: center; margin-top: 50px; }
.s1-box--btn .btn{ width: 330px; height: 72px; font-size: 36px; }
.s1-box--btn .btn--white:hover{ border-color: var(--black); }


@media (max-width: 1999px) {

  .s1-box{ padding-top: 180px; }
  .s1-box--text h1{ font-size: 38px; }
  .s1-box--text p{ font-size: 26px; }

  .s1-box--btn{ gap: 30px; margin-top: 50px; }
  .s1-box--btn .btn{ width: 250px; height: 65px; font-size: 26px; }

}
@media (max-width: 1399px) {

  .s1-box{ padding-top: 160px; }
  .s1-box--text h1{ font-size: 34px; }
  .s1-box--text p{ font-size: 24px; }

  .s1-box--btn{ gap: 20px; margin-top: 40px; }
  .s1-box--btn .btn{ height: 60px; font-size: 22px; }

}
@media (max-width: 1199px) {

  .s1-box{ padding-top: 140px; }
  .s1-box--text h1{ font-size: 27px; }
  .s1-box--text p{ font-size: 20px; }

}
@media (max-width: 991px) {

  .bg-1{ background-image: url('../images/bg/bg-1-mobi.png'); background-position: center -5%; }
  .s1-box{ width: 80%; margin: 0 auto; }
  .s1-box--text{ width: 90%; margin: 20px auto 0; }

}
@media (max-width: 576px) {

  .bg-1{ background-position: center top; }
  .s1-box{ width: 90%; padding-top: 90px; }
  .s1-box--text{ width: 100%; }
  .s1-box--text h1{ font-size: 18px; }
  .s1-box--text p{ font-size: 15px; }
  .s1-box--img{ width: 85%; margin: 0 auto; }

  .s1-box--btn{ gap: 10px; margin-top: 30px; }
  .s1-box--btn .btn{ height: 45px; font-size: 16px; }

}


.s2-box{ padding-top: 100px; }
.s2-box--text{ position: relative; z-index: 5; }
.s2-box--text h2{ font-size: var(--t-header2); }
.s2-box--text h3{ font-size: var(--t-header3); }
.s2-box--text h4{ font-size: var(--t-header4); }
.s2-box--text h2, .s2-box--text h3, .s2-box--text h4{ margin-bottom: 20px; border-bottom: 3px solid #f7ddd9; padding-bottom: 20px; }
.s2-box--text p{ color: #555; }
.s2-box--img{ position: relative; z-index: 1; }
.s2-box--img > img{ padding: 30px; }


.img-el{ overflow: hidden; }
.img-el img{ 
  position: absolute; z-index: -1; 
  animation-name: rotate_circle;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.box-el1 img{ top: -15px; right: 0; }
.box-el2 img{ top: -80px; left: -60px; }
.box-el3 img{ top: -50px; right: 0; }
.box-el4 img{ top: -30px; left: 100px; }
.box-el5 img{ top: 50px; right: 0; }


@keyframes rotate_circle {
  from {
      transform:rotate(0deg);
  }
  to {
      transform:rotate(360deg);
  }
}


@media (max-width: 1999px) {

  .img-el img{ width: 80%;}

}
@media (max-width: 991px) {

  .s2-box{ width: 80%; margin: 0 auto; padding-top: 80px; }
  .s2-box--text{ text-align: center; }

  .img-el img{ width: 60%;}
  .box-el1 img{ top: 25%; right: -25%; }
  .box-el2 img{ top: 45%; left: -30%; }
  .box-el3 img{ top: 40%; right: -25%; }
  .box-el4 img{ top: 25%; left: -30%; }
  .box-el5 img{ top: 22%; right: -30%; }

}
@media (max-width: 767px) {

  .s2-box{ padding-top: 50px; width: 95%; }
  .s2-box--img > img{ padding: 0; margin-top: 20px; }
  .s2-box--text h2, .s2-box--text h3, .s2-box--text h4{ margin-bottom: 10px; padding-bottom: 10px; }

}

/**********************************************************/
/**********************************************************/

.img-el-bg2{ position: absolute; top: -350px; left: 0; z-index: -1; }
.img-el-bg3{ position: absolute; bottom: 100px; right: 0; z-index: -1; text-align: right; }

.s3-box{ position: relative; padding-bottom: 160px; }
.s3-divtitle{ text-align: center; margin-bottom: 50px; }
.s3-divtitle h2{ font-size: 72px; font-weight: 600; }
.s3-divtitle p{ font-size: 36px; font-weight: 500; color: var(--primary2); }


.s3-card--task{ max-width: 1500px; width: 90%; margin: 0 auto; }
.s3-card--task ul{ display: flex; flex-wrap: wrap; gap: 20px; }
.s3-card--task ul li { background-color: var(--white); box-shadow: 5px 5px 27px 0px rgba(54,25,0,.13); flex: 1 0 0%; position: relative; display: flex; flex-direction: column; border-radius: 10px; flex: 0 0 calc(20% - 16px); max-width: calc(20% - 16px); text-align: center; padding-top: 30px; }
.s3-card--task ul li figure{ -ms-flex-negative: 0; flex-shrink: 0; width: 100%;}
.s3-card--task ul li .s3-caption{ flex: 1 1 auto; min-height: 1px; padding-bottom: 20px; font-size: 30px; font-weight: 500; display: flex; align-items: center; justify-content: center; }


@media (max-width: 1999px) {

  .img-el-bg2{ top: -250px; }
  .img-el-bg2 img, .img-el-bg3 img{ width: 80%;}

  .s3-divtitle h2{ font-size: 56px; }
  .s3-divtitle p{ font-size: 28px; }

  .s3-card--task ul li figure img{ width: 100px; }
  .s3-card--task ul li .s3-caption{ font-size: 22px; }

}
@media (max-width: 1199px) {

  .img-el-bg2{ top: -180px; }
  .img-el-bg2 img, .img-el-bg3 img{ width: 60%; }

  .s3-divtitle h2{ font-size: 46px; }
  .s3-divtitle p{ font-size: 22px; }

  .s3-card--task ul li figure img{ width: 80px; }
  .s3-card--task ul li .s3-caption{ font-size: 18px; }

}
@media (max-width: 991px) {

  .img-el-bg2{ top: -230px; left: -100px; }
  .img-el-bg3{ bottom: 0; }
  .s3-box{ padding-bottom: 100px; }

  .s3-divtitle h2{ font-size: 38px; }
  .s3-divtitle p{ font-size: 20px; }

  .s3-card--task ul{ gap: 15px; }
  .s3-card--task ul li{ flex: 0 0 calc(20% - 12px); max-width: calc(20% - 12px); }
  .s3-card--task ul li figure img{ width: 60px; }
  .s3-card--task ul li .s3-caption{ font-size: 16px; }

}
@media (max-width: 767px) {

  .s3-divtitle h2{ font-size: 30px; }

  /* .s3-card--task ul li{ flex: 0 0 calc(33.33333% - 10px); max-width: calc(33.33333% - 10px);} */

  .s3-card--task{ width: 100%; }
  .s3-card--task ul li{ padding-top: 15px; }
  .s3-card--task ul li figure img{ width: 30px; }
  .s3-card--task ul li .s3-caption{ font-size: 12px; padding-bottom: 10px; }

}
@media (max-width: 576px) {

  .img-el-bg2{ top: -380px; left: -250px; }
  .img-el-bg2 img{ width: 70%;}
  .img-el-bg3 img{ width: 50%; }

  /* .s3-card--task ul li{ flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px);} */
  .s3-card--task ul{ gap: 5px; }
  .s3-card--task ul li{ flex: 0 0 calc(20% - 4px); max-width: calc(20% - 4px); }
  .s3-card--task ul li .s3-caption{ font-size: 10px; }
  .s3-card--task ul li figure{ margin-bottom: 10px; }

}


/**********************************************************/
/**********************************************************/

.support--slide{ max-width: 1340px; width: 80%; margin: 0 auto; }

.boxlist-support{ padding: 20px; }
.boxlist-support figure img{ border-radius: 10px; box-shadow: 5px 5px 17px 0px rgba(54,25,0,.13); }
.boxlist-support--text{ text-align: center; margin-top: 30px; }
.boxlist-support--text h3{ font-size: 40px; font-weight: 500; color: var(--primary2); }
.boxlist-support--text p{ font-size: 32px; }
.boxlist-support--text a:hover{ color: var(--default); }


@media (max-width: 1999px) {

  .boxlist-support--text h3{ font-size: 30px; }
  .boxlist-support--text p{ font-size: 22px; }

}
@media (max-width: 1199px) {

  .boxlist-support--text h3{ font-size: 24px; }
  .boxlist-support--text p{ font-size: 18px; }

}
@media (max-width: 576px) {

  .support--slide{ width: 95%; }

  .boxlist-support{ padding: 0px 60px; }
  .boxlist-support--text{ margin-top: 20px; }
  .boxlist-support--text h3{ font-size: 22px; }

}


/**********************************************************/
/**********************************************************/

.box-cost-center{ text-align: center; margin-bottom: 50px; }
.box-cost--header{ font-size: 48px; line-height: 1.3; font-weight: bold; color: var(--primary2); margin-bottom: 20px; }
.box-cost--title{ font-size: 44px; line-height: 1.3; font-weight: bold; }
.box-cost--price{ font-size: 84px; line-height: 1.3; font-weight: bold; color: var(--primary2); }
.box-cost--price span{ position: relative; }
.box-cost--price span::after{ content: ''; position: absolute; width: 100%; height: 4px; background-color: var(--black); transform: rotate(170deg); top: 50%; left: 0; }
.box-cost--user{ font-size: 28px; line-height: 1.3; font-weight: bold; }
.box-cost--bg{ background-image: url('../images/bg-costprice.webp'); background-repeat: no-repeat; background-size: cover; max-width: 1000px; width: 100%; margin: 40px auto; }
.box-cost--imgnewuser img{ max-width: 800px; width: 85%; margin: 10px auto; }

.boxcost--btn{ position: relative; margin-top: -70px; }
.boxcost--btn a{ display: inline-block; background-color: var(--primary); transform: skew(-10deg); padding: 8px 60px; border: 1px solid var(--primary); font-size: 34px; color: var(--white); }
.boxcost--btn span{ display: inline-flex; align-items: center; justify-content: center; gap: 10px; transform: skew(10deg); }
.arrow-right {
  width: 0; 
  height: 0; 
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--white);
}
.boxcost--btn a:hover{ background-color: var(--white); color: var(--primary); }
.boxcost--btn a:hover .arrow-right{ border-left-color: var(--primary); }


.box-cost--white{ display: flex; justify-content: center; gap: 60px; margin-bottom: 150px; }
.box--white{ font-size: 36px; font-weight: 600; color: #180b01; background-color: var(--white); box-shadow: 5px 5px 17px 0px rgba(54,25,0,.13); padding: 20px; width: 520px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; text-align: center; }
.box--white.box1 span{ font-size: 56px; }
.box--white.box2 span{ font-size: 42px; }

.box-cost--text{ font-size: 48px; line-height: 1.3; font-weight: 500; text-align: center; }

.logo-partnership{ margin: 50px 0; }
.logo-partnership ul{ display: flex; justify-content: center; flex-wrap: wrap; }
.logo-partnership ul li img{ width: 300px; }

.box-cost--btn{ display: flex; gap: 45px; justify-content: center; }
.box-cost--btn .btn{ width: 330px; height: 70px; font-size: 32px; }


@media (max-width: 1899px) {

  .logo-partnership ul li img{ width: 260px; }

}
@media (max-width: 1999px) {

  .box-cost--header, .box-cost--text{ font-size: 40px; }
  /* .box-cost--title{ font-size: 54px; } */
  /* .box-cost--price{ font-size: 54px; } */
  .box-cost--user{ font-size: 26px; }
  .box--white{ font-size: 30px; }
  .box--white.box1 span{ font-size: 46px; }
  .box--white.box2 span{ font-size: 36px; }

  .logo-partnership ul li img{ width: 240px; }

  .box-cost--btn .btn{ width: 300px; height: 65px; font-size: 28px; }

}
@media (max-width: 1399px) {

  .box-cost--header, .box-cost--text{ font-size: 36px; }
  /* .box-cost--title{ font-size: 50px; }
  .box-cost--price{ font-size: 50px; }
  .box-cost--user{ font-size: 20px; } */
  .box-cost--white{ gap: 30px; }
  .box--white{ width: 420px; }

  .logo-partnership ul li img{ width: 220px; }

}
@media (max-width: 1199px) {

  .box-cost--header, .box-cost--text{ font-size: 30px; }

  .box-cost--title{ font-size: 40px; }
  .box-cost--price{ font-size: 80px; }
  .box-cost--user{ font-size: 24px; }
  .boxcost--btn{ margin-top: -60px; }
  .boxcost--btn a{ font-size: 30px; }
  .arrow-right {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left-width: 10px;
  }

  .box--white{ width: 360px; font-size: 24px; }
  .box--white.box1 span{ font-size: 40px; }
  .box--white.box2 span{ font-size: 28px; }

  .logo-partnership{ margin: 30px 0; }
  .logo-partnership ul li img{ width: 180px; }

  .box-cost--btn{ gap: 30px; }
  .box-cost--btn .btn{ width: 240px; height: 55px; font-size: 22px; }

}
@media (max-width: 991px) {

  .box-cost--white{ margin-bottom: 100px; }
  .box-cost--text{ font-size: 24px; }

  .box-cost--title{ font-size: 32px; }
  .box-cost--price{ font-size: 64px; }
  .box-cost--user{ font-size: 20px; }
  .boxcost--btn{ margin-top: -50px; }
  .boxcost--btn a{ font-size: 26px; padding: 6px 50px; }
  .arrow-right {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left-width: 8px;
  }

  .logo-partnership ul li img{ width: 140px; }

}
@media (max-width: 767px){

  .box-cost--title{ font-size: 28px; }
  .box-cost--price{ font-size: 54px; }
  .boxcost--btn{ margin-top: -40px; }
  .boxcost--btn a{ font-size: 22px; padding: 6px 30px; }
  .arrow-right {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left-width: 6px;
  }

}
@media (max-width: 576px) {

  .box-cost--header{ font-size: 26px; }
  
  .box-cost--bg{ background-size: contain; }
  /* .box-cost--title{ font-size: 40px; }
  .box-cost--price{ font-size: 34px; }
  .box-cost--user{ font-size: 18px; } */
  .boxcost--btn{ margin-top: -30px; }
  .boxcost--btn a{ font-size: 20px; padding: 6px 20px; }

  .box--white{ width: 50%; font-size: 18px; padding: 20px 15px; }
  .box--white.box1 span{ font-size: 34px; }
  .box--white.box2 span{ font-size: 24px; }
  .box-cost--text{ font-size: 20px; }

  .logo-partnership ul li img{ width: 110px; }

  .box-cost--btn{ gap: 15px; }
  .box-cost--btn .btn{ width: 200px; height: 50px; font-size: 18px; }

}

/**********************************************************/
/**********************************************************/

.s4-box{ padding-bottom: 200px; }

.img-el-bg4{ position: absolute; bottom: 0; left: 0; z-index: -1; line-height: 0; overflow: hidden; }

.copyright{ margin-top: 50px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 40px; }
.copyright span{ font-size: 50px; font-weight: 900; }

.div-getbtn{ position: fixed; bottom: 0; right: 0; width: 750px; padding: 23px 27px; background-color: var(--primary); border-top-left-radius: 10px; border-bottom-left-radius: 10px; z-index: 999; display: none; }
.box-getbtn--btn{ display: flex; gap: 45px; }
.box-getbtn--btn .btn{ width: 260px; height: 55px; font-size: 28px; }
.div-getbtn.show{ display: block; }


@media (max-width: 1999px) {

  .copyright{ font-size: 34px; }
  .copyright span{ font-size: 44px; }

  .box-getbtn--btn .btn{ font-size: 24px; }
  
}
@media (max-width: 1199px) {

  .img-el-bg4 img{ width: 80%; }

  .copyright{ font-size: 26px; }
  .copyright span{ font-size: 36px; }

  .div-getbtn{ width: 600px; }
  .box-getbtn--btn{ gap: 30px; }
  .box-getbtn--btn .btn{ width: 220px; height: 50px; font-size: 22px; }
  
}
@media (max-width: 991px) {

  .s4-box{ padding-bottom: 150px; }

  .copyright{ font-size: 22px; }
  .copyright span{ font-size: 32px; }

  .div-getbtn{ width: 500px; padding: 20px 25px; }
  .box-getbtn--btn .btn{ width: 200px; height: 50px; font-size: 20px; }

}
@media (max-width: 576px) {

  .img-el-bg4 img{ width: 150%; }
  .s4-box{ padding-bottom: 150px; }

  .copyright{ font-size: 18px; }
  .copyright span{ font-size: 28px; }

  .div-getbtn{ width: 90%; padding: 15px; }
  .box-getbtn--btn{ gap: 10px; }
  .box-getbtn--btn .btn{ width: 150px; height: 40px; font-size: 16px; }

}



/**********************************************************/
/**********************************************************/

.special_prices{ position: relative; max-width: 1920px; width: 98%; margin: 50px auto 0; }

.div-special_price{ background-image: url('../images/add_special/bg-special_price.webp'); background-repeat: no-repeat; background-position: center; background-size: cover; padding: 20px 0; box-shadow: 1px 1px 4.7px 0.3px rgba(0, 0, 0, 0.61); border-radius: 20px; }

.balloon-left, .balloon-right{ position: absolute; top: 0; overflow: hidden; line-height: 0; }
.balloon-left{ left: 0; border-bottom-left-radius: 20px; border-top-left-radius: 20px; }
.balloon-right{ right: 0; border-bottom-right-radius: 20px; border-top-right-radius: 20px; }


.special_prices-top{ position: absolute; top: 50%; left: 0; transform: translateY(-50%); z-index: 6; }

.special_price-box{  background-color: #000; max-width: 1400px; width: 100%; border-radius: 20px; padding: 30px 0; margin: 0 auto; position: relative; z-index: 6; }
.special_price-detail{ display: flex; justify-content: space-between; align-items: center; }
.special_price--img{ position: relative; top: -93px; left: -5px; width: 375px; }
.special_price--img img{ position: absolute;}
.special_price--text{ font-size: 65px; color: #fff; }
.special_price--btn{ padding-right: 40px; position: relative; z-index: 9; }
.btnclick-special{ background-color: #ef3f24; font-size: 34px; color: #fff; display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; border-radius: 10px; }

.arrow-down{
	width: 0;
	height: 0;
	border-width: 10px 8px 0 8px;
	border-color: #fff transparent transparent transparent;
	border-style: solid;
}

.btnclick-special:hover{ background-color: #fff; color: #ef3f24; }
.btnclick-special:hover .arrow-down{ border-color: #ef3f24 transparent transparent transparent; }


@media (max-width: 1599px){

  .div-special_price{ padding: 30px 0; }
  .special_price-box{ max-width: 1200px; padding: 24px 0; }
  .special_price--img{ width: 285px; top: -71px; left: 0; }
  .special_price--text{ font-size: 50px; }
  .special_price--btn{ padding-right: 30px; }
  .btnclick-special{ font-size: 28px; padding: 10px 30px; }
  .balloon-left{ width: 174px; }
  .balloon-right{ width: 193px; }

}
@media (max-width: 1299px){

  .special_price-box{ max-width: 1000px; padding: 20px 0; }
  .special_price--img{ width: 250px; top: -63px; }
  .special_price--text{ font-size: 44px; }
  .btnclick-special{ font-size: 22px; }
  .balloon-left{ width: 158px; }
  .balloon-right{ width: 175px; }

}
@media (max-width: 1099px){

  .div-special_price{ padding: 25px 0; }
  .special_price-box{ max-width: 900px; }
  .special_price--img{ width: 235px; top: -58px; }
  .special_price--text{ font-size: 40px; }
  .btnclick-special{ font-size: 20px; padding: 10px 20px; }
  .balloon-left{ width: 142px; }
  .balloon-right{ width: 158px; }

}
@media (max-width: 991px){

  .special_price-box{ max-width: 600px; padding: 12px 0; border-radius: 15px; }
  .special_price--img{ width: 180px; top: -44px; margin-left: -15px; }
  .special_price--text{ font-size: 28px; }
  .special_price--btn{ padding-right: 10px; }
  .btnclick-special{ font-size: 16px; padding: 10px; gap: 5px; }
  .balloon-left{ width: 120px; }
  .balloon-right{ width: 134px; }
  .arrow-down{ border-width: 7px 6px 0 6px; }

}
@media (max-width: 659px){

  .div-special_price{ border-radius: 15px; }
  .special_price-box{ width: 90%; }
  .special_price--img{ width: 140px; top: -33px; }
  .special_price--text{ font-size: 22px; }
  .btnclick-special{ font-size: 15px; padding: 6px 10px; border-radius: 6px; }
  .balloon-left{ width: 111px; border-bottom-left-radius: 15px; border-top-left-radius: 15px; }
  .balloon-right{ width: 123px; border-bottom-right-radius: 15px; border-top-right-radius: 15px; }

}
@media (max-width: 549px){

  .div-special_price{ padding: 20px 0; }
  .special_price-box{ max-width: 300px; }
  .special_price-detail{ flex-direction: column; gap: 10px; }
  .special_price--img{ width: 180px; top: -70px; }
  .special_price--btn{ padding: 0; }
  .balloon-left{ width: 146px; }
  .balloon-left img{ margin-left: -40px; }
  .balloon-right{ width: 161px; }
  .balloon-right img{ position: relative; right: -40px; }

}


/**********************************************************/
/**********************************************************/







