:root {
  --primary: rgb(66, 80, 147);
  --secondary: #938542;
  --background: rgba(255, 255, 255, 0.07);
  --white: #fff;
  --gray: #5a5757;
  --body: rgb(33, 37, 41);
  --bs-primary-rgb: 66, 80, 147;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
  .accessibility .accessibility-menu .nav-link {
    font-size: 0.6rem;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}

html,
body {
  height: 100%;
}

body {
  background: white;
  font-size: 16px;
  color: var(--gray);
}

body {
  display: flex;
  flex-direction: column;
}

body,
input,
textarea,
button {
  font: 400 16px "Inter", sans-serif;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

#page-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

#sticky-footer {
  flex-shrink: none;
}


.accessibility {
  position: relative;
  background: var(--primary);
  border-top: 10px solid var(--primary);
  border-bottom: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
  .accessibility {
    background: linear-gradient(-45deg, #fff 50%, var(--primary) 50%);
  }
}

@media screen and (min-width: 778px) {
  .accessibility:after {
    content: "";
    display: block;
    position: absolute;
    top: -30px;
    right: 49%;
    width: 35px;
    height: 120px;
    background-color: var(--primary);
    border-radius: 100%;
    transform: rotate(45deg);
  }
}

.accessibility .accessibility-controls {
  position: relative;
  padding-top: 5px;
  padding-bottom: 10px;
  width: 90%!important;
}


.accessibility .accessibility-controls .icons i {
  color: #fff;
  margin-right: 0.75rem;
}


.accessibility .accessibility-controls .buttons {
  color: #fff;
  text-align: center;
  line-height: 28px;
}

.accessibility .accessibility-controls .buttons .buttons-first {
  font-size: 1.1rem;
  font-weight: 600;
}
.accessibility .accessibility-controls .buttons .buttons-first i {
  font-weight: 600;
}

.accessibility .accessibility-controls .buttons a {
  margin-right: 0.75rem;
}

.accessibility .accessibility-controls .btn.btn-circle {
  border-radius: 50%;
}

.accessibility .accessibility-menu {
  padding-top: 0px;
  padding-bottom: 0px;
}

.accessibility .accessibility-menu .nav-link {
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.5rem;
}

@media (min-width: 768px) {
  .accessibility .accessibility-menu .nav-link {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .accessibility .accessibility-menu .nav-link {
    font-size: 0.6rem;
  }
}

.accessibility .accessibility-menu .nav-link:hover {
  color: var(--secondary);
}


.accessibility .accessibility-menu .nav-link img {
  width: 3rem;
}



nav ul .nav-item .nav-link:hover {
  color: silver !important;
}

nav ul .nav-item {
  position: relative;
}

nav ul .nav-item:after {
  display: block;
  content: "";
  border-bottom: solid 3px silver;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

nav ul .nav-item:hover:after {
  transform: scaleX(1);
}

nav ul .active:after {
  transform: none;
}

.carousel-caption {
  z-index: 2;
}

.carousel-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #080d15;
  opacity: .2;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.carousel-item img {
  border-radius: 10px;
}

.text-title {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 65px;
  position: relative;
}

.text-title:after {
  border-bottom: 3px solid var(--primary);
  content: "";
  display: block;
  width: 2rem;
}

#services {
  position: relative;
}

#services .wave {
  top: 2rem;
  left: 0;
  position: absolute;
  bottom: 0;
  max-width: 30rem;
}

#services .dots {
  top: unset;
  left: unset;
  position: absolute;
  bottom: 0;
  right: 1rem;
  max-width: 5rem;
}


#services .card {
  border-radius: 10px;
  border: none;
}

#services .card .card-body {
  text-align: center;
}

#services .card .card-body p {
  font-weight: 700;
  margin-top: 1rem;
}

#call-to-action {
  background: linear-gradient(180deg, #458DFC 0%, #97C3F9 100%);
  text-align: center;
}

#call-to-action p {
  font-size: 2rem;
  color: #fff;
}

#call-to-action .btn {
  --bs-btn-color: #233850;
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: rgb(101, 100, 100);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #458DFC;
  --bs-btn-disabled-border-color: #458DFC;

  --bs-btn-padding-x: 3rem;
  --bs-btn-padding-y: 1rem;
}

#gallery .image {
  position: relative;

}

#gallery .image img {
  border-radius: 10px;
}

#gallery .image p {
  position: absolute;
  bottom: 0.5rem;
  left: 1.25rem;
  color: var(--white);
  font-weight: 500;
  font-size: 1.5rem;
}


#gallery .image .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: .5s ease;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}


#gallery .image:hover .overlay {
  background: rgba(66, 80, 147, .7);
}

#files {
  position: relative;
}


#files .wave {
  top: -10rem;
  right: 0;
  position: absolute;
  bottom: 0;
  max-width: 30rem;
}

.file {
  border: 2px solid var(--outline, #E0E6ED);
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
}

.file i {
  color: var(--primary);
  font-size: 2rem;
}

.file .file-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.14px;
  margin-top: 1rem;
}

.file .file-text {
  color: #3B3F5C;
  opacity: 0.800000011920929;
  font-weight: 400;
  line-height: 160%;
}


#counters {
  background: linear-gradient(180deg, #458DFC 0%, #97C3F9 100%);
}

#counters .icon {
  border-radius: 50%;
  padding: 1rem;
  font-size: 1.025rem;
}

#counters .icon-blue {
  background: rgba(91, 147, 255, 0.3);
  color: #5B93FF;
}

#counters .icon-yellow {
  background: rgba(255, 214, 107, 0.3);
  color: #FFC327;
}

#counters .icon-red {
  background: rgba(255, 143, 107, 0.3);
  color: #FF8F6B;
}

#counters .icon-purple {
  background: rgba(96, 91, 255, 0.3);
  color: #605BFF;
}

#counters .count {
  font-size: 1.5rem;
  font-weight: 800;
}

#counters .title {
  font-weight: 400;
  font-size: 1rem;
  color: #030229;
}

#birthdays .card {
  border: 2px solid #E0E6ED;
}

#birthdays .card .name {
  color: var(--primary);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

#birthdays .card .job {
  color: #3B3F5C;
  font-weight: 400;
  opacity: 0.5;
  font-size: 0.6rem;
}

#birthdays {
  position: relative;
}


#birthdays .dots {
  top: unset;
  left: unset;
  position: absolute;
  bottom: 0;
  right: 1rem;
  max-width: 5rem;
}

#birthdays img {
  max-width: 100px;
}

footer {
  background: linear-gradient(183deg, #313132 -8.57%, #656464 82.96%);
}

footer .title {
  color: #fff;
  font-weight: 700;
}

footer .title span {
  padding: 0.2rem 0.5rem;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
}

footer .about {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6875rem;
  /* 225% */
  letter-spacing: 0.0075rem;
}

footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  font-size: 1.125rem;
  font-weight: 300;
  color: #FFF;
  margin-bottom: 0.5rem;

}

.footbar-social a {
  margin: 0 0 10px 10px;
  margin: 0 0 1rem 1rem;
  background-color: var(--primary);
  color: #f5f5f5 !important;
}

.btn-circle {
  height: 50px;
  width: 50px;
  color: #fff;
  display: inline-block;
  border-radius: 200rem;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 1;
  transition: color ease .5s;
  transition: box-shadow ease-in-out 0s;
  border: 0;
  background-color: transparent;
  transition: .5s ease;
}


.btn-circle.btn-facebook:hover {
  background-color: #3b5998;
}

.btn-circle.btn-twitter:hover {
  background-color: #00aced;
}

.btn-circle.btn-whatsapp:hover {
  background-color: #25d366;
}

.btn-main {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--secondary);
  --bs-btn-hover-border-color: var(--secondary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--secondary);
  --bs-btn-active-border-color: var(--secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
}

.post {
  border-radius: 8px;
  box-shadow: 0 4px 4px #00000040;
  border: none;
}

.post .post-category {
  color: var(--secondary);
  font-weight: 500;
  font-size: .75rem;
}

.post .post-title {
  color: #333;
  font-weight: 600;
}

.post .post-subtitle {
  color: #333;
  font-size: .85rem;
  font-weight: 400;
  opacity: .7;
}

.post .post-date {
  color: #333;
  font-weight: 300;
  font-size: .75rem;
  opacity: .6000000238418579;
}

.pagination {
  --bs-pagination-color: var(--primary);
  --bs-pagination-active-bg: var(--primary);
  --bs-pagination-active-border-color: var(--primary);
}

.footer-midia-sociais{
  display: flex;
  list-style-type: none;
}
.footer-midia-sociais > li{
  margin-right: 10px;
}
