@media screen and (min-width: 600px) {
	main{
		padding-bottom: 5vw;
		background-color: #000;
		background-image: url(image/sitemap.jpg);
		background-size: cover;
		background-attachment: fixed;
		background-repeat: no-repeat;
	}
	#ab-head{
		width: 100vw;
		padding: 12vw 0 6vw 0;
		animation: tc 1s backwards;
	}
	#ab-head > h1{
		width: 100vw;
		text-align: center;
		position: relative;
	}
	#ab-head > h1 > span{
		color: #fff;
		height: 3vw;
		position: relative;
		line-height: 3vw;
		font-size: 5vw;
		z-index: 1;
	}
	#ab-head > h1::before{
		content: "";
		display: block;
		width: 63vw;
		height: 13vw;
		background-color: #000;
		transform: skew(-15deg) translate(0, 0);
		position: absolute;
		top: -3vw;
		left: 0vw;
		opacity: .5;
		animation: ta 1s backwards;
	}
	#ab-head > h1::after{
		content: "";
		display: block;
		width: 63vw;
		height: 13vw;
		background-color: #000;
		transform: skew(-15deg) translate(0, 0);
		position: absolute;
		bottom: -3vw;
		right: 0vw;
		opacity: .5;
		animation: tb 1s backwards;
	}
	@keyframes ta{
		0%{transform: skew(-15deg) translate(-50vw, 0); opacity: 0;}
		100%{transform: skew(-15deg) translate(0, 0); opacity: .5;}
	}
	@keyframes tb{
		0%{transform: skew(-15deg) translate(50vw, 0); opacity: 0;}
		100%{transform: skew(-15deg) translate(0, 0); opacity: .5;}
	}
	@keyframes tc{
		0%{transform: translate(0, 10vw); opacity: 0;}
		100%{transform: translate(0, 0); opacity: 1;}
	}
	#breadol{
	    width: 100vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    list-style: none;
	    position: relative;
	    padding: 2vw 0 0 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol li{
	    font-size: 1.2vw;
	    color: #fff;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol li a{
	    color: #fff;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	}
	#breadol li a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1vw;
		background-color: #fff;
		transform: skew(-15deg);
		position: absolute;
		top: 0vw;
		right: -1.1vw;		
	}

	#main-sitemap{
		width: 100vw;
		padding: 5vw 0;
	}
	.sitemap{
		padding: 2vw 0;
	}
	.s1{
		margin: 1vw 0;
		width: 100vw;
		animation: tc 1s backwards;
	}
	.s1 > a{
		color: #fff;
		font-size: 3vw;
		font-weight: bold;
		text-align: center;
		display: block;
		width: 100vw;
		text-shadow: .2vw .2vw .5vw #333;
	}
	.s2::before{
		content: "";
		width: 1vw;
		height: 1vw;
		border-radius: 1vw;
		background-color: #fff;
		position: absolute;
		left: 49.5vw;
		top: -2.5vw;
	}
	.s2{
		margin: 4vw 0 2vw 0;
		width: 100vw;
		position: relative;
		animation: tc 1s backwards;
	}
	.s2 > a{
		color: #fff;
		font-size: 2vw;
		font-weight: bold;
		text-align: center;
		display: block;
		width: 100vw;
		text-shadow: .2vw .2vw .5vw #333;
	}
	.s3{
		margin: 1vw 0;
		width: 50vw;
		padding: 0 25vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		animation: tc 1s backwards;
	}
	.s3 > a{
		color: #fff;
		font-size: 1.5vw;
		text-align: center;
		display: block;
		width: 50vw;
		margin: .5vw;
		text-shadow: .2vw .2vw .5vw #333;
	}
	.s1 > a:hover, .s2 > a:hover, .s3 > a:hover{
		text-decoration: underline;
	}
	.s-gr > a{
		width: 15vw;
	}
}





















@media screen and (max-width: 600px) {
	main{
		padding-bottom: 5vw;
		background-color: #000;
	}
	main::before{
		content: "";
		width: 100vw;
		height: 100vh;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		display: block;
		position: fixed;
		background-image: url(/ RAHUL FERROMETAL/image/sitemap-mobile.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		z-index: 0;
	}
	#ab-head{
		width: 100vw;
		padding: 45vw 0 18vw 0;
		overflow: hidden;
		z-index: 1;
	}
	#ab-head > h1{
		width: 100vw;
		text-align: center;
		position: relative;
	}
	#ab-head > h1 > span{
		color: #fff;
		height: 9vw;
		position: relative;
		line-height: 9vw;
		font-size: 15vw;
		z-index: 1;
	}
	#ab-head > h1::before{
		content: "";
		display: block;
		width: 90vw;
		height: 26vw;
		background-color: #000;
		transform: skew(-15deg);
		position: absolute;
		top: -12vw;
		left: 0vw;
		opacity: .5;
	}
	#ab-head > h1::after{
		content: "";
		display: block;
		width: 90vw;
		height: 26vw;
		background-color: #000;
		transform: skew(-15deg);
		position: absolute;
		bottom: -12vw;
		right: 0vw;
		opacity: .5;
	}
	#breadol{
	    width: 100vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    list-style: none;
	    position: relative;
	    padding: 6vw 0 0 0;
	    margin: 0;
	    z-index: 1;
	}
	#breadol li{
	    font-size: 3.6vw;
	    color: #fff;
	    line-height: 3vw;
	    display: flex;
	}
	#breadol li a{
	    color: #fff;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	}
	#breadol li a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3vw;
		background-color: #fff;
		transform: skew(-15deg);
		position: absolute;
		top: 0vw;
		right: -3.3vw;		
	}

	#main-sitemap{
		width: 100vw;
		padding: 15vw 0;
	}
	.sitemap{
		padding: 6vw 0;
	}
	.s1{
		margin: 3vw 0;
		width: 100vw;
		animation: tc 1s backwards;
		position: relative;
	}
	.s1 > a{
		color: #fff;
		font-size: 9vw;
		font-weight: bold;
		text-align: center;
		display: block;
		width: 100vw;
		text-shadow: .6vw .6vw 1.5vw #333;
	}
	.s2::before{
		content: "";
		width: 1.5vw;
		height: 1.5vw;
		border-radius: 3vw;
		background-color: #fff;
		position: absolute;
		left: 49.25vw;
		top: -6vw;
	}
	.s2{
		margin: 12vw 0 6vw 0;
		width: 100vw;
		position: relative;
		animation: tc 1s backwards;
	}
	.s2 > a{
		color: #fff;
		font-size: 6vw;
		font-weight: bold;
		text-align: center;
		display: block;
		width: 100vw;
		text-shadow: .6vw .6vw 1.5vw #333;
	}
	.s3{
		margin: 3vw 0;
		width: 100vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		animation: tc 1s backwards;
		position: relative;
	}
	.s3 > a{
		color: #fff;
		font-size: 4.5vw;
		text-align: center;
		display: block;
		width: 100vw;
		margin: 1.5vw;
		text-shadow: .6vw .6vw 1.5vw #333;
	}
	.s1 > a:hover, .s2 > a:hover, .s3 > a:hover{
		text-decoration: underline;
	}
	.s-gr > a{
		width: 40vw;
	}
}