/* Google Fonts */

@import url('https://fonts.googleapis.com/css?family=Muli:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Nunito+Sans:300,300i,400,400i,600,600i,700,700i,800,800i,900,900i|Open+Sans:400,400i,600,600i,700,700i,800,800i|Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');
/*======================================== 1. GLOBAL STYLES ==========================================*/

/* === 1.1 Body === */

html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    color: #61657a;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ======================================== 2. Typography =========================================== */

/* === 1.2 Hyperlink === */

a {
    color: #303030;
    /*transition*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a,
a > * {
    cursor: pointer;
    outline: medium none;
    text-decoration: none;
}

a:focus,
a:hover {
    outline: medium none;
    text-decoration: none;
    color: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

/* === 2.1 Headings === */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #30323c;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 15px;
    padding: 0;
    transition: 0.3s
}

h1 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    line-height: 32px;
}

h4 {
    font-size: 24px;
    line-height: 38px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
}

/* === PARAGRAPH === */

p {
    margin: 0 0 10px;
}

b,
strong {
    font-weight: 600;
}

/* ======================================= Basic Margins Paddings ===============*/

/* === Padding Bottom === */

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pt-110 {
    padding-top: 110px;
}

/*=== Padding Top Bottom ===*/

.ptb-80 {
    padding: 80px 0;
}

.ptb-105 {
    padding: 105px 0;
}

.ptb-100 {
    padding: 100px 0;
}

.ptb-110 {
    padding: 110px 0;
}

/* Miscellaneous Paddings */

.pt110-pb50 {
    padding: 110px 0 50px;
}

.pt110-pb65 {
    padding: 110px 0 65px;
}

.pt110-pb75 {
    padding: 110px 0 75px;
}

.pt110-pb85 {
    padding: 110px 0 85px;
}

.pt110-pb95 {
    padding: 110px 0 95px;
}

.pt90-pb100 {
    padding: 90px 0 100px;
}

.pt95-pb55 {
    padding: 95px 0 55px;
}

/*Margin Bottom*/

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-65 {
    margin-bottom: 65px;
}

/*Margin Left*/

.ml-35 {
    margin-left: 35px;
}

/* === 1.5 OTHER FIXES === */

pa {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

.uppercase {
    text-transform: uppercase;
}

.floatleft {
    float: left
}

.floatright {
    float: right
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px
}

.aligncenter {
    display: block;
    margin: 0 auto 15px
}

img {
    max-width: 100%;
    height: auto;
}

.tbl {
    display: table;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.tbl-cell {
    display: table-cell;
    vertical-align: middle;
}

/*Scroll Up*/

#scrollUp {
    background: #1da1f2 none repeat scroll 0 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    bottom: 75px;
    color: #fff;
    font-size: 32px;
    height: 38px;
    line-height: 36px;
    right: 8px;
    text-align: center;
    width: 38px;
}

/*=== Section Title ===*/

.section-title h2 {
    color: #30323c;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact-area .section-title h2 {
    margin-bottom: 55px;
}

/*bike section title*/

.bike-section-title h2 {
    color: #333232;
    font-size: 40px;
    font-family: 'Open Sans', sans-serif;
}

/* === Background Color === */

.bg-theme {
    background-color: #1da1f2;
}

.bg-gray {
    background-color: #f5f7f8;
}

.bg-white {
    background-color: #ffffff;
}

/*=== Background Overlay === */

.overlay-bg,
.overlay-bg-2,
.overlay-bg-3 {
    position: relative;
    overflow: hidden;
}

.overlay-bg::before,
.overlay-bg-2::before,
.overlay-bg-3::before {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.overlay-bg::before {
    background: rgba(0, 0, 0, 0.502) none repeat scroll 0 0;
}

.overlay-bg-2::before {
    background-color: rgba(86, 24, 199, 0.9);
}

.overlay-bg-3::before {
    background-color: rgba(41, 121, 255, 0.9);
}

/*======================================== 2. HEADER AREA STYLES ==========================================*/

/*Logo*/

.logo img {
    height: 80px;      /* sesuaikan tinggi sesuai kebutuhan */
    width: auto;       /* lebar otomatis agar proporsional */
    padding: 20px 0;   /* bisa tetap atau dikurangi sesuai layout */
    transition: 0.3s;
}

.logo {
    transition: 0.3s;
}

.headphone .scroll-header .logo {
    background: #5458f2;
    padding: 2px 15px;
}

/* Naviagaion */

.drone .main-menu-wrap {
    margin-top: 10px;
}

nav.bizes-nav {
    float: left;
    width: 100%;
}

.bizes-nav ul.menu {
    float: right;
}

.bizes-nav ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.bizes-nav .menu li {
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    list-style: none;
    padding: 0 10px;
}

.bizes-nav .menu li a {
    color: #666;
    display: block;
}

.bizes-nav .menu > li {
    float: left;
    padding: 0;
}

.bizes-nav ul.menu > li > a {
    color: #61657a;
    font-size: 14px;
    font-weight: 700;
    opacity: 1;
    padding: 30px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.drone .bizes-nav ul.menu > li > a:hover {
    color: #2260ff;
}

.bike .bizes-nav ul.menu > li > a {
    color: #4f4f4f;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Nunito Sans', sans-serif;
}

.headphone .bizes-nav ul.menu > li > a {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    position: relative;
    padding: 0;
    margin: 29px 15px;
    font-family: 'Poppins', sans-serif;
}

.headphone .bizes-nav ul.menu > li > a:before {
    position: absolute;
    top: 49%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.6);
}

.headphone .bizes-nav ul.menu > li > a:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hoverboard .bizes-nav ul.menu > li > a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Nunito Sans', sans-serif;
    padding: 26px;
}

.hoverboard .bizes-nav ul.menu > li > a:last-child {
    padding-right: 28px;
}

.bizes-nav ul.menu > li > a:last-child {
    padding-right: 0;
}

.bizes-nav .menu > li:last-child > ul ul {
    left: auto;
    right: 100%;
}

.bizes-nav .menu > li ul {
    background-color: #ffffff;
    border-top: 2px solid #1da1f2;
    opacity: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    padding: 15px 0;
    position: absolute;
    -webkit-transform: translate3d(0px, 10px, 0px);
    -moz-transform: translate3d(0px, 10px, 0px);
    -ms-transform: translate3d(0px, 10px, 0px);
    -o-transform: translate3d(0px, 10px, 0px);
    transform: translate3d(0px, 10px, 0px);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 200px;
    z-index: 99;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

.bizes-nav .menu > li > ul li a {
    padding: 5px 12px;
}

.bizes-nav .menu > li > ul li a:hover {
    background-color: #efefef;
    border-radius: 2px;
    color: #1da1f2;
}

.bizes-nav .menu > li > ul > li > ul {
    left: 100%;
    padding: 10px;
    top: 0;
}

.bizes-nav .menu > li:hover > ul {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    visibility: visible;
}

.bizes-nav .menu > li > ul > li:hover > ul {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    visibility: visible;
}

.bike .bizes-nav ul.menu > li > a {
    margin-top: 6px;
}

/* Mobile Menu */

.navigation-area .col-2.col-sm-10.col-md-9,
.navigation-area .col-7.col-sm-10.col-md-10,
.navigation-area .col-2.col-sm-2.col-lg-8 {
    position: static;
}

.mean-container .mean-bar {
    margin-top: 18px;
    position: inherit;
    margin-bottom: 12px;
}

a.meanmenu-reveal {
    background: #007bff;
    margin-top: 25px;
}

.headphone .mean-container .mean-bar {
    margin-top: 25px;
}

.mobile-menu-area .mean-nav {
    left: 0;
    position: absolute;
    top: 32px;
    z-index: 2;
}

.bike .mobile-menu-area .mean-nav {
    top: 76px;
}

.hoverboard .mobile-menu-area .mean-nav {
    top: 52px;
}

.navigation-area {
    width: 100%;
    z-index: 999;
}

/* Fixed Header */

.header-area.scroll-header {
    position: fixed;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease 0s;
}

.scroll-header .navigation-area {
    background-color: #ffffff;
    position: fixed;
    transition: all 0.3s ease 0s;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.05);
}

.scroll-header .logo img {
    padding: 20px 0;
    transition: all 0.3s ease 0s;
}

.headphone .scroll-header .logo img {
    padding: 55px 0;
}

.scroll-header .bizes-nav ul.menu > li > a {
    padding: 25px 30px;
    color: #61657a !important;
}

.headphone .scroll-header .bizes-nav ul.menu > li > a {
    padding: 25px 0px;
}

.scroll-header .bizes-nav ul.menu > li > a:last-child {
    padding-right: 0;
}

.scroll-header a.hero-signup {
    margin-top: 45px;
    border: 1px solid #3cdecb;
}

header.header-area.absulate-header {
    position: absolute;
    width: 100%;
    z-index: 3;
}

/*====== 15. Watch Landing page ======*/

/* Navbar link */
.watch .bizes-nav ul.menu > li > a {
    color: #ffffff; /* putih agar kontras dengan background hero */
    font-size: 16px; /* ukuran sedikit lebih besar untuk readability */
    font-weight: 500; /* lebih tegas */
    font-family: 'Poppins', sans-serif;
    padding: 8px 12px; /* beri ruang klik */
    transition: color 0.3s ease; /* efek halus saat hover */
    display: inline-block; /* memastikan padding bekerja konsisten */
    padding-top: 20px;
}

/* Hover / fokus */
.watch .bizes-nav ul.menu > li > a:hover,
.watch .bizes-nav ul.menu > li > a:focus {
    color: #11100f; /* warna aksen saat hover */
    text-decoration: none; /* hilangkan underline */
}

/* Active / halaman saat ini */
.watch .bizes-nav ul.menu > li.current-menu-item > a {
    color: #11100f; /* highlight link aktif */
    font-weight: 600; /* lebih tegas */
}

/*=== Hero area ===*/
/* Default desktop */
.watch-hero-area {
    background-image: url(../img/eksternal/bg_siqiblat.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* bisa disable di mobile nanti */
    min-height: 600px;
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

/* Mobile & tablet */
@media (max-width: 992px) {
    .watch-hero-area {
        background-attachment: scroll; /* nonaktifkan parallax untuk mobile */
        min-height: 400px;             /* tinggi lebih pas untuk layar kecil */
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .watch-hero-area:after,
    .watch-hero-area:before {
        background-size: contain;      /* scale shape dekoratif */
        background-position: center;   /* pastikan tetap di tengah */
    }
}

@media (max-width: 576px) {
    .watch-hero-area {
        min-height: 300px;
        padding-top: 60px;
        padding-bottom: 20px;
    }
    .watch-hero-area:after,
    .watch-hero-area:before {
        display: none;                 /* hide shape di mobile biar lebih simple */
    }
}


.watch-hero-area:after {
    background-image: url(assets/img/watch/shape2.png);
    background-position: center right;
    background-size: 70% 100%;
    z-index: 1;
}

.watch-hero-area:before {
    background-image: url(assets/img/watch/shape3.png);
    background-position: center left;
    background-size: auto 100%;
    z-index: 1;
}

/* Konten hero */
.watch-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px; /* beri ruang dan responsif */
    margin-bottom: 40px;
    display: inline-block; /* background sesuai teks */
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparan untuk readability */
    border-radius: 10px;
}

/* Judul hero */
.watch-hero-content h1 {
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

/* Deskripsi hero */
.watch-hero-content p {
    font-family: 'Poppins', sans-serif;
    width: 80%;
    margin: auto;
    color: #d4d4d4;
    font-size: 16px;
}
/*=== Watch Section Title ===*/

.watch-section-title h4 {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    color: #202020;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    margin-bottom: 10px; /* beri jarak ke h2 */
}

.watch-section-title h4:after {
    content: "";
    position: absolute;
    left: 100%; /* mulai dari ujung teks */
    top: 50%;    /* tengah vertikal h4 */
    transform: translateY(-50%); /* center garis */
    width: 85px;
    height: 3px;
    background-color: #007bff;
    margin-left: 10px; /* jarak antara teks dan garis */
}

.watch-section-title h2 {
    color: #202020;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 32px;
}

.spe-pro-area-wrap .watch-section-title h2 {
    margin-bottom: 95px;
}

.watch-testimonial-area .watch-section-title h2 {
    margin-bottom: 88px;
}

/*=== Watch About Area === */

.watch-about-content-wrap {
    padding-top: 35px;
    margin-bottom: 40px;
}

.watch-about-content p {
    color: #8b8787;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    width: 85%;
}

.watch-about-img {
    background-color: rgb(54, 76, 89);
    box-shadow: 0px 15px 68px 0px rgba(0, 0, 0, 0.35);
}

.watch-about-img {
    background-color: rgb(54, 76, 89);
    box-shadow: 0px 15px 68px 0px rgba(0, 0, 0, 0.35);
}

.watch-about-img:before {
    position: absolute;
    right: -285px;
    top: 144px;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(assets/img/watch/shape5.png);
    background-repeat: no-repeat;
    z-index: -1;
}

/*=== Features Area ===*/

.watch-features-area {
    padding-top: 107px;
    padding-bottom: 12px;
}

.watch-features-area .watch-section-title {
    margin-bottom: 122px;
}

.single-watch-feature {
    margin-bottom: 90px;
    padding-left: 20px;
}

.single-watch-feature img {
    margin-bottom: 22px;
}

.single-watch-feature h4 {
    font-size: 22px;
    line-height: 35px;
    color: #202020;
    font-weight: 400;
    margin-bottom: 25px;
}

.single-watch-feature p {
    font-size: 16px;
    color: #8b8787;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 15px;
}

.single-watch-feature.one {
    border-bottom: 3px solid #8d21e1;
    box-shadow: 0px 7px 16px 0px rgba(86, 24, 199, 0.03);
}

.single-watch-feature.two {
    border-bottom: 3px solid #50db34;
}

.single-watch-feature.three {
    border-bottom: 3px solid #e51961;
}

.single-watch-feature.four {
    border-bottom: 3px solid #43cddc;
}

.single-watch-feature.five {
    border-bottom: 3px solid #f7b10b;
}

.single-watch-feature.six {
    border-bottom: 3px solid #477afe;
}

/*=== Watch Call to action ===*/

.watch-call-to-action-area {
    background-image: url(assets/img/watch/cta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.watch-cta-content {
    padding: 115px 0;
    text-align: center;
}

.watch-cta-content h2 {
    font-size: 38px;
    line-height: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}

.watch-cta-content p {
    color: #ffffff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 68px;
}

a.watch-cta-btn {
    background-color: #099bf8;
    color: #ffffff;
    padding: 12px 51px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
}

.btn-modern {
    font-size: 15px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin: 8px 8px 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Tombol utama */
.btn-modern-primary {
    background: linear-gradient(135deg, #099bf8, #007bff);
    color: #fff;
    border: none;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Tombol sekunder outline */
.btn-modern-outline {
    background: transparent;
    color: #099bf8;
    border: 2px solid #099bf8;
}

.btn-modern-outline:hover {
    background: #099bf8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsif */
@media (max-width: 576px) {
    .btn-modern {
        width: 100%;
        text-align: center;
    }
}

/*=== Watch Specification area ===*/

.spe-pro-area-wrap {
    background-color: #f8fcff;
    background-image: url(assets/img/watch/shape4.png);
    background-repeat: no-repeat;
    background-position: center right;
}

.watch-spec-area {
    padding-top: 90px;
}

.watch-spec-area .watch-section-title h4:after {
    left: 135px;
}

.watch-single-spec {
    background-color: #ffffff;
    display: inline-flex;
    padding: 40px 45px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 85px;
}
.watch-single-img img{
  border-radius:16px;
  border:4px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease;
}

.watch-spec-img {
    padding-right: 35px;
}

.spec-centent h1 {
    font-size: 45px;
    line-height: 35px;
    color: #5618c7;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.spec-centent h1 span {
    font-size: 25px;
    line-height: 35px;
    font-weight: 400;
}

.spec-centent p {
    color: #8b8787;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.watch-pro-content {
    margin-bottom: 23px;
}

.watch-pro-content h5 {
    color: #202020;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 35px;
    font-weight: 600;
}

.watch-pro-content p {
    color: #8b8787;
    font-size: 16px;
    line-height: 35px;
    font-family: 'Poppins', sans-serif;
}

.watch-product-area {
    padding-bottom: 70px;
}

.watch-pro-img {
    padding-top: 45px;
}

.watch-pro-img img {
    max-width: 110%;
    margin-left: -30px;
}

.watch-testimonial-area {
    padding: 90px 0;
}

/*=== Pricing Area ===*/

.watch-pricing-top-area {
    background-color: #f8fcff;
    padding-top: 88px;
    padding-bottom: 215px;
}

.watch-pricing-area {
    position: relative;
    top: -100px;
}

.watch-price-wrap {
    background-color: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.04);
    text-align: center;
    margin-bottom: 40px;
}

.watch-price-head h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 28px;
    display: inline-block;
    padding: 10px 35px;
    font-family: 'Poppins', sans-serif;
}

.watch-price-head.one h3 {
    background: #5618c7;
}

.watch-price-head.two h3 {
    background: #e51961;
}

.watch-price-head.three h3 {
    background: #60c24c;
}

.watch-price-head p {
    font-size: 16px;
    color: #8b8787;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
}

.watch-price-body img {
    margin-bottom: 28px;
}

.watch-price-body h2 {
    font-size: 38px;
    color: #202020;
    font-weight: 600;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
}

a.watch-price-btn {
    padding: 12px 45px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 35px;
    display: inline-block;
    border: 2px solid #099bf8;
}

a.watch-price-btn.active,
a.watch-price-btn:hover {
    background-color: #099bf8;
    color: #ffffff;
}

.watch-price-footer {
    padding-bottom: 18px;
}

.watch-price-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.watch-price-footer ul li {
    position: relative;
    display: table;
    vertical-align: middle;
    margin: auto;
    padding-bottom: 15px;
    color: #8b8787;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.watch-price-footer ul li:before {
    position: absolute;
    top: 0;
    left: -30px;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/watch/check.png);
    content: "";
    background-repeat: no-repeat;
}

header.header-area.primary-header.absulate-header.scroll-header {
    position: fixed;
}

.dots-img,
.hero-app-img,
.app-welcome-img,
.first-app-img,
.app-best-img,
.music-hero-product,
.cam-hero-img {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob */

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

/* Bob end */

/*=== Preview Css ===*/

.preview-hero-area {
    background-image: url(../img/eksternal/bg_fix.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    padding-top: 30px;
}

.preview-hero-area:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(6, 6, 6, 0.75);
}

a.buy-btn {
    color: #eeeeee;
    background: #03b0d5;
    width: 170px;
    height: 60px;
    text-align: center;
    font-size: 18px;
    line-height: 56px;
    border-radius: 5px;
    font-weight: 600;
}

.porwe-text {
    padding: 350px 0;
}

.porwe-text h2 {
    color: #eeeeee;
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
    margin-bottom: 32px;
}

.porwe-text p {
    color: #eeeeee;
    font-size: 18px;
    line-height: 32px;
}

.prev-body-area {
    background-color: #f5f5f5;
    padding-top: 100px;
}

.prev-body-area img {
    -webkit-box-shadow: 1px 15px 32px 2px rgba(225, 225, 225, 0.78);
    box-shadow: 1px 15px 32px 2px rgba(225, 225, 225, 0.78);
    margin-bottom: 60px;
    position: relative;
    transform: scale(1);
    overflow: hidden;
    transition: 0.3s;
}

.prev-body-area img:hover {
    transform: scale(1.05);
}

.prev-body-area h3 {
    font-size: 25px;
    color: #2b2b2b;
    text-align: center;
    margin-bottom: 90px;
}

.comming {
    position: relative;
}

.commint-content {
    position: absolute;
    top: 20%;
    left: 46%;
    transform: translateX(-50%);
}

.preview-checkout-area,
.prev-freature-area {
    padding: 60px 0;
}

.preview-checkout-area h1,
.prev-freature-area h1 {
    font-size: 35px;
    color: #2b2b2b;
}

.preview-checkout-area p,
.prev-freature-area p {
    font-size: 18px;
    color: #565656;
}

.features-content-area {
    padding-bottom: 60px;
}

.prev-freure-single {
    background-color: #f7f7ff;
    border-radius: 10px;
    position: relative;
    padding-left: 190px;
    margin-bottom: 40px;
    height: 200px;
}

.prev-freure-img {
    position: absolute;
    left: 30px;
    background-color: #ffffff;
    width: 130px;
    height: 150px;
    border-radius: 10px;
    top: 25px;
}

.prev-freure-img img {
    margin-top: 31px;
    margin-left: 20px;
}

.prev-freure-content h4 {
    color: #2d2d2d;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.prev-freure-content p {
    font-size: 15px;
    letter-spacing: -1px;
    font-weight: 600;
}

.footer {
    background: #212529;
    padding: 40px 0;
}
.footer h2 {
    font-size: 15px;
    font-weight: 500;
    margin: 20px 0 0;
    color: #fff;
    font-family: 'Rubik', sans-serif !important;
}