@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.container {
  display: flex;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.container .image {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
body::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: -1;
  opacity: 0.2;
}
.container header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin: 2rem;
  border: 1px solid white;
  padding: 2rem 2.5rem;
  border-radius: 0.5rem;
  background: rgba(250, 250, 250, 0.2);
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #eee;
}
.time .text {
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  background-color: #eee;
  color: #0d6a81;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  .container header {
    font-size: 50px;
  }
}
.copyright{
    text-align: center;
    margin-top: 20px;
}

*{
    box-sizing:border-box;
    }
    
    :root{
    --white:#FFF;
    --primary:#5693d5;
    }
    
    body{
    width:100vw;
    height:100vh;
    margin:0;
    overflow:hidden !important;
    font-family: 'Source Sans 3', sans-serif !important;
    background: linear-gradient(rgba(1,1,1,.7), rgba(1, 1, 1, 0.6)), url("https://i.ibb.co/n0xx0mr/bg.jpg");
    background-position:center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    position:relative;
    }
    
    .content{
    width:70%;
    text-align:center;
    }
    
    .content .logo{
    width:13%;
    position:absolute;
    top:1rem;
    left:2vw;
    }
    
    .content h1{
    font-size:4.5em;
    font-family: 'Raleway', sans-serif;
    font-weight:900;
    }
    
    .content h2{
    position:relative;
    top:-30px;
    font-weight:200;
    }
    
    .content .social_icons{
    position:fixed;
    right:2vw;
    bottom:2vh;
    }
    
    .content .social_icons:before{
    content:"";
    width:1px;
    height:100%;
    background-color:var(--white);
    position:absolute;
    top:-100%;
    }
    
    .content .social_icons a{
    margin:10px 0px;
    color:var(--white);
    display:block;
    text-decoration:none;
    font-size:1.5em;
    transition:0.5s;
    }
    
    .content .social_icons a:hover{
    color:var(--primary);
    }
    
    
    .arrow {
    text-align: center;
    margin: 1% 0;
    }
    .arrow .fa{
    color:var(--white);
    font-weight:200;
    text-decoration:none;
    }
    .bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    }
    @-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
    transform: translateY(0);
    }
    40% {
    transform: translateY(-30px);
    }
    60% {
    transform: translateY(-15px);
    }
    }
    @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
    transform: translateY(0);
    }
    40% {
    transform: translateY(-30px);
    }
    60% {
    transform: translateY(-15px);
    }
    }
    
    
    .content .button{
    position:relative;
    top:-10px;
    }
    
    .searchBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translate(-50%,50%);
    border-radius: 40px;
    padding: 5px 10px;
    display:flex;
    
    }
    
    .searchBox:hover > .searchInput {
    width: 240px;
    padding:10px;
    }
    
    .searchBox:hover > .searchButton {
    background: white;
    color : #2f3640;
    }
    
    .searchBox:hover{
    background: #2f3640;
    }
    
    .searchBox:hover > .searchButton:hover {
    background-color:var(--primary);
    border:1px solid var(--primary);
    color:var(--white);
    }
    
    .searchButton {
    color: white;
    float: right;
    width: auto;
    padding:10px 20px;
    border-radius:40px;
    background:transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    border:0;
    font-style:normal !Important;
    font-weight:600;
    text-align:center;
    border:1px solid var(--white);
    }
    
    .searchInput {
    border:none;
    background: none;
    outline:none !important;
    float:left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: 0.4s;
    width: 0px;
    }
    
    @media screen and (max-width: 1020px) {
    .content h1{
    font-size:2em;
    }
    .content h2{
    position:relative;
    top:-10px;
    }
    }
    
    @media screen and (max-width: 820px) {
    .content{
    width:100%;
    padding:1rem;
    }
    .content .logo{
    width:20%;
    }
    .content h1{
    font-size:1.5em;
    }
    .content h2{
    position:relative;
    top:-10px;
    }
    .content .social_icons{
    position:absolute;
    width:100%;
    right:0vw;
    bottom:1vh;
    display:flex;
    align-items:center;
    justify-content:center;
    }
    
    .content .social_icons a{
    margin:0 15px;
    }
    
    .content .social_icons:before{
    content:"";
    width:0px;
    height:0%;
    top:00%;
    }
    
    .searchBox:hover > .searchInput {
    max-width:90%;
    width: 90%;
    padding: 5px 6px;
    }
    .searchBox:hover > .searchButton {
    font-size:13px;
    white-space:nowrap;
    }
    .searchBox:hover{
    display:flex;
    width:100%;
    }
    }


    #snackbar {
      visibility: hidden;
      min-width: 250px;
      margin-left: -125px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 2px;
      padding: 16px;
      position: fixed;
      z-index: 1;
      left: 50%;
      bottom: 30px;
      font-size: 17px;
    }
    
    #snackbar.show {
      visibility: visible;
      -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
      animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
    
    @-webkit-keyframes fadein {
      from {bottom: 0; opacity: 0;} 
      to {bottom: 30px; opacity: 1;}
    }
    
    @keyframes fadein {
      from {bottom: 0; opacity: 0;}
      to {bottom: 30px; opacity: 1;}
    }
    
    @-webkit-keyframes fadeout {
      from {bottom: 30px; opacity: 1;} 
      to {bottom: 0; opacity: 0;}
    }
    
    @keyframes fadeout {
      from {bottom: 30px; opacity: 1;}
      to {bottom: 0; opacity: 0;}
    }