/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #49b5e7;
}

a:hover {
  color: #76c7ed;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Botão Voltar ao Topo
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #49b5e7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6dc4ec;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Cabeçalho
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}
#header .logo {
  font-size: 22px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
#header .logo a {
  color: #0f394c;
}
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Menu de Navegação
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Desktop 
--------------------------------------------------------------*/
.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-family: "Dosis", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0f394c;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}
.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: #49b5e7;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #49b5e7;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile 
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #0f394c;
  font-size: 28px;
  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(7, 25, 33, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.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: #0f394c;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #49b5e7;
}
.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: #49b5e7;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Seção Identidade
--------------------------------------------------------------*/
#identity {
  width: 100%;
  height: 100vh;
  background: #f0f9fd;
}
#identity .container {
  padding-top: 65px;
}
#identity h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: #0f394c;
  text-transform: uppercase;
}
#identity h2 {
  color: #1c698c;
  margin: 10px 0 0 0;
  font-size: 31.5px;
}
#identity .btn-get-started {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #49b5e7;
  text-transform: uppercase;
}
#identity .btn-get-whatsapp {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #34af23;
  text-transform: uppercase;
}
#identity .btn-get-whatsapptwo {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #008641;
  text-transform: uppercase;
}
#identity .btn-get-instagram {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #517fa4;
  text-transform: uppercase;
}
#identity .btn-get-started:hover {
  background: #76c7ed;
}
.identity-img img {
    width: 90%;
  }
@media (max-width: 991px) {
  #identity {
    height: 100vh;
    text-align: center;
  }
  #identity .identity-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #identity h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #identity h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #identity .identity-img img {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# Seções Gerais
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #f4fbfe;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #0f394c;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Seção de Apresentação
--------------------------------------------------------------*/
.presentation p {
  text-align: justify;
}
.presentation .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f394c;
  margin-bottom: 15px;
  text-align: justify;
}
.presentation .icon-box {
  margin-top: 40px;
}
.presentation .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d0ecf9;
  border-radius: 50px;
  transition: 0.5s;
}
.presentation .icon-box .icon i {
  color: #49b5e7;
  font-size: 32px;
}
.presentation .icon-box:hover .icon {
  background: #49b5e7;
  border-color: #49b5e7;
}
.presentation .icon-box:hover .icon i {
  color: #fff;
}
.presentation .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.presentation .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.presentation .icon-box .title a:hover {
  color: #49b5e7;
}
.presentation .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.presentation .img-box {
  background: url("../img/presentation.jpg") center center no-repeat; 
  background-size: cover;
  min-height: 460px;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .presentation .img-box {
    margin-left: 15px;
    margin-right: -15px;
  }
}
@media (max-width: 992px) {
  .presentation .img-box {
    margin-left: 10px;
    margin-right: -10px;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .presentation .img-box {
    margin-left: 5px;
    margin-right: -5px;
    min-height: 300px;
  }
}
@media (max-width: 420px) {
  .presentation .img-box {
    margin-left: 0px;
    margin-right: -0px;
    min-height: 200px;
  }
}
.presentation .btn-learn-more {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color:  #49b5e7;
  background: #fff;
  text-transform: uppercase;
  border: 2px solid #49b5e7;
}  
.presentation .btn-learn-more:hover {
  background: #49b5e7;
  color: #fff;
  text-decoration: 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;
  }
}

/*--------------------------------------------------------------
# Seção Sobre
--------------------------------------------------------------*/
.sobre p {
  text-align: justify;
  margin-bottom: 5px;
}
.sobre b {
  font-weight: 700;
}
.sobre .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f394c;
  margin-bottom: 15px;
}
.sobre .icon-box {
  margin-top: 30px;
}
.sobre .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #d0ecf9;
  border-radius: 50px;
  transition: 0.5s;
}
.sobre .icon-box .icon i {
  color: #49b5e7;
  font-size: 32px;
}
.sobre .icon-box:hover .icon {
  background: #49b5e7;
  border-color: #49b5e7;
}
.sobre .icon-box:hover .icon i {
  color: #fff;
}
.sobre .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.sobre .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.sobre .icon-box .title a:hover {
  color: #49b5e7;
}
.sobre .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.sobre .image-box {
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .sobre .image-box {
    margin-left: 15px;
    margin-right: -15px;
  }
}
@media (max-width: 992px) {
  .sobre .image-box {
    margin-left: 10px;
    margin-right: -10px;
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .sobre .image-box {
    margin-left: 5px;
    margin-right: -5px;
    min-height: 200px;
  }
}
@media (max-width: 420px) {
  .sobre .image-box {
    margin-left: 0px;
    margin-right: -0px;
    min-height: 100px;
  }
}

/*--------------------------------------------------------------
# Seção Equipe
--------------------------------------------------------------*/
.equipe .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}
.equipe .icon-box:hover {
  transform: translateY(-5px);
}
.equipe .icon {
  position: absolute;
  left: -15px;
  top: calc(37% - 30px);
}
.equipe .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}
.equipe .name {
  margin-left: 40px;
  font-weight: 700; /* antes 600 */
  margin-bottom: 5px;
  font-size: 17px; /* 18 */
  color: #0f394c; /* adicionado a mesma cor registro civil */
}
.equipe .occupation {
  margin-left: 40px;
  font-weight: 700;  /* 600; */
  margin-bottom: 10px;
  font-size: 13px; /* 14px */
  color: #49b5e7;  /* #37517e; */
}
.equipe .description {
  display: block; /* adicionado igual registro civil*/
  margin-left: 40px;
  font-size: 13px; /* 14px */
  font-weight: 500; /* adicionado igual registro civil*/
  color: #aaaaaa; /* adicionado igual registro civil p*/
  margin-bottom: 0; 
  line-height: 24px;
  margin-right: 15px;
  text-align: justify;  
}

/*--------------------------------------------------------------
# Seção Registro Civil
--------------------------------------------------------------*/
.registrocivil p {
  text-align: justify;
  margin-bottom: 5px;
}
.registrocivil .services {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.registrocivil .services:hover {
  transform: translateY(-5px);
}
.registrocivil .services .services-img {
  position: relative;
  overflow: hidden;
}
.registrocivil .services .services-info {
  padding: 25px 15px;
}
.registrocivil .services .services-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #0f394c;
}
.registrocivil .services .services-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: justify;
}
.registrocivil .services .services-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

/*--------------------------------------------------------------
# Seção Tabelionato de Notas
--------------------------------------------------------------*/
.tabelionatodenotas p {
  text-align: justify;
  margin-bottom: 5px;
}
.tabelionatodenotas .services {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.tabelionatodenotas .services:hover {
  transform: translateY(-5px);
}
.tabelionatodenotas .services .services-img {
  position: relative;
  overflow: hidden;
}
.tabelionatodenotas .services .services-info {
  padding: 25px 15px;
}
.tabelionatodenotas .services .services-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #0f394c;
}
.tabelionatodenotas .services .services-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: justify;
}
.tabelionatodenotas .services .services-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

/*--------------------------------------------------------------
# Seção Emolumentos
--------------------------------------------------------------*/
.emolumentos .row {
  padding-top: 20px;
}
.emolumentos .box {
  border-top: 4px solid #fff;
  padding: 30px 50px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 19px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}
.emolumentos .box:hover {
  transform: translateY(-5px);
}
.emolumentos h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}
.emolumentos ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
  font-size: 14px;
}
.emolumentos ul li {
  padding: 5px 0 5px 30px;
  position: relative;
}
.emolumentos ul i {
  color: #28a745;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.emolumentos .download-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 20px;
  color: #49b5e7;
  transition: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #49b5e7;
}
.emolumentos .download-btn:hover {
  background: #76c7ed;
}
.emolumentos .featured {
  border-top-color: #49b5e7;
}
.emolumentos .featured .download-btn {
  background: #49b5e7;
  color: #fff;
}
.emolumentos .featured .download-btn:hover {
  background: #76c7ed;
}
@media (max-width: 992px) {
  .emolumentos .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .emolumentos .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .emolumentos .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Seção Leis
--------------------------------------------------------------*/
.leis {
  background: url("../img/leis-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}
.leis::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.leis .title {
  position: relative;
  color: #0f394c;
  margin-bottom: 40px;
}
.leis .title h3 {
  font-size: 36px;
  font-weight: 700;
}
.leis .counters span {
  font-size: 44px;
  font-weight: 700;
  display: block;
  color: #49b5e7;
  font-family: "Dosis", sans-serif;
}
.leis .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: #444444;
}
@media (min-width: 1200px) {
  .leis {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Seção Links
--------------------------------------------------------------*/
.links .links-wrap {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}
.links .links-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  height: 230px;  
}
.links .links-logo img {
  height: 50%;
  filter: grayscale(100%);
  transition: 0.3s;
}
.links .links-logo:hover img {
  filter: none;
  transform: scale(1.2);
}
.links img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Seção Contato
--------------------------------------------------------------*/
.contato .info {
  width: 100%;
  background: #fff;
}
.contato .info i {
  font-size: 20px;
  color: #49b5e7;
  float: left;
  width: 44px;
  height: 44px;
  background: #ebf7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contato .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0f394c;
}
.contato .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 17px;
  color: #2079a1;
}
.contato .info span {
  color: #34af23;
}
.contato .info .email, .contato .info .phone, .contato .info .address {
  margin-top: 40px;
}
.contato .info .email:hover i, .contato .info .address:hover i, .contato .info .phone:hover i {
  background: #49b5e7;
  color: #fff;
}
.contato .title  {
  padding:  0 8px 0 8px;
  font-size: 16px;
  color: #0f394c;
  text-align: center;
}

/*--------------------------------------------------------------
# Seção Fale Conosco
--------------------------------------------------------------*/
.faleconosco {
  padding: 50px 0;
  background: #f0f9fd;
  text-align: left;
  font-size: 15px;
}
.faleconosco .form {
  width: 100%;
}
.faleconosco .form .form-group {
  padding-bottom: 8px;
}
.faleconosco .form input, .faleconosco .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.faleconosco .form input:not([type="checkbox"]) {
  height: 44px;
}
.faleconosco .form textarea {
  padding: 10px 12px;
}
.faleconosco .form button[type=submit] {
  background: #49b5e7;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.faleconosco .form button[type=submit]:hover {
  background: #1da2e0;
}

/*--------------------------------------------------------------
# Rodapé
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #ebf7fc;
}
#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: "Lato", sans-serif;
  color: #777777;
}
#footer .footer-top .footer-contact a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  color: #777777;
}
#footer .footer-top .footer-contact a:hover {
  text-decoration: none;
  color: #49b5e7;
}
#footer .footer-top .footer-contact span {
  color: #34af23;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0f394c;
  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: #49b5e7;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #49b5e7;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #49b5e7;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #1da2e0;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  float: left;
  color: #0f394c;
}
#footer .credits {
  float: right;
  font-size: 13px;
  color: #0f394c;
}
@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
  }
}

