html, body{ 
     font-family: "Open Sans" !important; 
 } 
Select.html,textarea,input

{ 

     font-family: "Open Sans" !important; 
} 
body {
  font-family: "Open Sans";
  color: #4d4643;
}

a {
	color: #000;
  /* color: #1bbd36; */
  text-decoration: none;
}

a:hover {
  /* color: #2ae149; */
  text-decoration: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background-color: #00000085;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background-color: #00000085;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #bb9964; 
  /* background: #fff; */
  transition: all 0.5s;
  z-index: 997;
  /* padding: 15px 0; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: #1bbd36;
}

#header .logo img {
	max-height: 80px;
  /* max-height: 40px; */
}

/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 75px 10px 54px;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  /* color: #1bbd36; */
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #000;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
   /* color: #1bbd36;  */
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 44px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  font-weight:bold;
}

.mobile-nav-toggle.bi-x {

  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7481%) hue-rotate(91deg) brightness(98%) contrast(102%);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  /* color: #1bbd36; */
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  /* background: #111; */
  background: linear-gradient(to top, #BB9964 0%, #5D4C32 100%);
}

#footer .footer-top {
  padding: 34px 0 0px 0;
  /* background: #1e1e1e; */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans";
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 0px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1ed33c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}






.header-bk{
	background-color:#fff;
}
hr{
	height: 2px;
    opacity: 7;
    background: #000 none repeat scroll 0 0;
}
.blurb {
    min-height: 200px;
    background-color: #670406;
    color: #FFF;
    padding: 3em 1em;
    background: linear-gradient(90deg, rgb(187, 153, 100), rgba(243, 111, 31, 0.0)), url(../../images/mobileapp_background.jpg);
    /* background: linear-gradient(90deg, rgb(128 1 31), rgba(243, 111, 31, 0.0)), url(../images/mobileapp_background.jpg); */
    background-attachment: fixed;
    background-size: cover;
    font-size: 1.25em;
    position: relative;
    background-position: center;
}
.blurb a {
    display: inline-block;
    padding: 0.5em;
    border: 2px #FFF solid;
    text-decoration: none;
    border-radius: 10px;
    color: #fff;
}
.mobile-app:hover {
    background-color: #fff;
    color: #BB9964;
}
.footer-para{
	font-size:15px;
}
.bottomPolicyIconsBox {
    font-size: 0.75em;
    padding: 2em 0;


}
#logos {
    display: flex;
    font-size: 0.75em;
    padding: 2em 1em;
}
#logos img {
    max-height: 80px;
    padding: 0 10px;
    max-width: 180px;
    float: left;
}
.footer-items{
	font-size: 19px;
	font-weight:600;
}
.dep-p {
    font-size: 20px;
    color: #875302;
}
.product__images {
    max-width: 350px;
    border-radius: 50%;
    animation: popin 1s;
    padding: 1em;
    width: 100%;
}
.product-hr{
	border-bottom:1px dotted;
}
.about-us-section{
	margin-top: 28px;
}

.map-section{
	margin-top:1px;
}
@media screen and (max-width: 500px) {
 .carousel{
	margin-top:3px;
 }
  .map-section {
    /* margin-top: 327px; */
}
}
@media screen and (min-width : 501px )and (max-width: 768px) {
  .carousel{
	margin-top:2px;
 }
 .map-section {
    /* margin-top: 219px; */
}
}
.about-items {
    padding: 30px;
    margin: 5px 45px 35px 45px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.form-control{
	padding:0px;
}
.about-items .read-more{
	font-weight: 600;
    font-size: 14px;
    color: #1f0ce0;
}
.about-text{
	padding-left:20px;
	padding-right:20px;
}
@media only screen and (min-width: 0px) and (max-width: 870px) {
    #nav .tlmi {
        background-color: #00418e;
        color: #FFF;
        border-top: 2px solid #FFF;
    }
}
.vh {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}
.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

@media screen and (max-width: 767px){
.about-items {
   margin: 0px;
   }
   .about-text {
    padding-left: 0px;
    padding-right: 0px;
  }
}


@media screen and (min-width: 991px) and (max-width:1200px){
.navbar ul li a {
    padding: 10px 50px 10px 30px !important;
}
}

.cursor-sec{
	cursor:pointer;
}

@media (max-width: 768px) {
    .logo-section {
        text-align:center;
    }
	.ROLoginForm {
    float: none;
}
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
.login_btn{
	color:#BB9964; 
	background-color:#000; 
	padding:6px 10px; 
	border-radius:5px;
	margin-top:13px
}
.mobile-app:hover img {
    filter: brightness(0) saturate(100%) invert(67%) sepia(46%) saturate(358%) hue-rotate(357deg) brightness(86%) contrast(86%);
}
.navbar ul li a:hover {
    background-color: #000;
    color: #BB9964;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.navbar ul li a:hover img {
   filter: brightness(0) saturate(100%) invert(67%) sepia(46%) saturate(358%) hue-rotate(357deg) brightness(86%) contrast(86%);
}
.contact-info{
	padding-top: 9px;
    padding-left: 16px;
}
.location{
     padding:9px 0px 0px 8px;
}
.location-img{
	border-radius: 42px;
    width: 50px;
    height: 50px;
    border: 2px solid #BB9964;
}
