@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #081b29;
	color: #ededed;
}

.header {
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1000px;
	padding: 20px 50px;
	background: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.logo {
	position: relative;
	font-size: 25px;
	color: #ededed;
	text-decoration: none;
	font-weight: 600;
	padding: 0px 0px 0px 1px;
}

.logo::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: .4s;
}

.navbar a {
	font-size: 18px;
	color: #ededed;	
	text-decoration: none;
	font-weight: 500;
	margin-left: 35px;
	transition: .3s;
}

.navbar a:hover,
.navbar a.active{
	color: #00abf0;
}

.home {

	display: flex;
	align-items: center;
	padding: 150px 50px;
}

.home-content {
	max-width: 550px;
	min-width: 550px;
	margin: 0px 70px 0px 0px;
}

.home-content h1 {
	position: relative;
	font-size: 3em;
	font-weight: 600;
	line-height: 1.2;
}

.home-content h1::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: .7s;
}

.home-content h3 {
	position: relative;
	font-size: 1.6em;
	font-weight: 600;
	color: #00abf0;
}

.home-content h3::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1s;
}

.home-content p {
	position: relative;
	font-size: 1em;
	margin: 20px 40px 40px 0px;
}

.home-content p::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1.3s;
}

.home-content .btn-box{
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 345px;
	height: 50px;
}

.home-content .btn-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1.6s;
	z-index: 2;
}

.btn-box a {
	position:relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 100%;
	background: #00abf0;
	border: 2px solid #00abf0;
	border-radius: 8px;
	font-size: 19px;
	color: #081b29;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1px;
	z-index: 1;
	overflow: hidden;
	transition: .5s
}

.btn-box a:hover {
	color: #00abf0;
}

.btn-box a:nth-child(2) {
	background: transparent;
	color: #00abf0;	
}

.btn-box a:nth-child(2):hover {
	color: #081b29;	
}

.btn-box a:nth-child(2)::before {	
	background: #00abf0;
}

.btn-box a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #081b29;
	z-index: -1;
	transition: .5s;
}

.btn-box a:hover::before {
	width: 100%;	
}

.home .home-anim {
	float: right;
	width: 500px;
	height: 500px;
	background: #081b29;
		
}

.home-anim::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1s;
	z-index: 2;
}

.grid-container {
  display: grid;
  grid-template-columns: 124px 124px 124px 124px;	
  grid-template-rows: 124px 124px 124px 124px;	
  height: 124px;	
  column-gap: 4px;
  row-gap: 3px; 	
}


@-webkit-keyframes showRight {
	100% {
		width: 0;
	}
}

.about {
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 10%
}

.about-content {
	max-width: 600px;
}

.about-content h1 {
	position: relative;
	font-size: 3em;
	font-weight: 600;
	line-height: 1.2;
}

.about-content h1::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: .7s;
}

.about-content h3 {
	position: relative;
	font-size: 1.6em;
	font-weight: 600;
	color: #00abf0;
}

.about-content h3::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1s;
}

.about-content p {
	position: relative;
	font-size: 1em;
	margin: 20px 30px 40px 0px;
}

.about-content p::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #081b29;
	animation: showRight 1s ease forwards;
	animation-delay: 1.3s;
}



.anim01 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic1;
        animation-duration: 15s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;
}

@-webkit-keyframes graphic1 {
  0%   {background-image: url("animation/aiwa_sm.jpg")}
  25%  {background-image: url("animation/2014_AdMat_sm.jpg")}
  50%  {background-image: url("animation/Cpg2_Riders01.jpg")}
  75%  {background-image: url("animation/EurT_sm.jpg")}
  100% {background-image: url("animation/aiwa_sm.jpg")}
    }



.anim02 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic2;
        animation-duration: 13s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic2 {
  0%   {background-image: url("animation/FDpg2_womens01.jpg")}
  25%  {background-image: url("animation/PinkT_sm.jpg")}
  50%  {background-image: url("animation/Rpg2_NBA_WDType.jpg")}
  75%  {background-image: url("animation/GorillaT_sm.jpg")}
  100% {background-image: url("animation/FDpg2_womens01.jpg")}
    }



.anim03 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic3;
        animation-duration: 17s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic3 {
  0%   {background-image: url("animation/2014_bkdrop_sm.jpg")}
  25%  {background-image: url("animation/BOA_HOST_B_sm.jpg")}
  50%  {background-image: url("animation/FDpg2_mens08.jpg")}
  75%  {background-image: url("animation/Book_sm.jpg")}
  100% {background-image: url("animation/2014_bkdrop_sm.jpg")}
    }



.anim04 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic4;
        animation-duration: 14s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic4 {
  0%   {background-image: url("animation/PM_RWFC1_sm.jpg")}
  25%  {background-image: url("animation/FB_sm.jpg")}
  50%  {background-image: url("animation/HCES_2016_sm.jpg")}
  75%  {background-image: url("animation/IceCreamT_sm.jpg")}
  100% {background-image: url("animation/PM_RWFC1_sm.jpg")}
    }



.anim05 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic5;
        animation-duration: 13s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic5 {
  0%   {background-image: url("animation/Rpg2_Classics02.jpg")}
  25%  {background-image: url("animation/KFC_sm.jpg")}
  50%  {background-image: url("animation/NosferatuT_sm.jpg")}
  75%  {background-image: url("animation/PepsiB_sm.jpg")}
  100% {background-image: url("animation/Rpg2_Classics02.jpg")}
    }



.anim06 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic6;
        animation-duration: 16s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic6 {
  0%   {background-image: url("animation/Soba_sm.jpg")}
  25%  {background-image: url("animation/Rpg2_NFL01.jpg")}
  50%  {background-image: url("animation/suedecd_sm.jpg")}
  75%  {background-image: url("animation/Sweatshirt_sm.jpg")}
  100% {background-image: url("animation/Soba_sm.jpg")}
    }



.anim07 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic7;
        animation-duration: 14s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic7 {
  0%   {background-image: url("animation/FB_Wall01A_sm.jpg")}
  25%  {background-image: url("animation/PM_RWK_sm.jpg")}
  50%  {background-image: url("animation/Rpg2_Stitch02.jpg")}
  75%  {background-image: url("animation/SCSJUT_sm.jpg")}
  100% {background-image: url("animation/FB_Wall01A_sm.jpg")}
    }



.anim08 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic8;
        animation-duration: 13s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic8 {
  0%   {background-image: url("animation/FDpg2_detail01.jpg")}
  25%  {background-image: url("animation/Cpg2_Riders04.jpg")}
  50%  {background-image: url("animation/Lipton01_sm.jpg")}
  75%  {background-image: url("animation/Rpg2_NBA04.jpg")}
  100% {background-image: url("animation/FDpg2_detail01.jpg")}
    }



.anim09 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic9;
        animation-duration: 14s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic9 {
  0%   {background-image: url("animation/GNC02A_sm.jpg")}
  25%  {background-image: url("animation/Rpg2_NBA01.jpg")}
  50%  {background-image: url("animation/Xmas_sm.jpg")}
  75%  {background-image: url("animation/gloriacd_sm.jpg")}
  100% {background-image: url("animation/GNC02A_sm.jpg")}
    }



.anim10 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic10;
        animation-duration: 16s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic10 {
  0%   {background-image: url("animation/HeyTMRWT_sm.jpg")}
  25%  {background-image: url("animation/KFC01A_sm.jpg")}
  50%  {background-image: url("animation/RLXT_sm.jpg")}
  75%  {background-image: url("animation/PM_Wood_sm.jpg")}
  100% {background-image: url("animation/HeyTMRWT_sm.jpg")}
    }



.anim11 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic11;
        animation-duration: 12s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic11 {
  0%   {background-image: url("animation/HCES2020_sm.jpg")}
  25%  {background-image: url("animation/GorillaT_sm.jpg")}
  50%  {background-image: url("animation/Rpg2_NBA06.jpg")}
  75%  {background-image: url("animation/Logitech_sm.jpg")}
  100% {background-image: url("animation/HCES2020_sm.jpg")}
    }



.anim12 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic12;
        animation-duration: 14s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic12 {
  0%   {background-image: url("animation/FDpg2_detail02.jpg")}
  25%  {background-image: url("animation/FB_Glass_sm.jpg")}
  50%  {background-image: url("animation/BOA_INFO_A_sm.jpg")}
  75%  {background-image: url("animation/Rpg2_NBA09.jpg")}
  100% {background-image: url("animation/FDpg2_detail02.jpg")}
    }



.anim13 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic13;
        animation-duration: 17s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic13 {
  0%   {background-image: url("animation/VIP_bkdrp_sm.jpg")}
  25%  {background-image: url("animation/GNC_sm.jpg")}
  50%  {background-image: url("animation/jeffcd_sm.jpg")}
  75%  {background-image: url("animation/Rpg2_Classics03B.jpg")}
  100% {background-image: url("animation/VIP_bkdrp_sm.jpg")}
    }



.anim14 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic14;
        animation-duration: 15s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic14 {
  0%   {background-image: url("animation/KFC03A_Bags2_sm.jpg")}
  25%  {background-image: url("animation/if_Final_sm.jpg")}
  50%  {background-image: url("animation/PepsiA_sm.jpg")}
  75%  {background-image: url("animation/PinkT_sm.jpg")}
  100% {background-image: url("animation/KFC03A_Bags2_sm.jpg")}
    }



.anim15 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic15;
        animation-duration: 13s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic15 {
  0%   {background-image: url("animation/PM_GR_sm.jpg")}
  25%  {background-image: url("animation/Rpg2_MiscDJ02.jpg")}
  50%  {background-image: url("animation/FDpg2_mens02.jpg")}
  75%  {background-image: url("animation/Rpg2_NBA07.jpg")}
  100% {background-image: url("animation/PM_GR_sm.jpg")}
    }



.anim16 {
	width: 125px;
        height: 125px;
        position: relative;
        background-color: #081b29;
        animation-name: graphic16;
        animation-duration: 16s;
        animation-iteration-count: infinite;
        background-size: contain;
        background-repeat: no-repeat;	
}

@-webkit-keyframes graphic16 {
  0%   {background-image: url("animation/Cpg2_Tattoo.jpg")}
  25%  {background-image: url("animation/FB_mask01_sm.jpg")}
  50%  {background-image: url("animation/BOA_MEDIA_A_sm.jpg")}
  75%  {background-image: url("animation/HCES_2017_sm.jpg")}
  100% {background-image: url("animation/Cpg2_Tattoo.jpg")}
    }