@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
header .logo
{
  color: #fff;
  text-transform: ;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 30px;
  height: 30px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:;
  mix-blend-mode: ;
}

.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}


@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: -1px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}
/* style */
.height{
  align-items: center;
  margin-left: 30%;
}
body {
  font-family: 'Varela Round', sans-serif;
}

.form-control {
  box-shadow: none;
  border-color: #ddd;
}

.form-control:focus {
  border-color: #FB6E9D;
  box-shadow: 0 0 8px rgba(251, 110, 157, 0.4);
}

.modal-login {
  color: #434343;
  width: 350px;
  margin: 30px auto;
}

.modal-login .modal-content {
  padding: 20px;
  border-radius: 1px;
  border: none;
  position: relative;
}

.modal-login .modal-header {
  border-bottom: none;
}

.modal-login h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: -10px;
}

.modal-login .avatar {
  color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 9;
  background: #8826a9d6;
  padding: 15px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.modal-login .avatar i {
  font-size: 0;
}

.modal-login .form-control,
.modal-login .btn {
  min-height: 40px;
  border-radius: 1px;
  transition: all 0.5s;
}

.modal-login .hint-text {
  text-align: center;
  padding-top: 10px;
}

.modal-login .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-login .btn {
  background: #8826a9d6;
  border: none;
  line-height: normal;
}

.modal-login .btn:hover,
.modal-login .btn:focus {
  background: #fb3c7a;
}

.modal-login .hint-text a {
  color: #999;
}

.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}