/*

aPPa

*/
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700|Playfair+Display');
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");
body {
  margin: auto;
  font-family: "Source Sans 3", sans-serif;
  overflow: auto;
  background: linear-gradient(315deg, rgb(70, 5, 183) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgb(111, 110, 110) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}




/* NAV BAR
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* basic menu styles */
.block-menu-container {
  text-align: center; /* Center align the block-menu */
}

.block-menu {
  display: inline-block;
  background: #0307f962;
}

.block-menu li {
  display: inline-block;
}

.block-menu li a {
  color: #080808;
  display: block;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  overflow: visible;
  line-height: 20px;
  font-size: 24px;
  padding: 15px 10px;
}

/* animation domination */
.three-d {
	perspective: 200px;
	transition: all .07s linear;
	position: relative;
	cursor: pointer;
}
	/* complete the animation! */
	.three-d:hover .three-d-box, 
	.three-d:focus .three-d-box {
		transform: translateZ(-25px) rotateX(90deg);
	}

.three-d-box {
	transition: all .3s ease-out;
	transform: translatez(-25px);
	transform-style: preserve-3d;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 50%;
	height: 50%;
}

/* 
	put the "front" and "back" elements into place with CSS transforms, 
	specifically translation and translatez
*/
.front {
	transform: rotatex(0deg) translatez(25px);
}

.back {
	transform: rotatex(-90deg) translatez(25px);
	color: #ffe7c4;
}

.front, .back {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(0, 0, 0);
	padding: 15px 10px;
	color: rgb(11, 165, 242);
	pointer-events: none;
	box-sizing: border-box;
}
/* MAIN STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
  background-size: cover;
  background-position: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 0 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
  height: 6rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.html{
    font-size: 62.5%;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #1f1e1ef1; /* navbar poz*/
    position: fixed;
    width: 100%;
    background: #06060683;
    color: #000;
    opacity: 0.95;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
  .logo {
    width: 50px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}


.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a{
    color: #000000;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover{
    color: #f2f2f5;
}

@media (max-width: 768px){
    .navbar{
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #2020208b;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
        padding-top: 100px;
        background: #000000;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px #040404b9;
        overflow: scroll;
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: normal;
    }

    .logo {
      position: absolute;
      top: 10px;
      left: 15px; 
      width: 50px; 
      height: 50px; 
      background-image: url('/media/logo.png'); 
      background-size: cover; 
      background-repeat: no-repeat; 
  }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}
/* FOOTER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: fixed;
  right: 0;
  bottom: 60px;
  display: flex;
  align-items: center;
  padding: 5px;
  color: var(--black);
}

.page-footer a {
  display: flex;
  margin-left: 4px;
}


/*---------------------------------------
  Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0px;
}

h1 {
  color: #000000;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: normal;
}

.support-cus, p {

  font-size: 20px;

}

h2 {
  color: #0b0239;
  font-size: 35px;
  line-height: normal;
}

.smooth-image {
  image-rendering: optimizeQuality; /* Standard */
  -webkit-font-smoothing: antialiased; /* For WebKit-based browsers */
  -moz-osx-font-smoothing: black; /* For Firefox on macOS */
}

h4 {
  color: #0b0b0b;
  font-size: 20px;
  font-weight: normal;
}

p {
  color: #080808;
  font-size: 20px;
  font-weight: normal;
  line-height: 25px;
  letter-spacing: 0.2px;
}

strong, span {
  color: #0c0404;
  font-weight: bold;
}



/*---------------------------------------
  Buttons               
-----------------------------------------*/

.arrow-btn i {
  background: #000000;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-top: 32px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.arrow-btn i:hover {
  background: #0c0c0c;
}



/*---------------------------------------
  General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0e0d0d;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #000000;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-title {
  margin: 0;
  padding-bottom: 32px;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

#about, #work,
#contact, footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}


/*---------------------------------------
  Pre loader section              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff00;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #000000;
  border-top-color: #f9f9f9;
  animation: spinner .9s linear infinite;
}

/*---------------------------------------
  Home section              
-----------------------------------------*/

#home {
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
   align-items: center;
  height: 75vh;
  text-align: center;
  position: relative;
  margin: 82px 12px 0 12px;
}

.home-wrapper {
  background: rgba(8, 8, 8, 0); /* kamionhead */
}


/*---------------------------------------
  About section              
-----------------------------------------*/

#about {
  padding-top: 100px;
}

#about .col-md-4 img {
  border-radius: 5px;
  margin-bottom: 28px;
}

#about .col-md-4 a {
  background: #c306067e;/*--linkbox--*/
  border-radius: 8px;
  color: #000000;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 40px;
}

#about .col-md-4 a:hover {
  background: #000000a1;   /*--link hower--*/
  color: #ffffff;
}

#about .about-thumb {
  background: #f5f7f789; /*--o nama box--*/
  border-radius: 5px;
  padding: 42px 32px;
}


/*---------------------------------------
  Work section              
-----------------------------------------*/

#work {
  background: #ffffff8d;
}

#work .work-thumb {
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#work .work-thumb:hover {
  background: #ffffff;
  box-shadow: 0px 16px 22px 0px rgba(15, 15, 15, 0.474);
  top: -5px;
}

#work .work-thumb img {
  border-radius: 5px;
  cursor: crosshair;
}

/*---------------------------------------
  Contact section              
-----------------------------------------*/

.form-container {
  width: 50%; /* Adjust the width as needed */
  margin: 0 auto; /* Center the container horizontally */
}

#contact .form-control {
  border: none;
  border-bottom: 1px solid #1717188b;
  border-radius: 5px;
  box-shadow: none;
  font-size: 15px;
  margin-top: 5px; /* Decreased margin */
  margin-bottom: 5px; /* Decreased margin */
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#contact input {
  height: 25px; /* Decreased height */
}

#contact textarea {
  height: 100px; /* Adjusted height for textarea */
}

#contact button#submit {
  background: #0227f982;
  border: none;
  border-radius: 40px;
  color: #0d0d0d;
  font-weight: normal;
  height: 25px; /* Decreased height */
  padding-bottom: 5px; /* Adjusted padding */
  margin-top: 10px; /* Decreased margin */
}

#contact button#submit:hover {
  background: #3d3d3f;
  color: #ffffff;
}

/*---------------------------------------
  Footer section              
-----------------------------------------*/

footer {
  background: #4c4c4c8d;
}

footer h4 {
  color: #040404f7;
}

footer a {
  color: #1503418d;
}

footer a:hover {
  color: #110e0e9f;
}

footer .col-md-4 .support-cus:last-child {
  padding-top: 12px;
}

footer .col-md-4 .support-cus p {
  line-height: 5px;
}
.image-class {
  width: 40%; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  /* Add any additional styles you need */
}
footer .newsletter .form-control {
  box-shadow: none;
  transition: all 0.4s ease-in-out;
  margin-top: 16px;
  margin-bottom: 2px;
}

footer .newsletter .form-control:focus {
  border-bottom-color: #f2f2f2;
}

footer .newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0px;
}

footer .newsletter button {
  background: #f9f9f9;
  border: none;
  border-radius: 50px;
  font-weight: normal;
  height: 50px;
}

footer .newsletter button:hover {
  background: #d7b065;
  color: #ffffff;
}

footer .dash-line {
  border-top: 1px solid #292929;
  margin-top: 62px;
  padding-bottom: 52px;
  position: relative;
}


/*---------------------------------------
  Social icon             
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  background: #0f014f90;
  border-radius: 100%;
  color: #f7f7f8;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  margin: 0px 6px 10px 6px;
}

.social-icon li a:hover {
  background: #413f3f;
  color: #ffffff;
  transform: scale(1.1);
}

/*---------------------------------------
  Mobile Responsive styles              
-----------------------------------------*/

@media (max-width: 980px) {

 h1 {font-size: 30px;}

 #about .about-thumb {
  padding-left: 0px;
 }

 #work .work-thumb {
  margin-top: 25px;
 }

}

@media (max-width: 768px) {

  h1 {
    font-size: 17px;
  }

  h2 {font-size: 15px;}

  footer .col-md-4 {
    margin-bottom: 15px;
  }


}

@media (max-width: 580px) {

  h3 {
    font-size: 14px;
    letter-spacing: 4px;
  }

  #about .about-thumb {
    padding: 22px 12px;
    margin-top: 0px;
  }

}

@media (max-width: 360px) {
  #home {
    height: 85vh;
  } 

}
.popup {
  display: none;
  position: fixed;
  padding: 10px;
  width: 280px;
  left: 50%;
  margin-left: -150px;
  height: 180px;
  top: 50%;
  margin-top: -100px;
  background: #FFF;
  border: 3px solid #040404;
  z-index: 20;
}

#popup:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: -2;
}

#popup:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

/* Styling buttons & webpage */

body {
  background: rgb(#d8d3d390);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
  text-align: center;
}

button {
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.377);
    border: 3px solid #121212;
    color: #403f3f;
    font-size: 15px;
    padding: 10px 20px;
    
}

button:hover {
    background-color: #f0494900;
    color: #8587ed;
    border: 3px solid #f0494900;
    transition: all 0.3s ease 0s;
}

p {
	margin: 1em 0;
  font-size: 20px;
}

.popup {
  display: none;
  position: fixed;
  padding: 10px;
  width: 60%;
  left: 30%;
  margin-left: -130px;
  height:70%;
  top: 30%;
  margin-top: -200x;
  background: #67a7ed7d;
  border: 3px solid #121111a2;
  z-index: 20;
}


#popupk:after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: -2;
}

#popupk:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFF;
  z-index: -1;
}

/* Styling buttons & webpage */

body {
  background: offwhite;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
  text-align: center;
}

button {
    margin-top: 50px;
    background-color: rgba(255,255,255,0.3);
    border: 3px solid #0a0a0a;
    color: #0e0e0e;
    font-size: 25px;
    padding: 10px 20px;
    
}

button:hover {
    background-color: #0f0f0f;
    color: #FFF;
    border: 3px solid #0d0d0d;
    transition: all 0.3s ease 0s;
}

p {
	margin: 1em 0;
  font-size: 15px;
}
.content {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
  line-height: 1.6;
  padding: 20px;
  background-color: #0505052b;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.content p {
  margin-bottom: 20px;
}

.content b {
  color: #000000; /* Blue color */
}
.content.copyright-tex {
  font-family: "Source Sans 3", sans-serif;
  font-size: 10px

  
}