/*==========================
    RESET
==========================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
 --primary:#18A8F5;
 --secondary:#F7931E;
 --white:#ffffff;
 --glass:rgba(255,255,255,.08);
 --border:rgba(255,255,255,.15);
}
/*==========================
    BODY
==========================*/

body {
	font-family: 'Poppins', sans-serif;
	background: #ffffff;
	color: #fff;
	overflow: hidden;
	overflow-x:hidden;
    overflow-y:auto;
}
/*==========================
    CONTAINER
==========================*/

.container {
	width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:40px 25px;
}
/*==========================
    CARD
==========================*/

.card {
	position: relative;
	/*width: min(1400px, 95vw);
	height: calc(100vh - 50px);*/
	overflow: hidden;
	border-radius: 32px;
	padding: 25px 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,.15);
	box-shadow: 0 25px 70px rgba(0,0,0,.18), 0 0 60px rgba(24,168,245,.18);
	

    width:min(1400px,95vw);
    min-height:calc(100vh - 50px);
    height:auto;
    overflow:hidden;
}
/*==========================
    BACKGROUND
==========================*/

.bg-animation{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-1;

    overflow:hidden;

    background:
        radial-gradient(circle at 15% 25%, rgba(247,147,30,.45), transparent 25%),
        radial-gradient(circle at 85% 20%, rgba(24,168,245,.45), transparent 28%),
        radial-gradient(circle at 65% 80%, rgba(24,168,245,.35), transparent 30%),
        radial-gradient(circle at 35% 75%, rgba(255,255,255,.10), transparent 25%),
        linear-gradient(135deg,#04152d,#003b80,#0a63b8);

    background-size:250% 250%;

    animation:bgMove 18s linear infinite;

}
 @keyframes bgMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}
/*==========================
    LOGO
==========================*/

.logo {
	text-align: center;
}
.logo img {
	width: 220px;
	max-width: 100%;
	transition: .4s;
	filter: drop-shadow(0 0 35px rgba(24,168,245,.65));
}
.logo img:hover {
	transform: scale(1.05);
}
/*==========================
    TITLE
==========================*/

h1 {
	text-align: center;
	font-size: 42px;
	font-weight: 700;
	margin-top: 12px;
	letter-spacing: 1px;
}
.desc {
	text-align: center;
	margin: 15px auto 0;
	font-size: 20px;
	line-height: 1.8;
	color: #f5f5f5;
}
/*==========================
    COUNTDOWN
==========================*/

.countdown {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 35px 0;
}
.time-box {
	width: 150px;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 24px;
	background: linear-gradient( 180deg, rgba(255,255,255,.16), rgba(255,255,255,.06) );
	border: 1px solid rgba(255,255,255,.25);
	box-shadow: 0 18px 40px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.25);
	transition: .35s;
}
.time-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(24,168,245,.45), 0 0 35px rgba(247,147,30,.45);
}
.time-box span {
	display: block;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	color: #FFD166;
	text-shadow: 0 0 12px rgba(255,209,102,.7), 0 0 30px rgba(247,147,30,.45);
}
.time-box small {
	margin-top: 12px;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
}
/*==========================
    LINE
==========================*/

.line {
	height: 1px;
	margin: 20px 0;
	background: linear-gradient( to right, transparent, var(--primary), transparent );
}
/*==========================
    CONTENT
==========================*/

.content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
.left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
/*==========================
    COMPANY
==========================*/

.company {	
	padding: 22px;
	border-radius: 18px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.08);
	transition: .35s;
}
.company:hover {
	transform: translateY(-4px);
	background: rgba(255,255,255,.12);
	box-shadow: 0 12px 25px rgba(0,0,0,.15);
}
.company h2 {
	color: var(--secondary);
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 600;
}
.company p {
	font-size: 15px;
	line-height: 1.9;
	color: #f2f2f2;
}
.service-box {
	text-align: center;
}
.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}
.service-list span {
	padding: 12px 20px;
	border-radius: 30px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.15);
	font-size: 15px;
	font-weight: 500;
	transition: .3s;
	color:#FFFFFF;
}
.service-list span:hover {
	background: #18A8F5;
	border-color: #18A8F5;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(24,168,245,.35);
}

/*==========================
    TABLET
==========================*/

@media(max-width:992px) {
body {
	overflow: auto;
}
.card {
	height: auto;
	padding: 30px;
}
.content {
	grid-template-columns: 1fr;
}
.info-grid {
	grid-template-columns: 1fr;
}
.countdown {
	flex-wrap: wrap;
}
}

/*==========================
    MOBILE
==========================*/

@media(max-width:768px) {
.logo img {
	width: 170px;
}
h1 {
	font-size: 30px;
}
.desc {
	font-size: 15px;
}
.countdown {
	gap: 15px;
}
.time-box {
	width: 100px;
	height: 100px;
}
.time-box span {
	font-size: 38px;
}
.time-box small {
	font-size: 13px;
}
.company {
	padding: 18px;
}
.company h2 {
	font-size: 19px;
}
.company p {
	font-size: 14px;
}
}

/*==========================
    SMALL MOBILE
==========================*/

@media(max-width:480px) {
.container {
	padding: 15px;
}
.card {
	padding: 20px;
}
.logo img {
	width: 140px;
}
.time-box {
	width: 78px;
	height: 78px;
}
.time-box span {
	font-size: 28px;
}
.time-box small {
	font-size: 11px;
}
h1 {
	font-size: 24px;
}
.desc {
	font-size: 14px;
}
.company h2 {
	font-size: 17px;
}
.company p {
	font-size: 13px;
}
}
