/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Play&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Play&family=Poppins&family=Unica+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Send+Flowers&display=swap');

/* Global */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background-color: rgb(7, 6, 34); */
    background-color: rgb(11, 7, 99);
}

body h2 {
    color: rgb(240, 189, 123);
}

body .services hr {
    border: 0;
    height: 30px;
    border-style: solid;
    border-color: #aca6a6;
    border-width: 5px 0 0 0;
    border-radius: 20px;
}

body .services hr::before {
    display: block;
    content: "";
    height: 30px;
    margin-top: -30px;
    border-style: solid;
    border-color: #aca6a6;
    border-width: 5px 0 0 0;
    border-radius: 20px;
}

body .project hr {
    border: 0;
    height: 4px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
}

body .certificate-gallery hr {
    border: 0;
    height: 4px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s;
    border-radius: 50px 50px 50px 50px;
}

.navbar.show {
    background-color: rgba(28, 23, 117, 0.503);
    backdrop-filter: blur(30px);
}

.navbar.scrolled {
    background-color: rgba(28, 23, 117, 0.503);
    border-radius: 50px 50px 50px 50px;
    backdrop-filter: blur(30px);
}

/* Animation style */
.navbar-scroll-animation {
    transition: background-color 0.5s;
}

.navbar .navbar-toggler {
    background-color: white;
}

.navbar .navbar-toggler-icon {
    font-size: 12px; 
}

.navbar .navbar-brand {
    font-family: 'Send Flowers', cursive;
    color: rgb(227, 227, 227);
    font-size: 2.5em;
}

.navbar ul li a {
    font-size: 1.2em;
    color: rgb(227, 227, 227);
    transition: .3s all;
}

.navbar ul li:hover a{
    color: rgb(240, 189, 123);
    transform: scale(1.1);
}

.navbar a.nav-link.active {
    color: rgb(240, 189, 123) !important;
    transform: scale(1.1);
}

/* Preloader */
section.preloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgb(7, 6, 34);
	pointer-events: none;
	animation: fadeout .7s linear forwards;
	animation-delay: 7s;
    z-index: 999999999;
}

@keyframes fadeout{
	0%{
		opacity: 1;
	}100%{
		opacity: 0;
	}
}

.loader{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: rgb(11, 7, 99);
}

.count{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4vw;
	color: #fff;
	font-weight: bold;
	mix-blend-mode: difference;
	text-align: center;
}

.welcome{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
}

/* Loader Page */
.loader-page {
    display: none;
}

.loader-page .loading {
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    position: fixed;
    background-color: #0000009a;
}

/* Acnchor Top */
.anchor-top {
    display: none;
    font-size: 1.5em;
    background-color: white;
    color: rgb(11, 7, 99);
    position: fixed;
    z-index: 999;
    bottom: 0;
    right: 0;
    border: 3px solid white;
    border-radius: 10px;
    transition: .3s all;
    opacity: 0;
}

.anchor-top:hover {
    transform: scale(.9);
    background-color: rgba(7, 6, 34, 0.405);
    color: white;
    border: 3px solid white;
}

.anchor-top.show {
    animation: fadeIn .5s ease-in forwards;
}

.anchor-top.hide {
    animation: fadeOut .5s ease-out forwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

@keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
}

/* Social media Start */
.bg-social-media {
    position: fixed;
    z-index: 9999999;
    width: 200px;
    height: 100vh;
    background-color: aqua;
    transform: translateX(-200px);
}

.bg-social-media .social-media-start {
    width: 200px;
    background: transparent;
    position: relative;
}

.bg-social-media .social-media-start li {
    background-color: white;
    text-decoration: none;
    transform: translateX(35px);
    list-style: none;
    box-shadow: 0 0 10px 2px rgba(23, 23, 23, 0.701);
    border-radius: 5px;
    transition: .3s all;
}

.bg-social-media .social-media-start li i {
    font-size: 1.3em;
}

.bg-social-media .social-media-start li:hover {
    transform: translateX(150px);
}

.bg-social-media .social-media-start li a {
    text-decoration: none;
}

.bg-social-media .animated.fadeOut {
    opacity: 0;
    transition: opacity .3s ease-in;
}

.bg-social-media .animated.fadeIn {
    opacity: 1;
    transition: opacity .3s ease-in;
}

.bg-social-media a {
    font-weight: bold;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animated.fadeIn {
    animation: fadeInAnimation .3s ease-in;
}


/* Off Canvas */
.offcanvas {
    background-color: rgba(7, 6, 34, 0.186);
    color: white;
    backdrop-filter: blur(30px);
}

.offcanvas .btn-close {
    background-color: white;
    width: 15px;
    padding: 15px;
}

.offcanvas.show {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1050;
    visibility: visible;
    overflow-y: auto;
    transition: 1s all;
}
  
.offcanvas.show .offcanvas-header {
    justify-content: flex-start;
}

.offcanvas form input {
    transition: .3s all;
}

.offcanvas form input:hover {
    background-color: rgba(7, 6, 34, 0.405);
    color: white;
}

.offcanvas form textarea {
    transition: .3s all;
}

.offcanvas form textarea:hover {
    background-color: rgba(7, 6, 34, 0.405);
    color: white;
}

.offcanvas form input::placeholder {
    color: #bcbcbc;
}

.offcanvas form textarea::placeholder {
    color: #bcbcbc;
}
  
.offcanvas.show .offcanvas-header .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    margin: 10px;
}

.offcanvas .offcanvas-body form .btn {
    transition: .3s all;
    border: none;
}

.offcanvas .offcanvas-body form .btn:hover {
    transform: scale(1.1);
}

.offcanvas .row {
    height: 90%;
}

/* Jumbotron */
.jumbotron {
    padding-top: 80px;
    height: 100vh;
    background-image: linear-gradient(rgb(7, 6, 34), rgb(11, 7, 99));
    color: rgb(227, 227, 227);
}

.jumbotron .enkapsulasi {
    width: 100%;
}

.jumbotron h1 {
    font-size: 4.7em;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    color: rgba(225,225,225, .01);
    background-image: url("../img/bg-text.jpg");
    background-repeat: repeat;
    background-size: 1200px;
    -webkit-background-clip: text;
    animation: animate 15s ease-in-out infinite;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

@keyframes animate {
    0%, 100% {
      background-position: left top;
    }
    25%{
      background-position: right bottom;
     }
    50% {
      background-position: left bottom;
    }
    75% {
      background-position: right top;
    }   
}

.jumbotron h2 {
    font-size: 3em;
    font-weight: bold;
}

.jumbotron .download a {
    color: rgb(11, 7, 99);
    font-weight: bold;
    background-color: rgb(240, 189, 123);
    border-radius: 20px;
    border: 3px solid rgb(240, 189, 123);
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.342);
    width: 13%;
    transition: .3s all;
}

.jumbotron .download a:hover {
    background-color: rgb(11, 7, 99);
    box-shadow: 0 0 30px 2px rgb(240, 189, 123);
    color: rgb(240, 189, 123);
}

.jumbotron .download a i {
    transition: .3s all;
}

.jumbotron .download a:hover i {
    transform: translateX(10px);
}

/* about */
.about {
    padding: 120px 0;
    background-color: rgb(28, 23, 117);
    color: rgb(227, 227, 227);
    box-shadow: 0 0 15px 2px rgba(18, 18, 18, 0.238);
    border-radius: 30px;
    margin: 0 20px;
}

.about .profile {
    animation: slideIn 1s ease-in-out infinite alternate-reverse;
    border-radius: 50px 200px 50px 200px; 
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);  */
}

.about .kotak-lonjong {
    width: 70%;
    height: 70px;
    border-radius: 50%;
    background-color: #1e1e1e66;
    filter: blur(6px);
    padding: 10px;
    animation: scale 1s ease-in-out infinite alternate-reverse;
}

@keyframes scale {
    0% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}
  

@keyframes slideIn {
    0% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0);
    }
}

.about h2 {
    font-size: 3em;
    font-weight: bold;
}

.about .small {
    font-size: 1em;
}

.about p {
    font-size: 1.3em;
}

.about h5 {
    color: rgb(240, 189, 123);
}

.about h3 {
    font-family: 'Unica One', cursive;
    font-size: 2.3em;
}

.about .col-md-4 .card {
    background-color: rgb(227, 227, 227);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.382);
    color: rgb(11, 7, 99);
    border-radius: 10px;
}

.about .br {
    border-left: 3px solid rgb(240, 189, 123);
    padding: 0 30px;
}

/* Services */
.services {
    padding: 120px 0;
    background-color: rgb(28, 23, 117);
    color: rgb(227, 227, 227);
    box-shadow: 0 0 15px 2px rgba(18, 18, 18, 0.238);
    border-radius: 30px;
    margin: 0 20px;
}

.services h2 {
    font-size: 3em;
    font-weight: bold;
}

.services h3 {
    color: rgb(240, 189, 123);
    font-weight: bold;
}

.services p {
    font-size: 1.3em;
}

.services .small {
    font-size: 1em;
}

.services .list-services p {
    font-size: 1.1em;
}

/* Project */
.project {
    padding: 120px 0;
    background-color: rgb(28, 23, 117);
    color: rgb(227, 227, 227);
    box-shadow: 0 0 15px 2px rgba(18, 18, 18, 0.238);
    border-radius: 30px;
    margin: 0 20px;
}

.project h2 {
    font-size: 3em;
    font-weight: bold;
    width: 20%;
}

.project img {
    border-radius: 30px;
    padding: 10px;
    transition: .5s all;
}

.project img:hover {
    transform: translateY(-10px);
    filter: sepia(100%);
}

.project .project-end {
    display: flex;
    justify-content: end;
}

.project .project-start {
    display: flex;
    justify-content: start;
}

.project .btn {
    background-color: rgb(240, 189, 123);
    color: rgb(28, 23, 117);
    border: 3px solid rgb(240, 189, 123);
    box-shadow: 2px 2px 10px 3px rgba(0, 0, 0, 0.304);
    font-weight: bold;
    width: 160px;
    transition: .3s all;
}

.project .btn:hover {
    background-color: rgb(28, 23, 117);
    color: rgb(240, 189, 123);
    transform: translateY(-4px);
}

.project span {
    font-size: 6em;
    padding: 0 15px;
}

/* Certificate */
.certificate-gallery {
    padding: 120px 0;
    background-color: rgb(28, 23, 117);
    color: rgb(240, 189, 123);
    box-shadow: 0 0 15px 2px rgba(18, 18, 18, 0.238);
    border-radius: 30px;
    margin: 0 20px;
}

.certificate-gallery .card {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.382);
}

.certificate-gallery span {
    background-image: linear-gradient(rgba(0, 0, 0, 0.51),rgb(9, 6, 75));
    transform: translateY(540px);
    transition: .3s all;
}

.certificate-gallery .card:hover span {
    opacity: 1;
    transform: translateY(0);
}

.certificate-gallery span a {
    color: white;
    font-size: 4em;
    transition: .3s all;
}

.certificate-gallery span a:hover {
    color: rgb(240, 189, 123);
    transform: scale(.9);
}

.certificate-gallery h2 {
    font-size: 3em;
    font-weight: bold;
    width: 40%;
}

/* Footer */
.footer {
    background-image: linear-gradient(rgb(11, 7, 99),rgb(7, 6, 34));
    color: rgb(227, 227, 227);
}

.footer a {
    text-decoration: none;
    color: rgb(227, 227, 227);
}

.footer .col-lg-2 a {
    transition: .2s all;
}

.footer .col-lg-2 p a:hover {
    color: rgb(240, 189, 123);
    transform: scale(1.1);
}

.footer .rows {
    background-color: rgb(28, 23, 117);
    border-radius: 30px;
    transition: .3s all;
}

.footer .rows:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 10px 2px rgba(4, 4, 14, 0.586);
    background-image: linear-gradient(rgb(28, 23, 117),rgb(51, 48, 111));
}

.footer .rows .link a {
    font-size: 2em;
}

/* Responsive Breakpoint */
/* Mobile */
@media (max-width: 576px) {

    .navbar ul li a {
        font-size: 1em;
        color: rgb(227, 227, 227);
        transition: .3s all;
    }

    .jumbotron {
        height: 60vh;
    }

    .count{
        font-size: 15vw;
    }

    .navbar {
        padding: 10px;
    }

    .navbar .navbar-brand {
        font-size: 1.7em;
    }

    .jumbotron h1 {
        font-size: 2em;
    }

    .jumbotron h2 {
        padding: 0 30px;
    }

    .jumbotron h1 i {
        display: none;
    }

    .jumbotron .download a {
        width: 60%;
    }

    .jumbotron h2 {
        font-size: 1.4em;
        font-weight: bold;
    }

    .about {
        padding: 120px 15px;
    }

    .about .profile {
        border-radius: 50px 130px 50px 130px;
    }

    .about .kotak-lonjong {
        width: 70%;
        height: 55px;
    }

    .about .br {
        border-left: none;
        padding: 0 15px;
    }

    .about h2 {
        font-size: 1.7em;
    }

    .about h5 {
        font-size: 1.3em
    }

    .about h3 {
        font-size: 1.9em;
    }

    .about h4 {
        font-size: 1.5;
    }

    .about p {
        font-size: 1.1em;
    }

    .about .profile {
        width: 350px; 
    }

    .services {
        padding: 120px 15px;
    }

    .services h2 {
        font-size: 1.7em;
    }

    .services p {
        font-size: 1.1em;
    }

    .services img {
        width: 100px;
    }

    .services .col-md-9 {
        text-align: center;
        margin-top: 30px;
    }

    .services .col-md-3 {
        display: flex;
        justify-content: center;
    }

    .project {
        padding: 120px 15px;
    }

    .project img {
        border-radius: 15px;
    }

    .project h2 {
        font-size: 1.7em;
        font-weight: bold;
        width: 40%;
    }

    .project .project-end {
        display: flex;
        justify-content: center;
    }
    
    .project .project-start {
        display: flex;
        justify-content: center;
    }

    .project .btn {       
        width: 160px;
    }

    .project span {
        font-size: 4em;
    }

    .certificate-gallery {
        padding: 120px 15px;
    }

    .certificate-gallery h2 {
        font-size: 1.7em;
        font-weight: bold;
        width: 80%;
    }

    .certificate-gallery span a {
        font-size: 3em;
    }

    .footer .col-lg-5 p {
        text-align: center;
    }

    .footer .rows {
        margin: 0 30px;
    }

}

/* Tablet */
@media (min-width: 576px) and (max-width: 992px) {

    .count{
        font-size: 15vw;
    }
    
    .jumbotron {
        height: 80vh;
    }

    .jumbotron h1 {
        font-size: 3em;
    }

    .jumbotron h2 {
        font-size: 1.8em;
    }

    .jumbotron .download a {
        width: 30%;
    }

    .about .br {
        border-left: none;
        padding: 0 15px;
    }

    .about .kotak-lonjong {
        width: 40%;
        height: 60px;
    }

    .about .profile {
        width: 350px; 
    }

    .services img {
        width: 130px;
    }

    .project h2 {
        font-size: 2em;
        font-weight: bold;
        width: 30%;
    }

    .project .btn {       
        width: 165px;
    }

    .certificate-gallery h2 {
        font-size: 2em;
        font-weight: bold;
        width: 60%;
    }

    .footer .col-lg-5 p {
        text-align: center;
    }
}





