body
{
	width: 100%;
	min-height: 100%;
	margin: 0;
	font-family: 'Anek Devanagari', sans-serif;
}

a
{
	text-decoration: none;
	color: #4B99AD;
}

#page-content
{
	overflow: auto;
}

#top-menu a
{
	color: #000000;
}

.page-wrapper
{
	width: 100%;
}

.page-container
{
	max-width: 1200px;
	margin: 0 auto;
}

#top-menu
{
	width: 100%;
	margin: 0 auto;
	height: 85px;
	max-width: 1200px;
	border-bottom: 1px solid #000;
}

#logo-div
{
	display: inline-block;
	margin: 0 auto;
}

#logo
{
	width: 400px;
}

.home-page-tab-front-img
{
	height: 400px;
}

.black-line
{
	width: 100%;
	height: 2px;
	background-color: #000000;
}

#menu-div
{
	display: inline-block;
}

.gray-content-div
{
	text-align: center;
	background-color: #E1EFF2;
	width: 100%;
	margin: 0;
	padding-top: 50px;
	padding-bottom: 50px;
}

#footer
{
	width: 100%;
	height: 40px;
	text-align: center;
	background-color: #989898;
	color: #EEEEEE;
}



a{
    text-decoration: none;
}
ul{
    list-style: none;
}

.header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px #0f0f0f;
    position: fixed;
    top: 0;
    width: 100%;
}
/* Logo */
.logo{
    display: inline-block;
    color: #fff;
    font-size: 60px;
    margin-left: 10px;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #000;
    overflow: hidden;
    display: none;
    z-index: 10;

}
.menu a{
    display: block;
    padding: 10px;
    color: #fff;
}
.menu a:hover{
    background-color: #0f0f0f;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: #000;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: #000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
    display: block;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}



/* Responsiveness */
@media (max-width: 767px)
{
	.page-container p
	{
		margin-left: 10px;
		margin-right: 10px;
	}


	#top-menu a
	{
		color: #fff;
		text-align: left;
	}

	.menu
	{
		padding-left: 0px;
	}

	#page-content{
		padding: 0px 15px;
	}

}
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        width: 70%;
        position: relative;
        float: right;
        background-color: transparent;
        display: block;
    }
    .menu{
    	float: right;
    }
    .menu li{
        float: left;
    }
    .menu a{
    	color: #000;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);

    }

    #top-menu{
		height: 110px !important;
	}

    .hamb{
        display: none;
    }
}

@media (min-width: 1024px) {
	.nav{
		width: 75%;
	}

	#top-menu{
		height: 110px !important;
	}
}

@media (min-width: 1076px) {
	#top-menu{
		height: 85px !important;
	}

	.menu{
		margin-top: 20px;
	}
}








.form-style-1 {
	margin:10px auto;
	max-width: 400px;
	padding: 20px 12px 10px 20px;
	font: 13px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.form-style-1 li {
	padding: 0;
	display: block;
	list-style: none;
	margin: 10px 0 0 0;
}
.form-style-1 label{
	margin:0 0 3px 0;
	padding:0px;
	display:block;
	font-weight: bold;
}
.form-style-1 input[type=text], 
.form-style-1 input[type=date],
.form-style-1 input[type=datetime],
.form-style-1 input[type=number],
.form-style-1 input[type=search],
.form-style-1 input[type=time],
.form-style-1 input[type=url],
.form-style-1 input[type=email],
.form-style-1 input[type=password],
textarea, 
select{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border:1px solid #BEBEBE;
	padding: 7px;
	margin:0px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;	
}
.form-style-1 input[type=text]:focus, 
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 input[type=password]:focus,
.form-style-1 textarea:focus, 
.form-style-1 select:focus{
	-moz-box-shadow: 0 0 8px #88D5E9;
	-webkit-box-shadow: 0 0 8px #88D5E9;
	box-shadow: 0 0 8px #88D5E9;
	border: 1px solid #88D5E9;
}
.form-style-1 .field-divided{
	width: 49%;
}

.form-style-1 .field-long{
	width: 100%;
}
.form-style-1 .field-select{
	width: 100%;
}
.form-style-1 .field-textarea{
	height: 100px;
}
.form-style-1 input[type=submit], .form-style-1 input[type=button]{
	background: #4B99AD;
	padding: 8px 15px 8px 15px;
	border: none;
	color: #fff;
}
.form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover{
	background: #4691A4;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
}
.form-style-1 .required{
	color:red;
}

.button-41 {
  background-color: initial;
  background-image: linear-gradient(-180deg, #00D775, #00BD68);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  height: 44px;
  line-height: 44px;
  outline: 0;
  overflow: hidden;
  padding: 0 20px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: top;
  white-space: nowrap;
  width: 100%;
  z-index: 9;
  border: 0;
  margin-top: 15px;
}

.button-41:hover {
  background: #00bd68;
}