html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px; /* Margin bottom by footer height */
 font-family:'Poppins', sans-serif;
 overflow-x:hidden;
}
.footer {
  width: 100%;
 color:#fff;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #111;
}
.container{
max-width:800px;
}
.box{
max-width:800px;
margin:50px auto;
background:#fff;
border-radius:25px;
border:25px solid #fff;
}
.footer{
max-width:800px;
margin: 0px auto;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.navbar{
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
}
#loading-image {
  z-index: 100;
}
 #loader {
            border: 12px solid #f3f3f3;
            border-radius: 50%;
            border-top: 12px solid #444444;
            width: 70px;
            height: 70px;
            animation: spin 1s linear infinite;
        }
 
        .center {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
        }
 
        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }
.logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.logo-image img {
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search_bar {margin-top: 25px;position: relative;}
.search_bar form .form-group {position: relative;max-width:600px;height: 60px;margin: 0 auto;}
.search_bar form .form-group .form-control {width: 100%;height: 100%;border-radius: 100px;border: 1px solid #1868eb;font-size: 16px;padding-left: 30px;color: #3E3F66;}
.search_bar form .form-group .form-control::placeholder {color:#3E3F66;}
.search_bar form .form-group .form-control:focus {outline: none;box-shadow: none;border-color:#222;}
.search_bar form .form-group .btn {position: absolute;right: 2px;top: 2px;background-color:#1868eb;width: 56px;height: 56px;padding: 0;border-radius: 100px;text-align: center;line-height: 56px;font-size: 23px;color: #fff;}
.search_bar form .form-group .btn:hover {background-color: #1868eb;}