@font-face {
  font-family: "NotoSans-Regular, sans-serif";
  src: url(../fonts/NotoSans-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "NotoSans-Medium, sans-serif";
  src: url(../fonts/NotoSans-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "NotoSans-SemiBold, sans-serif";
  src: url(../fonts/NotoSans-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: "SourceSans-Regular, sans-serif";
  src: url(../fonts/SourceSansPro-Regular.woff2) format("woff2");
}
/* General */
body {
  font-family: "NotoSans-Regular, sans-serif";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "NotoSans-Medium, sans-serif";
}

main {
  margin-top: 73px;
}

@media (min-width: 992px) {
  main {
    margin-top: 90px;
  }
}
.shadow {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Buttons */
.btn {
  border-radius: 4px;
  padding: 12px 34px;
  font-family: "NotoSans-Medium, sans-serif";
}

.btn-primary {
  --bs-btn-bg: #2f2c4d;
  --bs-btn-hover-color: #2f2c4d;
  --bs-btn-border-color: #2f2c4d;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: #2f2c4d;
  --bs-btn-active-color: #2f2c4d;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: #2f2c4d;
  --bs-btn-active-shadow: none;
  --bs-btn-focus-box-shadow: none;
}

.btn-light {
  --bs-btn-border-color: #2f2c4d;
  --bs-btn-hover-border-color: #2f2c4d;
  --bs-btn-color: #2f2c4d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f2c4d;
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f2c4d;
  --bs-btn-active-border-color: #2f2c4d;
  --bs-btn-active-shadow: none;
}

.btn-outline-light {
  --bs-btn-hover-color: #2f2c4d;
  --bs-btn-active-color: #2f2c4d;
  --bs-btn-hover-border-color: #2f2c4d;
}

.btn-outline-dark {
  --bs-btn-color: #2f2c4d;
  --bs-btn-border-color: #2f2c4d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f2c4d;
  --bs-btn-hover-border-color: #2f2c4d;
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f2c4d;
  --bs-btn-active-border-color: #2f2c4d;
  --bs-btn-active-shadow: none;
}

/* Sidebar */
.sidebar-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.sidebar-btn {
  margin-left: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #2f2c4d;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: width 0.35s ease;
}
.sidebar-btn svg {
  min-width: 56px;
  text-align: center;
  font-size: 22px;
}
.sidebar-btn .text {
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

@media (min-width: 768px) {
  .sidebar-btn:hover {
    background: #26243b;
    width: 190px;
  }
  .sidebar-btn:hover .text {
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .sidebar-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: row;
  }
  .sidebar-btn {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    flex: 1;
  }
  .sidebar-btn::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.2);
  }
  .sidebar-btn:last-child::after {
    display: none;
  }
  .sidebar-btn span {
    opacity: 1;
    transform: none;
    font-size: 11px;
  }
  .sidebar-btn svg {
    min-width: auto;
  }
  .sidebar-btn .text {
    opacity: 1;
    transform: translateX(0);
    line-height: 1;
    white-space: wrap;
  }
}
/* Header */
header .navbar {
  height: 73px;
}
header .navbar-brand {
  max-width: 150px;
}
header .navbar-brand:focus {
  outline: 0;
}
header .nav-link {
  text-transform: uppercase;
  font-family: "NotoSans-SemiBold, sans-serif";
  color: rgb(255, 255, 255);
  border: 4px solid transparent;
}
header .nav-link:focus,
header .nav-link:hover {
  color: rgb(255, 255, 255);
  border-bottom: 4px solid #fff;
}
header .dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-item-padding-y: .6rem;
  --bs-dropdown-item-padding-x: 2rem;
}
header .dropdown-menu-dark {
  --bs-dropdown-bg: #231f36;
}
header .dropdown-item {
  color: #fff;
  text-transform: uppercase;
}
header .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
header .navbar.bg-dark {
  --bs-bg-opacity: 1;
  background-color: #2F2C4D !important;
}
header .text-bg-dark {
  background-color: #2f2c4d !important;
}
header .offcanvas {
  --bs-offcanvas-width: 100%;
}
header .offcanvas-header {
  background: #26243b;
}
header .navbar-toggler {
  border: none;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-dark,
header .navbar[data-bs-theme=dark] {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (min-width: 992px) {
  header .navbar {
    height: 90px;
  }
  header .navbar-brand {
    max-width: 204px;
  }
}
footer {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 50px 0 20px 0;
}
footer .footer-top {
  padding: 50px 0 50px 0;
}
footer .footer-top .column-title {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.918);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
footer .footer-top .info-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: rgb(108, 108, 108);
  font-size: 16px;
}
footer .footer-top .info-company a {
  padding: 10px;
  color: #313131;
}
footer .footer-top .info-company a:hover {
  box-shadow: 2px 2px 7px 0px rgba(162, 162, 162, 0.25);
}
footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-top ul li {
  padding: 5px 0;
}
footer .footer-top ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
footer .footer-top ul li a:hover {
  opacity: 0.6;
}
footer .footer-middle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
footer .footer-middle .btn-link {
  padding: 0;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 14px;
  text-align: start;
}
footer .footer-middle .btn-link:hover {
  color: #000;
}
footer .footer-middle .legal {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
footer .footer-middle .legal .vr {
  margin: 5px 0;
  width: 1px;
  height: auto;
  background: rgb(0, 0, 0);
}
footer .footer-middle .text-social-media {
  font-size: 16px;
}
footer .footer-middle .footer-social {
  color: #000;
}
footer .footer-middle .footer-social:hover {
  color: #2F2C4D;
}
footer .footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 35px 0 15px 0;
}

@media (max-width: 768px) {
  footer {
    padding: 30px 0 60px 0;
  }
  footer .footer-top {
    padding: 20px 0 20px 0;
  }
  footer .footer-middle {
    padding: 10px 0 20px;
  }
  footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 10px;
    padding: 20px 0 20px 0;
  }
}