
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #051657;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #18d26e;
  transition: 0.5s;
  font-family: "Montserrat", sans-serif;
}

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

/* p { */
  /* padding: 0; */
  /* margin: 0 0 30px 0; */
  /* font-family: "Montserrat", sans-serif; */
  /* color: #fff; */
/* } */

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

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #18d26e;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#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 #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
   height: 60px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #051657;
}

#header.header-scrolled {
  height: 75px;
  padding: 8px 0;
 }

#header #logo {
  float: left;
}

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

#header #logo h1 a,
#header #logo h1 a:hover {
   color: #00366f;
  text-decoration: none;
  
}
#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 56px;
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  background: url("../img/taasler/Header_laptop.jpg") center center no-repeat;
  background-size: cover;
  }

#intro h1 {
	  color: #051657;
	  margin-bottom: 50px;
	  font-size: 29px;
	  font-weight: 700;
	}

@media only screen and (min-width: 760px){
	#intro h1 {
	  color: #051657;
	  margin-bottom: 50px;
	  font-size: 48px;
	  font-weight: 700;
	}
}

#intro p {
  color: #051657;
  font-size: 18px;
  font-weight: 450;
}

.intro-btn {
	  font-family: "Montserrat", sans-serif;
	  font-size: 10px;
	  font-weight: 300;
	  letter-spacing: 1px;
	  display: inline-block;
	  padding: 10px 12px;
	  border-radius: 10px;
	  transition: 0.5s;
	  margin-bottom: 5px;
	  color: #fff;
	  background: #051657;
	}

@media only screen and (min-width: 760px){
	.intro-btn {
	  font-family: "Montserrat", sans-serif;
	  font-size: 14px;
	  font-weight: 300;
	  letter-spacing: 1px;
	  display: inline-block;
	  padding: 10px 32px;
	  border-radius: 50px;
	  transition: 0.5s;
	  margin-bottom: 10px;
	  color: #fff;
	  background: #051657;
	}
}

.btn-subscribe {
  background: #18d26e;
}

 
#intro .intro-content .intro-btn:hover {
  background: #fff;
  color: #18d26e;
}

#intro .subscribe {
  padding-top: 80px;
}

#intro .subscribe p {
  background-color: #18d26e;
  background: rgb(24, 210, 110); /* fallback color */
  background: rgba(24, 210, 110, 0.7);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  width: auto;
}
#intro .subscribe p span {
   color: white; 
   font: bold 24px/45px Bookman, Sans-Serif; 
   letter-spacing: 1px;  
 
   padding: 10px; 
}
/* #intro .intro-btn { */
  /* font-family: "Montserrat", sans-serif; */
  /* font-size: 12px; */
  /* font-weight: 200; */
  /* letter-spacing: 1px; */
  /* display: inline-block; */
  /* padding: 10px 32px; */
  /* border-radius: 50px; */
  /* transition: 0.5s; */
  /* margin: 0 20px 20px 0; */
  /* color: #fff; */
  /* background: #18d26e; */
/* }  */
 
/* #intro .intro-btn:hover { */
  /* background: #051657; */
  /* color: #fff; */
/* } */

#intro .subscribe label {
  color: #fff;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (min-width: 760px) {
  #intro {
    padding-top: 60px;
    height: 50vh;
  }
  .form {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 1040px) {
  #intro {
    padding-top: 60px;
    height: 75vh;
  }
  .form {
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

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

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #18d26e;
  text-decoration: none;
}

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

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #18d26e;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

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

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

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

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

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

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

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/* Coming Soon Section
--------------------------------*/

#comingsoon {
  background: url("../img/taasler/wallpaper.png") center no-repeat fixed;
  background-size: 100%;
  padding: 60px 0 40px 0;
  position: relative;
}

#comingsoon::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.93);
  z-index: 9;
}

#comingsoon .container {
  position: relative;
  z-index: 10;
}

/* #comingsoon { */
  /* background: #fff; */
  /* padding: 60px 0 40px 0; */
/* } */

#comingsoon i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#comingsoon h1 {
  font-weight: 500;
  margin: 15px 0;
  font-size: 29px;
  color: #18d26e;
}

@media only screen and (min-width: 760px){
  #comingsoon h1 {
  font-weight: 500;
  margin: 15px 0;
  font-size: 36px;
  color: #18d26e;
}
}



#comingsoon h2 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#comingsoon h4 a {
  color: #fff;
}

#comingsoon h4 a:hover {
  color: #18d26e;
}

#comingsoon p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

@media only screen and (min-width: 760px) {
  #comingsoon {
    padding-top: 60px;
    height: 50vh;
  }
  .form {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 1040px) {
  #comingsoon {
    padding-top: 60px;
    height: 75vh;
  }
  .form {
    padding-top: 40px;
  }
}

/* Problem Statement Section
--------------------------------*/

#prob-statement {
  background: #051657;
  padding: 60px 0 40px 0;
}

#prob-statement .box {
  padding: 30px 20px;
}

#prob-statement .box-bg {
  background-image: linear-gradient(0deg, #051657 0%, #082282 50%, #051657 100%);
}

#prob-statement h3 {
  font-size: 32px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

#prob-statement i {
  color: #18d26e;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#prob-statement h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#prob-statement h4 a {
  color: #fff;
}

#prob-statement h4 a:hover {
  color: #18d26e;
}

#prob-statement p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/

#about {
  background: url("../img/taasler/wallpaper.png") center top no-repeat fixed;
  background-size: 100%;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.93);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}
#about h3 {
  font-size: 32px;
  color: #051657;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}


#about p {
  text-align: center;
  padding-bottom: 30px;
  color: #051657;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #18d26e;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #18d26e;
}

#about .about-col h2 {
  color: #051657;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #051657;
}

#about .about-col h2 a:hover {
  color: #18d26e;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

#about .about-col li {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  /* padding: 0 20px 20px 20px; */
}

/* looking Section
--------------------------------*/

#looking {
  background: #051657;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#looking .container h3 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

#looking .container h5 {
  color: #fff;
  font-size: 19px;
  /* text-transform: uppercase; */
  text-align: center;
  font-weight: 500;
  position: relative;
  padding-bottom: 55px;
}
#looking .container p {
   color: #fff;
}

#looking .box {
  margin-bottom: 30px;
}

#looking .icon {
  float: left;
}

#looking .icon i {
  color: #18d26e;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#looking .title {
  color: #fff;
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#looking .title a {
  color: #fff;
}

#looking .box:hover .title a {
  color: #18d26e;
}

#looking .description {
  color: #fff;
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* How It Works Section
--------------------------------*/

#how-it-works {
  background: #051657;
    /* background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/facts-bg.jpg) fixed center center; */
  background-size: cover;
  padding: 60px 0;
}

/* This was fading the intro image 
#how-it-works::before { */
  /* content: ''; */
  /* position: absolute; */
  /* left: 0; */
  /* right: 0; */
  /* top: 0; */
  /* bottom: 0; */
  /* background: rgba(255, 255, 255, 0.92); */
  /* z-index: 9; */
/* } */

#how-it-works h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

#how-it-works h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

#how-it-works .how-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 450;
  font-size: 14px;
  width: 200px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  background: #051657;
  border: 2px solid #fff;
  color: #fff;
}

#how-it-works .how-btn:hover {
  background: #18d26e;
  border: 2px solid #18d26e;
}

/* Hiring Section
--------------------------------*/

#hiring {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
  padding: 60px 0 40px 0;
}

#hiring {
  background: #fff;
  padding: 60px 0;
}

#hiring h3 {
  color: #051657;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
#hiring h4 {
  color: #333;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

#hiring p {
  color: #333;
  font-size: 18px; 
  padding-bottom: 30px;
}
#hiring .hiring-container .background {
  margin: 20px 0;
}

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

#hiring .hiring-container .title {
  color: #051657;
  font-weight: 700;
  font-size: 32px;
  text-align: left;
}

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

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

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

#hiring .hiring-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#hiring .hiring-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#hiring .hiring-container .icon-box:hover .icon {
  background: #007bff;
}

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

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


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

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

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

#hiring .hiring-extra p {
  font-weight: 400;
  font-size: 16px;
  color: #333;
}


/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}


#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #18d26e;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
#contact h3 {
  color: #051657;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

#contact p {
  color: #051657;
  text-align: center;
  padding-bottom: 30px;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #18d26e;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

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

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

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #18d26e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #13a456;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #051657;
  padding: 60px 0 30px 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 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #18d26e;
}

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

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

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

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

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #18d26e;
  width: 60px;
}

#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: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

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

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

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

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

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

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

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

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #18d26e;
  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: #13a456;
}

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

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

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/


@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  #intro .subscribe {
	  padding-top: 200px;
}


@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 60%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

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

  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}
}