$clr-blue= #74C9F1;

@font-face
{
	font-family: "LeagueSpartan";
	src: url(LeagueSpartan-Bold.otf) ;
}

@font-face
{
	font-family: "Josefin";
	src: url(JosefinSans-VariableFont_wght.ttf) ;
}

/*=========================================================================================*/

/*ScrollBar Start*/

/* width */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track { 
  background: transparent;
  border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5); 
}

/*ScrollBar End*/

/*=========================================================================================*/

*
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

.topbar
{
	width: 100%;
	height: 20px;
	background-color: #74C9F1;
	z-index: 10000;
}

.topbar marquee p
{
	margin: 2px 0px;
	color: #130f40;
	font-family: Josefin;  
}

.header
{
	position: sticky;
	top: 0px;
	width: 100%;
	height: 100px;
	background-color: #fff;
	box-shadow: 0px 5px 3px rgba(0,0,0,0.5);
	z-index: 100000;
}

.logo img
{
	float: left;
	width: 200px;
	height: auto;
	margin-top: 15px;
	margin-left: 10px;
	
}

.nav
{
	float: right;
}

.nav ul
{
	list-style-type: none;
	line-height: 100px;
}

.nav ul li
{
	display: inline-block;
	margin-top: 0px;
	margin-right: 30px;
}

.nav ul li a
{
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-family: Raleway;
	font-size: 18px;
	letter-spacing: 2px;
	border: none;
	padding: 10px 15px;
	color: black;
	border-radius: 3px;
	font-weight: bold;
	transition: 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active
{
	background-color: black;
	color: white;
}

.container{
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: none;
}


.title{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100px;
	background-color: none;
	border: none;
	z-index: 1000;
}


h1{
	position: relative;
	font-family: Josefin;
	font-size: 50px;
	text-align: center;
	margin-top: 50px;
	color: #3d3d3d;
}

h1 span
{
	color: #74C9F1;
	font-size: 50px;
	font-family: Josefin;
}

.title button{
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: white;
	border:none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: 0.25s;
	outline: none;
}

.title button i{
	position: relative;
	align: center;
	color: #74C9F1;

}
	
.title button:hover
{
	background-color: #3d3d3d;
	cursor: pointer;
}

img{

	position: relative;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	z-index: -2000;
}

form{
	
	position: absolute;
	top: 80%;
	left: 10%;
	transform: translate(-10%,-80%);

}
form p{
	position: absolute;
	top: 88px;
	left: 50%;
	transform: translate(-50%,-88px);
	font-size: 15px;
	font-family: Raleway;
	color: #0093dd;
}
.box{
	width: 600px;
	height: 500px;
	background-color: white;
	border: 3px solid #3d3d3d;
	border-radius: 10px;
	padding: 0px 20px;
	/*box-shadow: 3px 3px 20px 1px #3d3d3d, -3px -3px 20px 1px #3d3d3d;*/
}

.box h1
{
	position: relative;
	text-align: left;
	color: #3d3d3d;
	font-size: 40px;
	font-family: Josefin;
	margin-top: 30px;
	margin-bottom: 30px;

}

.box h1 span{
	color: $clr-blue;
}

.box input[name="name"],.box input[name="email"]{
	border: none;
	background-color: none;
	padding: 8px 5px;
	font-family: Josefin;
	font-size: 20px;
	text-align: left;
	display: block;
	margin-top: 40px;
	margin-bottom: 15px;
	margin-left:auto;
	margin-right:auto;
	width: 500px;
	border-bottom: 1px solid #8c8c8c;
	outline: none;
	transition: 0.25s;
	background-color: transparent;
}

.box input[name="name"]:focus,.box input[name="email"]:focus{
	border-bottom: 1px solid #74C9F1;
	
}

.box input[name="phone"],.box input[name="branch"]{
	border: none;
	background-color: none;
	padding: 8px 5px;
	font-family: Josefin;
	font-size: 20px;
	text-align: left;
	display: block;
	margin: 15px auto;
	width: 230px;
	border-bottom: 1px solid #8c8c8c;
	outline: none;
	transition: 0.25s;
	background-color: transparent;
}

.box input[name="phone"]{
	float: left;
	margin-left: 45px; 
}

.box input[name="branch"]{
	float: right;
	margin-right: 45px;
}

.box input[name="phone"]:focus,.box input[name="branch"]:focus{
	border-bottom: 1px solid #74C9F1;
	
}

.box textarea{
	border: none;
	background-color: none;
	padding: 8px 5px;
	font-family: Josefin;
	font-size: 20px;
	text-align: left;
	display: block;
	margin: 15px auto;
	width: 500px;
	border-bottom: 1px solid #8c8c8c;
	outline: none;
	transition: 0.25s;
	background-color: transparent;
}

.box textarea:focus{
	border-bottom: 1px solid #74C9F1;
}

.box input[type="submit"]
{
	float: right;
	padding: 10px 15px;
	border: none;
	background-color: #74C9F1;
	cursor: pointer;
	color: #3d3d3d;
	text-align: center;
	vertical-align: middle;
	font-size: 20px;
	font-family: Josefin;
	margin-top: 5px;
	border-radius: 5px;
	transition: 0.25s;
}
.box input[type="submit"]:hover
{
	background-color: #0a86a6;
	color: white;
}

.map{
	position: absolute;
	top: 80%;
	left: 90%;
	transform: translate(-90%,-80%);
	border: 3px solid #3d3d3d;
	border-radius: 5px;
	/*box-shadow: 3px 3px 20px 1px #3d3d3d, -3px -3px 20px 1px #3d3d3d;*/
}

/*.cogwheel img{
	position: absolute;
	top: 200px;
	left: 95%;
	transform: translateX(-95%);
	width: 300px;
	height: 300px;
	animation-name: rot;
	animation-duration: 30s;
	animation-iteration-count: infinite;
	animation-delay: 0s;
	animation-timing-function: linear;
	z-index: -1000;

}	

@keyframes rot
{
	0% {transform: rotate(0deg) }
	100% {transform: rotate(360deg) }
}
*/


































