.header {
  display: flex;
  padding-top: 60px;
  height: 65vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.header .header__head__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header .header__head__title p {
  font-size: 35px;
  margin: 0;
  padding: 0;
  letter-spacing: 1.2px;
  font-weight: 800;
}

.header .header__head__title p:last-child {
  font-size: 45px;
  color: rgba(142, 201, 249, 255);
}

.header .header__body__title p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-items: center;
  font-size: 18px;
  letter-spacing: 1.2px;
  line-height: 36px;
}

.header .header__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header .header__btns a {
  margin-top: 20px;
  padding: 25px 40px;
  border: none;
  background-color: transparent;
  text-decoration: none;
  border-radius: 17px;
  color: #ffff;
  font-size: 17px;
  letter-spacing: 1.1px;
  border: 1px solid #5c5f89;
  font-weight: "semibold";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header .header__btns a:hover {
  background-color: rgba(25, 139, 238, 255);
  cursor: pointer;
}

.header .header__btns a:active {
  background-color: rgba(25, 150, 255, 255);
}

.header .header__btns a:last-child {
  margin-top: 20px;
  padding: 25px 40px;
  border: none;
  background-color: rgba(25, 139, 238, 255);
  letter-spacing: 1.1px;
  border: 1px solid #5c5f89;
}

.header .header__btns a:last-child:active {
  background-color: rgba(25, 150, 255, 255);
}

.header .header__btns .header__btns__icon {
  padding-left: 10px;
}



@media only screen and (max-width: 1478px) {
  .header .header__head__title p {
    font-size: 30px;
    letter-spacing: 1.1px;
  }

  .header .header__head__title p:last-child {
    font-size: 40px;
  }

  .header .header__body__title p {
    font-size: 15px;
    letter-spacing: 1.1px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 1270px) {
  .header {
    height: 60vh;
  }
}


@media only screen and (max-width: 1015px) {


   .header .header__head__title p {
    font-size: 22px;  }

  .header .header__head__title p:last-child {
    font-size: 30px;
  }

  .header .header__body__title p {
    font-size: 14px;
    line-height: 25px;
  }
  .header .header__btns a {
    margin-top: 15px;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 16px;
  }

  .header .header__btns a:last-child {
    margin-top: 15px;
    padding: 15px 30px;
 }
}

@media only screen and (max-width: 706px) {
   .header .header__btns{
    gap: 15px;
   }
 .header .header__btns a {
    padding: 12px 25px;
    border-radius: 15px;
    font-size: 15px;
  }

  .header .header__btns a:last-child {
    margin-top: 15px;
    padding: 12px 25px;
 }
 .header .header__btns .header__btns__icon {
  padding-left: 5px;
 }

 .header .header__btns img {
  width: 23px;
 }

}

@media only screen and (max-width: 600px) { 
  .header .header__btns{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .header .header__btns a {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15px;
  }

  .header .header__btns a:last-child {
    margin-top: 12px;
    padding: 15px 30px;
  }

}

@media only screen and (max-width: 545px) { 
  .header .header__head__title p {
    font-size: 20px;  
  }
  .header .header__head__title p:last-child {
    font-size: 25px;
  }
   .header .header__body__title p {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

