/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  cursor: default;
}

a {
  color: #149ddd;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

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

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

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

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

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #a8a9b4;
    background: #040b14;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

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

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

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

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

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

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 2px 15px;
  margin-bottom: 2px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 18px;
  padding-right: 8px;
  color: #6f7180;
}

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

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #149ddd;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 18px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: default;
}

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

.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
  background: url("../img/001.png") top center;
  background-size: cover;
}

#home:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#home .home-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#home h1 {
  margin: 75px 10px 10px 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 56px;
  color: #212431;
}

#home p {
  color: #fff;
  margin: 0 10px 10px 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#home p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #212431;
}

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

@media (max-width: 768px) {
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #home h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

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

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Garden
--------------------------------------------------------------*/
.garden {
  background: #dce8f8;
}

.garden .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.garden .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.garden .content ul strong {
  margin-right: 10px;
}

.garden .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.garden .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Renovation
--------------------------------------------------------------*/
.renovation {
  background: #ffffff;
}

.renovation .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.renovation .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.renovation .content ul strong {
  margin-right: 10px;
}

.renovation .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.renovation .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Painter
--------------------------------------------------------------*/
.painter {
  background: #dce8f8;
}

.painter .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.painter .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.painter .content ul strong {
  margin-right: 10px;
}

.painter .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.painter .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Construction
--------------------------------------------------------------*/
.construction {
  background: #ffffff;
}

.construction .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.construction .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.construction .content ul strong {
  margin-right: 10px;
}

.construction .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.construction .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Joiner
--------------------------------------------------------------*/
.joiner {
  background: #dce8f8;
}

.joiner .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.joiner .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.joiner .content ul strong {
  margin-right: 10px;
}

.joiner .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.joiner .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Layers
--------------------------------------------------------------*/
.layers {
  background: #ffffff;
}

.layers .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.layers .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.layers .content ul strong {
  margin-right: 10px;
}

.layers .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.layers .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Moves
--------------------------------------------------------------*/
.moves {
  background: #dce8f8;
}

.moves .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.moves .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.moves .content ul strong {
  margin-right: 10px;
}

.moves .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.moves .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Other
--------------------------------------------------------------*/
.other {
  background: #ffffff;
}

.other .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.other .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.other .content ul strong {
  margin-right: 10px;
}

.other .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.other .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Power
--------------------------------------------------------------*/
.power {
  background: #dce8f8;
}

.power .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.power .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.power .content ul strong {
  margin-right: 10px;
}

.power .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.power .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Sanitary
--------------------------------------------------------------*/
.sanitary {
  background: #ffffff;
}

.sanitary .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.sanitary .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sanitary .content ul strong {
  margin-right: 10px;
}

.sanitary .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.sanitary .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# DIY
--------------------------------------------------------------*/
.diy {
  background: #dce8f8;
}

.diy .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.diy .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.diy .content ul strong {
  margin-right: 10px;
}

.diy .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.diy .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Furniture
--------------------------------------------------------------*/
.furniture {
  background: #ffffff;
}

.furniture .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.furniture .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.furniture .content ul strong {
  margin-right: 10px;
}

.furniture .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.furniture .content p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Imprint
--------------------------------------------------------------*/
.imprint {
  background: #dce8f8;
  padding-bottom: 10px;
}

.imprint .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.imprint .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.imprint .content ul strong {
  margin-right: 10px;
}

.imprint .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.imprint .content p:last-child {
  margin-bottom: 20px;
}
.imprint .info {
  padding: 30px;
  margin-bottom: 20px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  cursor: default;
}
.imprint .info1 {
  padding: 30px;
  margin-bottom: 20px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  cursor: default;
}
.imprint .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.imprint .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1px;
  color: #050d18;
    cursor: default;
}

.imprint .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #173b6c;
}

.imprint .info .data:hover i {
  background: #149ddd;
  color: #fff;
  cursor: default;
}
.imprint .info2 {
  margin: 0 0 0 60px;
  background: #fff;
  padding: 0;
  cursor: default;
}

.imprint .info2 i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.imprint .info2 .email:hover i {
  background: #149ddd;
  color: #fff;
  cursor: default;
}
#imprint .btn-get-started {
  background: #DFF3FC;
  border: 0;
  padding: 10px 35px;
  color: #149ddd;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 50px;
}

#imprint .btn-get-started:hover {
  background: #149ddd;
  font-weight: bold;
  color: #fff;
}
#imprint .btn-get-started:active {
  background: #149ddd;
  font-weight: bold;
  color: #fff;
}
#imprint .btn-get-started:visited {
  background: #149ddd;
  font-weight: bold;
  color: #fff;
}
/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/
.terms {
  background: #dce8f8;
}

.terms .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.terms .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.terms .content ul strong {
  margin-right: 10px;
}

.terms .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

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

#terms .btn-get-started {
  background: #149ddd;
  border: 0;
  padding: 10px 35px;
  color: #ffffff;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 50px;
}

#terms .btn-get-started:hover {
  background: #fff;
  font-weight: bold;
  color: #149ddd;
}
#terms .btn-get-started:active {
  background: #fff;
  font-weight: bold;
  color: #149ddd;
}
#terms .btn-get-started:visited {
  background: #fff;
  font-weight: bold;
  color: #149ddd;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 60px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1px;
  color: #050d18;
    cursor: default;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
  cursor: default;
}

.contact .info .email p {
  padding-top: 5px;
  cursor: default;
}

.contact .info .social-links {
  padding-left: 60px;
  cursor: default;
}

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

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
  cursor: default;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
  cursor: default;
}

.contact .info1 {
  background: #fff;
  width: 100%;
}

.contact .info1 i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.contact .info1 h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1px;
  color: #050d18;
  cursor: default;
}

.contact .info1 p {
  padding: 0 0 0 60px;
  font-size: 12px;
  font-weight: 700;
  color: #173b6c;
  cursor: default;
}

.contact .info1 .email p {
  padding-top: 5px;
  cursor: default;
}

.contact .info1 .email:hover i {
  background: #149ddd;
  color: #fff;
  cursor: default;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form input::-webkit-outer-spin-button,
.contact .php-email-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact .php-email-form input[type=number]{
    -moz-appearance: textfield;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #blue;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #149ddd;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #ffffff;
  border-color: #149ddd;
  color: 173b6c;
  cursor: text;
  border-radius: 8px;
}
.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #173b6c;
}
.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #173b6c;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #149ddd;
}
.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form .form-group input[type="checkbox"] {
  font-weight: 900;
  font-size: 12px;
  margin-left: 2px;
}

.contact .php-email-form .form-group input[type="checkbox"]:checked {
  height: 5px;
  width: 1px;
  margin-left: 2px;
  outline: 4px solid green;
}

.contact .php-email-form .form-group input[type="checkbox"]:not(:checked) {
  height: 5px;  
  width: 1px;
  margin-left: 2px;
}

.contact .php-email-form .form-group label {
  color: #173b6c;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  display: block;
  margin-top: -16px;
  margin-left: 40px;
}


.contact .php-email-form textarea {
  padding: 10px 12px;
  color: #173b6c;
  cursor: text;
  border-radius: 8px;
}
.contact .php-email-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #ffffff;
  border-color: #149ddd;
  color: #173b6c;
  cursor: pointer;
  font-size: 14px;
  outline: none;
}

.contact .php-email-form select option {
  color: #173b6c;
  background: #ffffff;
  border-color: #149ddd;
  cursor: default;
  outline: none;
}

.contact .php-email-form select::-ms-expand {
  display: none;
}

.contact .php-email-form select:focus::-ms-value {
  background-color: transparent;
}
.contact .php-email-form button[type=submit] {
  background: #DFF3FC;
  border: 0;
  padding: 10px 35px;
  color: #149ddd;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=reset] {
  background: #DFF3FC;
  border: 0;
  padding: 10px 35px;
  color: #149ddd;
  font-weight: bold;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #149ddd;
  font-weight: bold;
  color: #fff;
}
.contact .php-email-form button[type=reset]:hover {
  background: #149ddd;
  font-weight: bold;
  color: #fff;
}

.help-block.with-errors {
    color: red;
    margin-top: 5px;
	margin-bottom: -5px;
	font-size: 12px;
	font-weight: bold;

}

#sendmessage {
    color: green;
    border:1px solid green;
    display:none;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#errormessage {
    color: red;
    display:none;
    border:1px solid red;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
	display:block;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}