@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,500&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --main-color:  #632264;
}


.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
   
}

.banner .box {
    position: relative;
    height: 100vh;
}

.banner .box:last-child {
    background: var(--main-color);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    font-size: 1.4em;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

header ul {
    display: flex;
}

header ul li {
 list-style: none;
 margin-left: 30px;
}

header ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #bdbdbd;
    letter-spacing: 1px;
    font-size: 18px;
 
}

header ul li a:hover {
    color: var(--main-color);
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.content h2 {
    font-size: 4em;
    color: var(--main-color);
}

.content p {
    font-size: 1.1em;
    color: #777;
    line-height: 1.8em;
}

.btn {
    display: inline-block;
    font-size: 1.1em;
    margin-top: 20px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--main-color);
    padding: 10px 30px;
    letter-spacing: 1px;
    transition: 0.5s;
}

.btn:hover {
    background: var(--main-color);
    color: #fff;
    letter-spacing: 2px;
}

.sci {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 60px;
    bottom: 30px;
}
.sci h3 {
    font-weight: 500;
    color: #bdbdbd;
    letter-spacing: 1px;

}

.sci li {
    list-style: none;
    margin-left: 20px;
}

.sci li img {
    max-width: 30px;
    border-radius: 6px;
}

.images {
    display: flex;
    flex-wrap: wrap;
}

.images .imgBx {
    position: relative;
    width: 50%;
    height: 50vh;
    background: var(--main-color);
}

.images .imgBx:nth-child(2){
    background: var(--main-color);
}

.images .imgBx:nth-child(3){
  width: 100%;
  background: var(--main-color);
}

.images .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Responsiveness */

@media (max-width: 991px){
    .banner {
    display: grid;
    grid-template-columns: 1fr;
   }
   header{
       padding: 20px 40px;
   }
   .content {
       padding: 40px;
   }
 .banner .box .content{
     height: 70vh;
 }
 .banner .box .images{
     height: auto;
 }
}

@media (max-width: 600px){
  .content h2 {
      font-size: 3em;
  }
  .images .imgBx {
      width: 100%;
      height: 40vh;
  }
  .footeer{
      height: 80px;
      position: fixed;
      bottom: 0;
  }

 .images {
     display: none;
 }

 .sci li img {
    display: none;
}

}

@media (max-width: 400px){
 .menu-top{
    display: none;
 }
 .login-icon{
     display: block !important;
 }
}

