
body{
	height: 100vh;
  margin: 0;
  color: #fff;
  overflow: hidden;
	font-size: 16px;
	color: #222222;
	line-height: 22px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	/*background: linear-gradient(135deg, #4e73df, #1cc88a);*/
}
*,ul,ol{
	margin:0;
	padding:0;
}
ul,ol{
	list-style-type: none;
}
a{
	color: inherit;
	text-decoration: none;
}
a:hover,a:focus{
	color:#217eac;
	outline: none;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
	margin-bottom: 15px;
	color: #1f1f1f;
}
hr{
	border-color: #e9e9e9;
}
.main-box{
	width: 100%;
	height: 100vh;
}
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1920&q=80) no-repeat center center / cover;
    z-index: -2;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.main-box-content{
	vertical-align: middle;
	position: relative;
	z-index: 9;
	padding:50px;
	text-align: center;
}
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

/*.logo{
	max-width: 400px;
}*/
.title{
	font-size: 3em;
	margin-top: 30px;
}
.top-contact-list{
	display: block;
	text-align: center;
}
.top-contact-list li{
	display: inline-block;
	vertical-align: top;
	padding-top: 8px;
	padding-bottom: 8px;
}
.top-contact-list li{
	padding: 0 10px;
	color: #fff;
}
.top-contact-list li i{
	margin-right: 8px;
	font-size: 18px;
	vertical-align: middle;
}
.top-contact-list li a i{
	background-color: #ffb400;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 100%;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	border:1px solid #ffb400;
}
.top-contact-list li:last-child{
	padding-right: 0;
}
.top-contact-list li:hover i{
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	transform: rotate(360deg);
}
.top-contact-list li:hover a{
	color: #ffb400;
}
@media(min-width:220px) and (max-width:991px){
	.logo {
	  max-width: 100%;
	}
}
@media(min-width:220px) and (max-width:575px){
	.logo {
	  max-width: 75%;
	}
	.main-box-content{
		padding:20px;
	}
	.title{
		font-size: 2em;
	}
	.top-contact-list li a,
	.top-contact-list li a i{
		display: table;
		margin:10px auto;
	}
	.glass-card{
		padding: 20px;
	}
}