*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*.icon {
        background: url("http://sewadarsj.com/image/favicon.ico");
        height: 20px;
        width: 20px;
        display: block;
    }*/

@font-face {
  font-family: 'AnmolLipi'; /* Define the custom font name */
  src:  url('AnmolLipi.woff2') format('woff2'),
        url('AnmolLipi.woff') format('woff'); /* Define where the font can be downloaded */
  unicode-range: U+00-FF; /* Define the available characters */
}
body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-image: url(./image/bg.jpg);
  /*background-size: cover;
  background-attachment: fixed;*/
}
.header{
	position: relative;
	margin-top:0px;
	color: blue;
}
.button {
  opacity: 1;
}
.button {
background-color: #0000FF
; /* Blue */
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 5px 5px 0px 0px;
}
.button:hover {
background-color: #4CAF50; /* Green */
color: white;
}

.zbutton {
  opacity: 1;
}
.zbutton {
background-color: #0000FF
; /* Blue */
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 0px 0px 0px 0px;
}
.zbutton:hover {
background-color: #4CAF50; /* Green */
color: white;
}

.mbutton {
  opacity: 1;
}
.mbutton {
background-color: blue ;/*#0000FF; /* Blue */
border: none;
color: white;
padding: 2px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 5px 5px 0px 0px;
}
.mbutton:hover {
background-color:red; /*#4CAF50; /* Green */
color: white;
}

.jbutton {
  opacity: 1;
}
.jbutton {
background-color: blue ;/*#0000FF; /* Blue */
border: none;
color: white;
padding: 1px 1px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 1px 1px 0px 0px;
}
.jbutton:hover {
background-color:red; /*#4CAF50; /* Green */
color: white;
}
.abutton {
background-color: green ;/*#0000FF; /* Blue */
border: none;
color: white;
padding: 2px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
border-radius: 10px 10px 10px 10px;
margin-right: 5px;
margin-left: 5px;
margin-top: 5px;
margin-bottom: 5px;
}
.abutton:hover {
background-color:blue; /*#4CAF50; /* Green */
color: white;
}

.navbar{
  height: 75px;
  width: 100%;
  padding: 20px 30px;
  background-image: linear-gradient(to right, black , blue, brown);
  /*background-color: brown; /*#090e5a; /*#1b4cd3; ************* Navbar color*/
  position: fixed;
    /*background-image: ./images/temple.jpg;*/
}
.navbar .nav-header{
  display: inline;
}
.navbar .nav-header .nav-logo{
  display: inline-block;
  margin-top: -15px;
  border: none;
}
.navbar .nav-links{
  display: inline;
  float: right;
  font-size: 16px;
}
 
.navbar .nav-links .loginBtn{
  display: inline-block;
  padding: 5px 15px;
  margin-left: 20px;
  font-size: 16px;
  color: rgb(9, 14, 90);
}

.navbar .nav-links a {
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 550;
  color: white;
}
/* Hover effects */
.navbar .nav-links a:hover{
  background-color: blue;/*rgba(255, 127, 80);/*(0, 0, 0.3);*/
  padding-top: 15px;
  padding-bottom: 20px;
}
 
/* responsive navbar toggle button */
.navbar #nav-check, .navbar .nav-btn{
  display: none;
}
 
@media (max-width:800px) {
  .navbar .nav-btn{
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .navbar .nav-btn label {
    display: inline-block;
    width: 80px;
    height: 75px;
    padding: 25px;
  }
  .navbar .nav-btn label span {
    display: block;
    height: 10px;
    width: 25px;
    border-top: 3px solid #eee;
  }
  .navbar .nav-btn label:hover, .navbar #nav-check:checked ~ .nav-btn label {
    background-color: blue; /*rgb(9, 14, 90);*/
    transition: all 0.5s ease;
  }
  .navbar .nav-links{
    position: absolute;
    display: block;
    text-align: center;
    width: 50%;
    background-color: brown; /*rgb(9, 14, 90);*/
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 70px;
    right: 0px;
  }
  .navbar .nav-links a {
    display: block;
  }
 
  /* when nav toggle button not checked */
  .navbar #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
 
  /* when nav toggle button is checked */
  .navbar #nav-check:checked ~ .nav-links {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .navbar .nav-links .loginBtn {
    padding: 10px 40px ;
    margin: 20px;
    font-size:  18px;
    font-weight: bold;
    color: rgb(9, 14, 90);
  }
  /* Responsive dropdown code */
  .navbar .nav-links .dropdown, .navbar .nav-links .dropdown2 {
    float: none;
    width: 100%;
  }
  .navbar .nav-links .drop-content, .navbar .nav-links .drop-content2 {
    position: relative;
    background-color: rgb(220, 220, 250);
    top: 0px;
    left: 0px;
  }
  /* Text color */
  .navbar .nav-links .drop-content a {
    color: rgb(9, 14, 90);
  }  
 
}
 
/* Dropdown menu CSS code */
.dropdown{
  position: relative;
  display: inline-block;
}
.drop-content, .drop-content2, .drop-content3, .drop-content4, .drop-content5, .drop-content6 {
  display: none;
  position: absolute;
  background-color: brown; /*#1b4cd3; /* Dropdown color */
  min-width: 140px;
  font-size: 14px;
  top: 34px;
  z-index: 1;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
}
/* on hover show dropdown */
.dropdown:hover .drop-content, .dropdown2:hover .drop-content2, .dropdown3:hover .drop-content3, .dropdown4:hover .drop-content4,.dropdown5:hover .drop-content5,.dropdown6:hover .drop-content6 {
  display: block;
}
/* drondown links */
.drop-content a {
  padding: 12px 10px;
  border-bottom: 1px solid rgb(197, 197, 250);
  display: block;
  transition: all 0.5s ease !important;
}
.dropBtn .drop-content a:hover {
  background-color: rgb(230, 230, 230);
}
.dropdown:hover .dropBtn, .dropdown2:hover .dropBtn2, .dropdown3:hover .dropBtn3, .dropdown4:hover .dropBtn4 {
  background-color: rgba(0, 0, 0, 0.3);
}
/* ***************** Dropdown ****************** */
.dropdown2 .drop-content2 {
  position: absolute;
  left: -40px;
  top: 80px;
}
.dropBtn2 i {
  margin-left: 1px;
}

.dropdown3 .drop-content3 {
  position: absolute;
  left: -40px;
  top: 300px;
}
.dropBtn3 i {
  margin-left: 1px;
}

.dropdown4 .drop-content4 {
  position: absolute;
  left: 40px;
  top: 100px;
}
.dropdown5 .drop-content5 {
  position: absolute;
  left: 0px;
  top: 160px;
}
.dropdown6 .drop-content6 {
  position: absolute;
  left: -40px;
  top: 60px;
}
.dropBtn4 i {
  margin-left: 1px;
}
.dropBtn5 i {
  margin-left: 1px;
}
.dropBtn6 i {
  margin-left: 1px;
}
.footer{
	position: relative;
	background-color:red;
	text-align:center;
	margin-bottom:5px;
	height:25px;
	color:white;
}

.resp-img {
  margin-top: 0px;
}
.main{
margin-top:0px;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: black;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}
.responsive-iframe{
	width: 100%;
	height:100vh;
	border:0px;
}

.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.resp-container {
  position: relative;
  width: 100%;
  overflow: none;
  padding-top: 100%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.myformat{
	margin-left: 5%;
	margin-right: 5%;
	text-align: none;
}
