@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300&family=Poppins:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}
html,body {
    min-height: 100vh;width: 100%;width: -webkit-fill-available;
    margin: 0;
    overflow-x:hidden;background-color:#FFF;
    font-family: 'DM Sans', sans-serif !important;}
    .header {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 15%;
      padding: 1.2rem 10%;
      box-shadow: 6px 6px 6px rgba(147, 147, 147, 0.05);
      display: flex;
      display: -webkit-flex;
      justify-content: space-evenly;
      align-items: center;
      z-index: 100;
    }
    .header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }
    .header::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, #fff, transparent);
      transition: 0.5s;
    }
    .header:hover::after {
      left: 100%;
    }
    .logo {
      width: 143px;
      height: 76px;
    }
    .navbar a {
      font-size: 1.15rem;
      color: rgba(30, 30, 30, 1);
      text-decoration: none;
      font-weight: 400;
      margin-left: 1.5rem;
    }
    .navbar a:hover {
      color: #5d70d6;
      text-decoration: underline;
    }
    #check {
      display: none;
    }
    .icon {
      position: absolute;
      right: 5%;
      font-size: 2.8rem;
      color: rgba(30, 30, 30, 1);
      cursor: pointer;
      display: none;
    }
    .dropdown-container {
      position: relative;
      display: inline-block;
    }
    .dropdown-button {
      border: none;
      cursor: pointer;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #e2e5f5;
      width: 263.08px;
      height: 290px;
      z-index: 1;
      border-radius: 4px;
    }
    .dropdown-content a {
      font-family: inherit;
      font-weight: 500;
      size: 20px;
      color: #4d4d4d;
      padding: 10px 14px;
      text-decoration: none;
      display: block;
    }
    .dropdown-content a:hover {
      color: #5d70d6;
      text-decoration: underline;
    }
    .dropdown-container.active .dropdown-content {
      display: block;
    }
#h1-port{
    text-align: center;font-size:54px;
    margin-top:30px;
}
#main-content{
 display:flex;
 width:100%;
 width:-webkit-fill-available;
 justify-content: center;
 align-items: center;   
 margin-bottom: 25px;
}
#project-containers{
    width:80%;
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto auto;
    justify-content:center;
    align-items:start;
    padding:2%;
    margin: 2%;
column-gap:10%;
row-gap: 2%;
}
.project-holder{
    display: flex;display:-webkit-flex;
    flex-direction: column;
    justify-content: center;
}
.video-container{
    width:100%;
    border-radius:18px;
}

.video-container video{
    width:100%;
    border-radius: inherit;
}
.arrow-n-heading{
    display: flex;display:-webkit-flex;
    flex-direction: row;
    text-decoration: none;
     align-items:center;
}
.arrow-n-heading h2{
    color: #5d70d6;
    font-size: 28px;
    }
.project-holder p{
    text-transform: capitalize;
    font-size:14px;
    text-align: justify;
}
@media (max-width: 768px) {
    .header{
      justify-content:flex-start;
    }
    .icon {
      display: inline-flex;
      display: -webkit-inline-flex;
    }
    #check:checked ~ .icon #menu-icon {
      display: none;
    }
    .icon #close-icon {
      display: none;
    }
    #check:checked ~ .icon #close-icon {
      display: block;
    }
    .navbar {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 0;
      background: #d8deff;
      box-shadow: 0 0.5rem 1rem rgba(234, 237, 255, 1);
      overflow: hidden;
      transition: 0.1s ease;
    }
    #check:checked ~ .navbar {
      height: 23.7rem;
    }
    .navbar a {
      display: block;
      font-size: 1.1rem;
      margin: 1rem 0;
      text-align: center;
      color: #000;
      transform: translateY(-50px);
      opacity: 0;
      transition: 0.3s ease;
    }
    #check:checked ~ .navbar a {
      transform: translateY(0);
      opacity: 1;
      transition-delay: calc(0.15s * var(--i));
    }
    .dropdown-container {
      position: relative;
      display: inline;
      text-align: center;
      width: 100%;
    }
    .dropdown-container a:visited {
      color: #000;
      text-decoration: none;
    }
    .dropdown-container .dropdown-content {
      display: none;
    }
    .dropdown-container.active .dropdown-content {
      display: inline-block;
      justify-content: center;
      align-self: center;
      margin-left: auto;
      margin-right: auto;
      width: 373px;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      width: -webkit-max-content;
      background-color: #e2e5f5;
      z-index: 1;
      border-radius: 4px;
    }
    .dropdown-content a {
      font-family: inherit;
      font-weight: 500;
      font-size: 1.1rem;
      color: #4d4d4d;
      padding: 2px 14px;
      text-decoration: none;
      display: block;
    } }

    .footer-container {
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
        justify-content: space-around;
        background-color: #333;
        color: #fff;
        overflow: hidden;
        height: auto;
      }
      .upper_content {
        padding-top: 12px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-around;
        flex-direction: row;
        align-items: start;
        margin-bottom: 10px;
      }
      .logo-container img {
        width: 170px;
        height: auto;
      }
      .address {
        font-size: 1.2em;
        margin-top: 10px;
        margin-left: 20px;
      }
      .footer-img {
        width: 30%;
      }
      .footer-img iframe {
        width: 100%;
        height:250px;
      }
      
      .location {
        font-size: 0.9em;
        margin-left: 20px;
        margin-bottom: revert-layer;
      }
      .icons a {
        color: #fff;
        margin-top: 10px;
        font-size: 1.4em;
        margin-left: 20px;
      }
      .icons a:hover .fa-instagram {
        color: orangered;
      }
      .icons a:hover .fa-linkedin,
      .icons a:hover .fa-facebook-f {
        color: #5d70d6;
      }
      
      .icons a:hover .fa-x-twitter {
        color: #000;
        background-color: beige;
      }
      
      .service-side h4 {
        margin-bottom: 10px;
        font-size: 17px;
      }
      .list {
        list-style: none;
        padding: 0;
        color: #fff;
      }
      .list-li {
        cursor: pointer;
        color: #fff;
        margin-bottom: 8px;
      }
      .list-li a {
        color: #fff;
        text-decoration: none;
      }
      .list-li:hover a {
        background-color: #fff;
        color: #333;
      }
      iframe {
        border: none;
      }
      .bottom {
        background-color: #333;
        color: #fff;
        text-align: center;
        font-size: 12px;
        margin-bottom: 20px;
        margin-top: 5px;
      }
      @media only screen and (max-width: 571px) {
        .upper_content {
          display: grid;
          display: -moz-grid;
          display: -ms-grid;
          grid-template-columns: repeat(1, auto);
          position: relative;
          justify-content: space-around;
          background-color: #333;
          color: #fff;
          padding: 2px 13px;
          text-align: center;
        }
        .logo-container img {
          width: 60%;
          margin-top: 10px;
        }
        .list,
        .service-side h4 {
          text-align: center;
          margin-top: 10px;
        }
        .address {
          margin-left: 0;
          margin-bottom: 6px;
        }
        .location {
          margin-left: 0;
          text-align: center;
        }
        .icons a {
          margin-left: 25px;
          text-align: center;
        }
        .footer-img {
          width: 100%;
        }
        .footer-img iframe {
          width: 100%;
          height: 150px;
        }
      #h1-port{
        font-size:45px;
      }
      .arrow-n-heading h2{
        font-size:18px;
      }
      .arrow-n-heading img{
        width:30px;
      }
      .project-holder p{
        font-size: 14px;
      text-align: left;
      }
      #project-containers{
    width: 100%;
    display: grid;
    display: -moz-grid;
    display: -ms-grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: start;
    padding: 1%;
    margin: 1%;
    column-gap: 2%;
    row-gap: 2%;
      }
      #main-content{
        margin-bottom:185px;
      }
      }