/* ===== 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-area{
 background: #111418;
 height: 100%;
 display:block;
 overflow: hidden;
 padding-bottom: 40px;
}

.logo {
    margin-top: 10px;
}
.logo a img{
  width: 120px;
  height: auto;
}
.left-content {
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
} 

.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: 70px;
  color: #fff;
  font-weight: 600;
  padding: 0;
  margin: 12px 0;
}
.left-content .cnt-text p{
  color: #fff;
}


 .left-bottom .left-social ul{
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: end;
 }
 .left-bottom .left-social ul li{
  margin: 2px 10px;
  padding: 0;
  overflow: visible;
 }

 .left-bottom .left-social ul li a{
  display: block;
  font-size: 16px;
  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-arrow{
    display: none;
}
.right-content {
  background: #343A40;
  padding: 20px 20px;
}
.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: 70%;
}
.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: #232A31;
}

.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: #232A31!important;
}
.form-control:focus {
    color: #fff;
}
.right-bottom{
  margin-top:22px ;
}
.right-bottom p{
  text-align: center;
  color: #dee3e4;
  font-size: 15px;
}