  html,
  body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Rubik", sans-serif;
  }

  p{
    font-size: 16px;
  }

  .text-header{
    /* font-size: 52px; */
    font-weight: bold;
  }
  /*-- Inspiration taken from abdo steif -->
  /* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/
  
  /* Navbar section */
  
  .nav {
      width: 100%;
      height: 100px;
      position: fixed;
      line-height: 100px;
      text-align: center;
      background-color: rgb(255, 255, 255);
  }
  
  .nav div.logo {
      float: left;
      width: auto;
      height: auto;
      padding-left: 3rem;
  }
  
  .nav div.logo a {
      text-decoration: none;
      color: #335557;
      font-size: 2.5rem;
  }
  
  .nav div.logo a:hover {
      color: #E1B47B;
  }
  
  .nav div.main_list {
      height: 100px;
      float: right;
  }
  
  .nav div.main_list ul {
      width: 100%;
      height: 100px;
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
  }
  
  .nav div.main_list ul li {
      width: auto;
      height: 100px;
      padding: 0;
      padding-right: 1rem;
  }
  
  .nav div.main_list ul li a {
      text-decoration: none;
      color: #335557;
      line-height: 100px;
      font-weight: 700;
  }
  
  .nav div.main_list ul li a:hover {
    color: #ffffff;
    background-color: #335557;
    padding: 5px;
    border-radius: 10px;
  }

  .nav div.main_list ul li a.active {
    color: #E1B47B;
    text-shadow: none;
  }
  
  
  /* Home section */
  
  .home {
      width: 100%;
      height: 100vh;
      background-position: center top;
      background-size:cover;
  }
  
  .navTrigger {
      display: none;
  }
  
  .nav {

      -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease;
  }
  
  
  /* Media qurey section */
  
  @media screen and (min-width: 768px) and (max-width: 1024px) {
      /* .container {
          margin: 100px;
      } */
  }
  
  @media screen and (max-width:768px) {

      .nav {
        padding-top: 0;
        padding-bottom: 0;
      }
      .navTrigger {
          display: block;
      }
      .nav div.logo {
          /* margin-left: 15px; */
        padding-left: 15px;
      }
      .nav div.main_list {
          width: 100%;
          height: 0;
          overflow: hidden;
      }
      .nav div.show_list {
          height: auto;
          display: none;
      }
      .nav div.main_list ul {
          flex-direction: column;
          width: 100%;
          height: 100vh;
          right: 0;
          left: 0;
          bottom: 0;
          /* background-color: #111; */
          background: #FFF6E3;
          /*same background color of navbar*/
          background-position: center top;
      }
      .nav div.main_list ul li {
          width: 100%;
          text-align: right;
      }
      .nav div.main_list ul li a {
          text-align: center;
          width: 100%;
          /* font-size: 3rem; */
          padding: 20px;
      }

      .nav div.media_button {
          display: block;
      }
  }
  
  
  /* Animation */
  /* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */
  
  .navTrigger {
      cursor: pointer;
      width: 30px;
      height: 25px;
      margin: auto;
      position: absolute;
      right: 30px;
      top: 0;
      bottom: 0;
  }
  
  .navTrigger i {
      background-color: #335557;
      border-radius: 2px;
      content: '';
      display: block;
      width: 100%;
      height: 4px;
  }
  
  .navTrigger i:nth-child(1) {
      -webkit-animation: outT 0.8s backwards;
      animation: outT 0.8s backwards;
      -webkit-animation-direction: reverse;
      animation-direction: reverse;
  }
  
  .navTrigger i:nth-child(2) {
      margin: 5px 0;
      -webkit-animation: outM 0.8s backwards;
      animation: outM 0.8s backwards;
      -webkit-animation-direction: reverse;
      animation-direction: reverse;
  }
  
  .navTrigger i:nth-child(3) {
      -webkit-animation: outBtm 0.8s backwards;
      animation: outBtm 0.8s backwards;
      -webkit-animation-direction: reverse;
      animation-direction: reverse;
  }
  
  .navTrigger.active i:nth-child(1) {
      -webkit-animation: inT 0.8s forwards;
      animation: inT 0.8s forwards;
  }
  
  .navTrigger.active i:nth-child(2) {
      -webkit-animation: inM 0.8s forwards;
      animation: inM 0.8s forwards;
  }
  
  .navTrigger.active i:nth-child(3) {
      -webkit-animation: inBtm 0.8s forwards;
      animation: inBtm 0.8s forwards;
  }
  
  @-webkit-keyframes inM {
      50% {
          -webkit-transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(45deg);
      }
  }
  
  @keyframes inM {
      50% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(45deg);
      }
  }
  
  @-webkit-keyframes outM {
      50% {
          -webkit-transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(45deg);
      }
  }
  
  @keyframes outM {
      50% {
          transform: rotate(0deg);
      }
      100% {
          transform: rotate(45deg);
      }
  }
  
  @-webkit-keyframes inT {
      0% {
          -webkit-transform: translateY(0px) rotate(0deg);
      }
      50% {
          -webkit-transform: translateY(9px) rotate(0deg);
      }
      100% {
          -webkit-transform: translateY(9px) rotate(135deg);
      }
  }
  
  @keyframes inT {
      0% {
          transform: translateY(0px) rotate(0deg);
      }
      50% {
          transform: translateY(9px) rotate(0deg);
      }
      100% {
          transform: translateY(9px) rotate(135deg);
      }
  }
  
  @-webkit-keyframes outT {
      0% {
          -webkit-transform: translateY(0px) rotate(0deg);
      }
      50% {
          -webkit-transform: translateY(9px) rotate(0deg);
      }
      100% {
          -webkit-transform: translateY(9px) rotate(135deg);
      }
  }
  
  @keyframes outT {
      0% {
          transform: translateY(0px) rotate(0deg);
      }
      50% {
          transform: translateY(9px) rotate(0deg);
      }
      100% {
          transform: translateY(9px) rotate(135deg);
      }
  }
  
  @-webkit-keyframes inBtm {
      0% {
          -webkit-transform: translateY(0px) rotate(0deg);
      }
      50% {
          -webkit-transform: translateY(-9px) rotate(0deg);
      }
      100% {
          -webkit-transform: translateY(-9px) rotate(135deg);
      }
  }
  
  @keyframes inBtm {
      0% {
          transform: translateY(0px) rotate(0deg);
      }
      50% {
          transform: translateY(-9px) rotate(0deg);
      }
      100% {
          transform: translateY(-9px) rotate(135deg);
      }
  }
  
  @-webkit-keyframes outBtm {
      0% {
          -webkit-transform: translateY(0px) rotate(0deg);
      }
      50% {
          -webkit-transform: translateY(-9px) rotate(0deg);
      }
      100% {
          -webkit-transform: translateY(-9px) rotate(135deg);
      }
  }
  
  @keyframes outBtm {
      0% {
          transform: translateY(0px) rotate(0deg);
      }
      50% {
          transform: translateY(-9px) rotate(0deg);
      }
      100% {
          transform: translateY(-9px) rotate(135deg);
      }
  }
  
  .affix {
    padding: 0;
    background: rgb(255, 255, 255);
  }

  .btn-cta{
    color: #fff;
    background: rgb(12,99,212);
    background: linear-gradient(153deg, rgba(12,99,212,1) 44%, rgba(13,144,234,1) 87%);
  }

  .btn-cta:hover{
    color: #8df00c;
  }

  .img-logo{
    width: 200px;
  }

  .icon{
    color: rgb(12,99,212);
  }

  .text-header{
    font-weight: bold;
  }

  .text-subheader{
    font-weight: bold;
  }

  .text-primary{
    font-weight: bold;
    background: linear-gradient(90deg, rgba(0,74,173,1) 0%, rgba(0,212,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .myP {
      text-align: justify;
      padding-left:15%;
      padding-right:15%;
      font-size: 20px;
      font-family: "Poppins", sans-serif;
  }

  .bold{
    font-weight: bold;
  }

  @media all and (max-width:700px){
      .myP {
          padding:2%;
      }
  }

  .desc-uniquesellingpoin{
    margin-top: 5%;
  }

  .img{
    border-radius: 25px;
  }

  .img-thumbnail{
    border: none;
  }

  .youtube{
    background: rgb(255,0,0);
    background: linear-gradient(153deg, rgba(255,0,0,1) 44%, rgb(197, 4, 4) 87%);
  }

  .facebook{
    background: rgb(8,102,255);
    background: linear-gradient(153deg, rgba(8,102,255,1) 32%, rgba(21,83,183,1) 62%);
  }

  .button-social{
    color: #fff;
    width: 100%;
    max-width: fit-content;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .youtube:hover{
    color: rgb(255,0,0);
    background: #fff;
  }

  .facebook:hover{
    color: rgb(8,102,255);
    background: #fff;
  }


  .profilcompany{
    padding:171px 0;
    background-color:#FFF6E3;
  }

  .profilcompany h2, .profilcompany p{
    color: #335557;
  }

  .uniquesellingpoin{
    /* padding:171px 0; */
    padding:10% 20%;
    background-color: #335557;
  }

  .uniquesellingpoin .card-title{
    text-align: center;
  }

  .uniquesellingpoin .card-poin{
    border : none;
    max-width: 250px;
  }

  .uniquesellingpoin h5{
    color: #FFF6E3;
    font-weight: bold;
  }
  
  .btn-seeAll{
    text-decoration: none;
    color: #ffffff;
    background-color: #335557;
    padding: 5px;
    border-radius: 10px;
  }

  .project {
    position: relative;
    width: 50%;
  }

  .img-project{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 400px;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #E1B47B;
  }

  .project:hover .overlay {
    opacity: 0.9;
  }
  
  .text {
    color: #335557;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .img-thumbnail{
    padding: 0;
    box-shadow: 2px 2px 4px rgb(139, 139, 139);
  }
  
  .patner{
    background-color: #FFF6E3;
    padding: 50px 0;
  }

  .patner .text-header{
    color: #335557;
  }

  .patner .client:hover{
    margin-top: -10px;
    box-shadow: 1px 1px 4px 4px #d8cdb6;
    border-radius: 25px;
    background-color: #E1B47B;
  }

  .OthersPortofolio .card-text{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pesan{
    padding: 50px 0;
    background-color: #335557;
  }

  .gambar-pesan{
    padding: 100px 10px 100px 0;
  }

  .contactUs{
    padding:5%;
  }

  .pesan .image{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  }

  .pesan h1, .pesan .form-label{
    color: #FFF6E3;
  }

  footer{
    background: #FFF6E3;
    color: #335557;

    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    
  }

  .footer-subheader{
    text-align:left;
    font-weight: bold;
    color: #335557;
  }

  .social-media{
    margin: 20px;
    background-color: #335557;
    border-radius: 50%;
  }

  .icon-footer{
    color: #FFF6E3;
  }

  .copyright{
    background: rgb(12, 74, 155);
    color: #fff;
  }


  .image-header{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .card-konten{
    margin: 100px 0 50px 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  }

  .paket-lainnya{
    margin: 0 0 50px 0;
  }

  .header-testimoni{
    height: 200px;
    background: rgb(12,99,212);
    background: linear-gradient(153deg, rgba(12,99,212,1) 44%, rgba(13,144,234,1) 87%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .card-form-testimoni{
    margin: -100px 0 50px 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .contentDetailProject .text-header{
      color: #335557;
  }

  .contentDetailProject .text-subheader{
    color: #FFF6E3
  }

  .OthersPortofolio .img-portofolio{
    display: block;
    border-radius: 0 25px 0 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .OthersPortofolio{
    padding: 120px 0;
    background-color: #335557;
  }

  .Othersproject {
    position: relative;
  }

  .overlayOthersproject {
    border-radius: 0 25px 0 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #E1B47B;
  }

  .Othersproject:hover .overlayOthersproject {
    opacity: 0.9;
  }

  .about .header-content{
    padding:125px 0 100px 0;
    background-color: #335557;
  }

  .about .description{
    padding : 10%;
    background-color: #FFF6E3;
  }

  .about h2, .about p{
    color:#FFF6E3;
  }

  .description h2, .description p{
    color: #335557;
  }

  .img-about{
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .about .gallery{
    height: 100%;
    background-color: #335557;
    padding: 10% 0;
  }

  .column img{
    max-height: 200px;
    height: 100%;
  }

  .about .gallery img{
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  

  
