:root {
  --primary-color: #f07e12;
  --primary-color-light: #fde6d5ff;
  --secondary-color: #0093b3;
  --secondary-light-color: #c5e6f0ff;
  --dark-color: #2a2322;
  --bs-card-border-color: #0093b3;
  --dark-transparant-color: #2a23228c;
  --extradark-transparant-color: #2a2322b5;
}

body {
  background-color: #fcfcfc;
}

.container-sm {
  max-width: 1200px;
}

.main-container {
  min-height: 70vh;
}

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

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

.secondary-bg-light {
  background-color: var(--secondary-light-color);
}

.dark-bg {
  background-color: var(--dark-color);
  color: white;
}

.vertical-gradiant {
  background: rgb(240, 126, 18);
  background: linear-gradient(
    0deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
}

.horizontal-gradiant {
  background: rgb(240, 126, 18);
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.primary-font-color {
  color: var(--primary-color);
}
.secondary-font-color {
  color: var(--secondary-color);
}

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

.large-btn {
  border: none;
  padding: 10px 20px;
  font-size: 2em;
  color: white;
  border-radius: 4px;
}

.large-btn:hover {
  opacity: 70%;
}

.spacer-sm {
  width: 50px;
}

.spacer-md {
  width: 100px;
}

.spacer-lg {
  width: 200px;
}

.navbar-nav .nav-link {
  color: white;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-img {
  background-color: var(--dark-color);
}

.hero-img img {
  width: 100%;
}

/* footer */
.footer {
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.footer .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .content {
  height: 100%;
  padding: 20px;
}

.footer .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcfcfc;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.footer a {
  margin-right: 10px;
  color: white;
  text-decoration: none;
}

.footer p {
  margin-bottom: 0;
}

@media only screen and (min-width: 720px) {
  .footer {
    height: 160px;
  }

  .footer .container {
    display: block;
  }

  .footer .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .logo {
    position: absolute;
    left: 0;
    top: -20px;
  }
}

@media only screen and (max-width: 720px) {
  .footer .socials {
    width: 100%;
    justify-content: center;
  }
}

/* index page */
#index_hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
  padding: 50px 0px;
}

#index_hero img {
  max-width: 75%;
  max-height: 45vh;
}

#index_text img {
  border-bottom: 12px solid var(--secondary-color);
  width: 100%;
}

.hot-topic-links a {
  text-decoration: none;
}

.hot-topic-link {
  color: white;
  background-size: cover;
  height: 200px;
  text-align: center;
  position: relative;
}

.hot-topic-link-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: var(--dark-transparant-color);
  overflow: hidden;
}

.hot-topic-link-content:hover {
  background-color: var(--extradark-transparant-color);
}

.hot-topic-link-content.more:hover i {
  color: var(--primary-color);
}

.hot-topic-link-content b {
  font-size: 1.2em;
}

.news .card {
  overflow: hidden;
}

.news h5 {
  color: var(--primary-color);
}

#index_bullet_list {
  background-color: var(--primary-color-light);
  padding: 30px;
}

#index_bullet_list ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

#index_bullet_list h2 {
  color: var(--secondary-color);
}

/* survey */
#survey .survey-options {
  color: var(--primary-color);
}

#survey .invalid {
  color: red;
}

#survey .hide {
  display: none;
}

.alert-container {
  position: fixed;
  top: 32px;
  right: 32px;
}

#survey .form-check-input {
  border: 1px solid var(--primary-color);
}

#survey .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

#survey_btn {
  position: fixed;
  right: 64px;
  bottom: 64px;
  color: white;
  text-decoration: none;
  z-index: 9;
}

#survey_btn div {
  height: 160px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
}

#survey_btn:hover div {
  box-shadow: var(--secondary-color) 0px 7px 29px 0px;
}

#survey .survey-question:not(:first-child) {
  border-top: 2px dotted var(--secondary-color);
}

/* link-card */
.link-card {
  border-radius: 0px;
  text-align: center;
}

.link-card:hover {
  cursor: pointer;
  opacity: 0.6;
}

.link-card img {
  object-fit: cover;
  border-radius: 0px;
}

.link-card .card-body {
  background-color: var(--dark-color);
  height: 100px;
  overflow: hidden;
}

.link-card .card-title {
  color: var(--primary-color);
}

.link-card .card-text {
  color: white;
}

@media (min-width: 990px) {
  .link-card.hot-topic img {
    height: 280px;
  }
}

/* sections */
.section {
  overflow: auto;
}

.section.style-two {
  background-color: var(--primary-color-light);
}

.section.style-three {
  background-color: var(--dark-color);
  color: white;
}

.section * {
  background-color: rgba(255, 255, 255, 0) !important;
}
