/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --background-color: #ffffff;
  --background-gray-color: #f5f5f5;
  --default-color: #444444;
  --heading-color: #282828;
  --accent-color: #c80914;
  --accent-hover-color: #992222;
  --gray-color: #777;
  --light-gray-color: #999;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--default-color);
}

a {
  color: var(--accent-color);
}

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

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

.btn-normal,
.btn-stroke {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 9px 20px 9px 20px;
  transition: 0.5s;
  border-radius: 50px;
  text-decoration: none;
}

.btn-normal {
  background: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
}

.btn-normal:hover {
  color: #fff;
  background: var(--accent-hover-color);
  border-color: var(--accent-hover-color);
}

.btn-stroke {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-stroke:hover {
  background: var(--accent-color);
  color: #fff;
}


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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: var(--background-color);
  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% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--background-color);
  transition: all 0.4s;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(33, 33, 33, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(33, 33, 33, 0.9);
  height: 60px;
}

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

@media (max-width: 992px) {
  #header {
    height: 64px;
  }
}

/*--------------------------------------------------------------
# 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: rgba(255, 255, 255, 0.7);
  padding: 10px 0 10px 50px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 50px;
  background-color: var(--accent-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 20px;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  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 {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

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

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

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(33, 33, 33, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("../img/hero-bg.jpg");
  position: relative;
  padding: 120px 0 0 0;
}

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

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid var(--accent-color);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .download-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
  position: relative;
}

#hero .download-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

#hero .download-btn + .download-btn {
  margin-left: 20px;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

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

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

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

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

.section-bg {
  background-color: var(--background-gray-color);
}

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

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

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--gray-color);
}

.section-sub-title {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.section-sub-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-sub-title p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: var(--gray-color);
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 30px 10px;
  background: var(--background-gray-color);
  box-shadow: 0 10px 25px 0 rgba(245, 245, 255, 0.5);
  transition: all 0.3s ease-in-out;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -5px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 40px;
  line-height: 1;
  transition: 0.5s;
  color: var(--accent-color);
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #556270;
}

.services .icon-box:hover .title a {
  color: var(--accent-color);
}

.services .description {
  min-height: 48px;
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: var(--background-gray-color);
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--accent-color);
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  font-weight: 600;
  color: #556270;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 35px;
  color: var(--accent-color);
  line-height: 35px;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 35px;
  display: block;
  font-weight: 600;
  line-height: 35px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0px 0 0 0;
  margin: 0;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 70px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #fbeaf1;
}

.skills .progress-bar {
  width: 1px;
  height: 8px;
  transition: 0.9s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/*--------------------------------------------------------------
# Bases
--------------------------------------------------------------*/
.bases .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #556270;
}

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

.bases .content ul li {
  padding-bottom: 10px;
}

.bases .content ul i {
  font-size: 20px;
  padding-left: 4px;
  padding-right: 10px;
  color: var(--accent-color);
}

.bases .content p:last-child {
  margin-bottom: 30px;
}

.bases .card-box {
  position: relative;
  overflow: hidden;
  height: 200px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bases .card-box img {
  height: 100%;
  transition: .8s all ease-in-out;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .bases .card-box:hover img {
    transform: scale(1.2);
  }
}

.bases .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bases .card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bases .card-shadow:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.bases .card-header {
  padding: 1rem;
  color: #ffffff;
  position: absolute;
  bottom: 10px;
  z-index: 2;
}

@media (min-width: 768px) {
  .bases .card-header {
    bottom: 0px;
  }
}

@media (min-width: 992px) {
  .bases .card-header {
    bottom: 10px;
  }
}

.bases .card-header .title {
  margin-bottom: 0;
  padding: .6rem 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .bases .card-header .title {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .bases .card-header .title {
    font-size: 1.4rem;
  }
}

.bases .card-header .date {
  color: #d8d8d8;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .bases .card-header .date {
    font-size: .8rem;
  }
}

@media (min-width: 992px) {
  .bases .card-header .date {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 30px 20px;
  background: var(--background-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--background-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}


/*------/ Owl carousel /------*/
.owl-theme .owl-dots {
  text-align: center;
  margin-top: 18px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 9px;
  margin: 5px 5px;
  background: #556270;
  border: 0px solid #556270;
  display: block;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  border-radius: 0px;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--accent-color);
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--accent-color);
  width: 35px;
}

.owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.8rem;
}

.owl-arrow .owl-nav .owl-prev,
.owl-arrow .owl-nav .owl-next {
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #556270;
}

.owl-arrow .owl-nav .owl-prev.disabled,
.owl-arrow .owl-nav .owl-next.disabled {
  transition: all 0.6s ease-in-out;
  color: #adadad;
}

.owl-arrow .owl-nav .owl-next {
  margin-left: 15px;
}

.nav-arrow-a .owl-arrow .owl-nav {
  font-size: 1.8rem;
  margin-top: -110px;
}

.nav-arrow-a .owl-arrow .owl-nav .owl-next {
  margin-left: 15px;
}

.nav-arrow-b .owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev,
.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  padding: .7rem 1.5rem !important;
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #ffffff;
  background-color: var(--accent-color);
  opacity: .9;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
.nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
  transition: all 0.6s ease-in-out;
  color: #ffffff;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
.nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
  background-color: var(--accent-color);
}

.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  margin-left: 0px;
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .products-item {
  margin-bottom: 30px;
}

.products .products-item .products-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.products .products-item .products-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #5f687b;
}

.products .products-item .products-info p {
  color: #949cac;
  font-size: 14px;
  margin-bottom: 0;
}

.products .products-item .products-info .preview-link, .products .products-item .products-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  transition: 0.3s;
}

.products .products-item .products-info .details-link {
  right: 10px;
}

.products .products-item:hover .products-info {
  opacity: 1;
  bottom: 20px;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  padding: 40px 20px 30px;
  background: var(--background-gray-color);
  border-radius: 4px;
  margin-bottom: 15px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05); */
}

.team .member img {
  max-width: 100%;
  margin: 0 0 30px 0;
  transition: all ease-in-out 0.4s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #556270;
}

.team .member h4::after {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-color);
  bottom: -10px;
  left: calc(50% - 10px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  margin-top: -10px;
  padding-bottom: 20px;
  color: #aaaaaa;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  color: #aaaaaa;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Classes
--------------------------------------------------------------*/
.classes {
  padding-top: 0px;
}

.classes .icon-box {
  padding-left: 15px;
}

.classes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #556270;
  margin: 5px 0 10px 40px;
}

.classes .icon-box i {
  font-size: 24px;
  float: left;
  color: var(--accent-color);
}

.classes .icon-box p {
  font-size: 16px;
  margin-left: 40px;
}

.classes .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgba(33, 33, 33, 0.9);
  padding: 40px 0 40px 0;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px !important;
}


#footer p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

#footer .company-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

#footer i {
  color: #05c763;
  font-size: 20px;
  margin-left: 4px;
}

#footer a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer a:hover {
  color: var(--accent-color);
}

#footer .logo {
  margin-top: 20px;
}

@media (max-width: 575px) {
  #footer {
    margin: -20px 0 30px 0;
  }
}
