@import "https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

body {
  background-color: #fff;
}


.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101d;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.sidebar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.sidebar .nav-list {
  height: calc(100% - 140px);
}

.sidebar .scroll {
  overflow-y: scroll;
  scrollbar-width: thin;
}

.sidebar .scroll::-webkit-scrollbar {
  width: 8px;
  background: #262440;
  border-radius: 5px;
}

.sidebar .scroll::-webkit-scrollbar-thumb {
  background: #262440;
  border-radius: 5px;
}

.sidebar .scroll::-webkit-scrollbar-track {
  background: #171526;
  border-radius: 5px;
}

.sidebar li {
  position: relative;
  margin: 8px 8px 8px 0;
  list-style: none;
}

.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar li a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101d;
}

.sidebar li a:hover {
  background: #1d1b31;
}

.sidebar li a:hover .links_name {
  transition: all 0.5s ease;
}

.sidebar li a:hover i {
  transition: all 0.5s ease;
}

.sidebar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.sidebar li i {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.profile-details i {
  width: 150px;
}

.sidebar li img {
  height: 43px;
  width: 54px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.sidebar input {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}

.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #fff;
}

.sidebar .bx-search:hover {
  background: #fff;
  color: #11101d;
}

.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar li.profile .name {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
}

.sidebar .profile #log_out {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}

.sidebar.open {
  width: 260px;
}

.sidebar.open .logo-details .icon {
  opacity: 1;
}

.sidebar.open .logo-details .logo_name {
  opacity: 1;
}

.sidebar.open .logo-details #btn {
  text-align: right;

  @media (min-width: 992px) {
    .container {
      width: 900px;
    }
  }
}

.sidebar.open li .tooltip {
  display: none;
}

.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}

.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #fff;
}

.sidebar.open li.profile {
  width: 250px;
}

.sidebar.open .profile #log_out {
  width: 50px;
  background: none;
}

.sidebar.open~.home-section {
  left: 250px;
  width: calc(100% - 250px);
}

.home-section {
  position: relative;
  background: #e4e9f7;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 72px);
  transition: all 0.5s ease;
  z-index: 2;
}

.txt {
  font-weight: 500;
  font-size: 30px;
  color: #11101d;
}

.home-section .text {
  /* display: inline-block; */
  color: #11101d;
  font-size: 25px;
  /* margin-left: 45%; */
  text-align: center !important;
  font-weight: 500;
}

.home-section .text p {
  text-align: center;
}

/*   */
/* **************************** */


.table-responsive {
  width: 80%;
  overflow-x: auto;
  margin-left: 10%;
  align-items: center;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: justify;
  vertical-align: top;
}

th {
  background-color: rgb(70, 103, 204);
  text-align: center;
  color: white;
}

.colfirst {
  width: 22%;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background-color: #f8f9fa;
}

.colsecond {
  width: 78%;
}

.head {
  font-weight: bold;
  font-size: larger;
  color: white;
}

.test {
  background-color: rgb(70, 103, 204);
}

h1 {
  text-align: center;
}

.image {
  text-align: center;
}

.input-group {
  padding-top: 5px;
  margin-left: 10px;
}

/* 
 */
.ui-btn {
  padding-top: 10px;

  margin-bottom: 30px;
  text-align: center;
  border-radius: 10px 10px 10px 10px;
  --btn-default-bg: rgb(41, 41, 41);
  --btn-padding: 15px 20px;
  --btn-hover-bg: rgb(51, 51, 51);
  --btn-transition: .3s;
  --btn-letter-spacing: .1rem;
  --btn-animation-duration: 1.2s;
  --btn-shadow-color: rgba(0, 0, 0, 0.137);
  --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
  --hover-btn-color: #FAC921;
  --default-btn-color: #fff;
  --font-size: 15px;
  /* 👆 this field should not be empty */
  --font-weight: 600;
  --font-family: Menlo, Roboto Mono, monospace;
  /* 👆 this field should not be empty */
}





/* **********************************/

/* ************* Responsive ***************** */
@media only screen and (max-width: 430px) {
  .home-section {
    position: relative;
    background: #e4e9f7;
    min-height: 100vh;
    top: 0;
    left: 78px;
    min-height: 100vh;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .txt {
    font-weight: 500;
    font-size: 20px;
    color: #11101d;
  }

  .about-content {
    padding: 10px 50px 15px 50px;
  }

  p {
    text-align: justify;
    font-size: 12px;
  }

  .h3,
  h3 {
    font-size: 15px;
  }

  .tabs li {
    padding: 0px 7px;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
  }


  td {

    border: 1px solid;
    font-size: 10px;
    padding: 2px;
    transition: background-color 0.3s ease;
  }

  th {
    font-size: 10px;
    padding: 0px;
    text-align: center;
    border: 1px solid rgb(255, 255, 255);
    background-color: #5a9bc7;
    color: black;
  }

  .sidebar {
    width: 78px;
    padding: 3px 7px;

  }
}

@media only screen and (min-width: 430px) and (max-width: 767px) {

  .home-section {
    left: 78px;
    width: calc(100% - 400px);
  }

  .timg {
    height: 150px;
    width: 100px;
  }

  th {
    font-size: 9px;
  }

  td {
    font-size: 9px;
  }

  button {
    text-align: center !important;
    margin-left: 36%;
  }

  .img {
    padding-top: 20px;
  }

  .col-lg-6 {
    text-align: center;
  }

  .sidebar li img {
    width: 43px;
  }

  .sidebar {
    width: 67px;

  }

  .sidebar li.profile {
    width: 67px;
  }

}


@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .container {
    width: 900px;
  }
}

/* Conclusion */
.conclusion {
  /* background: #e0f7fa; */
  padding: 10px;
  /* border-left: 4px solid #00796b; */
  margin-top: 10px;
}


.conclusion ul {
  list-style-type: none;
  padding: 0;
}


.conclusion ul li {
  margin-bottom: 10px;
  font-size: medium;
}

.filters {
  text-align: center;
}

.filters li {
  font-size: 15px;
  background-color: #090944;
  color: #e4e9f7;
  padding: 11px 20px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  margin: 10px 3px;
}

.filters ul li.active,
.filters ul li:hover {
  color: #090944;
  background-color: #e4e9f7;
}

p {
  text-align: justify;
  font-size: medium;
}


/* Dashboard */
/* .row {
  display: flex;
  flex-wrap: wrap;
} */

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;

}

/* Section padding */
.pt-70 {
  padding-top: 40px;
}





/* Read more/less button */
.text-primary {
  color: #007bff;
  cursor: pointer;
}

#dots2,
#dots1 {
  display: inline;
}

#more2,
#more1 {
  display: none;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

/* Icon styles */
.bx-check-circle {
  color: #28a745;
  margin-right: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 97%;
  }
}

.details {
  text-align: justify;
  font-size: 16px;
}

.benefit {
  text-align: justify;
  font-size: 16px;
}


/* sublist */
.sub-list {
  display: none;
  list-style-type: none;
  padding-left: 20px;
}

.sub-list li {
  margin: 5px 0;

}

.bi-folder {
  cursor: pointer;
}


/* Drop TEST fan page */
.Corner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58%;
  /* Adjust as needed */
  border: 2px solid black;
  /* Box around the image */
  margin: 0 auto;
  /* Center the box itself */
  width: 75%;
  /* Adjust as needed */
}

.top {
  margin: 1px;
  border: 2px solid black;
  padding: 2px;
  border-radius: 10px;

}

.middle {
  margin: 1px;
  border: 2px solid black;
  padding: 2px;
  border-radius: 10px;
}

.Bottom {
  margin: 1px;
  border: 2px solid black;
  padding: 2px;
  border-radius: 10px;
}

.Top-Canopy {
  border-right: 2px solid black;
  padding-right: 2px;
}

.Top-Cover {
  border-right: 2px solid black;
  padding-right: 2px;
}

.Top-false_cover {
  border-right: 2px solid black;
  padding-right: 2px;
}

.animation-img,
img {
  margin-left: 2%;
  border-radius: 7px;
}

h4 {
  font-weight: 700;
  margin-top: 4%;
}

.fan {
  width: 90%;
  height: auto;
  margin-left: 3%;
}

.Drop_Test_ani {
  width: 100%;
  height: 410px;
}

.ariso-proj-details {
  width: 60%;
  height: auto;
  margin-left: 20%;
}

.ariso-proj-details-pak {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .drop-test .animation-img .about-img img {
    max-height: 200px;
    /* Adjust this value as needed */
  }

  .about-content {
    padding: 10px 10px 15px 10px;
  }

  .Drop_Test_ani {
    width: 95%;
    height: 260px;
  }

  .fan {
    width: 60%;
    height: auto;
    margin-left: 3%;
  }

  .ariso-proj-details {
    width: 50%;
    height: auto;
    margin-left: 20%;
  }

  .ariso-proj-details-pak {
    width: 55%;
    height: auto;
    margin-left: 20%;
  }
}

@media only screen and (max-width: 1024px) {

  .Drop_Test_ani {
    width: 95%;
    height: 330px;
  }
}

@media only screen and (max-width: 480px) {
  .drop-test .animation-img .about-img img {
    max-height: 150px;
    /* Adjust this value as needed */
  }

  .Corner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Adjust as needed */
    border: 2px solid black;
    /* Box around the image */
    margin: 0 auto;
    /* Center the box itself */
    width: 100%;
    /* Adjust as needed */
  }

  .Drop_Test_ani {
    width: 100%;
    height: 100%;
  }

  h4 {
    font-weight: 600;
    margin-top: 4%;
    font-size: 12px;
  }

  .fan {
    width: 40%;
    height: auto;
    margin: 3%;
  }
}