@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,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins";
}

a {
  text-decoration: none;
  color: black;
}
li {
  list-style: none;
}

.section-nav {
  display: flex;
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
  padding: 2rem;
  justify-content: space-between;
}

.right-section-nav nav {
  display: flex;
  gap: 2rem;
}

.left-section-nav span a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #5c48ee;
}

.right-section-nav a {
  font-size: 1rem;
  font-weight: 300;
  color: #333333;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.right-section-nav a:hover {
  color: #5c48ee;
}
.right-section-nav a.active {
  background-color: #5c48ee;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.right-section-nav a.active:hover {
  background-color: #4833e7;
}

.header-content {
  gap: 5rem;
  max-width: 1200px;
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: calc(100vh - 100px);
}


.header-content-right-image img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header-content-right-image img:nth-child(1){
  max-width: 250px;
}
.header-content-right-image img:nth-child(2){
  max-width: 250px;
}

.header-content-right{
  place-content: center;
  position: relative;
}
.header-content-right-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.header-content-right ul{
  background:linear-gradient(to right  , rgba(92,72,238,0.6), rgba(15,30,106,0.4));
  color:#fff;
  padding: 1rem 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width:fit-content;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  backdrop-filter: blur(30px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.header-content-right ul li a{
color: #fff;
}

.header-content-right ul li{
  margin: .1rem;
  font-size: .7rem;
  list-style:disc;
}

.header-content-right-image img:nth-child(2){
  transform: translateY(-70px);
  -webkit-transform: translateY(-70px);
  -moz-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  -o-transform: translateY(-70px);
}



.header-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-content-left h2{
  font-size: 2rem;
  width: 100%;
  line-height: 2.5rem;
}

.header-content-left h2:nth-child(1){
  font-weight: 400;
}
.header-content-left h2:nth-child(2){
  color:#0f1e6a;
}
.header-content-left h2:nth-child(3){
  color:#5c48f2;
}

.header-content-left p{
  text-align: justify;
  word-spacing: -.3rem;
 margin: 1rem 0;
 color: #333333;
}

form{
  width: 100%;
  display: flex;
}

input{
  width: 100%;
  max-width: 300px;
  border: none;
  background-color: #fff;
  font-size: .8rem;
  padding: .5rem;
  box-shadow: 5px 5px 20px rgba(0,0,0,.2);
  outline: 0;
}

button{
  border: none;
  background-color: #5c48ee;
  color: #fff;
  padding: .8rem 1rem;
  box-shadow: 5px 5px 20px rgba(0,0,0,.2);
  white-space:nowrap ;
}
