/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}

.main-content{
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
}
.main-content::before{
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  position: absolute;
  content: '';
  z-index: -1;
  opacity: 0.5;
}
.logo a img{
  width: 120px;
  height: auto;
}
.left-content {
  text-align: center;
  font-family: 'Poppins', sans-serif;
    padding: 40px 30px;
} 

.left-content .cnt-text h2 {
  font-weight: bold;
  font-size: 37px;
  background: #0064ff;
  padding: 10px 42px;
  border-radius: 12px;
  display: inline-block;
  color: #fff;
}
.left-content .cnt-text h1 {
  font-size: 65px;
  color: #fff;
  font-weight: 600;
  padding: 0;
  margin: 18px 0;
}
.left-content .cnt-text p{
  color: #fff;
}
.left-content .left-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

 .left-bottom .left-social ul{
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
 }
 .left-bottom .left-social ul li{
  margin: 2px 6px;
  padding: 0;
  overflow: visible;
 }

 .left-bottom .left-social ul li a{
  display: block;
  height: 26px;
  line-height: 26px;
  width: 26px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
 }
.left-bottom .left-social ul li a:hover{
  color: #0064FF;
  transition: all 0.2s ease;
}

.left-content .left-bottom .left-add a{
  text-decoration: none;
  color: #fff;
}
.right-content {
  margin-top: 100px;
}
.right-form {
  margin-top: 30px;
}
.right-text {
  text-align: center;
}
.right-text h2{
  font-weight: bold;
  font-size: 37px;
  color: #fff;
}
.right-text p {
  color: #b3b3b3;
}
.button-bar button{
  color: #fff;
  border: none;
  outline: none;
  background: #0064ff;
  padding: 15px 20px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}
.button-bar button:hover{
  background:blue;
  transition: all 0.3s ease;
}
.form-group{
  margin-bottom: 20px;
}
.subscribe {
  position: relative;
  overflow: hidden;
  width: 60%;
  margin: 0 auto;
}
.subscribe input[type="search"] {
  border: 1px solid #e7e7e7;
  padding: 18px 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #b3b3b3;
  font-size: 15px;
  width: 100%;
  border-radius: 3px;
  background: #001B29;
  opacity: 0.8;
}

.subscribe button[type="submit"] {
  background: #0064ff;
  font-weight: 700;
  font-size: 14px;
  color: #FFF;
  text-transform: uppercase;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35%;
  cursor: pointer;
  transition: all 0.3s ease;

}
.form-control {
  padding: 10px 11px;
  color: #fff;
  background-color: #001B29!important;
  opacity: 0.8;
}
.form-control:focus {
    color: #fff;
}
.right-bottom{
  margin-top:22px ;
}
.right-bottom p{
  text-align: center;
  color: #dee3e4;
  font-size: 15px;
}
.arrow-text{
  display: none;
}