@font-face {font-family: "UTM AvoBold.ttf";src: url("../font/utm-avobold-20200828042229.ttf") format("truetype");}@font-face {font-family: "Krub-BoldItalic.ttf";src: url("../font/krub-bolditalic-20210630035205.ttf") format("truetype");}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    line-height: normal;
}
html, body {
    overflow-x: hidden;
}
body {
    font-size: 100%;
    line-height: normal;
    background-color: #FFF;
    font-family: "Open Sans", sans-serif;
}
a:hover {
    text-decoration: none;
}
p, ul {
    line-height: 1;
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
}
@keyframes pulse {
0% {
-webkit-transform:scale(1);
-ms-transform:scale(1);
transform:scale(1)
}
50% {
-webkit-transform:scale(1.1);
-ms-transform:scale(1.1);
transform:scale(1.1)
}
100% {
-webkit-transform:scale(1);
-ms-transform:scale(1);
transform:scale(1)
}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	animation: pulse 1s infinite;
	-webkit-animation: pulse 1s infinite;
}

@-webkit-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
    -webkit-transform:translateY(0);
    transform:translateY(0)
    }
    40% {
    -webkit-transform:translateY(-15px);
    transform:translateY(-15px)
    }
    60% {
    -webkit-transform:translateY(-15px);
    transform:translateY(-15px)
    }
    }
    @keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
    -webkit-transform:translateY(0);
    -ms-transform:translateY(0);
    transform:translateY(0)
    }
    40% {
    -webkit-transform:translateY(-15px);
    -ms-transform:translateY(-15px);
    transform:translateY(-15px)
    }
    60% {
    -webkit-transform:translateY(-15px);
    -ms-transform:translateY(-15px);
    transform:translateY(-15px)
    }
    }
    .bounce {
        animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes tada {
    0% {
    -webkit-transform:scale(1);
    transform:scale(1)
    }
    10%, 20% {
    -webkit-transform:scale(.9) rotate(-3deg);
    transform:scale(.9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
    -webkit-transform:scale(1.1) rotate(3deg);
    transform:scale(1.1) rotate(3deg)
    }
    40%, 60%, 80% {
    -webkit-transform:scale(1.1) rotate(-3deg);
    transform:scale(1.1) rotate(-3deg)
    }
    100% {
    -webkit-transform:scale(1) rotate(0);
    transform:scale(1) rotate(0)
    }
    }
    @keyframes tada {
    0% {
    -webkit-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(1)
    }
    10%, 20% {
    -webkit-transform:scale(.9) rotate(-3deg);
    -ms-transform:scale(.9) rotate(-3deg);
    transform:scale(.9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
    -webkit-transform:scale(1.1) rotate(3deg);
    -ms-transform:scale(1.1) rotate(3deg);
    transform:scale(1.1) rotate(3deg)
    }
    40%, 60%, 80% {
    -webkit-transform:scale(1.1) rotate(-3deg);
    -ms-transform:scale(1.1) rotate(-3deg);
    transform:scale(1.1) rotate(-3deg)
    }
    100% {
    -webkit-transform:scale(1) rotate(0);
    -ms-transform:scale(1) rotate(0);
    transform:scale(1) rotate(0)
    }
    }
    .tada {
        animation-name: tada;
    -webkit-animation-name: tada;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    }
    
@-webkit-keyframes flash {
    0%, 100%, 50% {
    opacity:1
    }
    25%, 75% {
    opacity:0
    }
    }
    @keyframes flash {
    0%, 100%, 50% {
    opacity:1
    }
    25%, 75% {
    opacity:0
    }
    }
    .flash {
        animation-name: flash;
        -webkit-animation-name: flash;
        animation-delay: 0.3s;
        -webkit-animation-delay: 0.3s;
        animation-duration: 0.5s;
        -webkit-animation-duration: 0.5s;
        animation-iteration-count: infinite;
        -webkit-animation-iteration-count: infinite;
    }
    .js-nametag{
        position: absolute;
      }
      .text-animated-one {
        animation-name: fade;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
        animation-duration: 5s;
        animation-direction: alternate-reverse;  
      }
      
      
      .text-animated-two{
        animation-name: fade;
        animation-fill-mode: both;
        animation-iteration-count: infinite;
        animation-duration: 5s;
        animation-direction: alternate;
      }
      
      @keyframes fade{
          0%,50% {
            opacity: 0;
      }
          100%{
            opacity: 1;
        }
      }

      .typewriter1 {
        overflow: hidden;
        border-right: 1px solid rgb(255, 76, 66); 
        white-space: nowrap;
        margin: 0 auto;
        animation: 
          typing 3.5s steps(40, end),
          blink-caret .75s step-end infinite;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
      }
      .typewriter2 {
        overflow: hidden;
        border-right: 1px solid rgb(255, 76, 66); 
        white-space: nowrap;
        margin: 0 auto;
        animation: 
          typing 3.5s steps(40, end),
          blink-caret .75s step-end infinite;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          animation-delay: 2s;
      }
      .typewriter3 {
        overflow: hidden;
        border-right: 1px solid rgb(255, 76, 66); 
        white-space: nowrap;
        margin: 0 auto;
        animation: 
          typing 3.5s steps(40, end),
          blink-caret .75s step-end infinite;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          animation-delay: 3s;
      }
      .typewriter3 {
        overflow: hidden;
        border-right: 1px solid rgb(255, 76, 66); 
        white-space: nowrap;
        margin: 0 auto;
        animation: 
          typing 3.5s steps(40, end),
          blink-caret .75s step-end infinite;
          -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
          animation-delay: 4s;
      }
      /* The typing effect */
      @keyframes typing {
        from { width: 0 }
        to { width: 100% }
      }
      
      /* The typewriter cursor effect */
      @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: rgb(255, 76, 66); }
      }
.mdisp {
    display: none;
}
.ddisp {
    display: block;
}
.clear {
    clear: both;
}
#mlstb{
	position:fixed;
	top:10px;
	left:10px;
	background: #efefef;
	opacity: 0;
	z-index: 98;
	white-space: nowrap;
	font-size: 0;
	text-align: left;
	padding: 5px;
    box-shadow: 0 0 1px rgb(64 64 64 / 30%), 0 8px 50px rgb(64 64 64 / 5%);
    border-radius: 40px;
    color: rgba(64,64,64,1);
    background: rgba(250,250,250,.9);
    line-height: 1.6;
    width: 100%;
    height: 100%;
    font-size: 13px;
	width: 300px;
    height: 70px;
}
#mlstb img:not(.currsymbol){
	float: left;
	border-radius: 100%;
	width: 61px;
	height: 61px;
}
#mlstb p {
	float: left;
	margin: 0px 0 0 5px;;
	font-size: 13px;
	color: #404040;
	line-height: 13px;
	line-height: 20px;
	max-width: 72%;
	white-space: normal;
	text-align: left;
	font-family:"Open Sans", sans-serif;
	padding: 0;
	line-height: 13px;
}
.mlstb-name {
	font-weight: 700;
}
#mlstb p span { line-height: 120% !important; display: inline !important;}
#mlstb .mlstb-name, #mlstb .mlstb-location, #mlstb .mlstb-product  { 
	line-height: 120% !important;
	display: inline !important;
}
.fadeInBottom{
	opacity: 0;
	animation: fadeInTop .5s 1 1s forwards;
}
.fadeOutBottom{
	opacity: 1;
	animation: fadeOutTop .5s 1 1s forwards;
}
@keyframes mlstbmlstbcustomFadeIn {
	from {
		opacity: 0;
		transform: translate3d(100%, 100%, 100%);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
#mlstb.mlstb-custom-fade-in {
	opacity: 0;
	animation-name: mlstbmlstbcustomFadeIn;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: 70px;
}
@keyframes mlstbcustomFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 0, 0);
		bottom:0;
	}
}
#mlstb.mlstb-custom-fade-out {
	opacity: 0;
	animation-name: mlstbcustomFadeOut;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: 70px;
}
header {
    background-color: rgb(0, 0, 0);
    padding: 10px 0;
}
.h-ic-box img {
    float: left;
    margin: 5px 10px 0 0;
}
.h-ic-box p {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.6;
    width: calc(100% - 60px);
}
.timer-section {
    width: 100%;
    margin-top: 6px;
}
.timer-section .timers {
    margin-left: calc(50% - 137px);
    background-color: rgb(200, 31, 23);
    display: inline-block;
    padding: 0 20px 0 15px;
}
.timer-section .timers div:nth-child(1) {
    display: inline-block;
}
.timer-section .timers div {
    display: inline-block;
    font-weight: 700;
    color: rgb(255, 249, 69);
    font-size: 40px;
    width: 75px;
    padding: 0;
    text-align: center;
}

.timer-section .timers div.jst-clearDiv {
    display: none;
}
.section1 {
    background-image: url('../image/section1-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding-bottom: 30px;
}
.section1 h1 {
    color: rgb(104, 0, 0);
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    padding: 20px 50px;
}
.sec1-mid-box {
    position: relative;
}
.sec1-a-box {
    position: absolute;
    top: 0px;
    right: 0px;
}
.sec1-a-box h6 {
    position: absolute;
    top: 0;
    left: 0%;
    font-family: "UTM AvoBold.ttf";
    color: rgb(201, 31, 23);
    font-size: 37px;
    line-height: 1.6;
    left: 30px;
    top: 30px;
}
.sec1-leftimg {
    width: 550px;
    margin-left: -150px;
    max-width: none;
}
.sec1-prod {
    padding-top: 10px;
}
.sect1-pack {
    float: right;
    margin: 20px 0;
}
.sec1-ord-box {
    background-color: rgb(255, 255, 255);
    border: 4px solid rgb(250, 81, 3);
    border-radius: 5px;
    filter: drop-shadow(rgb(180, 180, 180) 0px 3px 3px);
    padding: 10px 5px;
}
.sec1-ord-box h4 {
    color: rgb(104, 0, 0);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.old-price {
    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through;
    color: rgb(0, 0, 0);
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    background-color: rgb(228, 228, 228);
    padding: 10px;
}
.new-price {
    color: rgb(255, 249, 69);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    background-color: rgb(201, 31, 23);
    padding: 5px 20px 6px 20px;
}
.nopadd-r {
    padding-right: 0;
}
.nopadd-l {
    padding-left: 0;
}
.main-form {
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}
.main-form input {
    border: 1px solid rgb(238, 238, 238);
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    display: block;
    outline: none;
}
.main-form .main-btn {
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    background: rgba(255, 75, 66, 1.0);
    background: -webkit-linear-gradient(180deg, rgba(255, 75, 66, 1.0), rgba(201, 31, 23, 1.0));
    background: linear-gradient(180deg, rgba(255, 75, 66, 1.0), rgba(201, 31, 23, 1.0));
    padding: 15px;
    border-radius: 10px;
}
.fp1 {
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
    margin: 25px 0;
    padding: 0 10px;
}
.fp2 {
    color: rgb(0, 0, 0);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    border-left: 1px solid #000;
    margin: 25px 0;
    padding: 5px 0;
    margin-bottom: 20px;
}
.form-footer {
    margin: 10px 0;
}
.form-footer p {
    color: rgb(0, 0, 0);
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
}
.form-footer p span {
    font-weight: 700;
    color: rgb(201, 31, 23);
}
.form-footer h5 {
    color: rgb(104, 0, 0);
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
}
.sec1-right-box-footer {
    margin: 10px 0;
}
.sec1-right-box-footer p {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.sect1-footer-pack {
    float: right;
    margin-right: 10px;
    width: 122px;
}


.sec1-footer h2 {
    color: rgb(201, 31, 23);
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.sec1-footer h2 img {
    margin-top: -10px;
}
.sec1-footer p {
    color: rgb(201, 31, 23);
    font-size: 27px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.sec1-footer-box {
    position: relative;
    padding: 50px 0;
}
.sec1-footer-inner {
    background: #fdfbfb;
    background: -webkit-linear-gradient(180deg, #fdfbfb, #eaedee);
    background: linear-gradient(180deg, #fdfbfb, #eaedee);
    border-radius: 73px;
    padding: 20px 10px 20px 120px;
}
.sec1-footer-inner::before {
    content: url(../image/sec1-footer-prod.png);
    left: 0px;
    top: 10px;
    position: absolute;
}
.sec1-footer-inner p {
    color: rgb(95, 14, 14);
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}
.sec1-footer-inner p span {
    color: rgb(201, 31, 23);
}
.sec1-footer-packs {
    background-color: rgb(255, 243, 1);
    position: absolute;
    height: 63px;
    width: 63px;
    border-radius: 50%;
    top: 70px;
    left: 50px;
}
.sec1-footer-packs p {
    color: rgb(140, 12, 12);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 0.8;
    padding-top: 10px;
}
.sec1-footer-packs p span {
    color: rgb(255, 1, 1);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    line-height: 0.8;
}
.sec1-footer-footer-inner {
    background-color: rgb(39, 99, 116);
    border-radius: 215px;
    padding: 30px 0 10px 0;
}
.sec1-footer-footer-inner h3 {
    font-family: "Krub-BoldItalic.ttf";
    color:#FFF;
    font-size: 27px;
    text-align: center;
    line-height: 1.4;
    border-top: 3px dashed #FFF;
    padding: 20px 20px 0 20px;
    margin: 0 20px;
}
.sec1-footer-footer-inner h3 span {
    color: rgb(255, 225, 0);
}

.sec1-footer-footer-inner p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}
.section2 {
    background-color: rgb(9, 18, 10);
    padding: 20px 0 80px 0;
}
.section2 h1 {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin: 0 60px;
}
.sec2-ic {
    float: left;
    margin-right: 10px;
    margin-top: 30px;
}
.section2 p {
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 1.6;
    width: calc(100% - 90px);
    display: inline-block;
    margin: 20px 0px 40px 0;
}
.section2 p:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.sec2-right-img {
    mix-blend-mode: screen;
    will-change: transform, opacity;
}
.sec2-footer-box {
    background-image: url('../image/sec2-footer-box-bg.jpg');
    background-position: right top;
    box-shadow: 0px 15px 20px -15px #000;
    -webkit-box-shadow: 0px 15px 20px -15px #000;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 20px 30px 60px 30px;
    background-repeat: no-repeat;
    position: relative;
}
.sec2-footer-box h2 {
    color: rgb(201, 31, 23);
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
}
.sec2-footer-box h5 {
    color: rgb(45, 153, 60);
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sec2-footer-p {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.sec2-footer-p p {
    width: calc(100% - 50px);
    color: rgb(36, 36, 36);
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    display: inline-block;
    margin: 3px 0 0 0;
}
.sec2-footer-p p:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}
.sec2-footer-p .ic-min {
    width: 30px;
    height: 30px;
    border: 3px solid rgb(201, 31, 23);
    border-radius: 5px;
    margin-right: 20px;
    float: left;
    color: rgb(201, 31, 23);
    text-align: center;
    font-size: 32px;
    cursor: default;
    line-height: 0.55;
}
.sec2-footer-p .ic-min:hover {
    border: 3px solid rgba(46, 153, 61, 1.0);
    color: rgba(46, 153, 61, 1.0);
}
.sec2-footer-p-btn {
    color: rgb(255, 255, 255);
    font-size: 30px;
    text-align: center;
    line-height: 1.6;
    font-weight: 700;
    padding: 20px 30px;
    background: #e52d27;
    background: -webkit-linear-gradient(180deg, #e52d27, #b31217);
    background: linear-gradient(180deg, #e52d27, #b31217);
    display: inline-block;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 150px);
    border-radius: 7px;
}
.sec2-footer-p-btn:hover {
    color: rgb(255, 255, 255);
}
.section3 {
    background-image: url('../image/section3-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 30px 0 20px 0;
}
.section3 h1 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sec3-box {
    text-align: center;
    margin-bottom: 30px;
}
.sec3-box h4 {
    color: rgb(255, 255, 255);
    font-size: 22px;
    text-align: center;
    line-height: 1.6;
}
.sec3-box p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
}
.section4 {
    padding: 20px 0;
text-align: center;
}
.section4 h1 {
    color: rgb(9, 18, 10);
    font-size: 35px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section4 p {
    color: rgb(9, 18, 10);
    font-size: 24px;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
}
.section5 {
    background-color: rgb(9, 18, 10);
    padding: 20px 0 80px 0;
}
.section5 h1 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}
.sec5-box {
    box-shadow: 0px 15px 20px -15px #000;
    -webkit-box-shadow: 0px 15px 20px -15px #000;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 20px 20px 0 20px;
}
.sec5-box p {
    color: rgb(9, 18, 10);
    font-size: 26px;
    text-align: left;
    line-height: 1.4;
    padding: 20px;
}
.sec5-box img {
    margin-top: 100px;
} 
.section6  {
    background-image: url('../image/section6-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 30px 0 40px 0;
}
.section6 h1 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
}
.sec6-box {
    text-align: center;
}
.sec6-box img.sec6-img {
    padding: 30px;
    border-radius: 50%;
    background-color: #FFF;;
}
.sec6-box h3 {
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.sec6-box p {
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
}
.sec6-bx1 {
    margin: 0px 70px 20px -70px;
}
.sec6-bx2 {
    margin: 0px -70px 20px 70px;
}
.sec6-bx3 {
    margin-top: 80px;
}
.sec6-bx4 {
    margin-top: 30px;

}
.sec6-bx5 {
    margin-top: 60px;
}
.sec6-prod {
    width: 550px;
    max-width: none;
    margin-left: -80px;
}
.order-section {
    background-color: rgb(228, 228, 228);
    padding: 30px 0;
}
.ord-sect-container {
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-color: rgb(250, 81, 3);
    border-width: 4px;
    border-radius: 5px;
    filter: drop-shadow(rgb(180, 180, 180) 0px 3px 3px);
}
.ord-sect-container .timer-section {
    margin: 20px 0;
}
.ord-sect-container .old-price {
    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through;
    color: rgb(0, 0, 0);
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
}
.ord-sect-container .new-price {
    color: rgb(255, 249, 69);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
.ord-sect-container .fp1 {
    color: rgb(0, 0, 0);
    font-size: 15px;
    text-align: center;
    line-height: 1.2;
}
.ord-sect-container .fp1 span {
    color: rgb(201, 31, 23);
}
.ord-sect-prod-box-a-box {
    position: absolute;
    top: 10px;
    left: 30px;
}
.ord-sect-prod-box-a-box h6 {
    position: absolute;
    top: 0;
    left: 0%;
    font-family: "UTM AvoBold.ttf";
    color: rgb(201, 31, 23);
    font-size: 37px;
    line-height: 1.6;
    left: 30px;
    top: 30px;
}
.ord-box-prod-img {
    margin-top: 0px;
    margin-bottom: 0px;
}
.ord-sect-formbox {
    text-align: center;
}
.ord-sect-formbox p {
    color: rgb(0, 0, 0);
    font-size: 19px;
    text-align: center;
    line-height: 1.2;
    margin: 10px 0 30px 0;
}
.ord-sect-form input {
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-width: 1px;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.ord-sec-btn {
    color: rgb(255, 255, 255);
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    background: rgba(255, 75, 66, 1.0);
    background: -webkit-linear-gradient(180deg, rgba(255, 75, 66, 1.0), rgba(201, 31, 23, 1.0));
    background: linear-gradient(180deg, rgba(255, 75, 66, 1.0), rgba(201, 31, 23, 1.0));
    padding: 10px 30px;
    border-radius: 10px;
 }
.section7 {
    padding: 30px 0;
    background-color: rgb(228, 228, 228);
}
.section7 h1 {
    color: rgb(9, 18, 10);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
 }
.section7 p {
    color: rgb(0, 0, 0);
    font-size: 18px;
    line-height: 1.6;
    margin: 70px auto 30px auto;
    width: 70%;

}
.section8 {
    background-size: cover;
    background-image: url('../image/section8-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 20px 0;
}
.section8 h1 {
    color: rgb(255, 255, 255);
    font-size: 35px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
}
.sec8-box p {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 80px;
}
.section8 h3 {
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-top: 40px;
}
.sec8-mid {
    text-align: center;
}
.sec8-mid-img1 {
margin-top: -80px;
}
.sec8-mid-img2 {
    margin-top: 100px;   
}
.section9 {
    padding: 20px 0;
    background-color: rgb(228, 228, 228);
}
.section9 h1 {
    color: rgb(9, 18, 10);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
}
.sec9-box {
    margin: 20px 70px 0px 70px;
    text-align: center;
    position: relative;
}
.sec9-box img {
    margin-left: 20px;
}
.sec9-box p {
    color: rgb(0, 0, 0);
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
}
.sec9-arr-box::after {
    content: url('../image/sec9-arrow.png');
    position: absolute;
    top: 60px;
    right: -140px;
}
.section10 {
    background-size: cover;
    background-image: url('../image/section10-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 20px 0;
    text-align: center;
    padding: 20px 0;
}
.section10 h1 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 50px;
}
.section10 p {
    color: rgb(255, 255, 255);
    font-size: 22px;
    text-align: center;
    line-height: 1.2;
    margin: 20px 0;
}
.ord-fo-p {
    color: rgb(104, 0, 0);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-top: 10px;
}
.section11 {
    padding: 50px 0;
    background-color: rgb(250, 221, 210);
}
.sec11-left, .sec11-right {
    padding: 20px;
    box-shadow: 0px 4px 20px -15px #000;
    -webkit-box-shadow: 0px 4px 20px -15px #000;
    background-color: rgb(255, 255, 255);
    min-height: 430px;
}
.section11 h2 {
    color: rgb(0, 0, 0);
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
}
.section11 p {
    color: rgb(0, 0, 0);
    font-size: 22px;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 20px;
}
.section12 {
    background-size: cover;
    background-image: url('../image/section12-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 40px 0;
}
.section12 h1 {
    color: rgb(255, 255, 255);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
.sec12-box {
    width: 100%;
}
.section12 p {
    color: rgb(255, 255, 255);
    font-size: 26px;
    text-align: left;
    line-height: 1.2;
    padding-top: 5px;
    margin-bottom: 40px;
    width: calc(100% - 60px);
    display: inline-block;
}
.section12 img {
    margin-right: 10px;
    float: left;
}
.section12 p span:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}
.section13 {
    padding: 20px 0;
    background-color: rgb(238, 238, 238);
    margin-bottom: 0px;
    text-align: center;
}
.sec13-inner {
    padding: 10px 50px;
}
.section13 h1 {
    color: rgb(9, 18, 10);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}
.section13 p {
    color: rgb(9, 18, 10);
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;

    margin-top: 20px;
}
.section14 {
    text-align: center;
    background-size: cover;
    background-image: url('../image/section14-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 40px 0;
}
.section14 h2 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}
.section14 img {
    margin-bottom: 20px;
}
.section14 p {
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}
.sec14-arr-box::after {
    content: url(../image/sec14-arrow.png);
    position: absolute;
    top: 60px;
    right: -40px;
}
.section15 {
    text-align: center;
    background-size: cover;
    background-image: url('../image/section15-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 20px 0;
}
.section15 h1 {
    color: rgb(9, 18, 10);
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}
.section15 img {
    width: 100%;
}
.section15 img:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.section16 {
    text-align: center;
    background-size: cover;
    background-image: url('../image/section16-bg.jpg');
    background-position: center center;
    background-repeat: repeat;
    padding: 20px 0;
    background-attachment: fixed;
}
.section16 .sec1-footer h2 {
    color: rgb(255, 255, 255);
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.section16 .sec1-footer p.sec16-h {
    color: rgb(255, 255, 255);
    font-size: 27px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}
.section17 {
    background-image: url('../image/section16-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 0;
}
.section17 h1 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
footer {
    background-color: rgb(9, 18, 10);
    padding: 30px 0;
}
footer p {
    color: rgb(255, 255, 255);
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
}
.section17 .form-footer h5 {
    color: rgb(104, 0, 0);
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    font-weight: 700;
}
.section17 .fp1 {
    margin: 10px 0;
}
.section17 .fp2 {
    margin: 10px 0;
}
.section17 .sec1-right-box-footer p {
    color: #FFF;
    font-size: 16px;
}
.section17 .sec1-leftimg {
    margin-top: 40px;
}
.section8 h5 {
    color: rgb(255, 255, 255);
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-top: 40px;
}





@media screen and (max-width: 1200px) {
    header .timer-section .timers div {
        display: inline-block;
        font-weight: 700;
        color: rgb(255, 249, 69);
        font-size: 30px;
        width: 55px;
        padding: 0;
        text-align: center;
    }
    .old-price {
        font-size: 14px;
        padding: 5px 2px; 
    }
    .section2 p {
        color: rgb(255, 255, 255);
        font-size: 20px;
        line-height: 1.6;
        min-height: 70px;
        display: inline-block;
        margin: 10px;
    }
    .sec2-footer-p p {
        width: calc(100% - 50px);
        color: rgb(36, 36, 36);
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        line-height: 1.2;
        display: inline-block;
        margin: 3px 0 0 0;
        min-height: auto;
    }
    .sec5-box p {
        color: rgb(9, 18, 10);
        font-size: 18px;
        text-align: left;
        line-height: 1.4;
        padding: 20px;
    }
    .sec6-prod {
        width: 450px;
        max-width: none;
        margin-left: -50px;
    }
    .ord-sect-container .old-price {
        text-decoration-line: line-through;
        -webkit-text-decoration-line: line-through;
        color: rgb(0, 0, 0);
        font-size: 15px;
        text-align: center;
        line-height: 1.2;
    }
    .ord-sec-btn {
        margin-bottom: 10px;
    }
    .sec8-box p {
        color: rgb(255, 255, 255);
        font-size: 16px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 40px;
    }
    .sec11-left, .sec11-right {
        min-height: 480px;
    }
}

@media screen and (max-width: 992px) {
    .sec6-bx1 {
        margin: 0px 0px 20px 0px;
    }
    .sec6-prod {
        width: auto;
        max-width: 100%;
        margin-left: 0px;
    }
    .sec6-bx2 {
        margin: 20px 0px 20px 0px;
    }
}

@media screen and (max-width: 780px) {
    .mdisp {
        display: block;
    }
    .ddisp {
        display: none;
    }
    body, html {
        overflow-x: hidden;
    }
	#mlstb{
		width: 300px;
		left: 0;
		bottom: 0;
	}
	#mlstb p{
		font-size: 12px;
	}
	#mlstb p a{
		font-size: 12px;
		line-height: 12px;
	}
    .section1 h1 {
        font-size: 23px;
        padding: 10px;
    }
    .sec1-leftimg {
        width: 100%;
        margin-left: 0px;
        max-width: none;
    }
    .sect1-pack {
        display: none;
    }
    .sec1-prod {
        padding-top: 20px;
    }
    .sec1-footer-footer-inner h3 {
        font-family: "Krub-BoldItalic.ttf";
        color: #FFF;
        font-size: 22px;
        text-align: center;
        line-height: 1.4;
        border-top: 3px dashed #FFF;
        padding: 10px 20px 0 20px;
        margin: 0 20px;
    }
    .sec1-footer-footer-inner p {
        font-size: 12px;
    }
    .section2 h1 {
        font-size: 24px;
        margin: 0;
    }
    .section2 p {
        font-size: 20px;
        margin: 10px 0;
    }
    .sec2-footer-box {
        background-image: none;
        padding: 10px;
        margin: 0 10px;
    }
    .sec2-footer-box h2 {
        font-size: 24px;
    }
    .sec2-footer-p-btn {
        padding: 10px 20px;
    }
    .section3 h1 {
        font-size: 26px;
    }
    .section4 h1 {
        font-size: 26px;
    }
    .section4 p {
        font-size: 18px;
    }
    .section5 h1 {
        font-size: 25px;
    }
    .sec5-box p {
        font-size: 18px;
        padding: 0px;
    }
    .section6 h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .ord-sect-container .old-price {
        font-size: 15px;
    }
    .ord-box-prod-img {
        margin: 10px 0;
    }
    .ord-sect-prod-box-a-box {
        left: 25px;
    }
    .ord-sec-btn {
        margin-bottom: 10px;
    }
    .section7 h1 {
        font-size: 26px;
    }
    .section7 p {
        font-size: 16px;
        margin: 10px 0;
        width: 100%;
    }
    .section8 h1 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .sec8-box p {
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .sec8-mid-img2, .sec8-mid-img1, .section8 h3, .sec14-arr-box::after, .sec9-arr-box::after  {
        display: none;
    }
    .section8 {
        text-align: center;
    }
    .section8 h5 {
        font-size: 26px;
        margin-top: 10px;
    }
    .section10 h1, .section9 h1 {
        font-size: 26px;
    }
    .section12 h1, .section13 h1 {
        font-size: 26px;
    }
    .section12 p {
        font-size: 20px;
    }
    .section17 .sec1-leftimg {
        margin-bottom: -100px;
    }
    .sec1-a-box {
        position: absolute;
        top: 20px;
        left: -10px;
    }
    header .timer-section .timers div {
        display: inline-block;
        font-weight: 700;
        color: rgb(255, 249, 69);
        font-size: 20px;
        width: 40px;
        padding: 0;
        text-align: center;
    }
    header .timer-section .timers {
        margin-left: 0;
    }
    .sec5-box img {
        margin-top: 10px;
    }
}
