@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}
body {
    font-family: "Archivo", serif;
  }
    /* Scroll Top */

    .to-top {
      width: 30px;
      height: 30px;
      background-color: transparent;
      border: none;
      transition: all 0.6s ease;
      float: right;
      padding: 10px 50px;
    }
    
    .to-top i {
      color: rgb(0, 84, 166);
      font-size: 35px;
      cursor: pointer;
    }
    
    .to-top i:hover {
      color: #111;
    }
  
    /* Header */
    .logo-header {
        width: 100%;
    }
  
    .logo-dpp {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
  
    .logo-dpp img {
        width: 20%;
        padding: 20px 20px;
    }
  
  
    nav {
        /* position: fixed; */
        top: 0;
        left: 0;
        height: 60px;
        width: 100%;
        font-family: 'Archivo', sans-serif;
        z-index: 100;
        max-width: 100%;
        background-color: rgb(0, 84, 166);
    }
    
    nav .nav-bar .sidebarOpen {
        color: #fff;
        font-size: 25px;
        padding: 5px;
        cursor: pointer;
        display: none;
    }
    
    nav .nav-bar img {
        width: 20%;
    }
    
    nav .nav-bar {
        position: relative;
        height: 100%;
        max-width: 1000px;
        width: 100%;
        /* background-color: rgb(1, 119, 191); */
        margin: 0 auto;
        padding: 0 0px;
        display: flex;
        align-items: center;
        justify-content: center;
  
    }
    
    .menu-header .logo-toggle {
        display: none;
    }
    
    .nav-bar .nav-links {
        display: flex;
        align-items: center;
    }
    
    .nav-bar .nav-links li {
        margin: 0 10px;
        list-style: none;
        /* transform: translateX(20px); */
    }
    
    .nav-bar .nav-links li a:hover {
        color: #111;
        /* border-bottom: 1px solid #111; */
    }
    
    .nav-links li a{
        position: relative;
        font-size: 16px;
        font-weight: bold;
        text-align: none;
        font-family: 'Archivo', sans-serif;
        color: #fafafa;
        margin: 0 10px;
    }
    
    .nav-bar .darklight-searchBox {
        display: flex;
        align-items: center;
    }
    
    .darklight-searchBox .searchToggle {
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 5px;
    }
    
    
    .searchToggle i {
        position: absolute;
        color: #fafafa;
        font-size: 22px;
        cursor: pointer;
    }
  
    .searchToggle i:hover {
        color: #111;
    }
    
    .searchToggle i.cancel {
        opacity: 0;
        pointer-events: none;
    }
    
    .searchToggle.active i.cancel {
        opacity: 1;
        pointer-events: auto;
    }
    
    .searchToggle.active i.search {
        opacity: 0;
        pointer-events: none;
    }
    
    .searchBox {
        position: relative;
    }
    
    .searchBox .search-field {
        position: absolute;
        top: -5px;
        left: 40px;
        height: 50px;
        width: 350px;
        display: flex;
        align-items: center;
        background-color: transparent;
        padding: 3px;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .searchToggle.active ~ .search-field {
        opacity: 1;
        pointer-events: auto;
        left: 40px;
    }
    
    
    
    .search-field input {
        height: 100%;
        width: 100%;
        padding: 0 45px 0 15px;
        outline: none;
        border: 1px solid rgb(0, 84, 166);
        border-radius: 4px;
        font-size: 14px;
        font-weight: 400;
        color: #111;
    }
    
    .search-field i {
        position: absolute;
        color: #000;
        right: 15px;
        font-size: 22px;
        cursor: pointer;
    }
  
    .search-field .search_bx2 {
      position: absolute;
      width: 350px;
      height: 300px;
      border: 1px solid #fff;
      top: 56px;
      background: rgba(184, 184, 184, 0.3);
      border-radius: 10px;
      overflow: auto;
      visibility: hidden;
      opacity: 0;
    }
  
    .search-field .search_bx2::-webkit-scrollbar {
      width: 7px;
      background: rgba(184, 184, 184, 0.3);
      border-radius: 20px;
    }
  
    .search-field .search_bx2 a {
      text-decoration: none;
      color: #000;
      width: 100%;
      height: 100px; 
      /* border: 1px solid #000; */
      display: flex;
      align-items: center;
      transition: 0.3s linear;
      margin: 3px 0;
    }
  
    .search-field .search_bx2 a:hover {
      background-color: rgba(184, 184, 184, 0.6);
    }
  
    .search-field .search_bx2 a img {
      width: 40%;
      height: 100%;
    }
  
    .search-field .search_bx2 a .content2 {
      font-family: 'Archivo', serif;
      display: flex;
      padding: 5px 20px;
      display: flex;
      flex-direction: column;
    }
  

    /* Main */

    .image-background{
        background-image: url(/Image/Certificate/_DSC0121.jpg);
        width: 100%;
        height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Certification */
    .flex-container {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        margin: 20px 0;
      }
      
      .flex-item-left {
        padding: 10px 0px;
        flex: 50%;
      }

      .flex-item-left img {
        width: 33%;
        cursor: pointer;
        transition: transform 0.2s;
        box-shadow: 5px 5px 5px 5px rgba(143, 142, 142, 0.3);
        border-radius: 10px;
      }
      
      .flex-item-right {
        padding: 40px 0;
        flex: 50%;
        text-align: left;
      }

      .flex-item-right h3 {
        font-size: 22x;
        padding-bottom: 10px;
        color: rgb(0, 84, 166);
      }

      .flex-item-right p {
        text-align: justify;
        text-justify: inter-word;
        width: 70%;
        font-size: 16px;
        line-height: 25px;
      }


    /* Modal */

    .gallery-image:hover {
        transform: scale(1.05);
    }
    
    .modal {
        display: none; 
        position: fixed; 
        z-index: 1; 
        padding-top: 100px; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgb(0,0,0); 
        background-color: rgba(0,0,0,0.9); 
    }
    
    .modal-content {
        margin: auto;
        display: block;
        width: 40%;
    }
    
    .caption {
        margin: auto;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
    }
    
    .close {
        position: absolute; 
        top: 15px; 
        right: 35px; 
        color: white; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
    }
    
    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

  /* Footer */
  .container{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #24262b;
      padding: 70px 0;
  }
  .footer-col{
     width: 25%;
     padding: 0 15px;
  }

  .footer-col img {
    width: 50%;
  }

  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }

  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: rgb(0, 84, 166);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }

  .footer-col p {
    color: #bbbbbb;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-col i {
    color: #bbbbbb;
    margin-right: 10px;
  }

  .footer-col a {
    color: #bbbbbb;
  }

  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 13px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }
  


    /* MediaQuery */


@media (max-width: 610px) {
   /* Header */
   nav .nav-bar .sidebarOpen {
    display: block;
}

nav .nav-bar {
    justify-content: left;
}

.logo-dpp img {
    width: 70%;
    padding-top: 10px;
}

.menu-header {
    position: fixed;
    height: 100%;
    width: 100%;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: rgb(0, 84, 166);
    z-index: 100;
    transition: all 0.8s ease;
}

nav.active .menu-header {
    left: 0%;
}

.menu-header .logo-toggle {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-header .logo-toggle img {
    width: 20%;
}

.logo-toggle .siderbarClose {
    color: #fafafa;
    font-size: 24px;
    cursor: pointer;
}

nav .nav-bar img {
    width: 60%;
    padding: 0;
}

.nav-bar .nav-links li {
    transform: translateX(0);
    padding: 20px 0;
}

.nav-bar .nav-links {
    flex-direction: column;
    padding-top: 50px;
}

.nav-links li a {
    display: block;
    margin-top: 20px;
}

.searchBox {
    position: relative;
    width: 100%;
}

.searchBox .search-field {
    width: 300px; /* Make it 90% of the container */

}


.search-field .search_bx2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #fff;
    top: 56px;
    right: 0;
    background: rgba(184, 184, 184, 0.3);
    border-radius: 10px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
  }

  .modal-content {
    max-width: 100%;
}


    /*  Main */

    .flex-item-right, .flex-item-left {
        flex: 100%;
      }

      .flex-item-left img {
        width: 40%;
      }

      .flex-item-right h3 {
        text-align: center;
      }

      .flex-item-right {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
      }

      .modal-content {
        width: 100%;
      }

      .image-background {
        background-size: cover;
      }

      /* Footer */
      .footer-col{
        width: 100%;
        margin: 20px 0;
    }

    .footer .container {
        background: transparent;
    }

    .footer-col img {
        width: 25%;
        margin: 0px 0;
    }
}

@media only screen and (min-width: 611px) and (max-width: 960px) {
           /* Header */
           .logo-header {
            width: 100%;
        }
        
        .logo-dpp {
            display: flex;
            align-items: left;
            text-align: left;
            justify-content: left;
        }
        
        .logo-dpp img {
            width: 40%;
            padding: 20px 20px;
        }
        
        nav {
          /* position: fixed; */
          top: 0;
          left: 0;
          height: 60px;
          width: 100%;
          font-family: 'Archivo', sans-serif;
          z-index: 100;
          max-width: 100%;
          background-color: rgb(0, 84, 166);
        }
        
        
        
        nav .nav-bar {
          position: relative;
          height: 100%;
          max-width: 1000px;
          width: 100%;
          /* background-color: rgb(1, 119, 191); */
          margin: 0 auto;
          padding: 0 0px;
          display: flex;
          align-items: left;
          justify-content: left;
        
        }
        
        .menu-header .logo-toggle {
          display: none;
        }
        
        .nav-bar .nav-links {
          display: flex;
          align-items: left;
        }
        
        .nav-bar .nav-links li {
          margin: 0 3px;
          list-style: none;
          /* transform: translateX(20px); */
        }
        
        .nav-bar .nav-links li a:hover {
          color: #111;
          /* border-bottom: 1px solid #111; */
        }
        
        .nav-links li a{
          position: relative;
          font-size: 12px;
          font-weight: bold;
          text-align: none;
          font-family: 'Archivo', sans-serif;
          color: #fafafa;
          margin: 0 10px;
        }
        
        .nav-bar .darklight-searchBox {
          display: flex;
          align-items: center;
        }
        
        .darklight-searchBox .searchToggle {
          height: 40px;
          width: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 5px;
        }
        
        
        .searchToggle i {
          position: absolute;
          color: #fafafa;
          font-size: 22px;
          cursor: pointer;
        }
        
        .searchToggle i:hover {
          color: #111;
        }
        
        .searchToggle i.cancel {
          opacity: 0;
          pointer-events: none;
        }
        
        .searchToggle.active i.cancel {
          opacity: 1;
          pointer-events: auto;
        }
        
        .searchToggle.active i.search {
          opacity: 0;
          pointer-events: none;
        }
        
        .searchBox {
          position: relative;
        }
        
        .searchBox .search-field {
          position: absolute;
          top: -5px;
          left: 40px;
          height: 50px;
          width: 240px;
          display: flex;
          align-items: center;
          background-color: transparent;
          padding: 3px;
          border-radius: 6px;
          opacity: 0;
          pointer-events: none;
          transition: all 0.3s ease;
        }
        
        .searchToggle.active ~ .search-field {
          opacity: 1;
          pointer-events: auto;
          left: 40px;
        }
        
        
        
        .search-field input {
          height: 100%;
          width: 100%;
          padding: 0 45px 0 15px;
          outline: none;
          border: 1px solid rgb(0, 84, 166);
          border-radius: 4px;
          font-size: 14px;
          font-weight: 400;
          color: #111;
        }
        
        .search-field i {
          position: absolute;
          color: #000;
          right: 15px;
          font-size: 22px;
          cursor: pointer;
        }
        
        .search-field .search_bx2 {
        position: absolute;
        width: 240px;
        height: 240px;
        border: 1px solid #fff;
        top: 56px;
        background: rgba(184, 184, 184, 0.3);
        border-radius: 10px;
        overflow: auto;
        visibility: hidden;
        opacity: 0;
        }
        
        .search-field .search_bx2::-webkit-scrollbar {
        width: 7px;
        background: rgba(184, 184, 184, 0.3);
        border-radius: 20px;
        }
        
        .search-field .search_bx2 a {
        text-decoration: none;
        color: #000;
        width: 100%;
        height: 100px; 
        /* border: 1px solid #000; */
        display: flex;
        align-items: center;
        transition: 0.3s linear;
        margin: 3px 0;
        }
        
        .search-field .search_bx2 a:hover {
        background-color: rgba(184, 184, 184, 0.6);
        }
        
        .search-field .search_bx2 a img {
        width: 50%;
        height: 100%;
        }
        
        .search-field .search_bx2 a p {
          font-size: 14px;
        }
        
        .search-field .search_bx2 a .content2 {
        font-family: 'Archivo', serif;
        display: flex;
        padding: 5px 20px;
        display: flex;
        flex-direction: column;
        }

        /* Main */
        .flex-item-right, .flex-item-left {
          flex: 100%;
        }
  
        .flex-item-left img {
          width: 40%;
        }
  
        .flex-item-right h3 {
          text-align: center;
        }
  
        .flex-item-right {
          display: flex;
          flex-direction: column;
          text-align: center;
          align-items: center;
          justify-content: center;
        }
  
        .modal-content {
          width: 100%;
        }
  
        .image-background {
          background-size: cover;
        }
  

        /* Footer */     

      .footer-col{
        width: 50%;
        margin: 20px 0;
    }

    .footer .container {
        background: transparent;
    }

    .footer-col img {
        width: 25%;
        margin: 0px 0;
    }
}

@media only screen and (min-width: 961px) and (max-width: 1300px) {
      /* Header */
      .logo-header {
        width: 100%;
    }
    
    .logo-dpp {
        display: flex;
        align-items: left;
        text-align: left;
        justify-content: left;
    }
    
    .logo-dpp img {
        width: 30%;
        padding: 20px 20px;
    }
    
    nav {
      /* position: fixed; */
      top: 0;
      left: 0;
      height: 60px;
      width: 100%;
      font-family: 'Archivo', sans-serif;
      z-index: 100;
      max-width: 100%;
      background-color: rgb(0, 84, 166);
    }
    
    
    
    nav .nav-bar {
      position: relative;
      height: 100%;
      max-width: 1000px;
      width: 100%;
      /* background-color: rgb(1, 119, 191); */
      margin: 0 auto;
      padding: 0 0px;
      display: flex;
      align-items: left;
      justify-content: left;
    }
    
    .menu-header .logo-toggle {
      display: none;
    }
    
    .nav-bar .nav-links {
      display: flex;
      align-items: left;
    }
    
    .nav-bar .nav-links li {
      margin: 0 3px;
      list-style: none;
      /* transform: translateX(20px); */
    }
    
    .nav-bar .nav-links li a:hover {
      color: #111;
      /* border-bottom: 1px solid #111; */
    }
    
    .nav-links li a{
      position: relative;
      font-size: 12px;
      font-weight: bold;
      text-align: none;
      font-family: 'Archivo', sans-serif;
      color: #fafafa;
      margin: 0 10px;
    }
    
    .nav-bar .darklight-searchBox {
      display: flex;
      align-items: center;
    }
    
    .darklight-searchBox .searchToggle {
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
    }
    
    
    .searchToggle i {
      position: absolute;
      color: #fafafa;
      font-size: 22px;
      cursor: pointer;
    }
    
    .searchToggle i:hover {
      color: #111;
    }
    
    .searchToggle i.cancel {
      opacity: 0;
      pointer-events: none;
    }
    
    .searchToggle.active i.cancel {
      opacity: 1;
      pointer-events: auto;
    }
    
    .searchToggle.active i.search {
      opacity: 0;
      pointer-events: none;
    }
    
    .searchBox {
      position: relative;
    }
    
    .searchBox .search-field {
      position: absolute;
      top: -5px;
      left: 40px;
      height: 50px;
      width: 280px;
      display: flex;
      align-items: center;
      background-color: transparent;
      padding: 3px;
      border-radius: 6px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    
    .searchToggle.active ~ .search-field {
      opacity: 1;
      pointer-events: auto;
      left: 40px;
    }
    
    
    
    .search-field input {
      height: 100%;
      width: 100%;
      padding: 0 45px 0 15px;
      outline: none;
      border: 1px solid rgb(0, 84, 166);
      border-radius: 4px;
      font-size: 14px;
      font-weight: 400;
      color: #111;
    }
    
    .search-field i {
      position: absolute;
      color: #000;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
    }
    
    .search-field .search_bx2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid #fff;
    top: 56px;
    background: rgba(184, 184, 184, 0.3);
    border-radius: 10px;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    }
    
    .search-field .search_bx2::-webkit-scrollbar {
    width: 7px;
    background: rgba(184, 184, 184, 0.3);
    border-radius: 20px;
    }
    
    .search-field .search_bx2 a {
    text-decoration: none;
    color: #000;
    width: 100%;
    height: 100px; 
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;
    transition: 0.3s linear;
    margin: 3px 0;
    }
    
    .search-field .search_bx2 a:hover {
    background-color: rgba(184, 184, 184, 0.6);
    }
    
    .search-field .search_bx2 a img {
    width: 50%;
    height: 100%;
    }
    
    .search-field .search_bx2 a p {
      font-size: 14px;
    }
    
    .search-field .search_bx2 a .content2 {
    font-family: 'Archivo', serif;
    display: flex;
    padding: 5px 20px;
    display: flex;
    flex-direction: column;
    }
    
        /* Main */

        .flex-item-right, .flex-item-left {
          flex: 50%;
        }
  
        /* .flex-item-left img {
          width: 100%;
        } */
  
        .flex-item-right h3 {
          text-align: left;
        }
  
        .flex-item-right {
          display: flex;
          flex-direction: column;
          text-align: left;
          align-items: left;
          justify-content: left;
        }
  
        .modal-content {
          width: 100%;
        }
  
        .image-background {
          background-size: cover;
        }
  
        .flex-item-left {
          padding: 10px 0px;
          flex: 50%;
        }
  
        .flex-item-left img {
          width: 40%;
          cursor: pointer;
          transition: transform 0.2s;
          box-shadow: 5px 5px 5px 5px rgba(143, 142, 142, 0.3);
          border-radius: 10px;
        }
        
        .flex-item-right {
          padding: 10px 0;
          flex: 50%;
          text-align: left;
        }
  
        .flex-item-right h3 {
          font-size: 15px;
          padding-bottom: 10px;
          color: rgb(0, 84, 166);
        }
  
        .flex-item-right p {
          text-align: justify;
          text-justify: inter-word;
          width: 70%;
          font-size: 13px;
          line-height: 18px;
        }

        
        /* Footer */      
  .footer-col{
    width: 50%;
    margin: 20px 0;
}

.footer .container {
    background: transparent;
}

.footer-col img {
    width: 20%;
    margin: 0px 0;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
          /* Main */

          .flex-item-right, .flex-item-left {
            flex: 50%;
          }
    
          /* .flex-item-left img {
            width: 100%;
          } */
    
          .flex-item-right h3 {
            text-align: left;
          }
    
          .flex-item-right {
            display: flex;
            flex-direction: column;
            text-align: left;
            align-items: left;
            justify-content: left;
          }
    
          .modal-content {
            width: 100%;
          }
    
          .image-background {
            background-size: cover;
          }
    
          .flex-item-left {
            padding: 10px 0px;
            flex: 50%;
          }
    
          .flex-item-left img {
            width: 40%;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 5px 5px 5px 5px rgba(143, 142, 142, 0.3);
            border-radius: 10px;
          }
          
          .flex-item-right {
            padding: 10px 0;
            flex: 50%;
            text-align: left;
          }
    
          .flex-item-right h3 {
            font-size: 15px;
            padding-bottom: 10px;
            color: rgb(0, 84, 166);
          }
    
          .flex-item-right p {
            text-align: justify;
            text-justify: inter-word;
            width: 70%;
            font-size: 16px;
            line-height: 18px;
          }
  
}

