
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(#6953d4, #af75c864);
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: #ffffff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(#9e53fabe, #cc89e798);
}


html{
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  justify-content: center;
  text-align: center;
}

.paragraf{  
  margin-left: 20px;
}

/* teks animasi*/

@keyframes kanan{
  0%{
    transform: translateX(-100%);
    opacity: 0;
  }

  100%{
    transform: translateY(0);
    opacity: 1;
  }
}

#teks_animet{
  animation: kanan 1.5s ease-in-out;
}
#teks_animet2{
  animation: kanan 1.3s ease-in-out;
}
#teks_animet3{
  animation: kanan 1s ease-in-out;
}

/* onscroll */
.reveal.anime{
  transform: translateY(0);
  opacity: 1;
}
.reveal{
  transition: all 0.8s ease;
  position: relative;
  transform: translateY(20%);
  opacity: 0;
}
/*ke kanan */
.reveal2.anime {
  transform: translateY(0);
  opacity: 1;
}

.reveal2 {
  transition: all 0.6s ease;
  position: relative;
  transform: translateX(-20%);
  opacity: 0;
}
/*ke kiri */
.reveal3.anime {
  transform: translateY(0);
  opacity: 1;
}

.reveal3 {
  transition: all 0.6s ease;
  position: relative;
  transform: translateX(20%);
  opacity: 0;
}
/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/
.navbar {
  align-items: center;
  justify-content: center;
  margin-top: 1%;
  padding-top: 0.5%;
  z-index: 99999999999;
  width: 70%;
  position: fixed;
  height: 74px;
  transform: translateX(20%);
  border-radius: 5rem;
  transition: transform 0.3s ease-in-out 0.1s;
}

.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.nav_r {
  z-index: 99999;
  color: #fff;
  position: fixed;
  height: 100%;
  width: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: .3s all ease-in-out;
}

.nav_r:after {
  content: "";
  z-index: -1;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.nav_r .nav_r__nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}

.nav_r .nav_r__nav .navbar-responsive__link {
  text-align: center;
  letter-spacing: 2px;
}

.nav_r .nav_r__nav .navbar-responsive__link a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
}

.nav_r .nav_r__nav .navbar-responsive__link a:after {
  top: 10%;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

.navbar {
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.navbar .navbar__wrapper {
  width: 90%;
  margin: 0 auto;
}

.navbar .navbar__wrapper .navbar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.navbar .navbar__wrapper .navbar__menu .navbar__nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

@keyframes brandDown{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-3.5%);
  }
  100%{
    transform: translateY(0);
  }
}

.navbar .navbar__wrapper .navbar__link a,
.navbar .navbar__wrapper .navbar__brand {
  display: block;
  position: relative;
  padding: 15px;
  color: #777;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.navbar .navbar__wrapper .navbar__brand {
  transition: 0.5s;
  animation: brandDown 3s ease-in-out infinite;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
}
.navbar .navbar__wrapper .navbar__brand {
  height: 120px;
  margin-top: 20px;
  left: -30px;
}

.navbar .navbar__wrapper .navbar__brand img {
  height: 90%;
}

.after-transform a {
  position: relative;
}

.after-transform a:after {
  content: "";
  transition: all .3s ease;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: black;
  border-radius: 3px;
  transform: scaleX(0) translateZ(0);
  transform-origin: bottom center;
}

.after-transform a.active:after,
.after-transform a:hover:after {
  transform: scaleX(1) translateZ(0);
}

/* Icon 3 */
#nav-icon3 {
  margin-right: 10px;
  margin-top: 10px;
  width: 30px;
  height: calc(100%/2);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg) translateY(-1000%);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: none;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #777;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 9px;
}

#nav-icon3 span:nth-child(4) {
  top: 18px;
}

#nav-icon3.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.navbar__nav{
  margin-top: 1%;
}

@media (max-width: 1250px) {
  .navbar__nav {
    display: none !important;
  }

  #nav-icon3 {
    transform: translateY(0%);
  }
  #nav-icon3 span {
    display: block !important;
  }
}

@media (min-width: 1250px) {
  .navbar__responsive {
    transform: translate3d(-100%, 0, 0) !important;
  }
}

@media screen and (max-width:460px) {
  .navbar .navbar__wrapper .navbar__brand {
    height: 100px;
    margin-top: 20px;
    left: -20px;
  }

  .navbar__menu img{
    height: 30px;
    width: 30px;
  }

    .navbar {
      height: 60px;
      margin-top:3%;
      transform: translateX(20%);
    }
}


/*-----------------------------------*\
  #HOME
\*-----------------------------------*/
.home {
  height: 100vh;
  display: flex;
  background: linear-gradient(120deg, rgba(18, 40, 131, 0.9248949579831933) 29%, rgb(87, 87, 189) 73%);
  padding: 8% 0 0;
  overflow-y: hidden;
}

/* =-=-=-=-= LEFT =-=-=-=-= */
.left {
  flex: 1;
  padding-left: 2vh;
}

.tulisan {
  text-align: start;
  color: white;
  width: 90%;
  font-size: 1.5rem;
  margin: 5% 0 0 3%;
}
.tulisan h2 {
  font-size: 1.3rem;
}
.tulisan h1 {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
.tulisan p {
  font-size: 1.3rem;
}

/* =-=-=-=-= RIGHT =-=-=-=-= */
.right {
  margin-top: 5.5%;
  margin-left: 2%;
  flex: 1;
}

.card-container {
  position: absolute;
  width: 300px;
  height: 400px;
}

.card {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;

}

.card2 {
  transform: translateY(-110%);

}

.card3 {
  transform: translateY(-210%);

}

.card1{
  transform: translateY(-10%);
}

.card-container:hover .card1 {
  transform: translate(-10%) scale(0.8);
}
.card-container:hover .card4 {
  transform: translate(85%,-300%) scale(0.8);
}
.card4 {
  z-index: 1;
  transform: translateY(-310%);
}

.card-container:hover .cardonhov {
  display: block;
}

.hover_card {
  margin-top: 10%;
}

.card-container:hover .card3 {
  z-index: 1;
  transform: translate(30%,-240%) scale(0.78)  rotate(-10deg);
}

.card-container:hover .card2 {
  z-index: 1;
  transform: translate(30%,-60%)  scale(0.78) rotate(10deg);
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.tanda_gone {
  display: none;
}

.about {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  height: 100vh;
  padding-top: 5%;
}


.atasan_about h4 {
  font-size: 1.5rem;
}

.atasan_about p {
  font-size: 1.5rem;
  width: 80%;
  margin-top: 1.5rem;
  margin-bottom: 10rem;
}

.atasan_about {
  height: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
}

.judul_about{
  font-size: 1rem;
}

.container-tanda {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.tanda h1 {
  color: rgb(63, 168, 255);
  font-size: 2.2rem;
}
.tanda p {
  font-size: 1.2rem;
 margin-top: 1.5rem;
}
.tanda {
  margin: 2% 5%;
  font-size: 1rem;
}

/*-----------------------------------*\
  product
\*-----------------------------------*/

.product{
  background: linear-gradient(to bottom, rgba(18, 40, 131, 0.9248949579831933) 0%, #537895 100%);
  padding-top: 8%;
  height: 110vh;
}

.judul_produk span{
  color: #ffffff;
  background-image: linear-gradient(to bottom left, #9e53fabe,
        #cc89e798);
  padding: 1% 1% 1% 2%;
  border-radius: 1rem;
}
.judul_produk{
  color: white;
  letter-spacing: 0.7rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2%;
}

.judul_kartu1{
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 10px 6px 18px rgba(255, 255, 255, 0.78);
}
.judul_kartu2{
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 10px 6px 12px rgb(255, 213, 0);
}
.judul_kartu3{
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 10px 6px 18px rgb(0, 0, 0);
}
.judul_kartu4{
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 10px 6px 18px rgb(17, 17, 17);
}

.daftar_btn{
  text-transform: capitalize;
  font-weight: bold;
  padding: 4% 5%;
  border: none;
  font-size: 0.9rem;
  background-image: linear-gradient(to bottom left,#9e53fabe,
    #cc89e798);
    margin: 2rem 0 0.5rem 0;
    cursor: pointer;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.harga1{
  color: black;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  background-color: rgb(255, 255, 255);
  padding: 1% 10%;
  letter-spacing: 0.02rem;
  margin: 1rem 0 1.2rem 0;
}
.harga2{
  color: black;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  background-color: rgb(255, 255, 255);
  padding: 1% 10%;
  letter-spacing: 0.02rem;
  margin: 1rem 0 1.2rem 0;
}
.harga3{
  color: black;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  background-color: rgb(255, 255, 255);
  padding: 1% 10%;
  letter-spacing: 0.02rem;
  margin: 1.5rem 0 1.2rem 0;
}
.harga4{
  color: black;
  border-radius: 0.3rem;
  font-size: 1.2rem;
  background-color: rgb(255, 255, 255);
  padding: 1% 10%;
  letter-spacing: 0.02rem;
  margin: 1.5rem 0 1.2rem 0;
}

.price_card{
  display: flex;
}

.ke1{
  margin-top: 1rem !important;
}
.ke2{
  margin-top: 1rem !important;
}
.ke3{
  margin-top: 2.2rem !important;
}
.ke4{
  margin-top: 1.9rem !important;
}

.card_1 img,
.card_1 p{
  font-size: 1rem;
  font-weight: 600;
  margin: 5% 0;
}
.card_1:hover{
  transform: translateY(-2%);
  background: linear-gradient(to top left, #b5b3b3 0%, #ffffff 100%);
}
.card_1{
  transition: 1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.518);
  padding: 2%;
  margin: 1%;
  height: max-content;
  color: #474747;
}
/* card 2 */
.card_2 img,
.card_2 p{
  font-size: 1rem;
  font-weight: 600;
  margin: 5% 0;
}
.card_2:hover{
  transform: translateY(-2%);
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
      radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.card_2{
  color: white;
  transition: 1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: rgba(255, 219, 18, 0.408);
  padding: 2%;
  margin: 1%;
  height: max-content;
}

/* card3 */
.card_3 img {
  width: 89%;
}
.card_3 p{
  font-size: 1rem;
  font-weight: 600;
  margin: 5% 0;
}
.card_3:hover{
  transform: translateY(-2%);
  background: radial-gradient(circle at 10% 20%, rgb(69, 86, 102) 0%, rgb(34, 34, 34) 90%);
}
.card_3{
  transition: 1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.514);
  padding: 2%;
  margin: 1%;
  height: max-content;
  color: white;
}

/* card 2 */
.card_2 img{
  width: 100%;
}
.card_2 p{
  font-size: 1rem;
  font-weight: 600;
  margin: 5% 0;
}
.card_2:hover{
  transform: translateY(-2%);
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
      radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}
.card_2{
  transition: 1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: rgba(255, 219, 18, 0.408);
  padding: 2%;
  margin: 1%;
  height: max-content;
}


/* card 4 */
.card_4 img{
  margin-top: 3%;
  width: 95%;
}
.card_4 p{
  font-size: 1rem;
  font-weight: 700;
  margin: 5% 0;
}
.card_4:hover{
  transform: translateY(-2%);
   background: linear-gradient(to right, #868f96 0%, #596164 100%);
}
.card_4{
  transition: 1s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  background-color: #9f9f9fa2;
  padding: 2%;
  margin: 1%;
  height: max-content;
  color: rgb(0, 0, 0);
}


/*-----------------------------------*\
  Benefits
\*-----------------------------------*/

.benefits{
    background-image: linear-gradient(to right bottom, rgba(179, 135, 208, 0.242),white,white);
  padding: 8% 5%;
  height: 100vh;
  display: flex;
}

.card_muter {
  display: flex;
  height: 130%;
  align-items: center;
  left: -5%;
  perspective: 1000px;
}

.cardnya_ni {
  width: 500px;
  height: 500px;
  transform-style: preserve-3d;
}

.card_inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateCard 5s linear infinite;
}

.front_card,
.back_card {
  text-align: center;
  position: absolute;
  margin-left: 10%;
  height: 100%;
  backface-visibility: hidden;
}

.front_card {
  transform: rotateY(0deg) rotate(-58deg);
}

.back_card {
  margin-top: 4.2%;
  transform: rotateY(180deg) rotate(58deg);
}

@keyframes rotateCard {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.text_benef .hover_text_benef h1 {
  font-size: 1.5rem;
  margin-bottom: 2%;
  text-transform: capitalize;
}


.text_benef{
  text-align: center;
}
.list_benef::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#6953d4, #af75c864);
}

.list_benef::-webkit-scrollbar {
  width: 10px;
}

.list_benef::-webkit-scrollbar-track {
  border-radius: 1rem;
  background: #ffffff4d;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.066);
}

.list_benef::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(#9e53fabe, #cc89e798);
}
.list_benef{
  border-radius: 0.8rem;
  background-color: rgb(237, 240, 255);
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 2px inset;
  padding: 0% 2% 5% 5%;
  max-height: 500px;
  overflow: hidden auto;
}

.text_benef .hover_text_benef:hover {
  box-shadow: rgba(72, 72, 255, 0.5) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.text_benef .hover_text_benef .animate {
  opacity: 1;
  transform: translateY(0);
}

.text_benef .hover_text_benef {
  text-transform: lowercase;
  word-spacing: 0.3rem;
  font-weight: 500;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: start;
  background: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 2% 4%;
  margin: 18px 0;
  border-radius: 1.5rem;
}

.text_benef h1 {
  font-family: math;
}
.text_benef .judul_benef span{
  margin-right: 1%;
  background: linear-gradient(#9e53fabe, #cc89e798);
  padding: 1% 1.5%;
  font-family: sans-serif;
  border-radius: 1rem;
  box-shadow: 0 0 10px gray;
}
.text_benef .judul_benef {
  font-family: sans-serif;
  margin-bottom: 5%;
  font-size: 3.7rem;
}


a{
  text-decoration: none;
}

.revealbox{
  transform: translateX(10%);
  opacity: 0;
}

.revealbox.on_animation {
  transform: translate(0);
  opacity: 1;
}

.on_animation {
  animation: fade-bottom 0.5s ease-in;
}


@keyframes fade-bottom {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*-----------------------------------*\
  How its work
\*-----------------------------------*/

.how{
  background: linear-gradient(to bottom, #537895 0%, black 100%);
  display: flex;
  flex-direction: row-reverse;
  height: 110vh;
}

.over_how:hover span{
  animation-play-state: paused;
}

.primary {
  animation: primary 8s linear infinite;
}

.secondary {
  animation: secondary 8s linear infinite;
}

@keyframes secondary {
  from {
    bottom: 100%;
  }

  to {
    bottom: 0%;
  }
}


.over_how{
  height: 100%;
}

/* teks how */

.judul_paragraf{
  font-size: large;
  font-weight: 600;
}

.teks_how .judul_how{
  background-color: #7b9fba;
  width: 30%;
  padding: 1%;
  top: 10%;
  border-radius: 1rem;
  left: 5%;
  font-size: 2rem;
  font-weight: bold;
  margin: 6% 0;
  z-index: 1;
}
.teks_how .isi_how{
  letter-spacing: 0.01rem;
  word-spacing: 0.15rem;
  background-color: white;
  padding: 4% 3%;
  border-radius: 1rem;
  text-align: start;
  height: max-content;
}
.teks_how{
  flex: 1;
  margin: 8% 2% 0;
}

/*--------------------
 Checkout
 --------------------*/
.checkout {
  flex: 0.45;
  height: max-content;
  margin: 22% 3% 30px;
  position: relative;
  width: max-content;
  background: white;
  border-radius: 15px;
  padding: 160px 20px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------
 Form
 --------------------*/
.form fieldset {
  border: none;
  padding: 0;
  padding: 10px 0;
  position: relative;
  clear: both;
}

.form fieldset.fieldset-expiration {
  float: left;
  width: 60%;
}

.form fieldset.fieldset-expiration .select {
  width: 94px;
  margin-right: 12px;
  float: left;
}

.form fieldset.fieldset-ccv {
  clear: none;
  float: right;
  width: 86px;
}

.form fieldset label {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
  font-family: Inconsolata;
}

.form fieldset input,
.form fieldset .select {
  width: 100%;
  height: 38px;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
}

.form fieldset input.input-cart-number,
.form fieldset .select.input-cart-number {
  width: 82px;
  display: inline-block;
  margin-right: 8px;
}

.form fieldset input.input-cart-number:last-child,
.form fieldset .select.input-cart-number:last-child {
  margin-right: 0;
}

.form fieldset .select {
  position: relative;
}

.form fieldset .select::after {
  content: '';
  border-top: 8px solid #222;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 10px;
  pointer-events: none;
}

.form fieldset .select select {
  appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  outline: none !important;
  top: 6px;
  left: 6px;
  background: none;
}

.form fieldset .select select :-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form button {
  width: 100%;
  outline: none !important;
  background: #406455;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 90px;
}

.form button .fa {
  margin-right: 6px;
}

/*--------------------
 Credit Card
 --------------------*/
.credit-card-box {
  perspective: 1000;
  width: 400px;
  height: 280px;
  position: absolute;
  top: -112px;
  left: 50%;
  transform: translateX(-50%);
}

.credit-card-box:hover .flip,
.credit-card-box.hover .flip {
  transform: rotateY(180deg);
}

.credit-card-box .front,
.credit-card-box .back {
  width: 400px;
  height: 250px;
  border-radius: 15px;
  backface-visibility: hidden;
  background: linear-gradient(135deg, #bd6772, #53223f);
  position: absolute;
  color: #fff;
  font-family: Inconsolata;
  top: 0;
  left: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.credit-card-box .front::before,
.credit-card-box .back::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('http://cdn.flaticon.com/svg/44/44386.svg') no-repeat center;
  background-size: cover;
  opacity: 0.05;
}

.credit-card-box .flip {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}


.credit-card-box .front {
  z-index: 2;
  transform: rotateY(0deg);
}

.credit-card-box .back {
  transform: rotateY(180deg);
}

.credit-card-box .chip {
  position: absolute;
  width: 60px;
  height: 45px;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ddccf0 0%, #d1e9f5 44%, #f8ece7 100%);
  border-radius: 8px;
}

.credit-card-box .chip::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(128, 128, 128, 0.1);
  width: 80%;
  height: 70%;
  border-radius: 5px;
}

.credit-card-box .strip {
  background: linear-gradient(135deg, #404040, #1a1a1a);
  position: absolute;
  width: 100%;
  height: 50px;
  top: 30px;
  left: 0;
}

.credit-card-box .number {
  position: absolute;
  margin: 0 auto;
  top: 103px;
  left: 19px;
  font-size: 38px;
}

.credit-card-box label {
  font-size: 10px;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 3px;
}

.credit-card-box .card-holder,
.credit-card-box .card-expiration-date {
  position: absolute;
  margin: 0 auto;
  top: 180px;
  left: 19px;
  font-size: 22px;
  text-transform: capitalize;
}

.credit-card-box .card-expiration-date {
  text-align: right;
  left: auto;
  right: 20px;
}

.credit-card-box .ccv {
  height: 36px;
  background: #fff;
  width: 91%;
  border-radius: 5px;
  top: 110px;
  left: 0;
  right: 0;
  position: absolute;
  margin: 0 auto;
  color: #000;
  text-align: right;
  padding: 10px;
}

.credit-card-box .ccv label {
  margin: -25px 0 14px;
  color: #fff;
}


/* footer / contact */


.footer-section {
  background-image: linear-gradient(to top, rgb(64, 64, 64), rgb(0, 0, 0));
  height: 100%;
  padding-top: 6%;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ffffff;
  font-size: 30px;
  right: 100px;
}

.cta-text {
  padding-left: 15px;
}


.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}


.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.google-bg {
  background: #DD4B39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 25px;
  transform: translateY(-5px) rotate(-25deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}