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

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  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: #6da853;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #6da853;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo + site name */
#header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

#header .logo img {
  height: 45px;
}

#header .logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #124265;
  margin-left: 10px;
  white-space: nowrap;
}

/* Navbar (desktop) */
#navbar {
  display: flex;
  align-items: center;
}

#navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navbar ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #124265;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s;
}

#navbar ul li a.active,
#navbar ul li a:hover {
  color: #6da853;
}

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  transition: transform 0.3s ease;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: #124265;
}

.mobile-nav-toggle.active {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Mobile header/nav adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
  #navbar ul {
    flex-direction: column;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    top: 70px; /* right below header */
    right: 0;
    width: 220px;
    background: #fff;
    display: none;
    padding: 15px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 9999;
  }

  #navbar.navbar-mobile ul {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  #navbar ul li a {
    padding: 10px 20px;
  }

  .mobile-nav-toggle {
    display: block;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  margin-top: 70px; /* offset for fixed header */
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

#hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.8);
}

#hero .container {
  position: relative;
  z-index: 1;
}

/* Headings default hidden (for animation) */
#hero h1,
#hero h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Show when .visible is applied (works on all sizes) */
#hero h1.visible,
#hero h2.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  margin: 0;
}

#hero h2 {
  font-size: 22px;
  color: #5e5e5e;
  margin: 10px 0 0 0;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 14px 50px;
  border-radius: 5px;
  margin-top: 30px;
  display: inline-block;
  color: #fff;
  background: #6da853;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#hero .btn-get-started.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero .btn-get-started:hover {
  background: #3194db;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #hero {
    height: auto;
    padding: 60px 15px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 22px;
    line-height: 24px;
    transition-delay: 0.3s;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-top: 60px;    /* consistent top padding */
  padding-bottom: 60px; /* consistent bottom padding */
  margin: 0;            /* remove any extra margin */
}

/* Reduce spacing for smaller screens */
@media (max-width: 768px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


/* Remove extra spacing on headings inside sections */
section h2,
section h3,
section h4,
section p {
  margin-top: 0;
  margin-bottom: 20px; /* adjust spacing between text elements */
  font-size: 18px;
}

/* Ensure last element in section does not add extra space */
section > *:last-child {
  margin-bottom: 0;
}


.section-bg {
  background-color: #f8f9fa;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
  color: #919191;
}


/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.about-me {
  padding: 60px 0;
  background: #f8f9fa; /* very light gray instead of pure white */
}

.about-me .section-title {
  text-align: center;
  margin-bottom: 0px;
}

.about-me .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase; /* matches Pricing section style */
  color: #124265;
  margin-bottom: 20px;
  position: relative;
}

.about-me .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.about-me .btn-about-me {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  background: #6da853;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

/* Hover state */
.about-me .btn-about-me:hover {
  background: #2487ce;
  color: #fff;
}

/* Remove extra bottom margin from the last element inside About Me */
.about-me .content > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Optional: remove bottom margin from the section title paragraph */
.about-me .section-title p {
  margin-bottom: 0;
}

/* Ensure button wrapper doesn’t add extra space */
.about-me .text-center.text-lg-start {
  margin-bottom: 0;
  padding-bottom: 0;
}


/*--------------------------------------------------------------
# About me v2
--------------------------------------------------------------*/


.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.about-cards .card:hover {
  transform: translateY(-4px);
}


/*--------------------------------------------------------------
# About me collapsible
--------------------------------------------------------------*/

/* Container */
.about-story {
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Hidden content */
#more {
  display: none; /* default hidden */
}

/* Button styling */
#readMoreBtn {
  background-color: #4caf50; 
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

#readMoreBtn:hover {
  background-color: #43a047; /* slightly darker on hover */
}



/*--------------------------------------------------------------
# Hero Quote
--------------------------------------------------------------*/
#hero #quote {
  margin: 30px auto;
  max-width: 600px;
  font-style: italic;
  color: #124265; /* matches your theme */
}

#hero #quote blockquote {
  font-size: 20px;
  line-height: 1.6;
  position: relative;
  margin: 0;
  padding: 0 20px;
}

#hero #quote figcaption {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}



/*--------------------------------------------------------------
# Approach Section
--------------------------------------------------------------*/
.approach {
  background: #fff; /* light background for contrast */
  padding: 60px 0;
}

.approach .section-title h2 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #124265;
  margin-bottom: 15px;
}

.approach .section-title p {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 15px;
}

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

.approach ul li {
  position: relative;
  padding-left: 30px;  /* indent for icon/bullet */
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
  color: #124265;
}

.approach ul li::before {
  content: "✔"; /* or use an SVG icon */
  position: absolute;
  left: 0;
  top: 0;
  color: #6da853; /* matches your button green */
  font-weight: bold;
}

@media (min-width: 992px) {
  .approach ul {
    column-count: 2; /* neat two-column layout on desktop */
    column-gap: 40px;
  }
}






/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #124265;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #6da853;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size: 18px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  text-align: padding-left;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}



.pricing .box h3 {
  font-weight: 400;
  text-align: center;
  padding: 15px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: #124265;
}

.pricing .box h4 {
  font-size: 42px;
  color: #2487ce;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: inside;
  text-align: left;
  line-height: 20px;
  font-size: 18px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
  margin-top: auto; /* pushes button area down */
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 20px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  background: #6da853;
}

.pricing .box .btn-buy:hover {
  background: #2487ce;
  color: #fff;
}

.pricing .featured {
  background: #2487ce;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #2487ce;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

/* Top-level FAQ list */
.faq .faq-list > ul {
  padding: 0;
  list-style: none;
}

/* Top-level FAQ items - white bounding box */
.faq .faq-list > ul > li {
  margin-bottom: 1rem;
  padding: 0; /* padding handled by question and answer */
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); /* optional subtle shadow */
  position: relative;
}

/* FAQ question link */
.faq .faq-list a {
  display: flex;
  align-items: center; /* vertically center help icon & text */
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  padding: 0.75rem 1rem; /* spacing inside box */
  transition: color 0.3s ease;
}

.faq .faq-list a:hover {
  color: #2487ce;
}

/* Help icon */
.faq .faq-list .icon-help {
  font-size: 24px;
  color: #87c1ea;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: inline-flex;
  vertical-align: middle;
}

/* Chevron icons */
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Optional: rotate chevron on expand */
.faq .faq-list .collapse.show ~ a .icon-show {
  transform: rotate(180deg);
}
.faq .faq-list .collapse.show ~ a .icon-close {
  transform: rotate(180deg);
}

/* Show/hide chevrons */
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/* Answer block */
.faq-answer {
  background-color: #f9fbfd; /* soft pale blue-grey */
  padding: 1rem 1.25rem;
  border-radius: 0 0 6px 6px; /* rounded bottom corners */
  margin-top: 0.5rem;
}

/* Answer text */
.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.faq-answer li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* Collapse animation */
.collapse.show {
  display: block !important;
}

.collapse {
  display: none;
}

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


/*--------------------------------------------------------------
# Contact Info (Address, Email, Phone)
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #6da853;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

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

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact .php-email-form {
  width: 100%;
  background: #fff;
  padding: 20px;
  position: relative;
  box-sizing: border-box;
}

/* Reserve space for messages */
.contact .php-email-form .form-messages {
  min-height: 60px;
  text-align: center;
  margin-bottom: 20px;
}

/* Loading indicator */
.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  background: #f8f9fa;
  color: #124265;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin: 0 auto;
  max-width: 600px;
}

.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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

/* Error message */
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  border-left: 5px solid #b30000;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin: 0 auto 15px auto;
  max-width: 600px;
}

/* Sent message */
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin: 0 auto 15px auto;
  max-width: 600px;
}

/* Form group spacing */
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

/* Inputs & textarea */
.contact .php-email-form input,
.contact .php-email-form textarea {
  width: 100%;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

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

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  min-height: 120px;
}

/* Submit button */
.contact .php-email-form button[type=submit] {
  background: #6da853;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}

/* Loading animation keyframes */
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

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

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

.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: #1a5e90;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #3194db;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

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

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}