@charset "utf-8";
  

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Montserrat", sans-serif;*/


/*************** PRELOADER ***************/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:var(--white);
	z-index: 999999;
}

#status {
	width: 200px;
	height: 200px;
	position: absolute;
	/*background-color:var(--white);*/
	left: 50%;
	top: 50%;
	background-image: url(../images/loading.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	margin: -100px 0 0 -100px;
}


/*************** DEFAULT CSS ***************/
:root {
	--body-font: "Montserrat", sans-serif;
	--body-color: #000;
	--primary-color: #155DB0;
	--secondary-color: #C90F27;	 
	--black: #000;
	--white: #fff;
	--grey: #DCDDDE;	
	--grey-light: #F8F8F8;
	--grey-dark: #6D6D6D;		 	 
	--font-light:300;
	--font-normal:400;
	--font-medium:500;	
	--font-bold:600;
	--font-heaavy:700;
	--heading-font:"Montserrat", serif;
}

body {

	font-family: var(--body-font);
	font-size: 16px;
	font-style: normal;
	line-height: 24px;
	/*letter-spacing: -.1em;*/
	font-weight: var(--font-normal);
	color: var(--body-color);
	text-decoration: none;
	margin: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url(../images/bg-image.jpg);
	text-align:center;
	}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background:  var(--primary-color);
}

html {
	scroll-behavior: smooth;
	overflow-x:hidden;
}

* {
	-webkit-box-sizing: border-box;
	-mox-box-sizing: border-box;
	box-sizing: border-box;
}

::selection {
	background: var(--primary-color);
	/* Safari */
	color:var(--white);
}

::-moz-selection {
	background: var(--primary-color);
	/* Firefox */
	color:var(--white);
}

a {
	color: var(--body-color);
	text-decoration: none;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

p {
	margin: 0px 0 30px 0;
	clear: left;
	padding: 0;
	font-weight: normal;
	font-size: 100%;
 
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
 
 .container{ 
    width: 100%;
	height:100vh;
    display: flex;
    flex-wrap: wrap; 
	justify-content: center;
	align-content: center;
	flex-direction:column;

}

.logo{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
	justify-content: center;
}

.logo img{ 
    width: 300px;
 
}

.heading{
	font-size:40px;
	line-height:normal;
	font-weight:var(--font-bold);
	margin:25px 0;
}

 
.link {}

.link a {
	
	color:var(--white);
	font-size: 14px; 
	padding: 10px  30px;
	font-style: normal;
	display: inline-block;
	position: relative;
	overflow:hidden;
	margin:0;
	border-radius: 50px;
	background-color:var(--primary-color);
	font-weight:var(--font-bold);
	transition: all 0.4s ease;
	
	 
}

.link a:before{
	width:100%;
	height:0;
	border-radius: 50px;
	position:absolute;	
	background-color:var(--secondary-color);
	bottom:0;
	left:0;
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	 	
} 
 
.link a:hover:before{
	 height:100%;
}
 .link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
 }
 
 
.contact-info{ 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 15px;	
	margin:40px 0 0 0;
	position:absolute;
	left:0;
	bottom:40px;
	font-size:16px;
	line-height:normal;
}
 
.contact-info i{
	width:25px;
	height:25px;
	line-height:25px;
	background-color:var(--secondary-color);
	border-radius: 50%;
	color:var(--white);
	font-size:12px;
	margin:0;
	text-align:center;
	vertical-align:middle;
	}
	
	
/************************************* 768px *************************************/
@media only screen and (max-width: 768px) {
	.contact-info{ 
	font-size:20px;
	bottom:30px;
	font-size:12px;
 
} 
.logo img{ 
    width: 200px;
 
}

.heading{
	font-size:24px;
 
}
 
}	