/**
* Template Name: NewBiz
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/newbiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #34d09b;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #34d09b;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #34d09b;
  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: #27aa7d;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 70px;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
}

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

#header .logo img {
  padding: 0;
}

/*--------------------------------------------------------------
# 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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #145740;
  font-weight: 500;
  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: #27aa7d;
}

.navbar .btn-primary, .navbar .btn-primary:focus {
  background-color: #34d09b;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  margin-left: 30px;
  padding: 10px 20px;
  transition: 0.5s;
}

.navbar .btn-primary:hover {
  background-color: #27aa7d;
  color: #fff;
}

.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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

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

.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: #283d50;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(23, 35, 46, 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: #34d09b;
}

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

.navbar-mobile a.btn-primary {
  margin-left: 20px;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  background-color: #145740;
  background: radial-gradient(circle, #409e7d 0%, #145740 100%);
  border-bottom-left-radius: 50% 8%;
  border-bottom-right-radius: 50% 8%;
  padding: 120px 0 80px 0;
  position: relative;
  width: 100%;  
}

#hero .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#hero .hero-info {
  flex-grow: 1;
  padding-bottom: 3rem;
  padding-top: 3rem;
  max-width: 520px;
}

@media (max-width: 991px) {
  #hero {
    padding: 140px 0 60px 0;
  }
}


@media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    margin: auto;
    text-align: center;
  }

  #hero .hero-info form {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
}

#hero .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}

#hero .hero-info h2 span {
  color: #34d09b;
  text-decoration: underline;
}

#hero .hero-info p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

#hero .hero-info .form {
  background: #fff;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  /* margin-bottom: 2rem; */
  max-width: 370px;
  padding: 6px 10px 6px 15px;
  position: relative;
}

#hero .hero-info .message {
  max-width: 370px;
}


#hero .hero-info .btn-get-started,
#hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 20px 20px 20px 0;
  color: #fff;
}

#hero .hero-info .btn-get-started {
  background: #34d09b;
  border: 2px solid #34d09b;
  color: #fff;
}

#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero .hero-info .btn-services:hover {
  background: #34d09b;
  border-color: #34d09b;
  color: #fff;
}

#hero .hero-info .form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 75%;
}

#hero .hero-info .form input {
  outline: none;
}

#hero .hero-info .form input[type="submit"] {
  background-color: #34d09b;
  border: 0;
  border-radius: 50px;
  bottom: 0;
  color: #fff;
  font-size: 16px;
  padding: 0 20px;
  position: absolute;
  right: -2px;
  top: 0;
  transition: 0.3s;
}

#hero .hero-info .form input[type="submit"]:hover {
  background-color: #27aa7d;
}

#hero .hero-animation {
  max-height: 520px;
  max-width: 520px;
  margin: auto;
}

@media (max-width: 991px) {
  #hero .hero-animation {
    width: 100%;
  }
}

#hero .animation {
  background-image: url('../img/hero/background.webp');
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  #hero .animation {
    height: 500px;
  }
}

#hero .circle { 
  animation: rotation-circle 15s linear infinite both;
  max-height: 100%;
  max-width: 100%;
}

#hero .circle img { 
  vertical-align: top;
}

#hero .circle .wheel {
  max-width: inherit;
}

#hero .object {
  animation: rotation-object 15s linear infinite normal;
  position: absolute;
}

@media (max-width: 767px) {
  #hero .object {
    max-width: 60px;
  }
}
@media (max-width: 390px) {
  #hero .object {
    max-width: 50px;
  }
}

#hero #shoe {
  top: 30px;
  left: 90px;
}
@media (max-width: 767px) {
  #hero #shoe {    
    top: 25px;
    left: 70px;
  }
}
@media (max-width: 576px) {
  #hero #shoe {    
    top: 20px;
    left: 65px;
  }
}
@media (max-width: 390px) {
  #hero #shoe {    
    top: 18px;
    left: 60px;
  }
}

#hero #drill {
  top: 25px;
  left: 350px;
}
@media (max-width: 767px) {
  #hero #drill {    
    top: 20px;
    left: 270px;
  }
}
@media (max-width: 576px) {
  #hero #drill {    
    top: 20px;
    left: 262px;
  }
}
@media (max-width: 390px) {
  #hero #drill {    
    top: 18px;
    left: 238px;
  }
}

#hero #computer {
  top: 270px;
  left: 430px;
}
@media (max-width: 767px) {
  #hero #computer {    
    top: 212px;
    left: 338px;
  }
}
@media (max-width: 576px) {
  #hero #computer {    
    top: 205px;
    left: 325px;
  }
}
@media (max-width: 390px) {
  #hero #computer {    
    top: 184px;
    left: 295px;
  }
}

#hero #house {
  top: 430px;
  left: 223px;
}
@media (max-width: 767px) {
  #hero #house {    
    top: 335px;
    left: 175px;
  }
}
@media (max-width: 576px) {
  #hero #house {    
    top: 325px;
    left: 170px;
  }
}
@media (max-width: 390px) {
  #hero #house {    
    top: 292px;
    left: 153px;
  }
}

#hero #car {
  top: 278px;
  left: 5px;
}
@media (max-width: 767px) {
  #hero #car {    
    top: 220px;
    left: 0px;
  }
}
@media (max-width: 576px) {
  #hero #car {    
    top: 210px;
    left: 0px;
  }
}
@media (max-width: 390px) {
  #hero #car {    
    top: 192px;
    left: 2px;
  }
}

@keyframes rotation-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotation-object {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-90deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  75% {
    transform: rotate(-270deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  color: #145740;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  width: 50%;
}

.section-header p strong {
  font-size: 16px;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #daf6ed ;
}

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

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

.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;
  }
}

/* Concept Section
--------------------------------*/
#concept {
  background: #fff;
  padding: 60px 0;
}

#concept .concept-container .background {
  margin: 20px 0;
}

#concept .concept-container .content {
  background: #fff;
}

#concept .concept-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#concept .concept-container p {
  line-height: 26px;
}

#concept .concept-container p:last-child {
  margin-bottom: 0;
}

#concept .concept-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#concept .concept-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #34d09b;
  transition: all 0.3s ease-in-out;
}

#concept .concept-container .icon-box .icon i {
  color: #34d09b;
  font-size: 24px;
  line-height: 0;
}

#concept .concept-container .icon-box:hover .icon {
  background: #34d09b;
}

#concept .concept-container .icon-box:hover .icon i {
  color: #fff;
}

#concept .concept-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#concept .concept-container .icon-box .title a {
  color: #34d09b;
}

#concept .concept-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#concept .concept-extra {
  padding-top: 60px;
}

#concept .concept-extra h4 {
  color: #145740;
  font-weight: 600;
  font-size: 24px;
}

#concept .concept-extra h5 {
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 4px;
}

#concept .concept-extra ul {
  list-style: none;
  padding-left: 0;
}

#concept .concept-extra ul i {
  color: #34d09b;
}

/* Sign-Up Section
--------------------------------*/
#sign-up .content {
  background-color: #1e805f;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 50px 0;
}

#sign-up .content h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px 0;
  padding: 0;
}

#sign-up .content .form {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  margin: auto;
  margin-top: 30px;
  padding: 6px 10px;
  position: relative;
  text-align: left;
  width: 80%;
}

#sign-up .content .form input {
  outline: none;
}

#sign-up .content .form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#sign-up .content .form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #34d09b;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#sign-up .content .form input[type="submit"]:hover {
  background: #27aa7d;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.faq .section-title h2 {
  color: #145740;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.faq .section-title p {
  text-align: center;
}

.faq .faq-list {
  padding: 0;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  cursor: pointer;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  outline: none;
  padding: 0 30px;
  position: relative;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #34e5a6;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1acc8d;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

.contact .info {
  background: #fff;
  color: #283d50;
  width: 100%;
}

.contact .info i {
  align-items: center;
  background-color: #fff;
  border: 2px solid #34d09b;
  border-radius: 50px;
  color: #34d09b;
  display: flex;
  font-size: 24px;
  float: left;
  height: 56px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  width: 56px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1acc8d;
  color: #fff;
}

.contact .info h4 {
  padding: 0 0 0 80px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #145740;
}

.contact .info p {
  padding: 0 0 10px 80px;
  line-height: 28px;
  font-size: 14px;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  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;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #34d09b;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  background-color: #34d09b;
  border: 0;
  border-radius: 20px;
  color: #fff;
  padding: 8px 30px;
  transition: 0.3s;
}

#contact .php-email-form button[type="submit"]:hover {
  background-color: #27aa7d;
  cursor: pointer;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #145740;
  color: #eee;
  font-size: 14px;
  padding: 0 0 30px 0;
}

#footer .footer-top {
  background: #27aa7d;
  padding: 40px 0 0 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

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

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

#footer .footer-top .footer-links ul li {
  padding: 8px;
  font-weight: 500;
}

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

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #145740;
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
  margin-bottom: 0;
}

#footer .footer-top .footer-contact a {
  color: #ecf5ff;
}

#footer .footer-top .footer-contact a:hover {
  color: #145740;
}

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

#footer .footer-top .content input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .content input[type=submit] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}