@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;500;600&display=swap');

:root {
    --biru: hsl(181, 98%, 51%);
    --biru2: hsl(219, 48%, 47%);
    --light: hsla(0, 0%, 0%, 0.05);
    --dark: hsla(0, 0%, 10%, 0.9);
    --text: hsl(0, 0%, 60%);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Teko', sans-serif;
    /* color: blue; */
}

body {
    overflow-x: hidden;
    background: var(--light);
}

/* set */
h1.title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: .5rem;
    padding: 50px;
}

h1.title::after {
    content: '';
    display: block;
    width: 100px;
    border: 2px solid var(--biru);
    margin: auto;
}

.biru {
    color: var(--biru);
}

.btn-biru {
    background: var(--biru);
}

.btn-biru:hover {
    background: var(--biru2);
}

/* navbar */
.navbar {
    padding: 0;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.8rem;
}

.navbar-nav {
    font-size: 1.2rem;
}

.navbar-nav li {
    padding: 5px 10px;
}

.navbar-nav li:hover {
    background: var(--biru);
}


/* swiper */
.banner {
    padding-top: 54px;
    width: 100%;
}


.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--biru);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.banner .swiper-slide h3 {
    padding: 5%;
}

.banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* harga */

.harga s {
    font-size: .8rem;
}

/* Service */
#service img {
    transition: all .5s ease;
}

#service img:hover {
    transform: scale(1.1);
}


/* Testimoni */

.testimoni {
    width: 100%;
    /* height: 200px; */
    margin-bottom: 100px;
}

.testimoni .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--biru2);
}

.swiper-pagination-bullet-active {
    background: var(--biru2);
}



/* footer */
footer {
    position: relative;
    padding-top: 50px;
    background: var(--biru);
    font-size: 1.2rem;
}

.footer-bg {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

footer .merek h1 {
    font-size: 3rem;
    letter-spacing: .5rem;
    font-weight: 600;
}

footer .merek img {
    border-radius: 50%;
    background: white;
    outline: 5px double var(--biru2);
}

footer .merek i {
    font-size: 2rem;
    margin: 10px;
}

footer h3 {
    font-size: 2.5rem;
    padding: 20px 0;
}



footer .link ul {
    padding: 0;
}

footer .link li {
    list-style: none;
}

footer a {
    /* text-decoration: none; */
    color: black;
}

footer .copyright div {
    border-top: 2px solid var(--biru2);
    padding: 20px;
}

.setting {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 100;
}

.setting i {
    font-size: 1.5rem;
    /* color: var(--biru); */
    margin: 10px;
    background: var(--biru2);
    color: var(--biru);
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
}

.set {
    display: none;
    background: hsl(0, 0%, 50%);
    padding: 20px;
    border: 3px solid var(--biru1);
    backdrop-filter: blur(10px);
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


body#dark {
    background: var(--dark);
    color: var(--text);
}

body#dark nav {
    color: var(--text);
}

body#dark .banner .swiper-slide {
    background: var(--dark);
}

body#dark .testimoni .swiper-slide {
    background: var(--dark);
}

body#dark .card {
    background: var(--dark);
    color: var(--text);
    ;
}

body#dark footer {
    background: var(--dark);
}

body#dark footer a {
    color: white;
}

body#dark footer .copyright div {
    border-top: 2px solid var(--dark);
}

body#dark .set {
    color: white;
}

body#dark footer .merek img {
    background: black;
}


.infinity div {
    position: absolute;
    z-index: -1;
    background: radial-gradient(circle, var(--biru), var(--light) 100%);
    border-radius: 50%;
    /* filter: blur(5px); */
}

body#dark .infinity div {
    background: radial-gradient(circle, var(--biru), var(--dark) 100%);
}