*
{
	padding: 0;
	margin: 0;
	overflow: hidden;
	/*font-family: 'Coda';*/
	font-family: 'Poppins';
	/*font-family: 'Rajdhani';*/
}

.covid
{
    position:absolute; 
    z-index:5; 
    left:50%;
    width:35%;
    background:#000;
    text-align:center;
    transform:translate(-50%,0);
}

#img
{
	background: rgba(255,255,255,0.9);
}


.box-area
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	border: 1px solid;
}

.box-area li
{
	position: absolute;
	display: block;
	list-style-type: none;
	width: 25px;
	height: 25px;
	/*background: rgba(255, 255, 255, 0.2);*/
	/*background: linear-gradient(to left, #199FDC, #E91C47);*/
	/*background: rgba(141,0,0,0.2);*/
	animation: animate 20s linear infinite;
	bottom: -150px;
}

.box-area li:nth-child(1)
{
	left: 86%;
	width: 80px;
	height: 80px;
	background: url("../images/logo_Black_Thari.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	animation-delay: 0s;
	/*background: rgba(141,0,0,0.2);*/
	background-color: rgba(255, 255, 255, 0.8);
}

.box-area li:nth-child(2)
{
	left: 12%;
	width: 30px;
	height: 30px;
	animation-delay: 1.5s;
	background: rgba(255, 255, 255, 0.2);
	
}

.box-area li:nth-child(3)
{
	left: 70%;
	width: 100px;
	height: 100px;
	background: url("../images/logo_Black_Thari.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	animation-delay: 5.5s;
	/*background: rgba(141,0,0,0.2);*/
	background-color: rgba(255, 255, 255, 0.8);
}

.box-area li:nth-child(4)
{
	left: 42%;
	width: 150px;
	height: 150px;
	background-image: url("../images/logo_Black_Thari.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	animation-delay: 15s;
	background-color: rgba(255, 255, 255, 0.8);
}

.box-area li:nth-child(5)
{
	left: 65%;
	/*width: 40px;
	height: 40px;*/
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 40px solid rgba(141,0,0,0.2);
	animation-delay: 0s;
	/*background: rgba(141,0,0,0.2);*/
}

.box-area li:nth-child(6)
{
	left: 15%;
	width: 110px;
	height: 110px;
	background-image: url("../images/logo_Black_Thari.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	animation-delay: 3.5s;
	background-color: rgba(255, 255, 255, 0.8);
}

@keyframes animate
{
	0%
	{
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
	100%
	{
		transform: translateY(-1200px) rotate(360deg);
		opacity: 1;
	}
}

/*.nav-wrapper
{
	z-index: 1;
	position: absolute;
	width: 360px;
	height: 3510px;
	left: 0;
	top: 0;
	bottom:0;
	right: 0;
	margin: auto;
	animation: move 2.5s ease-out infinite;
	border: none;
	background: transparent;
	transform: translateY(0px);
}

@keyframes move 
{
	0%
	{
		transform: translateY(10px);
	}


	100%
	{
		transform: translateY(50px);
	}
}*/

.navigation
{
	position: absolute;
	width: 150px;
	background: rgba(255,255,255,0.5);
	height: 170px;
	border-radius: 100px;
	transition: all linear 1.5s;
	animation: affiche 4.5s linear forwards;
	overflow: hidden;
	box-shadow: 0 2px 50px #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	margin: auto;
	left: -2000px;
	right: 0;
	top: 1000px;
	bottom: 0;
	transform: translateX(0px);
}

.navigation:hover
{
	box-shadow: 0 2px 50px #000;
}

@keyframes affiche
{
	0%
	{
		left: -2000px;
		top: 1000px;
	}
	
	100%
	{
		left: 0;
		top: 0;
		height: 300px;
	}
}

.navigation nav
{
	text-align: center;
}

.navigation nav ul
{
	list-style-type: none;
}

.navigation nav ul li
{
	padding: 4px 48px; 
	margin: 25px 0;
	transition: all linear 1.2s;
}

.navigation nav ul li a
{
	width: 100%;
	text-decoration: none;
	font-size: 14px;
	color: #8D0000;
	text-transform: uppercase;
	text-shadow: 3px 3px 7px #333;
	opacity: 0;
	animation: shows 3s linear 4.8s forwards;
}

/* this part is handle by the JS */
/*.navigation nav ul li a:hover
{
	color: #8D0000;
}*/

.navigation nav ul li:hover
{
	background: #ffffff;
}

@keyframes shows 
{
	0%
	{
		opacity: 0;
	}

	100%
	{
		opacity: 1;
	}
}


.large-header
{
	position: absolute;
	width: 100%;
	height: 10vh;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 1;
}

.language
{
	width: 90px;
	position: fixed;
	right: 0px;
	top: 1;
	z-index: 1;
	/*border: 1px solid yellow;*/
	padding: 0;
	/*height: 100px;*/
	cursor: pointer;
}
.language ul
{
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	/*border: 1px solid yellow;*/
	margin: 0;
}

.language ul li:active
{
	transform: translateY(2px);
}

.language ul li img
{
	height: 40px;
	transform: all 1.5s linear;
}

.language ul li:nth-child(1) img
{
	padding-right: 8px;
	width: 48px;
}


.social-network
{
	width: 50px;
	position: fixed;
	right: 2px;
	top: 35%;
	z-index: 1;
	
	/*height: 100px;*/
}

.social-network ul
{
	/*border: 1px solid blue;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;


}

.social-network ul li
{
	/*border: 1px solid green;*/
	/*width: 180px;*/
}

.social-network ul li span
{
	font-size: 30px;
	color: #fff;
	margin: 8px 15px;
	overflow: hidden;
	padding: 8px;
	background: #8D0000;
	cursor: pointer;
	border-radius: 50%;
	transition: all 1.5s linear;
}

.social-network ul li span:hover
{
	background: #fff;
	color: #8D0000;
}

.social-network ul li:nth-child(1) span
{
	padding: 10px 13px;
	/*border-radius: 50%;*/
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, 100%) rotate(360deg) !important;
      -ms-transform: translate(0, 100%) rotate(360deg) !important;
       -o-transform: translate(0, 100%) rotate(360deg) !important;
          transform: translate(0, 100%) rotate(360deg) !important;
}
/*.modal.in .modal-dialog {
  -webkit-transform: translate(0, 50%) rotate(360deg) scale(1.2, 1.2) !important;
      -ms-transform: translate(0, 50%)  rotate(360deg) scale(1.2, 1.2) !important;
       -o-transform: translate(0, 50%)  rotate(360deg) scale(1.2, 1.2) !important;
          transform: translate(0, 50%)  rotate(360deg) scale(1.2, 1.2) !important;
}*/

table
{
	/*text-align: center;*/
	/*border: 1px solid #fff;*/
	width: 70%;
	margin: auto;
	color: #fff;
	padding: 5px;
}


table i, table p
{
	float: left;
}
table p
{
	font-size: 12px;
}

input, textarea
{
	background: #444;
	color: #fff;
	border: none;
	padding: 6px;
	border-radius: 10px;
}

input[type="submit"]
{
	width: 84.5%;
	/*padding: 5px;*/
}
textarea
{
	width: 84%;
	padding: 2px;

}

/*Project*/

.gallery-block
{
	padding: 30px 0 !important;
}

.gallery-block h6
{
	font-size: 17px !important; 
	font-weight: bold !important;
}

.gallery-block .card
{
	/*border: 1px solid #8D0000 !important;*/
	transition: all 1.5s linear;
}

.gallery-block .card img
{
	box-shadow: 1px 2px 10px rgba(41,41,41,0.8) !important;
	transition: all 1.8s linear !important;
}

.gallery-block .card-body
{
	text-align: center !important;
	background: inherit !important;
	color: #8D0000 !important;
	border-top: 1px solid #dee2e6 !important; 
}

.gallery-block .card-body p
{
	font-size: 11px !important;
	color: #fff;
}

.gallery-block a
{
	color: #212529 !important;
}

.gallery-block a:hover
{
	text-decoration: none !important;
}

.gallery-block .card
{
	margin-bottom: 30px !important;
}


/*About us*/

div.about, div.service
{
	/*border: 1px solid #fff !important;*/
	padding: 3px;
}

div.about h3, div.about-more h3, div.service h3, div.service-more h3
{
	color: #fff;
	font-size: 16px;
	/*text-transform: uppercase;*/
	padding: 0 !important;
}

div.about h3 span, div.service h3 span, div.service-more h3 span
{
	color: #8D0000 !important;
	padding: 0;
	margin: 0;
}

div.about p, div.about-more p, div.service p, div.service-more ul li
{
	color: #ccc;
	font-size: 13px;
	line-height: 1.5em;
}

div.service-more ul
{
	padding: 0;
	margin: 0;
}


.line
{
	border-left: 5px solid #8D0000 !important;
	border-top-left-radius: 10px;
	/*border-bottom-left-radius: 10px;*/
}

/*.line::before
{
	content: "";
	width: 15px;
	height: 15px;
	border: 1px solid #8D0000;
	position: absolute;
	left: 0;
	top:-5px;
	z-index: 999;
}*/

.md-accordion
{
	width: 100% !important;
	margin-top: 10px !important;
}


.unorder-list li i
{
    padding-right:0.5em !important;
    margin-right: 0.5em !important;
    color: #CCCCCC;
    line-height: 1.5em;
}

.unorder-list ul, .unorder-list li
{
	cursor: pointer;
}

.abt-list
{
	text-align: justify-all !important;
	list-style-type: disc !important; 
	list-style-position: inside !important;
	list-style-color: #fff !important;
	margin-left: 1em; padding-left: 1em;
	font-size: 13px;
}

#abt-list1 li::first-letter
{
	color: #8D0000 !important;
	font-weight: bolder !important;
}

.card-no-bg
{
	background-color: #8D0000 !important;
	width: 100%;
}
strong
{
	color: #FFFFFF;
}

.h6-new
{
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bolder;
}

.p-new
{
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.8em;
}

a:hover
{
	text-decoration: none !important;
}

.rotate-icon
{
	transform: rotate(180deg);
	transition: all 1.5s linear;
}




@media (max-width: 560px)
{
	.covid
	{
		display:none;
	}
}

@media (max-height: 350px)
{
	.covid
	{
		display:none;
	}
}

@media (max-width: 676px)
{
	.navigation
	{
		width: 120px;
		height: 250px !important;
	}

	.navigation nav ul li
	{
		margin: 8px 0;
		padding:8px 30px;
	}
}

@media (min-width: 676px)
{
	.gallery-block img:hover
	{
		transform: scale(1.4) !important;
	}	

	.gallery-block:hover
	{
		box-shadow: 1px 2px 10px rgba(41,41,41,0.8) !important;
	}	

}