*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
    font-family: 'Open Sans', sans-serif;

}

nav{
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    min-height: 8vh;
    align-items: center;
    background-color: whitesmoke;
    font-family: 'Open Sans', sans-serif;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 70%;
    max-width: 700px;
}

.nav-links li{
    list-style: none;
}

nav li:hover a {
    color: #38c0ff;
    transition: 0.2s;
  }

.nav-links a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
#cnisa-lakohot {
  background-color: #99daf9;
  padding: 5px;
  border-radius: 10px;
}
#cnisa-lakohot:hover a{
  color: black;
}
#cnisa-lakohot:hover{
  background-color: #44bae8;
  transition: 0.6s;
}
.burger {
    display: none;
}

.burger div{
    background-color: black;
    width: 25px;
    height: 3px;
    margin: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.add-shadow {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px
  }

.logo-container {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.logo-container img {
    width: 200px;
    filter: drop-shadow(4px 6px 24px rgba(0, 0, 0, 0.25));
}

.logo-container h2 {
    display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin-bottom: 13px;
}

.logo-container h2:before,
.logo-container h2:after {
	content: '';
	border-top: 2px solid;
	margin: 0 20% 0 0;
	flex: 1 0 20px;
	color: #666666;
}
.logo-container h2:after {
	margin: 0 0 0 20%;
}

.ul-container {
  display: flex;
  justify-content: space-evenly;
  margin-top: 80px;
  margin-bottom: 80px;
}

.who-ul,
.software-s-container {
    font-size: 14px;
    margin-right: 20px;
    list-style-type: circle;
}

.p-ul1{
  font-weight: bold;
  text-decoration: underline;
}

.ul-container {
  display: flex;
  justify-content: space-evenly;
}

.product-container {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 100px;
}

.basis-product {
  box-shadow: 4px 5px 24px rgba(0, 0, 0, 0.25);
  background-color: #626262;
  padding: 40px 40px 0 40px;
  border-radius: 6px;
  display: flex;
  justify-content: space-evenly;
}

.premium-product {
  box-shadow: 4px 5px 24px rgba(0, 0, 0, 0.25);
  background-color: #626262;
  padding: 40px 40px 9px 40px;
  border-radius: 6px;
  display: flex;
  justify-content: space-evenly;
}

.content-c1,
.content-c2 {
  color: white;
}

.join-us-b {
  cursor: pointer;
  margin-right: 37%;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  background-color: #99daf9;
  border: none;
  box-shadow: 4px 5px 24px rgba(0, 0, 0, 0.25);
}
.join-us-b:hover {
  box-shadow: 0 0 0 1px white, 0 0 0 2px #626262, 0 0 0 5px #626262,
    0 0 0 6.5px white, 0 0 0 7px #99daf9;
  border-radius: 100px;
  background: none;
  color: #ffffff;
}

.btn-p-1 {
  margin-top: 30%;
  text-align: center;
}

.btn-p-2 {
  margin-top: 10px;
  text-align: center;
}



@media screen and (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: whitesmoke;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }
    .burger {
        display: block;
        position: absolute;
        left: 85%;
        cursor: pointer;
    }

    .product-container {
      align-items: center;
      flex-direction: column;
      max-width: 500px;
      justify-content: space-evenly;
  
    }
    .img-c1 {
      display: none;
    }
  
    .basis-product {
      margin: 10% 10% 10% 10%;
      padding-bottom: 30px;
    }
  
    .premium-product {
      margin: 10% 10% 10% 10%;
      padding-bottom: 30px;
    }
  
    .btn-p-2 {
      width: 150px;
      margin: 0;
    }
  
    .software-s-container, .who-ul {
      padding: 0;
    }

    .ul-container {
      flex-direction:column;
      margin-right: 10%;
    }

    .who-ul {
      margin-bottom: 50px;
    }
  
  }
@media screen and (max-width: 1230px) {
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
nav li:hover a{
    color: #99DAF9;
    transition: 0.2s;
}


footer{
    bottom: 0;
    left: 0;
    right: 0;
    background: #4d4d4d;
    min-height: auto;
    width: 100%;
    font-family: sans-serif;
    padding-top: 40px;
    color: #fff;
  }
  .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
  }
  .footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #cacdd2;
  }
  .socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
  }
  
  .socials a i{
    text-decoration: none;
    color: #fff;
    border: 1.1px solid white;
    padding: 2px 5px 0px 5px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: color .4s ease;
  
  }
  
  li {
    text-align: -webkit-match-parent;
  }
  
  
  .fa-facebook:before {
    content: "\f09a";
  }
  
  .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  ul {
    list-style-type: disc;
  }
  
  .socials a:hover i{
    color: aqua;
  }
  
  .footer-bottom{
    background: #4d4d4d;
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
    text-align: center;
  }
  .footer-bottom p{
  float: left;
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
  }
  .footer-bottom p a{
  color:#44bae8;
  font-size: 16px;
  text-decoration: none;
  }
  .footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
  }
  .footer-menu{
  float: right;
  
  }
  .footer-menu ul{
  display: flex;
  }
  .footer-menu ul li{
  padding-right: 10px;
  display: block;
  }
  .footer-menu ul li a{
  color: #ffffff;
  text-decoration: none;
  }
  .footer-menu ul li a:hover{
  color: #27bcda;
  }
  
  @media (max-width:500px) {
  .footer-menu ul{
  display: flex;
  margin-top: 10px;
  }
  }

