



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: "Roboto", sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #0b418b;
  color: -webkit-linear-gradient(left, #0B418B, #3491d2);
  color: -o-linear-gradient(left, #0B418B, #3491d2);
  color: -moz-linear-gradient(left, #0B418B, #3491d2);
  color: linear-gradient(left, #0B418B, #3491d2);
  border-radius: 20px;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: "Rajdhani", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 91.8vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f2f2f2;  
}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 0px solid #adadad;
  /*margin-bottom: 37px;*/
  padding-top: 15px;
}

.wrap-input100.prices {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
    padding-top: 15px;
}

.input100 {
 /* font-family: Poppins-Regular;*/
  font-size: 15px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #0B418B, #3491d2);
  background: -o-linear-gradient(left, #0B418B, #3491d2);
  background: -moz-linear-gradient(left, #0B418B, #3491d2);
  background: linear-gradient(left, #0B418B, #3491d2);
}

.focus-input100::after {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #0B418B, #3491d2);
  color: -o-linear-gradient(left, #0B418B, #3491d2);
  color: -moz-linear-gradient(left, #0B418B, #3491d2);
  color: linear-gradient(left, #0B418B, #3491d2);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #0B418B, #3491d2);
  color: -o-linear-gradient(left, #0B418B, #3491d2);
  color: -moz-linear-gradient(left, #0B418B, #3491d2);
  color: linear-gradient(left, #0B418B, #3491d2);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 77px 15px 33px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

.shipping-form {
  background-color: #fff;
  max-width: 1100px;
  padding:  20px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 150px;
}
.shipping-label {
  color: #35405a;
  font-family:  "Roboto", sans-serif;
  font-size: 16px;
}

.carousel {
  background: #fff;
}

.carousel-item .img-fluid {
  width: 100%;
}

.carousel-item a {
  display: block;
  width:100%;
}
  
.slider {
  width: 70%;
  margin: 0px auto;
}

.slider-image img {
  width: 100px;
  height: auto;
}
.big_f_left{
  margin-left: -70px;
}
.header-about{
  padding-left: 0px;  
}

.about-img{
  padding-right: 50px;
}

.about-img img{
  width: 260px;
  height: auto;
}

.about-img{
  padding-right: 50px;
}

.about-img img{
  width: 260px;
  height: auto;
}

.login img {
    width: 400px;
    height: auto;
    padding-top: 57px;
    /*padding-right: 10px;*/
    margin-left: -10px;
}

.btn-login {
 /* margin-left: 350px;*/
}

.host-element{
  margin-left: -50px !important;
}

.cara-pakai{
  padding-top: 100px;
}
.cara-pakai-isi{
  padding-left: 0px;
}
.form-tarif{
  padding-left: 0px;
}

.isi-form-tarif{
 float: left;
}
.btn-tarif{
  margin-top: 15px;
} 
.div-btn-tarif{
  padding-bottom: 0px;
  text-align: right;
} 

.alert{
  width: 40% !important;
}
 
@media (max-width: 991px) {
  .slider-image img {
    width: 80px;
  } 
  .big_f_left{
    margin-left: 0px;
  }
  .header-about{
    padding-left: 80px;  
  }
  .about-img img{
    width: 720px;
    height: 360px;
    max-width: 900px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
  .img-about{
    padding-left: 100px;
    width: 700px !important;
  }
  .about-img img{
    width: 600px;
    height: 300px;
  }
  .shape-detail{
    display: none;
  }
  .cara-pakai{
    padding-top: 30px;
  }
  .cara-pakai-isi{
    padding-left: 100px
  }
  .wrap-input100 {
    width: 100%;
  }
  .form-tarif{
  padding-left: 250px;
  }
 .login img {
    width: 270px;
    height: auto;
    /*padding-top: 50px;*/
    margin-left: 210px;
  }
  .btn-login {
  margin-left: 70px;
  }
}
@media (max-width: 839px) {
  .header-about{
    padding-left: 65px;  
  }
  .img-about{
    padding-left: 80px;
  }
  .cara-pakai-isi{
    padding-left: 80px;
  }
  .form-tarif{
  padding-left: 200px;
  }
}
@media (max-width: 799px) {
  .header-about{
    padding-left: 45px;  
  }
  .img-about{
    padding-left: 60px;
  }
  .cara-pakai-isi{
    padding-left: 60px;
  }
}
@media (max-width: 759px) {
  .header-about{
    padding-left: 25px;  
  }
  .img-about{
    padding-left: 40px;
  }
  .cara-pakai-isi{
    padding-left: 40px;
  }
}
@media (max-width: 719px) {
  .header-about{
    padding-left: 0px;  
  }
  .img-about {
    padding-left: 10px;
    width: 660px !important;
  }
  .cara-pakai-isi{
    padding-left: 10px;
  }
}
@media (max-width: 639px) {
  .img-about {
    padding-left: 10px;
    width: 540px !important;
  }
  .form-tarif{
    padding-left: 150px;
  }
}
@media (max-width: 600px) {
  iframe {
    width: 500px;
  }
}
@media (max-width: 525px) {
  iframe {
    width: 425px;
  }
  .img-about {
    padding-left: 50px;
    width: 450px !important;
  }
  .about-img img {
    width: 450px;
    height: 225px;
  }
  .login img {
    width: 300px;
    height: auto;
    padding-top: 47px;
    margin-left: 29px;
  }
  .btn-login {
  margin-left: 90px;
  }
}
@media (max-width: 500px) {
  .slider-image img {
    width: 80px;
    padding-left: 0px;
  } 
  .form-tarif{
    padding-left: 100px;
  }
}
@media (max-width: 450px) {
  iframe {
    width: 350px;
  }
   .img-about {
    padding-left: 50px;
    width: 400px !important;
  }
  .about-img img {
    width: 350px;
    height: 175px;
  }
}
@media (max-width: 400px) {
  .img-about {
    padding-left: 30px;
  }

}
@media (max-width: 375px) {
  iframe {
    width: 300px;
    height: 200px;
  } 
 .img-about {
    padding-left: 50px;
    width: 350px !important;
  }
  .about-img img {
    width: 300px;
    height: 150px;
  }
  .login img {
    width: 250px;
    height: auto;
    padding-top: 42px;
    margin-left: 37px;
  }
  .btn-login {
  margin-left: 50px;
  }
  .wrap-input100 {
    width: 100%;
  }
  .form-tarif {
    padding-left: 20px;
  }
}
@media (max-width: 350px) {
  .img-about {
    padding-left: 50px;
    width: 300px !important;
  }
  .about-img img {
    width: 250px;
    height: 125px;
  }
  .login img {
    width: 200px;
    height: auto;
    padding-top: 30px;
  }
  .btn-login {
  margin-left: 50px;
  }
}
@media (max-width: 325px) {
  iframe {
    width: 250px;
    height: 200px;
  } 
}
@media (max-width: 300px) {
  .img-about {
    padding-left: 30px;
    width: 300px !important;
  }
  .form-tarif {
    padding-left: 50px;
  }
  .wrap-input100 {
    width: 100%;
  }
}
@media (max-width: 275px) {
  iframe {
    width: 200px;
    height: 185px;
  }
  .img-about {
    padding-left: 10px;
    width: 300px !important;
  }
  .slider-image img {
    width: 150px;
    padding-left: 30px;
  }
}
.sliderv {
  width: 80%;
  margin: 0px auto;
}

.slider-video img {
  width: 500px;
  height: 300px auto;
  padding-right: 30px;
}

@media (max-width: 991px) {
  .slider-video img {
    width: 200px;
  } 
}

@media (max-width: 500px) {
  .slider-video img {
    width: 200px;
  } 
}
#pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000087;
  z-index: 99999;
}
     

#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}

#headerPopup{
  width:75%;
  margin:0 auto;
}

#headerPopup iframe{
  width:100%;
  margin:0 auto;
}

.button-testi{
  position: absolute;
  top:20%;
  padding-left: 225px;
  z-index: 2;
  height: auto;
} 

.slider-video{
  padding-right: 30px;
}

.slider-video img{
  width: 550px;
  height: 275px;
}

.logo_h img{
  /*width: 110px;*/
  height: 90px;
  margin-left: -9px;
}
.logo_h2 img{
  /*width: 110px;*/
  height: 100px;
}

@media (max-width: 1300px) { 
  
    .slider-video img{
      width: 530px;
      height: 265px;
    }
    .button-testi{
      top:20%;
      padding-left: 215px;
    }
    .user-profile > img.avatar {
      height: 6.23em !important;
      width: 6.23em !important;
    }
    .user-profile .bio {
      font-size: .97em !important;
    }
    .user-profile > .description {
      width: 14em !important;
      font-size: .87em !important;
    }
    .user-profile .tx {
      font-size: .87em !important;
      width: 100% !important;
    }
    .logo_h img{
      width: 90px;
      /*height: 50px;*/
    }
    .logo_h2 img{
     width: 90px;
     }


}

@media (max-width: 1255px) { 
  
    .slider-video img{
      width: 480px;
      height: 240px;
    }
    .button-testi{
      top:17%;
      padding-left: 190px;
    }
    .user-profile > img.avatar {
      height: 5.23em !important;
      width: 5.23em !important;
    }
    .host-element{
      margin-left: -15px !important;
    }
}

@media (max-width: 1133px) { 
  
    .slider-video img{
      width: 440px;
      height: 220px;
    }
    .button-testi{
      top:15%;
      padding-left: 170px;
    }
    .user-profile  .tx {
      width: 80% !important;
    }
    .shipping-form {
    max-width: 1043px;
  }
    
}

@media (max-width: 1042px) { 
  
    .btn-tarif {
      font-size: 9px !important;
    }  

    .shipping-form {
      max-width: 986px;
  }
}


@media (max-width: 1025px) { 
  
    .slider-video img{
      width: 400px;
      height: 200px;
    }
    .button-testi{
      top:13%;
      padding-left: 150px;
    }
    .user-profile > img.avatar {
      height: 4.73em !important;
      width: 4.73em !important;
    }
    .user-profile .bio {
      margin-left: 6.0em !important;
    }
    .user-profile > .description {
      margin-right: 8.0em !important;
    }
    .user-profile .tx {
      font-size: 0.80em !important;
      margin-left: 7.43em !important;
    }
    .logo_h img{
      width: 70px;
      height: 70px;
      margin-left: -1px;
      /*width: auto;
      height: 50px;*/
    }
    .logo_h2 img{
     width: 85px;
     }

    
}

@media (max-width: 1013px) { 
  
    .btn-tarif {
      font-size: 9px !important;
    }  

}
@media (max-width: 991px) { 
  .host-element{
    margin-left: 60px !important;
  }
  .shipping-form {
    max-width: 650px;
  }
  .div-btn-tarif{
    padding-bottom: 25px;
  }
  .btn-tarif {
      font-size: 12px !important;
      margin-top: 0px;
  }  
}

@media (max-width: 925px) { 
  
    .slider-video img{
      width: 360px;
      height: 180px;
    }
    .button-testi{
      top:11%;
      padding-left: 130px;
    }

    .user-profile > img.avatar {
      height: 4.23em !important;
      width: 4.23em !important;

    }
    .user-profile .bio {
      font-size: 0.87em !important;
      margin-left: 6.43em !important;
    }
    .user-profile > .description {
      width: 18em !important;
      font-size: .77em !important;
      margin-right: 7.3em !important;
    }
    .user-profile .tx {
      font-size: 0.75em !important;
      width: 65% !important;
      margin-left: 7.43em !important;
    }
    .logo_h img{
      width: auto;
      /*height: 50px;*/
    }
    .logo_h2 img{
     width: 80px;
     }

    
}

@media (max-width: 825px) { 
  
    .slider-video img{
      width: 320px;
      height: 160px;
    }
    .button-testi{
      top:11%;
      padding-left: 110px;
    }
    .user-profile > .description {
      width: 18em !important;
      font-size: 0.77em !important;
      margin-right: 8.3em !important;
    }
    .user-profile .bio {
      font-size: 0.87em !important;
      margin-left: 5.43em !important;
    }
    .user-profile .tx {
      font-size: 0.65em !important;
      width: 60% !important;
    }
    .logo_h img{
      margin-left: -12px;
      margin-top: -11px;
      width: 60px;
      height: 60px;
      /*width: auto;*/
      /*height: 50px;*/
    }
    .logo_h2 img{
     width: 70px;
     }

}


@media (max-width: 725px) { 
    .button-testi{
      top:20%;
      padding-left: 250px;
    }
    .slider-video img{
      width: 600px;
      height: 300px;
    }
    .user-profile > img.avatar {
      height: 6.23em !important;
      width: 6.23em !important;
      }

    .user-profile .bio {
      font-size: .97em !important;
      margin-left: 6.7em !important;
    }
    .user-profile > .description {
      width: 14em !important;   
      font-size: .87em !important;
      margin-right: 7.3em !important;
    }
    .user-profile .tx {
      font-size: .87em !important;
      width: 115% !important;
    }
    .shipping-form {
      max-width: 525px;
    }
    .logo_h img{
     width: auto;
      /*height: 50px;*/
    }
    .logo_h2 img{
     width: auto;
     height: 63px;
     }


}

@media (max-width: 625px) { 
    .button-testi{
      top:18%;
      padding-left: 200px;
    }
    .slider-video img{
      width: 500px;
      height: 250px;
    }
    .user-profile > img.avatar {
      height: 5.23em !important ;
      width: 5.23em !important;
    }
    .user-profile .bio {
      font-size: 0.87em !important;
    }
    .user-profile > .description {
      width: 18em !important;
      font-size: .77em !important; 
      margin-right: 6.9em !important;
    }
    .user-profile .tx {
      font-size: .77em !important;
      width: 90% !important;
    }
    .logo_h img{
      width: auto ;
      /*height: 70px;*/
    }
    .logo_h2 img{
      width: auto ;
     }

}

@media (max-width: 525px) { 
    .button-testi{
      top:16%;
      padding-left: 175px;
    }
    .slider-video img{
      width: 450px;
      height: 225px;
    }
    .user-profile > img.avatar {
      height: 4.73em !important;
      width: 4.73em !important;
    }
    .user-profile .bio {
      font-size: 0.87em !important;
    }
    .user-profile > .description {
      width: 18em !important;
      font-size: .77em !important;
    }
    .user-profile .tx {
      font-size: .77em !important;
      width: 90% !important;
    }
    .shipping-form {
      max-width: 425px;
    }

}

@media (max-width: 475px) { 
    .button-testi{
      top:14%;
      padding-left: 150px;
    }
    .slider-video img{
      width: 400px;
      height: 200px;
    }
    .user-profile > img.avatar {
      height: 4.23em !important;
      width: 4.23em !important;
    }
    .user-profile .bio {
      font-size: 0.82em !important;
      margin-left: 6.5em !important;
    }
    .user-profile > .description {
      width: 20em !important;
      font-size: .72em !important;
      margin-right: 7.3em !important;
    }
    .user-profile .tx {
      font-size: .72em !important;
      width: 65% !important;
    }
    .shipping-form {
      max-width: 375px;
    }
     .logo_h img{
      width: auto ;
      /*height: 70px;*/
    }
    .logo_h2 img{
      width: auto ;
     }
}

@media (max-width: 425px) { 
    .button-testi{
      top:12%;
      padding-left: 140px;
    }
    .slider-video img{
      width: 380px;
      height: 190px;
    }
    .user-profile .bio {
      font-size: 0.79em !important;
      margin-left: 5.93em !important;
      margin-left: 6.33em !important;
    }
    .user-profile > .description {
      width: 22.8em !important;
      font-size: .67em !important;
      margin-right: 7.1em !important;
    }
    .user-profile .tx {
      font-size: .67em !important;
      width: 60% !important;
    }
    .host-element {
      margin-left: 40px !important; 
    }
    .shipping-form {
      max-width: 325px;
    }
     .logo_h img{
      width: auto ;
      /*height: 69px;*/
    }
    .logo_h2 img{
      width: auto ;
     }
}

@media (max-width: 400px) { 
    .host-element {
      margin-left: 30px !important;
    }
}

@media (max-width: 375px) { 
    .button-testi{
      top:10%;
      padding-left: 120px;
    }
    .slider-video img{
      width: 340px;
      height: 170px;
    }
    .user-profile .tx {
      font-size: .62em !important;
      width: 50% !important;
      margin-left: 7.83em !important;
    }
    .host-element {
      margin-left: 20px !important;
    }
     .shipping-form {
      max-width: 275px;
    }
}

@media (max-width: 350px) { 
    .button-testi{
      top:10%;
      padding-left: 110px;
    }
    .slider-video img{
      width: 320px;
      height: 160px;
    }
    .host-element {
      margin-left: 10px !important;
    }
}

@media (max-width: 325px) { 
    .button-testi{
      top:10%;
      padding-left: 100px;
    }
    .slider-video img{
      width: 300px;
      height: 150px;
    }
    .user-profile > img.avatar {
      height: 3.73em !important;
      width: 3.73em !important;
    }
    .user-profile .bio {
      font-size: 0.79em !important;
      margin-left: 5em !important;
    }
    .user-profile > .description {
      margin-right: 8.5em !important;
    }
    .user-profile .tx {
      font-size: .62em !important;
      width: 50% !important;
      margin-left: 6.43em !important;
    }
    .host-element {
      margin-left: 0px !important;
    }
    .shipping-form {
      max-width: 250px;
    }
     .logo_h img{
      width: auto ;
      /*height: 60px;*/
    }
    .logo_h2 img{
      width: auto ;
     }
}

@media (max-width: 300px) { 
    .button-testi{
      top:8%;
      padding-left: 90px;
    }
    .slider-video img{
      width: 280px;
      height: 140px;
    }
}

@media (max-width: 290px) { 
    .user-profile .tx {
      width: 40% !important;
    }
}

@media (max-width: 275px) { 
    .button-testi {
      top: 5%;
      padding-left: 75px;
    }
    .slider-video img{
      width: 260px;
      height: 130px;
    }
}

@media (max-width: 250px) { 
    .button-testi {
        top: 4%;
        padding-left: 65px;
    }
}

/*@media (max-width: 1300px){
  .kurir {
    width: 110px;
  }
}*/
.card-price {
  background: #fff;
  border-radius: 5px;
  display: inline-block;
  height: 100px;
  margin: 1rem;
  position: relative;
  width: 100%;
}

.card-price-type {
  /*box-shadow: 0 19px 38px rgba(0,0,0,0.15), 0 15px 12px rgba(0, 0, 0, 0.03);*/
  border: 1px solid #aaa;
  border-radius: 4px;
}
.logo-company-price {
  padding: 10px !important;
  text-align: center;
}
.btn-price{
   padding: 30px 10px !important;
}
.logo-company-price img{
  width: 75px;
  height: 75px;
}
.detail-price{
  float: left;
  padding: 20px 10px;
  text-align: center;
}

.detail-price p,.detail-price h3{
  font-size: 18px;
}

.btn-primary-prices {
  border: 2px solid #fff !important;
  border-radius: 5px !important;
  font-size: 1rem !important;
}
.btn-primary-prices:hover {
    border: 2px solid #0b418b !important;

}

.line-pemisah{
  border-top: 1px solid rgb(147, 147, 147);
}


.home-page-widget-overlay {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.home-page-widget-overlay.show {
    background: #020202;
    background: rgba(2,2,2,.7);
    z-index: 600;
    visibility: visible;
    opacity: 1;
}

.form-layanan{
  width: 100%;
  background: #f6f9ffb0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 125px;
  padding: 25px;
}

.form-layanan > .content{
  float: left;
}
.form-layanan-tittle{
  text-align: left;
}
.form-layanan-tittle p{
  font-weight: bold;
  color: #000 !important;
}

.form-layanan-list{
  text-align: right;
}

.product-box{
  display: inline-block;
  padding: 0px 4px;
  width: 86px;
  height: 86px;
  border: 2px solid #26427775;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
}
.product-box > .product-logo{
line-height: 57px;
width: 76px;
max-height: 57px;
position: relative;
}
.product-box > .product-logo img{
  width: 100%;
  height: 100%;
}

.product-box .product-label{
display: block;
text-align: center;
line-height: 25px;
font-size: 12px;
}

.product-box.active{
  border: 2px solid #264277 !important;
}

.form-layanan-bottom{
  width: 100%;
  background: #ffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 300px;
}
.tab-pane.active{
  display: block !important;
}
.tab-pane{
  display: none;
}
/*.logo-rotate{
  transform: rotate(360deg) !important;
}*/

.form-layanan-bottom-content{
  height: 100px;
  border-bottom: solid 1px #e3e3e3;
  padding: 10px;
}

.form-layanan-bottom-content .content-top .product-form-logo{
-webkit-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
-webkit-transform-origin: center;
-ms-transform-origin: center;
transform-origin: center;
display: inline-block;
width: 35px;
height: 35px;
text-align: center;
border-radius: 50%;

}
.form-layanan-bottom-content .content-top{
padding: 20px 30px;
}
.form-layanan-bottom-content .content-top .product-form-logo img{
display: block;
line-height: 35px;
vertical-align: middle;
width:  34px;
height:  34px;
color: #fff;
}
.form-layanan-bottom-content .content-top .product-form-text {
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    vertical-align: middle;
    color: #35405a;
    margin: 0px 0px 25px 15px;
}

.form-layanan-bottom-content .content-middle .content-middle-form{
  float: left;
  width: 100%;
  border-left: solid 1px #e3e3e3;
  height: 100px
}
.active-product{
position: absolute;
top: 1px;
right: 0;
width: 17px;
height: 17px;
border-radius: 50%;
background-color: #3765b8;
}
.active-product i{
display: block;
text-align: center;
line-height: 17px;
vertical-align: middle;
color: #fff;
font-size: 8px;
}
.product-box.active > .product-logo > .active-product {
  display: block !important; 
}
.product-box > .product-logo > .active-product {
  display: none !important; 
}
.product-form-logo{
  -webkit-animation:spin 0.2s ease-in-out; 
    -moz-animation:spin 0.2s linear;
    animation:spin 0.2s linear;
}
@-moz-keyframes spin {
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); }
}
@-webkit-keyframes spin {
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); }
}
@keyframes spin { 
    100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } 
}
.home-page-widget-overlay {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.home-page-widget-overlay.show {
    background: #020202;
    background: rgba(2,2,2,.7);
    z-index: 600;
    visibility: visible;
    opacity: 1;
}
.form-overlay{
  width: 100%;
  margin-top: -175px;
  z-index: 2;
}
.form-overlay.active {
    z-index: 650;
}

.card-price-truck{
  max-width: 600px;
  margin: 0 auto 20px auto;
  border-top: none !important;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 3px 4px 16px 0 rgba(49, 49, 49, 0.2);
  background-color: #ffffff;
}

.card-price-truck.full {
    width: 100%;
}

.price-truck-detail {
padding: 10px 0px;
border-bottom: 1px solid #d5d5d5
}
.truck-price-header{
  padding: 10px 0px;
}

.price-truck-detail > .truck-type {
  float: left;
}

.price-truck-detail >.truck-price {
  text-align: right;
}

.truck-price-header > .truck-type {
  float: left;
}

.truck-price-header >.truck-price {
  text-align: right;
}

.truck-price-header > .truck-type > h4{
  color: #000;
}
.truck-price-header > .truck-price > h4{
  color: #000;
}
.btn-price.trucking{
  text-align: center;
}
.button-small{
    display: none;
  }
@media (max-width: 991px) {
  .form-layanan-bottom-content .content-middle .content-middle-form{
    width: 33.333333%;
  }
  .form-layanan>.content{
    width: 50%;
  }

  .product-box{
    width: 60px;
    height: 60px;
  }

  .product-box > .product-logo {
    line-height: 0px;
    width: 49px;
    max-height: 35px;
    position: relative;
  }

  .active-product {
    right: -2px;
    width: 12px;
    height: 12px;
  }
  .active-product i {
    line-height: 12px;
    font-size: 8px;
  }
  .div-btn-tarif {
    width: 100%;
  }
  .product-box .product-label {
    font-size: 10px;
  }
  .form-layanan-tittle h2{
    font-size: 24px;
  }
  .form-layanan-bottom-content .content-top .product-form-text {
    font-size: 14px;
  }
  .form-overlay{
    margin-top: -175px;
  }
}
@media (max-width: 719px) {
  .form-overlay{
   margin-top: -150px;
  }
  .form-layanan {
    height: 100px;
  }
}
@media (max-width: 679px) {
  .form-overlay{
    margin-top: 0px;
  }
  .form-layanan {
    height: 125px;
    background: #f6f9ff;
  }
}
@media (max-width: 575px) {
  .form-overlay{
    padding: 20px;
  }
  .form-layanan-bottom-content .content-middle .content-middle-form{
    width: 100%;
  }
  .form-layanan-bottom {
    height: 500px;
  }
  .form-layanan-bottom-content.button{
    display: none;
  }
  .button-small{
    display: block;
  }
}
@media (max-width: 451px) {
  .form-layanan-bottom-content .content-top .product-form-text {
    font-size: 12px;
  }
  .form-layanan-tittle h2 {
    font-size: 20px;
  }
}
@media (max-width: 412px) {
  .form-layanan-bottom-content .content-top .product-form-text {
      font-size: 10px;
  }
  .form-layanan-tittle h2 {
      font-size: 18px;
  }
  .form-layanan-tittle p {
      font-size: 14px;
  }
  .product-box {
    width: 40px;
    height: 40px;
    padding: 0px 0px;
  }
  .product-box > .product-logo {
    width: 35px;
  }
  .product-label{
    display: none;
  }
  .form-layanan-bottom-content .content-top {
    padding: 20px 15px;
  }
}
@media (max-width: 341px) {
  .form-layanan-bottom-content .content-top .product-form-text {
    font-size: 9px;
  }
}

.container-truck-menu{
  position: fixed;
  inset: 0px;
  margin: 0px auto;
  max-width: 30rem;
  background-color: rgb(248, 249, 250);
  display: flex;
}

.row-truck{
  width: 100%;
}