@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");

/*---------------****-----------------
# General
-----------------****-----------------*/
:root {
  --primary-color: #047aed;
  --secondary-color: #1c3fa8;
  --dark-color: #000000;
  --light-color: #f4f4f4;
  --success-color: #5cb85c;
  --error-color: #d9534f;
  --orange-color: #eb5d1e;
  --light-dark: rgba(40, 40, 40, 0.9);
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange-color);
  border-radius: 1px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-color);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Lato", sans-serif;
  color: #333;
  line-height: 1.8;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: var(--orange-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.btn-read-more {
  line-height: 1;
  padding: 10px 30px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.5s;
  letter-spacing: 1px;
  color: #ef6603;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: 0.3s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #ef6603;
}
.btn-read-more:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

.btn-read-more span {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 10px;
  /* letter-spacing: 1px; */
}
.btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.1s;
}
.btn-read-more:hover i {
  transform: translateX(5px);
}

/*---------------****-----------------
# 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 var(--orange-color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  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;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--orange-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: var(--orange-color);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*---------------****-----------------
# WhatsApp
-----------------****-----------------*/

.view-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  font-size: 18px;
  border: none;
  outline: none;
  background: var(--success-color);
  cursor: pointer;
  padding: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.view-modal i:nth-child(1) {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.view-modal:hover {
  background: #25d366;
  color: #fff;
}

.view-modal.active {
  visibility: visible;
  opacity: 1;
}

/* The actual popup */
.view-modal .popuptext {
  position: absolute;
  visibility: hidden;
  background-color: #fff;
  color: #fff;
  border-radius: 4px;
  width: 360px;
  z-index: 1;
  bottom: 125%;
  left: -150%;
  margin-left: -80px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, 2%);
}

/* Popup arrow */
.view-modal .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 90%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #fff transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.view-modal .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

#myPopup header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

#myPopup .content {
  color: #fff;
  /* margin: 20px 0; */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#myPopup p {
  font-size: 16px;
}
#myPopup p:hover {
  color: #25d366;
}
#myPopup .icons i {
  font-size: 50px;
  line-height: 1;
  margin-right: 52px;
  text-decoration: none;
  border: 0px solid transparent;
}
.icons a i {
  transition: transform 0.1s ease-in-out;
}

.icons i:nth-child(1) {
  color: #25d366;
  border-color: #bef4d2;
}
.icons i:hover {
  color: #25d366;
  border-color: #bef4d2;
  border-radius: 50px;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*---------------****-----------------
# Disable aos animation delay on mobile devices
-----------------****-----------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .view-modal .popuptext {
    left: -50%;
    width: 260px;
    height: 120px;
  }
}

/*---------------****-----------------
# Header
-----------------****-----------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 40, 40, 0.9);
}

.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 70px;
  margin-right: 6px;
}
.header .logo span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  margin-top: 22px;
}
.header .logo p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  margin-top: 20px;
  margin-left: 12px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }

  .header .logo p {
    font-size: 9px;
    font-weight: 400;
    margin-left: 1px;
  }
  .header {
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Showcase Section
--------------------------------------------------------------*/

#showcase h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#showcase h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#showcase p {
  /* font-size: 14px; */
  width: 60%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#showcase a {
  margin-top: 30px;
}

#showcase .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  /* padding-top: 60px; */
}
#showcase .TextDial {
  display: flex;
  position: relative;
  margin-top: 380px;
  margin-left: 200px;
}
.Dial {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-icn {
  /* font-weight: bold; */
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  color: #fff;
  box-sizing: border-box;
  max-width: 300px;
  min-width: 180px;
  min-height: 38px;
  animation: transform 0.2s,
    up-down 2s ease-in-out infinite alternate-reverse both;
  border-radius: 4px;
  /* box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); */
}

.msg-icn:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-style: solid;
  /* box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); */
  border-color: transparent transparent transparent;
  /* border: 2px solid var(--orange-color); */
  border-radius: 4px;
  box-sizing: border-box;
  clip-path: polygon(
    0% 105%,
    0% 0%,
    105% 0%,
    105% 105%,
    43px 105%,
    43px 80%,
    21px 80%,
    21px 105%
  );
}
.msg-icn:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 20px;
  border-style: solid;
  /* box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); */
  /* background: var(--orange-color); */
  border-color: transparent transparent transparent;
  top: calc(100% - 1px);
  left: 20px;
  box-sizing: border-box;
  clip-path: polygon(
    0 0,
    0% 100%,
    100% 0%,
    calc(100% - 2px) 0,
    1px calc(100% - 2px),
    1px 0
  );
}
.msg-txt {
  font-weight: bold;
  font-size: 37px;
  color: #18d26e;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

#showcase .carousel-control-prev,
#showcase .carousel-control-next {
  width: 10%;
}
#showcase .carousel-control-next-icon,
#showcase .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#showcase .btn-get-started {
  /* margin-top: 30px; */
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--orange-color);
  /* box-shadow: 0px 5px 30px #eb5d1e; */
}
#showcase .btn-get-started span {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
}
#showcase .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
#showcase .btn-get-started:hover i {
  transform: translateX(5px);
}

#showcase .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#eb5d1e 50%, rgba(101, 111, 150, 0.15) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}
#showcase .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#showcase .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#showcase .play-btn:hover::after {
  border-left: 15px solid var(--orange-color);
  transform: scale(20);
}
#showcase .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #showcase {
    background-attachment: fixed;
  }

  /* #showcase .carousel-control-prev,
  #showcase .carousel-control-next {
    width: 5%;
  } */
}
@media (max-width: 768px) {
  #showcase h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #showcase h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #showcase .btn-get-started {
    padding: 10px 20px;
    border-radius: 4px;
  }

  #showcase .btn-get-started span {
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 1px;
  }
  #showcase .btn-get-started i {
    margin-left: 5px;
    font-size: 10px;
  }

  #showcase .TextDial {
    margin-top: 60px;
    margin-left: 60px;
    display: inline-block;
  }
  .msg-icn {
    display: inline-block;
  }
  .msg-icn:before {
    border: none;
  }
  .msg-icn:after {
    display: none;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*---------------****-----------------
# NavBar
-----------------****-----------------*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #f16325;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--orange-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 8px;
  color: #fff;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--orange-color);
}

/*---------------****-----------------
# Mobile Navigation 
-----------------****-----------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #eb5d1e;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #eb5d1e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*---------------****-----------------
# Section
-----------------****-----------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
}
.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}
.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
}

.section-title .h2-title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 25px;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
  position: relative;
}

.section-title .h2-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*---------------****-----------------
# Contact Us
-----------------****-----------------*/
.contact .info .email,
.contact .info .address,
.contact .info .phone {
  color: #444444;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  height: 100%;
  width: 100%;
}

.contact .info .map {
  padding: 0px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  height: 100%;
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #eb5d1e;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdf1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h3 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #7a6960;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 0;
  font-size: 14px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #eb5d1e;
  color: #fff;
}

.contact .php-email-form {
  background: #fff;
  padding: 20px;
  height: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #eb5d1e;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #eb5d1e;
  border: 0;
  padding: 10px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #ef7f4d;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*---------------****-----------------
# Footer
-----------------****-----------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #212529;
  font-size: 14px;
  /* background: #fef8f5; */
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #5c5c5c;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  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: #f39e7a;
  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: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #eb5d1e;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2c39;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 20%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #ef7f4d;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}
#footer .credits a {
  color: #eb5d1e;
}
@media (max-width: 575px) {
  /* #footer .footer-links:last-child, */
  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}
