/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  color-scheme: dark;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}

.container {
  width: 80%;
}

h3 {
  color: #C4C4C4;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

h1 {
  color: #000000;
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 130px;
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0);
}

#header.header-scrolled {
  height: 100px;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.15);
  background-color: rgb(0, 0, 0);
}

#header #logo img {
  padding: 0;
  height: 50px;
}

@media (max-width: 768px) {
  #header {
    height: 130px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.navbar a p {
  font-weight: 200;
  margin-bottom: -6px;
}

.navbar a button {
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  justify-content: center;
  max-width: 480px;
  min-height: 38px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 15px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.navbar a button:hover,
.navbar a button:focus { 
  background-color: #008397;
}

.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: #008397;
}

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

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

.mobile-nav-toggle.bi-x {
  color: rgb(255, 255, 255);
}

@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(60, 56, 56, 0.9);
  transition: 0.4s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  text-align: center;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgb(0, 0, 0);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a button {
  margin-top: 15px;
  margin-left: 0px;
}

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

/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
#info {
  padding: 200px 0 150px 0;
  position: relative;
  z-index: 1;
  background: black;
  background-size: cover;
}

#info .content {
  width: 70%;
}

#info .content h1 {
  color: #FFFFFF;
  font-size: 50px;
  font-weight: bold;
}

#info .content p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 45px;
  display: block;
}

#info .content button {
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  justify-content: center;
  max-height: 50px;
  min-height: 50px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

/*--------------------------------------------------------------
# GDPR Section
--------------------------------------------------------------*/
#gdpr {
  padding: 100px 0 100px 0;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
}

#gdpr h2{
  padding-bottom: 30px;
}

#gdpr h5 {
  padding-top: 20px;
  padding-bottom: 10px;
}

#gdpr h6 {
  padding-top: 10px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 100px 0 100px 0;
  position: relative;
  z-index: 1;
  background: #000000;
  display: flex;
}

#contact h1 {
  color: #FFFFFF;
  font-weight: bold;
  padding-bottom: 40px;
}

#contact p a {
  color: #FFFFFF;
  font-weight: 200;
  font-size: 24px;
}

#contact .address {
  line-height: 10px;
  padding-top: 20px;
}

#contact p {
  color: #FFFFFF;
  font-weight: 200;
}

#contact .col2 {
  text-align: right;
  padding-bottom: 0px;
  display: inline-block;
  align-self: flex-end;
}

#contact .col2 img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

#contact .col2 p {
  margin-bottom: 7px;
}

#contact .col2 p a {
  font-size: 14px;
  transition: 0.5s;
}

#contact .copyright {
  color: #ffffff;
}

#contact .copyright span{
  padding-top: 15px;
  color: #2B969F;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #contact .col2 {
    text-align: left;
    padding-top: 70px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  padding: 0 0 25px 0;
  font-size: 14px;
  border-top: #C4C4C4 1px solid;
}

#footer .copyright {
  text-align: center;
  padding-top: 25px;
  color: #000000;
}

#footer .copyright span{
  text-align: center;
  padding-top: 15px;
  color: #2B969F;
  text-transform: uppercase;
}