
*{
  box-sizing: border-box;
  margin:0;
  padding: 0;
}

body {
 /* background-color: rgba(1, 23, 214, 1);*/
}

.navbar{
  background-color: rgba(1, 23, 214, 0.8);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  font-size: 1.2rem;
  top: 0;
  z-index: 999;
}

.navbar__container{
  display:flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  
}


.navbar__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;

}

.navbar__items{
  height: 1rem;
  list-style: none;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: whitesmoke;
  padding: 0 1rem;
  height: 100%;
}


.navbar__links:hover{
  color: rgba(5, 9, 19, 0.4);
  transition: all 0.3 ease;
}

@media screen and (max-width:960px){
  .navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  } 
  .navbar__menu{
    display: grid;
    justify-content: center;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    /* This allows the menu to fit vertically */
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background:  rgba(1, 23, 214, 0.8);

  }
  /* this shows what is going to triggered the javasript */
  
  .navbar__menu.active{ 
    background:  rgba(1, 23, 214, 0.8);
    top: 100%;
    opacity:1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 50vh;
    font-size: 1.6rem;

  }
  .navbar__toggle .bar{
    width: 24px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: whitesmoke;
  }

  img{
    padding: 1rem;
  }

  .navbar__items{
  width: 100%;

  }

  .navbar__links{
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;

  }
  #mobile-menu{
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }
  .navbar__toggle .bar{
    display: block;
    cursor: pointer;

  }

  /* Adding Animation*/

  #mobile-menu.is-active .bar:nth-child(2){
    opacity: 0;
  }
  
  #mobile-menu.is-active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
} 

/* First Middle Section CSS*/

.main{
    background-color:rgba(1, 23, 214, 0.8);
}

.main__container{
  display: grid;
  grid-template-columns:1fr 1fr;
  align-items: center;
  justify-self: center;
  margin: 0;
  height: 90vh;
  background-color: rgba(1, 23, 214, 0.8);
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main__content h1{
  font-size:4rem;
  background-color: #ffffff;
  background-image: linear-gradient(to top, #ffffff 0%, #ffff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  
}

.main__content h2{
  font-size:4rem;
  background-color: #ffffff;
  background-image:linear-gradient(to top, #0555ff 0%, #0123ff 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent; 
}

.main__content p {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.main__btn {
  margin-top: 1rem;
  padding: 10px 20px;
  background-image:linear-gradient(to top, #0343ff 0, #0472ff 100%) ;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  border: none;
  outline: none;
  transition: all 0.35s;
}


.main__btn a{
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}

.main__btn:after {
  position: absolute;
  content: ''; 
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgb(01, 05, 255);
  transition: all 0.3s ease;
  border-radius: 5px;

}




.main__btn:hover:after {
  width: 100%;
}

.main__img--container{
  text-align: center;
}

#main__img {
  height: 100%;
  width: 100%;
}

/** Mobile Responsiveness **/

@media screen and (max-width:768px){
  
  .main__container{
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    height: 90vh;

  }

  .main__content {
    text-align: center;
    margin-bottom: 4rem;
  }

  .main__content h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .main__content h2 {
    font-size: 2.5rem;
  }

  .main__content p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width:480px){
  .main__content h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .main__content h2 {
    font-size: 2rem;
  }

  .main__content p {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .main__btn {

  }
}

/* Second Middle Section */

.ai__container {
  background-color: rgba(1, 23, 214, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.ai__container h1 {
  color: whitesmoke;
  margin-bottom: 5rem;
  font-size: 2.5rem;
  background-size: 100%; 
}

.ai__container-img1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: 4rem;
}
 
.section__content {
  margin: 2rem auto; 
  height: 525px;
  width: 400px;
  border-radius: 4px;
  background-size: cover;
  background-image: linear-gradient
  (to bottom, 
  (0,0,0,0)0%, 
  (17,17,17,0.6)
  100%);
  position: relative;
  color: #fff;
}
  
.ai__container h2 {
  position: absolute;
  margin: 0;
  top: 350px;
  left: 30px;
}

.section__content p {
  position: absolute;
  margin: 0;
  top: 380px;
  left: 30px;
}

.section__content button {
  padding: 5px 5px;
  color: #ffff;
  border: none;
  outline: none;
  border-radius: 4px;
  position: absolute;
  margin: 0;
  top: 410px;
  left: 30px;
  font-size: 1rem;
  background-color: #0123ff;
}

.section__content:hover {
  transform: scale(1.075); /* this allows 4 the size of the image to increase */
  transition: 0.2s ease-in;
  cursor: pointer;
}
.img1 {
  height: 445px;
  width: 445px;
}

@media screen and (max-width:960px) {
  .ai__container {
    height: 1600px;
  }
  .ai__container h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  }

@media screen and (max-width:480px) {
  .ai__container {
    height: 1400px;
  }
  .ai__container h1 {
    font-size: 1.2rem;
  }

  .section__content {
    width: 300px;
  }
}
/* Footer Section*/

.footer__container {
  background-color:rgb(0, 0, 214, 1);
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
}

.footer__links--wrapper {
  display: flex;

}

.footer__links--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 16px;
  width:160px;
  box-sizing: border-box;
}

.footer__links--items h2 {
  margin-bottom: 16px;
  color: whitesmoke;
}

.footer__links--items a {
  text-decoration: none;
  color: #ffffa1;
  margin-bottom: 0.5rem;
}

.footer__links--items:hover {
  transition: all ease-out;
  color: #fefefe;
}

.social__media {
  background: #0123ff; 
  width: 100%;
}

.social__media--wrap {
  display: flex;
}

.website__right {
  color: #fafafa;
  background-color: #0123ff;
}

@media screen and (max-width:820px) {
  .footer__links{
    padding-top: 2rem;

  }
  .footer__links--wrapper {
    flex-direction: column;

  }
  .website__right {
    margin: 2rem;
  }
}




                                   
