
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
}
/*body {
    background: #1d99eb;
}*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
   /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(17px);
    --webkit-backdrop-filter: blur(17px);*/
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
	background: rgba(251, 251, 252, 0.856);
  z-index: 1;
}
.sidebar:hover {
    width: 260px;
}
.sidebar .logo {
    color: #0833a1;
    display: flex;
    align-items: center;
    padding: 25px 10px 15px;
}
.logo img {
    width: 63px;
    border-radius: 80%;
	background: #fff;
	border: 1px blue solid;
}
.logo h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-left: 15px;
    display: none;
}
.sidebar:hover .logo h2 {
    display: block;
}
.sidebar .links {
    list-style: none;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    height: calc(100% - 140px);
}
.sidebar .links::-webkit-scrollbar {
    display: none;
}
.links li {
    display: flex;
    border-radius: 4px;
    align-items: center;
	color: rgb(8, 10, 12);
}
.links li:hover {
    cursor: pointer;
    background: #1c069c;
	color: white;
}
.links li a:hover {
	cursor: pointer;
    background: #1c069c;
	color: white;
}
.links h4 {
    color: #0833a1;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
}
.sidebar:hover .links h4 {
    display: block;
}
.links hr {
    margin: 10px 8px;
    border: 1px solid #cac5c5;
}
.sidebar:hover .links hr {
    border-color: transparent;
}
.links li span {
    padding: 12px 10px;
}
.links li a {
    padding: 10px;
    color: #000;
    display: none;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}
.sidebar:hover .links li a {
    display: block;
}
.links .logout-link {
    margin-top: 20px;
}

.top{
text-align: right;
margin: 20px;
}
.top button{
	color: white;
	background: #1c069c;
	padding: 10px 30px 10px 30px;
	border-radius: 2px;
	border: none;
}
.top button:hover{
	background:#f0a032ef;
}

.about{
	margin-top: 100px;
	text-align: left;
	margin-left: 110px;
  margin-right:20px;
}
.about h2{
	line-height: 100px;
  font-size: 30px;
}

.about p{
	font-size: 19px;
	line-height: 27px;
}
.about button{
	padding:5px 20px 5px 20px;
	margin-top:10px;
	font-size: 17px;
	color: #fff;
	background: #1c069c;
}
button:hover{
  cursor: pointer;
  transform: scale(1.1);
}
.heading{
	margin-top: 10em;
	background:rgb(238, 243, 242);
}

.heading h3{
	padding-top: 45px;
	color: #1d99eb;
	text-align: center;
	margin-left: 100px;
}
.heading h1{
	color: #1b088a;
	text-align: center;	
	padding-top: 30px;
	margin-left: 100px;

}

main{
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
  justify-content: center;
  margin-top: 50px;
	margin-left:100px;
}
.product{
  background-color: white;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
  margin: 20px;
  padding: 20px;
  width: 300px;
  height: 400px;
	border: 0.2px rgb(20, 13, 13) solid;
  border-bottom-left-radius: 60px;
	border-top-right-radius: 60px;

}
.product h2{
    color: #333;
    font-size: 17px;
    margin-top: 40px;
	text-align:center;
	text-decoration:underline;
	line-height: 1.5;
}
.product img{
    display: block;
    margin: 0 auto;
    max-width:200px;
    height: 150px;
	border-radius: 10px;
    /*border: 1px rgb(76, 66, 213) solid;
    background: white;
    */
}
/*.product:hover{
  cursor: pointer;
  background:white;
}*/
.product p{
    color: #0a30ad;
    font-size:14px;
    line-height: 1.2;
    margin: 15px 0;
    text-align: center;
}

.brand h1{
    font-size: 40px;
    color: #0a30ad;
    margin-top: 200px;
	  margin-left: 60px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: .3px;
    text-decoration: underline;
  }

.wrapper {
    max-width: 100%;
    position: relative;
    display: flex;  
    padding: 0 120px;
    align-items: center;
    justify-content: center;
    /*border: 1px solid black;
    background: #202e52;*/
    margin-top: 0px;
    margin-left: 75px;
}

.wrapper i {
    top: 48%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #ffffff2b;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
    left: 60px;
  }
  .wrapper i:last-child{
    right: 60px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 30px 0 30px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 300px;
    list-style: none;
    background: #ffffff1f;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
  }
  .carousel .card .img {
    height: 148px;
    width: 148px;
    border-radius: 50%;
  }
  .card{
    border: none;
  }
  .card .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
  }

  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  }
 

  .copyrights{
    background: rgba(238, 238, 240, 0.829);
    height: 50px;
    text-align: center;
    margin-top: 50px;
  }
  .copyrights p{
    font-size: 13px;
    color: #242222;
    padding-top: 20px;
    margin-left: 70px;
  }

  /* ---------------About page----------------- */

  .about1{
    margin-top: 60px;
    text-align: left;
    margin-left: 110px;
    margin-right:20px;
    background: #1d99eb54;
    padding: 20px;
    background: url(./images/handshake.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .about1 h2{
    line-height: 100px;
    font-size: 30px;
    color: white;
  }
  
  .about1 p{
    font-size: 19px;
    line-height: 27px;
    color: rgb(250, 249, 253);
  }


   /*--------------product page ---------------*/
   
  .pro{
    text-align: center;
    margin-top: 50px;
  }
  .pro h1{
      color: #2a0c8d;
      font-weight: 100;
      font-size: 45px;
      margin-left:70px;
  }
  .maintain1{
      display: flex;
      flex-wrap: wrap;
      padding-left:40px;
      justify-content: center;
      margin-top: 30px;
  }
  .product1{
      background-color: white;
      /*box-sizing: border-box;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.3);*/
      margin: 50px;
      padding: 20px;
      width: 450px;
      height: 410px;
      border-radius: 20px;
  }
  .product1 h2{
      color: #333;
      font-size: 1.5em;
      margin: 20px;
      text-align: center;
  }
  .product1 img{
      display: block;
      margin: 0 auto;
      max-width:250px;
      height: 150px;
      border-radius: 10px;
  }
  .product1:hover img{
    cursor: pointer;
    transform: scale(1.1);
  }

  .product1 p{
      color: #333;
      font-size: 1.1em;
      line-height: 1.3;
      margin: 15px 0;
      text-align: center;
  }

   /* --------------- product page -------------------*/

   .container{
    margin-left: 80px;
   }
  .container,
  .button,
  .linking,
  .linked,.linked_active1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .container {
    padding: 20px;
    border-radius: 8px;
    column-gap: 12px;
    background: #fff;
    margin-top: 150px;
  }
  .button {
    border: none;
  }
  .button i {
    pointer-events: none;
  }
  .button:disabled {
    color: #b3b3b3;
    pointer-events: none;
  }
  .button,
  .linked,.linked_active1{
    height: 45px;
    width: 45px;
    font-size: 20px;
    color: #666666;
    background-color: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
  }
  .linking {
    column-gap: 12px;
  }
  .linked,.linked_active1 {
    font-weight: 500;
    text-decoration: none;
  }
  .button:hover,
  .linked:hover {
    color: #fff;
    background: #4070f4;
  }
  .linked_active1{
    color: #fff;
    background: #4070f4;
  }
  /*.linked.active {
    color: #fff;
    background: #4070f4;
  }*/
  
  /*----------product page 4-------------------- */

  .pros{
    text-align: center;
    margin-top: 50px;
  }
  .pros h1{
      color: #2a0c8d;
      font-weight: 100;
      font-size: 45px;
      margin-left:70px;
      text-decoration: underline;
  }
  .maintained1{
      display: flex;
      flex-wrap: wrap;
      padding-left:40px;
      justify-content: center;
      margin-top: 30px;
  }
  .products1{
      /*box-sizing: border-box;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.3);*/
      margin: 50px;
      padding: 20px;
      width: 450px;
      height: 250px;
      border-radius: 20px;
  }
  .products1 h2{
      color: #333;
      font-size: 1.5em;
      margin: 20px;
      text-align: center;
  }
  .products1 img{
      display: block;
      margin: 0 auto;
      max-width:310px;
      height: 250px;
      border-radius: 10px;
  }
  .products1:hover img{
    cursor: pointer;
    transform: scale(1.1);
  }


/*---------contact page ------------*/

.main_contact {
	display: grid;
  justify-content: center;
  margin-top:50px;
  margin-left: 70px;
}

.contact-wrap {
	width: 80%;
	height: auto;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
  border:5px rgb(232, 17, 17) double;
  border-radius: 10px;
}

.contact-in {
	padding: 40px 30px;
}

.contact-in:nth-child(1) {
	flex:30%;
	background: url(./images/network.jpg);
  background-repeat: no-repeat;
  background-size: cover;
	color: #fff;
  border-radius: 5px;
}

.contact-in:nth-child(2) {
	flex: 40%;
	background: #c31432;
}

.contact-in:nth-child(3) {
	flex: 30%;
	padding: 0;
}

.contact-in h1 {
	font-size: 24px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-in h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
}

.contact-in h2 i {
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: #f5f5f5;
	color: #000;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}

.contact-in p {
	font-size: 15px;
	font-weight:400;
	margin-bottom: 20px;
  background: #404ddd79;
  border-radius: 5px;
  padding-left: 5px;
}

.contact-in ul {
	padding: 0;
	margin: 0;
}

.contact-in ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
	margin-top: 5px;
}

.contact-in ul li a {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	background: #fff;
	border-radius: 50px;
}

.contact-in ul li a i {
	font-size: 14px;
	line-height: 30px;
	color: #000;
}

.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
	color: #fff;
}

.contact-in-textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-top: 5px;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
	color: #fff;
}

.contact-in-btn {
	width: 100%;
	height: 40px;
	border: 1px solid #fff;
	outline: none;
	background:rgb(61, 127, 225);
	color: #fff;
	font-size: 17px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
}

.contact-in iframe {
	width: 100%;
	height: 100%;
  border-radius: 10px;
}

@media only screen and (max-width:480px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}


/*---------career page -------------------*/

.god{
  /*background: rgba(221, 28, 28, 0.858);*/
  border-radius: 40px;
  margin: 30px;
  margin-top:50px;
  max-width:100%;
  margin-left:100px;
}
.oppor h1 {
  color:rgb(12, 4, 4);
  font-size: 50px;
  padding-left: 20px;
  padding-top: 15px;
}
section h2{
  color: #c21919;
  font-size: 30px;
  padding-left: 30px;
  padding-top: 20px;
}
label{
  font-size: 17px;
}
 section form {
  margin: 10px;
  padding: 20px;
  background-image: url(./images/aim.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  max-width: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  font-size:18px ;
  padding: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  border-radius: 15px;
  width: 100%;
  background: transparent;
}
.resume{
  margin-top: 30px;
}
.drop{
  font-size: 20px;
  padding:5px;
  border-radius: 10px;
  background: transparent;
}
input[type="file"] {
  margin-bottom: 20px;
  font-size: 15px;
  color:rgb(39, 39, 158);
}

button[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: rgb(207, 10, 20);
}

.career_main{
  display: flex;
  flex-wrap: wrap;
  margin: 40px;
  justify-content: center;
  margin-top: 100px;
  margin-left: 100px;
  background-image:url(./images/miniature-engineer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.career_job{
  background:transparent;
  box-sizing: border-box;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.3);
  margin: 20px;
  padding: 20px;
  width: 300px;
  height: 340px;
  border: 1px rgba(250, 245, 245, 0.217) solid;
  justify-content: left;
}
.career_job h2{
  color: #f7f3f3;
  font-size: 1.6em;
  text-align: left;
}
.career_job img{
  max-width:150px;
  height: 120px;
  background: transparent;
  border-radius: 5px;
}
/*.product:hover img{
cursor: pointer;
transform: scale(1.1);
}
.career_job:hover{
  box-shadow: 0px 5px 19px rgba(0,0,0,0.3);

}*/

.career_job p{
  color:rgba(171, 16, 18, 0.97);
  font-size: 1em;
  line-height: 1.5;
  margin: 15px 0;
  text-align: left;
  text-decoration: underline;
}
.priced{
  color: rgb(5, 5, 6);
  font-size: 1.2em;
  font-weight:bold;
  margin: 5px 0;
  text-align: left;
}