/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "DIN 2014", sans-serif, Arial, "Open Sans";
  color: #313030;
  background-color: #FAFAFA;
}

a {
  color: #989898;
}

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

.en-ver{
  color: #18355D !important;
}
.modal-body{
  color: #707070;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #18355D;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #5EABC0;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 8px 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

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

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

#main {
  z-index: 3;
}

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

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

.nav-menu a{
  display: block;
  position: relative;
  color: #635551;
  padding: 11px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
}
.nav-menu span {
  display: inline-block;
  color: #635551;
  padding: 11px 5px;
  font-size: 16px;
  font-weight: bold;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #18355D;
  text-decoration: none;
}

.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;
  border-radius: 8px;
}

.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: lightne(#473d3a, 10);
}

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

.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 {
  text-align: right;
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
}

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

.mobile-nav {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  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: #473d3a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

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

.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(43, 37, 35, 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;
}

@media (max-width: 768px) {
  .mobile-nav {
    max-width: 500px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/header-bg.png") center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 0;
  color: #fff;
}

#hero .container {
  z-index: 2;
}

#hero .main-txt {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 22px;
}

#hero h2 {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 56px;
  font-style: italic;
  font-weight: 200;
}

#hero .btn-get-started {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.5s;
  padding: 15px 75px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  position: relative;
  z-index: 4;
}

#hero .btn-get-started:hover {
  color: #18355D;
  border-color:#18355D;
}

#hero .mob-btn{
  text-align: center;
  margin: 20px;
}

#hero .mob-btn .btn-get-started{
  min-width: 80%;
}
@media (max-width: 1199px){
  #hero h2 {
    font-size: 46px;
  }
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px){
  #hero {
    display: block !important;
    height: 100%;
  }
  #hero img{
    width: 90%;
    margin: 50px auto 0;
    display: block;
  }
  #hero h2{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 72px;
    font-weight: 400;
  }
}

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

@media (max-width: 500px) {
  #hero h2{
    font-size: 38px;
  }
  #hero .btn-get-started {
    padding: 15px 25px;
  }
}

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  color: #707070;
}

.section-bg {
  background-color: #5EABC0;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .titel{
  justify-content: flex-end;
  align-items: center;
  color: #5EABC0;
  text-align: right;
}

.about .titel h2{
  font-weight: 300;
  font-size: 82px;
}

.about p {
  font-size: 20px;
  color: #5D5D5D;
  margin-bottom: 25px;
}
.about p:last-of-type{
  margin-bottom: 0;
}

@media (max-width: 991px){
  .about .titel {
    justify-content: center;
  }
}

@media (max-width: 768px){
  .about .titel h2{
    font-size: 62px;
  }
}

@media (max-width: 378px){
  .about .titel h2{
    font-size: 52px;
  }
}

/*--------------------------------------------------------------
# philosophy
--------------------------------------------------------------*/
.philosophy .titel{
  justify-content: flex-end;
  align-items: center;
  color: #18355D;
  text-align: right;
}

.philosophy .titel h2{
  font-weight: 300;
  font-size: 82px;
}

.philosophy p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
}
.philosophy p:last-of-type{
  margin-bottom: 0;
}
@media (max-width: 991px){
  .philosophy .titel {
    justify-content: center;
  }
}
@media (max-width: 768px){
  .philosophy .titel h2{
    font-size: 62px;
  }
}
@media (max-width: 378px){
  .philosophy .titel h2{
    font-size: 52px;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .titel{
  justify-content: flex-end;
  align-items: center;
  color: #5EABC0;
  text-align: right;
}

.services .titel h2{
  font-weight: 300;
  font-size: 82px;
}

.services p {
  font-size: 20px;
  color: #5D5D5D;
  margin-bottom: 25px;
}
.services p:last-of-type{
  margin-bottom: 0;
}

.services h4{
  color: #18355D;
  padding: 30px;
  font-size: 36px;
}
.services img{
  width: 250px;
}
.services ul {
  list-style: none;
}
.services ul li {
  font-size: 22px;
  color: #6F7070;
  padding-bottom: 15px;
}
.services ul li:last-of-type{
  padding-bottom: 0;
}
.services ul li::before {
  content: "\2022";  
  color: #5EABC0; 
  font-weight: bold; 
  display: inline-block; 
  width: 25px;
  margin-left: -1em;
  vertical-align:middle;
  line-height:20px;
  font-size: 40px;
}

@media (max-width: 991px){
  .services .titel {
    justify-content: center;
  }
  .services ul {
    list-style: none;
    max-width: 450px;
    margin: 0 auto;
    padding-left: 50px;
  }
}

@media (max-width: 768px){
  .services .titel h2{
    font-size: 62px;
  }
  .services h4 {
    font-size: 32px;
    padding: 10px;
  }
  .services img{
    width: 300px;
  }
}
@media (max-width: 378px){
  .services .titel h2{
    font-size: 52px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .titel{
  padding-right: 120px;
  text-align: right;
}

.contact .titel h2{
  font-size: 64px;
  font-weight: 300;
  color: #5EABC0;
}
.contact .titel h4{
  color: #5D5D5D;
}

.contact p {
  font-size: 22px;
  font-weight: 300;
  color: #5D5D5D;
  margin-bottom: 25px;
}
.contact p span{
  font-size: 24px;
  font-weight: 600;
}
.contact p:last-of-type{
  margin-bottom: 0;
}

@media (max-width: 1199px){
  .contact .titel {
    padding-right: 80px;
  }
  #contact .titel h2 {
    font-size: 46px;
  }
}

@media (max-width: 991px){
  .contact  .titel {
    text-align: center;
    padding-right: 15px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #989898;
  font-size: 14px;
  padding: 50px 0;
  background: #EFEFEF;
  text-align: center;
}

#footer .row{
  align-items: baseline;
}
#footer .footer-contact{
  text-align: left;
}

#footer .footer-links span{
  color: #989898;
  cursor: pointer;
}

#footer .footer-links span:hover {
  color: #18355D;
  text-decoration: none;
}  

@media (max-width: 991px){
  #footer .footer-logo{
    margin-bottom: 10px;
  }
  #footer .footer-contact{
    text-align: center;
  }
  #footer .mob-left{
    text-align: left;
  }
  #footer .mob-right{
    text-align: right;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f2f2;
  margin-bottom: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #635551;
  content: "/";
}
