@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&amp;display=swap");
:root {
  --font-family-1: "Montserrat", sans-serif;
  --color-1: #00ffb6;
  --color-1-hover: #02e2a3;
  --color-2: $color-2;
}

body {
  font-family: var(--font-family-1);
  color: #444444;
  font-weight: 500;
}

a {
  color: var(--color-1);
  text-decoration: none;
}

a:hover {
  transition: all 0.3s ease-in-out;
  color: #02e2a3;
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: var(--color-1);
  color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: var(--color-1-hover);
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding: 18px 0 22px 0;
}

#header.header-scrolled {
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background: #fff;
}

#header .logo a {
  display: inline-block;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 30px;
}

@media (max-width: 768px) {
  #header {
    background: #fff;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  padding: 8px 0 12px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-family: var(--font-family-1);
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: var(--color-1);
  text-decoration: none;
}

.nav-menu .get-started a {
  font-weight: 600;
  background: var(--color-1);
  color: var(--color-2);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 8px 25px;
}

.nav-menu .get-started a:hover {
  background: var(--color-1-hover);
  color: var(--color-2);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: -webkit-calc(100% + 30px);
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 100%;
  visibility: visible;
}

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

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: var(--color-1);
}

.nav-menu .drop-down > a:after {
  content: "";
  font-family: IcoFont;
  padding-left: 5px;
}

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

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  top: 0;
  left: 100%;
}

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

.nav-menu .drop-down .drop-down > a:after {
  content: "";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down > a:after {
    content: "";
  }
}
/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 0;
}

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

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

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: var(--color-1);
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: var(--color-1);
  color: #fff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: var(--color-1-hover);
  color: #fff;
}

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

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

.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-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  margin-top: 70px;
  background-position: 0% 0%;
  background-size: cover;
  background-size: contain;
  position: relative;
}
#hero:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #f6f6f6;
  -webkit-border-radius: 0 0 15% 15%;
  border-radius: 0 0 15% 15%;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 44px;
  color: #333333;
  font-weight: 300;
  text-align: center;
}

#hero h2 {
  margin-bottom: 50px;
  font-size: 19px;
  color: #878787;
  font-weight: 400;
  text-align: center;
}

#hero .btn-get-started {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--color-2);
  background: var(--color-1);
  border: 2px solid var(--color-1);
}

#hero .btn-get-started:hover {
  color: var(--color-2);
  background: var(--color-1-hover);
}

#hero .animated {
  -webkit-animation: up-down 2s ease-in-out infinite alternate-reverse both;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

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

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

  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}
@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}
@media (min-width: 576px) {
  .section-title h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .section-title h2 {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .section-title h2 {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .section-title h2 {
    font-size: 32px;
  }
}
.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 10px 0;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.clients .col-lg-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.clients img {
  -webkit-filter: grayscale(100);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="-77.74000000000001 71.52 7.22 0 0 21.259999999999998 -27.48 7.22 0 0 21.259999999999998 71.52 -91.78 0 0 0 0 0 1 0" /><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.5" /><feFuncG type="linear" slope="1.5" /><feFuncB type="linear" slope="1.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: grayscale(100) brightness(1.5);
  filter: grayscale(100) brightness(1.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 5px 0;
  width: 90%;
}
@media (min-width: 576px) {
  .clients img {
    padding: 5px 0;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .clients img {
    padding: 5px 0;
    width: 85%;
  }
}
@media (min-width: 992px) {
  .clients img {
    padding: 10px 0;
    width: 100%;
  }
}
.clients img:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background: #f6f6f6;
  padding-bottom: 0;
}
.features .sec-title {
  text-align: center;
}
.features .sec-title h2 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .features .sec-title h2 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .features .sec-title h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .features .sec-title h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .features .sec-title h2 {
    font-size: 26px;
  }
}
@media (min-width: 1400px) {
  .features .sec-title h2 {
    font-size: 32px;
  }
}
.features .sec-title p {
  color: #333333;
  font-size: 13px;
}
@media (min-width: 576px) {
  .features .sec-title p {
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .features .sec-title p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .features .sec-title p {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .features .sec-title p {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .features .sec-title p {
    font-size: 16px;
  }
}
.btn-main {
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
  font-family: var(--font-family-1);
  background-color: var(--color-1);
  color: var(--color-2);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 10px 25px;
}
.btn-main:hover {
  background-color: var(--color-1-hover);
  color: var(--color-2);
}

/*--------------------------------------------------------------
# stars
--------------------------------------------------------------*/
#star .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#star .stars .star {
  padding: 10px;
  margin: 5px;
  height: auto;
  width: 90%;
}
#star .stars .star img {
  height: auto;
  width: 100%;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-image: -webkit-linear-gradient(top, white, #f6f6f6);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f6f6f6));
  background-image: linear-gradient(180deg, white, #f6f6f6);
}
.testimonials .swiper-slide {
  background: transparent !important;
}
.testimonials .swipe-item {
  text-align: left;
  padding: 20px 18px;
  margin-bottom: 35px;
  max-height: 260px;
  position: relative;
  -webkit-box-shadow: 5px 10px 19px 4px rgba(138, 148, 159, 0.28);
  box-shadow: 5px 10px 19px 4px rgba(138, 148, 159, 0.28);
  -webkit-border-radius: 25px;
  border-radius: 25px;
  background-color: #fff;
}
.testimonials .swipe-item .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.testimonials .swipe-item .top .meta {
  padding-left: 5px;
}
.testimonials .swipe-item .top .meta h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .swipe-item .top .meta h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .swipe-item .testimonial-img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  border: 2px solid #fff;
}
.testimonials .swipe-item p {
  color: #111;
  margin-bottom: 0;
  font-size: 13.2px;
}
.testimonials .owl-nav {
  margin-top: 5px;
  text-align: center;
}
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}
.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ddd !important;
}
.testimonials .owl-dot.active {
  background-color: var(--color-1) !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 4px 8px 18px 3px rgba(138, 148, 159, 0.3);
  box-shadow: 4px 8px 18px 3px rgba(138, 148, 159, 0.3);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  background-color: #f7f7f7;
}

.pricing .box h3 {
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 600;
  color: #2e2e2e;
  text-align: center;
}

.pricing .box h5 {
  font-weight: 400;
  margin-bottom: 0;
  color: #a1a1a1;
  font-size: 18px;
  font-weight: 600;
}

.pricing .box h4 {
  font-size: 42px;
  color: var(--color-1);
  font-family: var(--font-family-1);
  margin-bottom: 20px;
  text-align: center;
  color: #00261a;
  font-size: 60px;
  font-weight: 700;
}

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

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  border: 2px solid var(--color-1);
  color: var(--color-2);
  background: var(--color-1);
  font-size: 14px;
  font-weight: 400;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pricing .box .btn-buy:hover {
  background: var(--color-1-hover);
}

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
#cta {
  background: #f7f7f7;
}
#cta .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
}
#cta .box img {
  width: 30%;
}
#cta .box .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#cta .box .meta h6 {
  color: #000;
  font-weight: 600;
  font-size: 14px;
}
#cta .box .meta p {
  margin-bottom: 0;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #282828;
  color: #222222;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  font-size: 14px;
}
#footer select {
  color: #fff;
  background: #282828;
  border: 1px solid #6d6d6d;
}
#footer p {
  color: #fff;
}
#footer h4 {
  color: #6d6d6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 20px;
}
#footer ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 25px;
}
#footer ul li {
  margin-left: 0;
  padding-left: 0;
}
#footer ul li a {
  display: block;
  color: #fff;
  padding-left: 15px;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#footer ul li a:first-child {
  padding-left: 0;
}
#footer ul li a:hover {
  color: var(--color-1);
}
#footer .social-links {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#footer .social-links a {
  color: #fff;
  font-size: 20px;
}
#footer .copyright {
  color: #6d6d6d;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
#footer .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#footer .footer_links a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 49%;
}
#footer .footer_links a img {
  padding: 5px;
  margin-right: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #6d6d6d;
  max-height: 50px;
  width: 100%;
}
#footer .footer_links a:hover img {
  border: 1px solid #7a7a7a;
}