@charset "UTF-8";
/* CSS Document */
html, body {
  background: #358BB6;
  background: radial-gradient(circle at top, rgba(53, 139, 182, 1) 0%, rgba(16, 18, 49, 1) 75%);
  background-image: url('../images/man.png'), radial-gradient(circle at top, rgba(53, 139, 182, 1) 0%, rgba(16, 18, 49, 1) 75%);
  background-size: contain; /* Adjust as needed */
  background-position: center; /* Adjust as needed */
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  height: 100%;
}
@media (max-width: 767px) {
  html, body {
	  background-image: url('../images/man2.png'), radial-gradient(circle at top, rgba(53, 139, 182, 1) 0%, rgba(16, 18, 49, 1) 75%);
    background-size: auto; /* Adjust as needed */
  }
}
a, a:hover {
  color: #fff;
}
.logo {
  position: relative;
  min-height: 100%;
  width: 100%;
  overflow: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .logo img {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .logo img {
    width: 50%;
  }
}
.logobox {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.logotitle {
  font-size: 15px;
  color: #fff;
}
p {
  margin-top: 30px;
}
.responsive {}