@font-face {
  font-family: "Aller bold";
  src: url("../fonts/aller.bold.ttf") format(opentype);
}

@font-face {
  font-family: "Aller regular";
  src: url("../fonts/aller.regular.ttf") format(opentype);
}

a {
  color: #051d4b;
  text-decoration: none;
  transition: 0.5s;
}

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

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Aller Bold", sans-serif;
  font-weight: 900;
  margin: 0 0 20px 0;
  padding: 0;
}

html ::-webkit-scrollbar {
  width: 8px;
}

html ::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #051d4b;
}

html ::-webkit-scrollbar-track {
  background: #9e9c9c;
  border-radius: 50px;
}

body {
  background: #fff;
  color: #666666;
  font-family: "Aller Bold";
  overflow-x: hidden;
}

.back-to-top {
  position: fixed;
  background: linear-gradient(-180deg, #051d4b, rgba(38, 59, 99, 1));
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 19px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
  z-index: 9999;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: rgba(9, 180, 38, 0.7);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: rgba(9, 180, 38, 0.7);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  background-color: #051d4b;
}

#header.header-scrolled {
  background-color: #051d4b;
}

#header #logo h1 a {
  font-size: 36px;
  padding: 0;
  margin-top: 19px;
  display: inline-block;
  font-family: "Aller bold";
  font-weight: 300;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

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

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 5px 0 5px 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Aller bold";
  color: #f9f9f9;
  font-size: 18px;
  padding: 0 12px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.9px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(0.78);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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: 14px;
  text-transform: none;
  color: #333333;
}

.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: #051d4b;
}

.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%;
  }
}
@media (min-width: 992px) {
  .navbar {
    left: 51px;
  }
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  right: 5px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 30px;
  right: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #051d4b;
}

.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: #051d4b;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#inicio {
  width: 100%;
  height: 100vh;
  background: linear-gradient(-180deg, #051d4b, rgba(38, 59, 99, 0.8)),
    url("../img/fundo-transparente/ponte-estrutura.png") center top no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-height: 640px) {
  #inicio {
    height: 120vh;
  }
}

#inicio .inicio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#inicio .inicio-text {
  flex: 1;
  padding: 30px;
  text-align: center;
  height: 65%;
  color: #fff;
}

#inicio .inicio-text h1 {
  padding: 0 100px;
  margin-top: 30px;
  font-size: 34px;
  font-family: "Aller bold";
  margin-bottom: 60px;
}

#inicio .inicio-text p {
  padding: 0 100px;
  font-size: 1.5rem;
  color: #fff;
  font-family: "Aller regular";
  text-align: justify;
}

#inicio .inicio-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 395px;
  margin-top: 80px;
  margin-left: 8.5%;
  top: 80px;
}

#inicio .inicio-image img {
  border-radius: 25px;
  max-width: 100%;
  height: auto;
  transition: none;
}

.carousel-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1440px) and (min-width: 769px) {
  #inicio .inicio-text h1 {
    padding: 0 50px;
    font-size: 28px;
  }

  #inicio .inicio-text p {
    padding: 0 50px;
    font-size: 20px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #inicio {
    height: auto;
    padding: 50px 0;
  }

  #inicio .inicio-content {
    flex-direction: column;
  }

  #inicio .inicio-text {
    padding: 20px;
  }

  #inicio .inicio-image {
    margin: 20px 0;
    width: 70%;
    max-width: none;
  }

  #inicio .inicio-text h1 {
    padding: 0 50px;
    font-size: 36px;
  }

  #inicio .inicio-text p {
    padding: 0 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  #inicio {
    height: auto;
    min-height: 100vh;
    padding: 80px 0 30px 0;
  }

  #inicio .inicio-content {
    flex-direction: column;
    text-align: center;
  }

  #inicio .inicio-text {
    padding: 20px;
    text-align: center;
  }

  #inicio .inicio-image {
    position: relative;
    order: -1;
    margin: 50px 0;
    width: 80%;
    margin-bottom: 50%;
    max-width: none;
  }

  #inicio .inicio-text h1 {
    padding: 20px;
    margin-bottom: 50px;
    font-size: 32px;
    line-height: 40px;
  }

  #inicio .inicio-text p {
    padding: 0 20px;
    font-size: 18px;
  }
}

.section {
  overflow: hidden;
}

.section-header .section-title {
  font-size: 32px;
  color: #000;
  text-align: center;
  font-weight: 700;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #051d4b;
  margin: 0 auto;
  margin-bottom: 20px;
}

.section-bg {
  background: #f5efef;
}

.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

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

.breadcrumbs ol li + li {
  padding-left: 10px;
}

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

#historia {
  padding: 60px 0;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
  margin-bottom: 0;
  z-index: 1;
}

.container-history {
  position: relative;
  padding: 10px 50px;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}

@keyframes movedown {
  0% {
    opacity: 1;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.container-history:nth-child(1) {
  animation-delay: 0s;
}

.container-history:nth-child(2) {
  animation-delay: 1s;
}

.container-history:nth-child(3) {
  animation-delay: 2s;
}

.container-history:nth-child(4) {
  animation-delay: 3s;
}

.container-history:nth-child(5) {
  animation-delay: 4s;
}

.container-history:nth-child(6) {
  animation-delay: 5s;
}

.text-box {
  position: relative;
  padding: 22px 30px;
  box-shadow: 3px 3px 20px darkgray;
  border-radius: 6px;
}

.btn__comp {
  margin-top: 22px;
  padding: 5px 15px;
  text-decoration: none;
  background: transparent;
  border: 2px solid #051d4b;
  color: #000;
  display: inline-block;
  position: relative;
  font-size: 12px;
  border-radius: 5px;
  transition: all 0.3s;
  box-shadow: 2px 2px 0 #051d4b;
  font-family: "Aller Bold";
  font-weight: 600;
  font-size: 14px;
}

.btn__comp:hover {
  box-shadow: none;
  border: 2px solid #051d4b;
  top: 2px;
  left: 2px;
}

.left-container-history {
  left: 0;
  top: -50px;
}

.right-container-history {
  left: 50%;
  top: -50px;
}

.container-history img {
  position: fixed;
  width: 50px;
  right: -25px;
  top: 25px;
  z-index: 10;
}

.right-container-history img {
  left: -25px;
}

.timeline-container {
  position: relative;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  display: block;
  border-left: 4px dashed #051d4b;
  animation: moviline 6s linear forwards;
  box-shadow: 0px 0px 20px #051d4b;
  z-index: -1;
}

@keyframes moviline {
  0% {
    height: 0;
  }

  50% {
    height: 50%;
  }

  100% {
    height: 78%;
  }
}

.text-box h2 {
  font-size: 24px;
}

.left-container-history-arrow {
  position: absolute;
  height: 0;
  width: 0;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #fff;
  right: -15px;
}

.right-container-history-arrow {
  position: absolute;
  height: 0;
  width: 0;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #fff;
  left: -15px;
}

@media screen and (max-width: 600px) {
  .timeline {
    margin: 100px auto;
    margin-bottom: 0;
  }

  .timeline::after {
    left: 35px;
    margin-top: -23px;
  }

  .container-history {
    width: 100%;
    padding-left: 80px;
    padding-right: 25px;
  }

  .text-box {
    font-size: 13px;
  }

  .text-box small {
    margin-bottom: 10px;
  }

  .right-container-history {
    left: 0;
  }

  .left-container-history img,
  .right-container-history img {
    left: 10px;
  }

  .left-container-history-arrow,
  .right-container-history-arrow {
    border-right: 15px solid #fff;
    border-left: 0;
    left: -15px;
  }
}

#competicao {
  padding: 10px 0;
  overflow: hidden;
}

#competicao .box {
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
}

.box-item {
  position: relative;
  flex: 1;
  margin-right: 0 10px;
  margin: 5px;
  font-family: "Aller regular";
}

#competicao h3 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 28px;
  color: #051d4b;
  font-family: "Aller Bold";
}

.btn-competicao {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5px;
  background-color: #051d4b;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 30px;
}

.btn-competicao .btn-text {
  display: flex;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}

#pontCast {
  padding: 60px 0 0 0;
  overflow: hidden;
  background-color: #051d4b;
  margin-top: 1px;
}

#pontCast .section-header {
  text-align: center;
  margin-bottom: 35px;
}

#pontCast .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  font-family: "Aller bold";
}

#pontCast .section-divider {
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}

#pontCast h2 {
  font-weight: 900;
  color: #fff;
  text-align: right;
  font-family: "Aller bold";
  font-size: 38px;
  margin-bottom: 30px;
}

#pontCast p {
  line-height: 24px;
  color: #fff;
  text-align: justify;
  font-family: "Aller regular";
  font-size: 18px;
}

#pontCast .btn-podCast {
  display: block;
  margin: 20px 0;
  padding: 10px 22px;
  background-color: rgba(9, 180, 38, 0.7);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 700;
  font-family: "Aller regular";
  text-align: center;
  white-space: nowrap;
  min-width: 200px;
  box-sizing: border-box;
}

#pontCast .btn-podCast:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  #pontCast h2 {
    text-align: center;
    margin-top: 300px;
  }

  #pontCast p {
    padding: 20px;
  }

  #pontCast .section-header {
    text-align: center;
    margin-bottom: -75px;
  }

  #pontCast img {
    width: 100%;
    height: auto;
    margin-top: 2px;
    margin-bottom: -80px;
  }

  #pontCast .btn-podCast {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 3px 8px;
    font-size: 17px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 936px) {
  #pontCast h2 {
    text-align: center;
    margin-top: 40px;
  }

  #pontCast .btn-podCast {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 3px 80px;
    width: 300px;
    height: 50px;
    font-size: 17px;
    white-space: nowrap;
    margin: 20px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #pontCast h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 40px;
  }

  #pontCast .btn-podCast {
    margin-top: 60px;
    padding: 2px 5px;
    font-size: 17px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
  top: 30px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  background-color: white;
  white-space: nowrap;
  position: relative;
  margin-top: 2rem;
  max-width: 1536px;
  margin-inline: auto;
  height: 100px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(8, 11, 35, 0)
  );
}

.logos:before,
.logos:after {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos-slide {
  display: inline-block;
  animation: 28s slide infinite linear;
}

.logos-slide img {
  height: 100px;
  margin: 0 50px;
}

@keyframes slide-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.logos-right {
  background-color: white;
  white-space: nowrap;
  position: relative;
  margin-top: 3rem;
  max-width: 1536px;
  margin-inline: auto;
  height: 110px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(8, 11, 35, 0)
  );
}

.logos-right:before,
.logos-right:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos-right:before {
  left: 0;
}

.logos-right:after {
  right: 0;
}

.logos-right:hover .logos-right-slide {
  animation-play-state: paused;
}

.logos-right-slide {
  display: inline-block;
  animation: 50s slide-right normal infinite linear;
}

.logos-right-slide img {
  height: 100px;
  margin: 0 10px;
}

#team {
  padding: 60px 0;
  overflow: hidden;
}

.card__container {
  padding-block: 1rem;
}

.card__content {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.card__article {
  width: 300px;
  border-radius: 1.25rem;
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.5s;
  box-shadow: 1;
}
.card__article:hover {
  transform: scale(1.009);
  box-shadow: 10px 20px 3px rgba(17, 19, 139, 0.1);
}

.card__image {
  position: relative;
  overflow: hidden;
  margin-bottom: -0.5rem;
  height: 260px;
}

.card__image img {
  display: block;
  max-width: 100%;
  height: 100%;
}

.card__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.card__data {
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.card__name {
  font-weight: 700;
  margin-bottom: 0.625rem;
  font-size: 18px;
  color: #000;
}

.card__description {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}

.card__subdescription {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}

.card__button {
  display: inline-block;
  background: #051d4b;
  border: none;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 4px;
  font-family: "Aller Bold";
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: hsl(212, 32%, 40%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: -12px;
}

.swiper-button-next {
  right: -12px;
}

@media screen and (max-width: 320px) {
  .card__data {
    padding: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .card__content {
    margin-inline: 3rem;
  }
}

@media screen and (min-width: 1120px) {
  .card__container {
    max-width: 1120px;
  }

  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
}

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  background-color: #051d4b;
}

#contact .section-header h3 {
  color: #fff;
}

.section-bg {
  background: #f9f9f9;
  padding: 60px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

#contact .section-divider {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}

.form {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  border-radius: 8px;
}

.form h1 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.form .form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-family: "Aller regular";
}

.form .form-group input {
  font-weight: 600;
  font-size: 16px;
  font-family: "Aller regular";
}

.form .form-group textarea {
  font-weight: 600;
  font-size: 16px;
  font-family: "Aller regular";
}

.form .form-control {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  height: 44px;
}

.form .form-control:focus {
  border-color: #18d26e;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.form .text-center button {
  background: #051d4b;
  margin-top: 30px;
  border: none;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s;
  font-weight: 700;
  border-radius: 4px;
  font-family: "Aller Bold";
}

.form .text-center button:hover {
  background: #18d26e;
}

.form textarea.form-control {
  resize: none;
  overflow: hidden;
}

#footer {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  overflow: hidden;
  background-color: #f0f0f0;
}

#footer .section-header {
  text-align: center;
}

#footer .footer-about img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
#footer .info {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Aller regular";
  margin-bottom: 16px;
}

#footer .info i {
  font-size: 32px;
  color: #000;
  flex-shrink: 0;
}

#footer .info p {
  font-size: 12px;
  margin: 0;
  font-weight: 700;
}

#footer .social-links {
  padding-bottom: 20px;
}

#footer .social-links a {
  font-size: 18px;
  background: #fff;
  color: #051d4b;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #051d4b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .social-links a i {
  line-height: 0;
}

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