
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #417505;
  font-size: 14px;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
p{
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #417505;
  color: #fff;
  transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 14px;
  height: 50px;
  top:60px;/*18-09-2020*/
  /*background: rgba(26, 24, 22, 0.8);
  color: rgba(255, 255, 255, 0.7);18-09-2020*/
  color:#fff;
  transition: all 0.5s;
  background-color: #417505!important;
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  /*top: -50px;18-09-2020*/
 
}

#topbar i {
  color: #417505;
}

#topbar i + i {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*top: 50px; 18-09-2020*/
  top:0px;
  /*height: 70px;18-09-2020*/
  height: 100px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.9);
}
/*09-12-2020*/
.home-menu{
  background: #fff!important;
}
.home-menu .nav-menu a:hover,.home-menu .nav-menu .active > a,.home-menu .nav-menu li:hover > a {
    color: #417505;
}
.home-menu .nav-menu li a{
    color: #000;
    font-weight: 600;
}
.home-menu .nav-menu li.login-button a,
.home-menu .nav-menu li.login-button:hover a{
    color: #fff;
    font-weight: 600;
}
/*end*/

/*#header.header-transparent {
  background: transparent;
}*/

#header.header-scrolled {
  top: 0;
  /*background: rgba(26, 24, 22, 0.85); 18-09-2020*/
  background-color: #001844;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 94px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(26, 24, 22, 0.85);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  padding: 9px 14px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  /*color: #417505;18-09-2020*/
  color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #417505;
  text-decoration: none;
}
.nav-menu a.bottombar-highlight:hover, .nav-menu .active > a.bottombar-highlight, .nav-menu li:hover > a.bottombar-highlight {
border:none;
}

.nav-menu .book-a-table a {
  background: #417505;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu .book-a-table a:hover {
  background: #ffa012;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #433f39;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #417505;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #433f39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #417505;
  text-decoration: none;
}

.mobile-nav .book-a-table a {
  background: #417505;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  display: inline-block;
}

.mobile-nav .book-a-table a:hover {
  background: #ffa012;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
.carousel-content a.btn{
    background-color: #fff;
    color: #417505;
    padding: 6px 18px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.carousel-content a.btn:hover{
    background-color: #417505;
    color: #fff;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
 /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat;18-09-2020*/
  background-color: #fff;
  background-position: center center!important;
  background-repeat: no-repeat!important;
  padding-top: 40vh;
  padding-right: 30px;
  padding-bottom: 65vh;
  padding-left: 30px;
  margin-top: 0;
  -webkit-background-size: cover!important;
  -moz-background-size: cover!important;
  -o-background-size: cover!important;
  background-size: cover!important;
  background-attachment: fixed!important;
}

/* 18-09-2020*/

#hero .carousel-container {
  display: flex;
  /*justify-content: center; 18-09-2020*/
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
  margin:auto;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  background-color: rgb(65,117,5,0.6);
    max-width: 450px;
    text-align: center;
    margin: auto;
}

#hero h2 span {
  /*color: #417505;*/
  color: #fff;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  /*margin: 0 auto 30px auto;18-09-2020*/
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  /*background-position: center top;*/
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #417505;
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #417505;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    /*width: 50%;18-09-2020*/
  
  width: 100%;
    max-width: 800px;
    text-align: center;
    float: left;
    }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title:after {
    content: '';
    /* padding-top: 5%; */
    width: 100px;
    background-color: #417505;
    color: #417505;
    height: 4px;
    display: block;
    margin: auto;
}
.section-title h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #5f5950;
}

.section-title h2 span {
  color: #417505;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  /*background: #fffaf3;18-09-2020*/
}
#sire,#tmsa{
  margin:0px;
  padding:0px;
}

/*.about .content {
  padding: 0 80px;
}*/
.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 14px;
  color: #747474;
}
#about .content p{
  text-align:center;
}
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li + li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #417505;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}


@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 30px 0;
  background-position: 18% 70%;
}
#footer a{
  text-align: left;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #417505;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

/*#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #417505;
}

#footer .copyright {
  margin: 0 0 5px 0;
}
*/
#footer .credits {
  font-size: 13px;
}
/*slider home page*/
p.slider-text{
line-height: 40px;
    color: #fff;
    font-size: 22px;
    text-align: left;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
/*topbar*/
section#topbar a {
    color: #fff!important;
    margin-right: 2%;
    font-size: 14px;
}
section#topbar .text-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
}
section#topbar .text-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
}
section#topbar .container {
    display: flex;
}
/*header*/
.logo.mr-auto a {
    font-size: 36px;
}
header span.menu-text{
  border-radius: 25px;
  border-color: #ffffff;
  background: #417505!important;
  padding: 9px 20px;
    line-height: 14px;
    font-size: 12px;
    display: inline-block;
    position: relative;
    zoom: 1;
    border: 1px solid transparent;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.button-icon-divider-left{
    padding: 0 10px;
    left: 0;
    border-right: 1px solid;
    display: inline-block;
    position: absolute;
    top: 0;
    height: 100%;
}
.button-icon-divider-left i{
    top: 50%;
    margin-top: -6px;
    display: block;
    position:relative;
    transition: all .2s;
    font-weight: 900;
        font-size: 14px;

}
.button-text-left{
  display: inline-block;
    padding-left: 25px;

}
nav.nav-menu.d-none.d-lg-block ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*about sire-sec*/
.fixed-image-left{
  padding: 0px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 454px;
  height: auto;
  /*background-size: contain!important;*/
  background-attachment: fixed!important;
}
.fixed-image-right{
  padding: 0px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 454px;
  height: auto;
  /*background-size: contain!important;*/
  background-attachment: fixed!important;
}
.text-col{
  /*background-color: rgb(239, 239, 239);*/
  background-color: #f8f8f8;
    padding: 80px 40px 80px 80px;
}
a.btn {
    background-color: #417505;
    color: #fff;
}
a.btn:hover {
    background-color: #fff;
    color: #417505;
}

.text-separator{
  border-bottom-style: solid;
    border-top-style: solid;
    height:auto;
}
/*core values*/
::marker {
    color: #417505;
}
.corevalues ul li {
    font-size: 18px;
    margin: 0px auto;
    color: #747474;
    text-align: left;
    font-family: 'Roboto';
    line-height: 2;
}
/*timers*/
.timers ul li {
    list-style: none;
    display: inline-block;
    width: 24%;
        text-align: center;
}
h3.name-city {
    color: #fff;
    font-size: 17px;
    font-family: roboto;
    margin: 0%;
    font-weight: 600;
}
#fc #hov {
    background: none!important;
}
a #fc:hover #hov {
    display: none!important;
}
section.clock-sec {
    background-position: center;
    padding: 7% 0px;
    background-size: contain;
}
/*footer*/
p.marg-top {
    margin-top: 7%!important;
    text-align: left;
}
#footer p{
  font-style: normal;
}
#footer span {
    font-style: normal;
    font-size: 18px;
}
div#widget2 a {
    display: block;
    color: #fff;
    text-align: left;
    line-height: 2;
    font-size: 14px;
    font-family: 'Roboto';
}
#about .content {
    padding: 0px 30px;
}
/*menu*/
nav.nav-menu.d-none.d-lg-block li a {
    text-transform: uppercase;
}
/*services*/
section#services h3 {
    text-align: center;
}
section#services .text-seperator {
    text-align: center;
}
/*company page*/
body .company-hero .carousel-item {
    height: 50vh!important;
    padding-top: 0vh!important;
    padding-bottom: 0vh!important;
}
body .company-hero{
    height: 50vh!important;
}
.company-hero .carousel-content h2 {
    font-size: 28px!important;
    padding: 1% 0%!important;
    max-width: 150px!important;
}
.company-hero .carousel-content {
    width: 100%!important;
}