@import url("//fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap");
/* Variables */
/* Mixins */
/* display: flex */
*, ::after, ::before {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: #000F2D;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.is-visible {
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
body::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
  height: 10px;
  border-radius: 16px;
}
body::-webkit-scrollbar-thumb {
  background-color: #084a79;
  border-radius: 16px;
}
body::-webkit-scrollbar-track {
  background-color: rgba(6, 147, 227, 0.05);
}

.main-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
body.logged-in.admin-bar .main-header {
  top: 32px;
}
.main-header.fixed-header {
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (min-width: 992px) {
  .main-header.fixed-header .header-section {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .main-header.fixed-header .menu-list li a::before {
    bottom: -20px;
  }
}
.main-header .header-section {
  padding-top: 17px;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .main-header .header-section {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
  }
  .main-header .header-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .main-header.is-visible {
    background-color: #ffffff;
  }
  .main-header.is-visible .menu-list {
    visibility: visible;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    transform: translateX(0px);
  }
  .main-header .sidebar-icon {
    display: inline-block;
    cursor: pointer;
    border: none;
    padding: 5px 0 5px 5px;
    background-color: transparent;
    z-index: 10;
    width: 30px;
  }
  .main-header .sidebar-icon.is-visible span:nth-child(1) {
    transform: rotate(135deg);
    width: 25px;
    top: 7px;
    left: -2px;
  }
  .main-header .sidebar-icon.is-visible span:nth-child(2) {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    left: 0;
    width: 20px;
  }
  .main-header .sidebar-icon.is-visible span:nth-child(3) {
    transform: rotate(-135deg);
    width: 25px;
    top: -7px;
    left: -2px;
  }
  .main-header .sidebar-icon span {
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: #000000;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: block;
    left: 0;
    top: 0;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  .main-header .sidebar-icon span:nth-child(1) {
    width: 13px;
  }
  .main-header .sidebar-icon span:nth-child(3) {
    width: 18px;
  }
}
.main-header .header-logo {
  flex: none;
  display: inline-flex;
  position: relative;
}
@media (max-width: 991px) {
  .main-header .header-logo {
    margin-right: 10px;
  }
}
.main-header .header-logo img {
  transition: all 0.2s ease-in-out;
  transform-origin: left;
  max-height: 20px;
}
@media (max-width: 1499px) {
  .main-header .header-logo img {
    height: 16px;
  }
}
@media (max-width: 580px) {
  .main-header .header-logo img {
    height: 14px;
  }
}
@media (min-width: 992px) {
  .main-header .nav-item {
    padding: 5px 0 !important;
  }
}
.main-header .nav-item.dropdown {
  padding: 0 !important;
}
.main-header .nav-item .title-text {
  font-weight: 700;
  padding: 8px 20px;
  display: block;
}
.main-header .nav-item i {
  margin-right: 8px;
}
.main-header .nav-item a {
  font-size: 14px !important;
  font-weight: 600;
  padding: 7px 20px;
  display: inline-flex;
  align-items: center;
}
.main-header .nav-item a::before {
  display: none !important;
}
@media (max-width: 1199px) {
  .main-header .nav-item .nav-item .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.main-header .nav-item .dropdown-menu {
  position: absolute;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border: none;
  min-width: 200px;
}
.main-header .nav-item .dropdown-menu a:hover, .main-header .nav-item .dropdown-menu a:focus {
  color: #084a79;
  background-color: rgba(8, 74, 121, 0.1);
}
.main-header .menu-list {
  margin-left: auto;
}
@media (min-width: 1200px) {
  .main-header .menu-list > ul {
    align-items: center;
    display: flex;
    flex-direction: inherit;
  }
  .main-header .menu-list li:hover ul, .main-header .menu-list li:focus ul, .main-header .menu-list li:focus-visible ul {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    visibility: visible;
  }
  .main-header .menu-list li .sub-menu li:hover .sub-menu, .main-header .menu-list li .sub-menu li:focus .sub-menu, .main-header .menu-list li .sub-menu li:focus-visible .sub-menu {
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    -webkit-opacity: 1 !important;
    opacity: 1 !important;
  }
}
@media (max-width: 1199px) {
  .main-header .menu-list {
    overflow-y: auto;
    width: 100%;
    max-width: 300px;
    display: block;
    padding: 15px 15px 30px;
    background-color: #ffffff;
    position: fixed;
    height: calc(100vh - 79px);
    top: 0;
    right: 0;
    bottom: 0;
    margin-top: 79px;
    z-index: -1;
    visibility: hidden;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  }
  .main-header .menu-list > ul {
    display: block;
  }
  .main-header .menu-list > ul > li {
    margin: 0;
    padding: 10px 0;
    width: 100%;
  }
}
.main-header .menu-list li {
  display: flex;
  flex-wrap: wrap;
  margin-right: 10px;
  padding: 15px 10px;
  position: relative;
}
.main-header .menu-list li.menu-item-has-children .arrow {
  position: absolute;
  right: 0;
  z-index: 1;
  width: 25px;
}
.main-header .menu-list li.menu-item-has-children .arrow.is-active:after {
  transform: rotate(180deg);
}
.main-header .menu-list li.menu-item-has-children .arrow:after {
  vertical-align: middle;
  content: "";
  background: url(../images/icon/arrow-down.svg) no-repeat center right;
  background-size: 12px;
  background-position: center;
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .main-header .menu-list li.menu-item-has-children .arrow {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-header .menu-list li.menu-item-has-children .sub-menu .current-menu-item > a {
    align-items: center;
  }
  .main-header .menu-list li.menu-item-has-children .sub-menu .current-menu-item > a:after {
    vertical-align: middle;
    content: "";
    background: url(../images/icon/arrow-down.svg) no-repeat center right;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    filter: grayscale(1);
  }
}
@media (max-width: 1440px) {
  .main-header .menu-list li {
    margin: 0 5px;
    padding: 4px 5px;
  }
}
@media (min-width: 992px) {
  .main-header .menu-list li:hover > .sub-menu, .main-header .menu-list li:focus > .sub-menu, .main-header .menu-list li:focus-visible > .sub-menu {
    transform: translateY(0px);
  }
  .main-header .menu-list li.menu-item-has-children > a {
    display: flex !important;
    align-items: center;
  }
  .main-header .menu-list li.menu-item-has-children > a:after {
    vertical-align: middle;
    content: "";
    background: url(../images/icon/arrow-down.svg) no-repeat center right;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    filter: grayscale(1);
  }
  .main-header .menu-list li.menu-item-has-children:hover > a, .main-header .menu-list li.menu-item-has-children:focus > a {
    color: #084a79;
  }
  .main-header .menu-list li.menu-item-has-children:hover > a:before, .main-header .menu-list li.menu-item-has-children:focus > a:before {
    width: 50%;
    left: 0;
  }
  .main-header .menu-list li.menu-item-has-children:hover > a:after, .main-header .menu-list li.menu-item-has-children:focus > a:after {
    transform: rotate(180deg);
    filter: grayscale(0);
  }
}
@media (max-width: 991px) {
  .main-header .menu-list li.menu-item-has-children .sub-menu {
    padding-top: 15px;
    min-width: 100%;
  }
}
.main-header .menu-list li:last-child {
  margin-right: 0;
}
.main-header .menu-list li a {
  color: #000000;
  position: relative;
  z-index: 1;
  font-family: "Times New Roman", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: inline-flex;
  transition: all 0.2s ease-in-out;
}
.main-header .menu-list li a:hover, .main-header .menu-list li a:focus {
  color: #084a79;
}
.main-header .menu-list li a:hover:before, .main-header .menu-list li a:focus:before {
  width: 50%;
  left: 0;
}
.main-header .menu-list li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -2px;
  background: #084a79;
  width: 0;
  height: 1px;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .main-header .menu-list li a:before {
    bottom: -31px;
    height: 2px;
  }
}
.main-header .menu-list li.current-menu-item > a,
.main-header .menu-list li.current-menu-parent > a {
  color: #084a79;
}
.main-header .menu-list li.current-menu-item > a:before,
.main-header .menu-list li.current-menu-parent > a:before {
  width: 50%;
  left: 0;
}
@media (max-width: 991px) {
  .main-header .menu-list li.current-menu-item > a:before,
  .main-header .menu-list li.current-menu-parent > a:before {
    background: #ffffff !important;
  }
}
.main-header .menu-list li.current-menu-item > a:after,
.main-header .menu-list li.current-menu-parent > a:after {
  filter: inherit;
  -webkit-filter: inherit;
}
@media (max-width: 991px) {
  .main-header .sub-menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-header .sub-menu {
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    position: absolute;
    background-color: #fefefe;
    left: 0;
    padding: 15px 0;
    top: 100%;
    z-index: 99;
    min-width: 250px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    transform: translateY(10px);
  }
  .main-header .sub-menu li a {
    display: -moz-inline-flex !important;
    display: inline-flex !important;
  }
  .main-header .sub-menu li a:after {
    display: none !important;
  }
  .main-header .sub-menu li.menu-item-has-children:after {
    vertical-align: middle;
    content: "";
    background: url(../images/icon/arrow-down.svg) no-repeat center bottom;
    background-size: 12px;
    width: 20px;
    height: 20px;
    margin-left: auto;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    transform: rotate(-90deg) !important;
  }
  .main-header .sub-menu .sub-menu {
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    -webkit-opacity: 0 !important;
    opacity: 0 !important;
    left: 100%;
    top: 0;
    margin: 0;
  }
  .main-header .sub-menu li.current-menu-item > a {
    color: #084a79;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .main-header .sub-menu li.current-menu-item > a {
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  .main-header .sub-menu li.current-menu-item > a:before {
    background: #084a79 !important;
  }
}
.main-header .sub-menu li {
  margin: 0 0 15px !important;
  padding: 0 20px;
}
.main-header .sub-menu li:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .main-header .sub-menu li {
    padding: 0 0 8px 10px;
    border-left: 1px solid rgba(8, 74, 121, 0.5);
    margin: 0 0 0 10px !important;
  }
}
.main-header .sub-menu li:last-child {
  padding-bottom: 0;
}
.main-header .sub-menu li a {
  font-size: 14px;
}
.main-header .sub-menu li a::before {
  bottom: -2px !important;
  height: 1px !important;
}
@media (max-width: 1299px) {
  .main-header .sub-menu li a {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .main-header .sub-menu li a {
    color: #000000;
  }
  .main-header .sub-menu li a:hover, .main-header .sub-menu li a:focus {
    color: #084a79 !important;
  }
  .main-header .sub-menu li a:hover:before, .main-header .sub-menu li a:focus:before {
    background-color: #084a79 !important;
  }
}
.main-header .action-btn {
  margin-left: auto;
}
@media (max-width: 991px) {
  .main-header .action-btn {
    margin-top: 15px;
  }
}

.bg-overly {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.bg-overly.is-visible {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  visibility: visible;
}

#wrapper {
  flex: 1 1 auto;
}

.main-footer {
  background-color: #000000;
}
.main-footer .footer-first-block {
  padding: 58px 0;
}
@media (max-width: 991px) {
  .main-footer .footer-first-block {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-first-block {
    padding: 40px 0 0;
  }
}
.main-footer * {
  color: #ffffff;
}
@media (min-width: 992px) {
  .main-footer .footer-card {
    padding-top: 7px;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-card {
    margin-bottom: 40px;
  }
}
.main-footer .widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: "Times New Roman", Helvetica, Arial, sans-serif;
}
@media (max-width: 991px) {
  .main-footer .widget-title {
    margin-bottom: 10px;
  }
}
.main-footer .copyright-text {
  font-size: 11px;
}
@media (max-width: 767px) {
  .main-footer .copyright-text {
    text-align: center;
  }
}
.main-footer .footer-logo {
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 991px) {
  .main-footer .footer-logo {
    margin-bottom: 25px;
  }
}
.main-footer .footer-logo img {
  max-height: 52px;
}
.main-footer .footer-dec {
  font-weight: 300;
}
@media (min-width: 992px) {
  .main-footer .footer-dec {
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .main-footer .menu-list {
    padding-left: 22px;
  }
  .main-footer .menu-list.menu-last-block {
    padding-left: 44px;
  }
}
@media (max-width: 767px) {
  .main-footer .menu-list {
    margin-bottom: 40px;
  }
}
.main-footer .menu-list li {
  padding: 6px 0;
}
@media (min-width: 992px) {
  .main-footer .menu-list li:first-child {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .main-footer .menu-list li {
    font-size: 14px;
  }
}
.main-footer .menu-list li:last-child {
  margin-bottom: 0;
}
.main-footer .menu-list li a {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-footer .menu-list li a {
    font-size: 14px;
  }
}
.main-footer .menu-list li a:hover, .main-footer .menu-list li a:focus {
  color: #0165ad;
  text-decoration: underline;
}
.main-footer .copyright-block {
  padding: 17px 0;
  font-size: 14px;
  color: #dfdfdf;
  border-top: 1px solid #3e3e3e;
}
@media (max-width: 767px) {
  .main-footer .copyright-block {
    font-size: 13px;
  }
}
.main-footer .copyright-block .menu-list {
  margin-bottom: 0;
}
.main-footer .copyright-block a {
  position: relative;
  z-index: 1;
  color: #dfdfdf;
}
.main-footer .copyright-block a:hover, .main-footer .copyright-block a:focus {
  color: #0165ad;
  text-decoration: underline;
}
.main-footer .copyright-block .menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main-footer .copyright-block .menu-list li {
  margin-bottom: 0;
  padding: 0 10px;
  border-right: 1px solid #3e3e3e;
}
.main-footer .copyright-block .menu-list li:last-child {
  border: none;
}
@media (min-width: 768px) {
  .main-footer .copyright-block .menu-list {
    text-align: right;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .main-footer .copyright-block .menu-list {
    margin-top: 10px;
  }
}

.back-to-top {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #084a79;
  text-align: center;
  position: fixed;
  z-index: 8;
  right: 20px;
  bottom: -100px;
  transition: bottom 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.back-to-top:hover, .back-to-top:focus {
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
}
.back-to-top.visible {
  opacity: 1;
  bottom: 25px;
}
.back-to-top svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .back-to-top {
    display: none !important;
  }
}

.tooltip {
  z-index: 1080;
  display: block;
  padding: 0.4rem;
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip .tooltip-arrow {
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip.show {
  opacity: 0.9;
}

.bs-tooltip-top .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

.bs-tooltip-end .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

.bs-tooltip-bottom .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

.bs-tooltip-start .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.form-group .form-control {
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  min-height: 50px;
  width: 100%;
  line-height: 1.4;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .form-group .form-control {
    min-height: 44px;
  }
}
.form-group .form-control::-moz-placeholder {
  color: #888;
}
.form-group .form-control::placeholder {
  color: #888;
}
.form-group select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/icon/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px);
  background-size: 12px;
  padding-right: 20px;
}

.form-check {
  margin-bottom: 20px;
}
.form-check .form-check-label {
  font-size: 14px;
}
.form-check .form-check-label a:hover {
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-primary {
  color: #084a79 !important;
}

.text-yellow {
  color: #084a79 !important;
}

.bg-primary {
  background-color: #084a79 !important;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  color: #084a79;
  text-decoration: none;
}
a:focus, a:hover {
  color: #084a79;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #f0ab2e !important;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

@media (min-width: 1200px) {
  .row.gutters-40 {
    margin-right: -40px;
    margin-left: -40px;
  }
  .row.gutters-40 > [class^=col], .row.gutters-40 > [class*=" col"] {
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 80px;
  }
}
.main-section {
  padding: 50px 0;
}

.btn {
  min-height: 42px;
  padding: 12px 25px;
  font-weight: 400;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    padding: 10px 15px;
    min-height: 44px;
  }
}
.btn .btn-icon {
  margin-right: 10px;
  max-width: 18px;
  max-height: 18px;
}
.btn:hover span::after, .btn:focus span::after, .btn:active span::after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  width: 15px;
}
.btn span {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.btn span:after {
  content: "";
  width: 15px;
  height: 12px;
  margin-right: -15px;
  flex: none;
  background: url(../images/icon/arrow-right.svg) no-repeat center center;
  background-size: 5px;
  margin-left: 8px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  vertical-align: middle;
}
.btn.btn-primary {
  color: #ffffff !important;
  border: 1px solid transparent;
  background-color: #084a79 !important;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
  border: 1px solid #084a79;
}
.btn.btn-primary span:after {
  filter: brightness(0) invert(1);
}
.btn.btn-outline-primary {
  color: #084a79 !important;
  border: 2px solid #084a79;
  background-color: #fff !important;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus, .btn.btn-outline-primary:active {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
  border: 2px solid #084a79;
  color: #fff !important;
  background-color: #084a79 !important;
}
.btn.btn-outline-primary span:after {
  filter: brightness(0) invert(1);
}
.btn.btn-gray {
  color: #000000 !important;
  border: 1px solid #f1f1f1;
  background-color: #f1f1f1 !important;
}
.btn.btn-gray:hover, .btn.btn-gray:focus, .btn.btn-gray:active {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
  border: 1px solid #e2e6ea;
  background-color: #e2e6ea !important;
}
.btn.btn-gray span:after {
  filter: brightness(0) invert(1);
}
.btn.btn-secondary {
  color: #000000 !important;
  border: 1px solid transparent;
  background-color: #ffffff;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
}
.btn.btn-success {
  color: #000000 !important;
  border-color: #0ebb36;
  background-color: #0ebb36;
}
.btn.btn-success:hover, .btn.btn-success:focus, .btn.btn-success:active {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
}
.btn.btn-small {
  min-height: 34px;
  padding: 8px 15px;
}

.btn-link {
  text-decoration: underline;
  color: #084a79 !important;
  font-weight: 500;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: #000;
}

.social-icon {
  display: flex;
}
@media (min-width: 768px) {
  .social-icon {
    justify-content: flex-start;
  }
}
.social-icon li {
  padding: 0px;
  margin-right: 10px;
}
.social-icon li:last-child {
  margin-right: 0px;
}
.social-icon li a {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.social-icon li a:hover, .social-icon li a:focus {
  background-color: #084a79;
}
.social-icon li a:hover .icons, .social-icon li a:focus .icons {
  filter: brightness(0) invert(1);
}

.icons {
  background-size: contain !important;
  display: inline-block;
}
.icons.icon-call {
  background: url(../images/icon/call-icon.svg) no-repeat center center;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.icons.icon-instagram {
  background: url(../images/icon/instagram.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.icons.icon-linkedin {
  background: url(../images/icon/linkedin.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.icons.icon-facebook {
  background: url(../images/icon/facebook.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.icons.icon-twitter {
  background: url(../images/icon/twitter.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.icons.icon-search {
  background: url(../images/icon/zoom-in.svg) no-repeat center center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0px;
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
}

h1, .h1 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
  color: #000F2D;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 28px;
  }
}

h2, .h2 {
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 20px;
  color: #000000;
}
@media (max-width: 1440px) {
  h2, .h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

h3, .h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
  color: #000F2D;
  line-height: 1.4;
}
@media (max-width: 1440px) {
  h3, .h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-weight: 700;
  color: #000F2D;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 95%;
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-title {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title .sub-title {
  color: #084a79;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
@media (max-width: 991px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}
.section-title .sort-info, .section-title p {
  margin-bottom: 30px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .section-title .sort-info, .section-title p {
    margin-bottom: 20px;
  }
}
.section-title .sort-info p {
  margin-bottom: 20px;
}
.section-title .sort-info p:last-child {
  margin-bottom: 0;
}
.section-title * :last-child {
  margin-bottom: 0px !important;
}
.section-title *:last-child {
  margin-bottom: 0px !important;
}

.hero-section {
  padding: 50px 0;
  background-position: center;
  background: #084a79 url(../images/header-bg.jpg) no-repeat center center;
  background-size: cover;
}
.hero-section .section-title {
  text-align: center;
}
.hero-section .section-title * {
  color: #ffffff;
}
.hero-section .section-title h1 {
  color: #fff;
  text-shadow: 4px 3px 5px black;
  text-align: center;
}
.hero-section .section-title .sub-title {
  font-size: 25px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-section .section-title .sub-title {
    font-size: 16px;
  }
}

.form-block {
  background-color: #ffffff;
  padding: 40px;
}
@media (max-width: 991px) {
  .form-block {
    padding: 20px;
  }
}
.form-block h2 {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 991px) {
  .form-block h2 {
    font-size: 20px;
  }
}
.form-block .account-login-link {
  margin-top: 20px;
}
.form-block .link-text {
  font-size: 14px;
}
.form-block .link-text:hover, .form-block .link-text:focus {
  text-decoration: underline;
}
.form-block .btn {
  width: 100%;
}

.page-header {
  color: #fff;
  padding: 40px 0px;
  margin-bottom: 30px;
  background: #084a79 url(../images/header-bg.jpg) no-repeat center 60%;
  background-size: cover;
}
.page-header h1 {
  margin: 0px;
  padding: 0px;
  color: #fff;
  text-shadow: 4px 3px 5px black;
  text-align: center;
}

.modal .modal-title {
  font-family: "Times New Roman", Times, serif;
}
.modal .sort-dec {
  font-size: 15px;
  margin-bottom: 15px;
}

.form-content-block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 1px solid #084a79;
  border: 1px solid #dbdbdb;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .form-content-block {
    padding: 20px;
  }
}

.card-block {
  padding: 15px;
  margin-bottom: 25px;
}

.table.tablesorter-default .header, .table.tablesorter-default .tablesorter-header {
  background-color: #f5f5f5;
  padding: 10px 16px 10px 5px;
}
.table thead th {
  border-top: none;
  border-bottom: 2px solid #000;
}
.table.tablesorter-default td {
  padding: 10px 5px;
}
.table tr:hover td {
  background-color: #eeeeee;
}

.dashboard-container {
  position: relative;
}

.dashboard-nav {
  margin: 20px 0px;
}
@media (min-width: 768px) {
  .dashboard-nav {
    position: absolute;
    padding: 30px;
    left: 0;
    z-index: 1;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .dashboard-nav {
    padding: 50px;
  }
}
.dashboard-nav ul li {
  margin-bottom: 20px;
}
.dashboard-nav ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .dashboard-nav ul li {
    margin-bottom: 15px;
  }
}
.dashboard-nav ul li a {
  min-height: 42px;
  padding: 12px 25px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  max-width: 270px;
  width: 100%;
  background-color: #084a79;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .dashboard-nav ul li a {
    max-width: 100%;
    padding: 5px 20px;
  }
}
.dashboard-nav ul li a:hover, .dashboard-nav ul li a:focus {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
}
.dashboard-nav ul li a i {
  font-size: 16px;
  margin-right: 8px;
}

#credits_warning {
  font-size: 14px;
  text-align: center;
}
#credits_warning a {
  text-decoration: underline;
  color: #fdf59a !important;
}

@media (min-width: 768px) {
  #map_container .gmnoprint {
    left: 315px !important;
  }
}
@media (max-width: 1199px) {
  #sidebar-wrapper {
    position: fixed;
    top: 79px;
    bottom: 0px;
    z-index: 99;
    left: 0px;
    height: calc(100vh - 79px);
    overflow: auto;
    transform: translateX(-250px);
    transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  }
  #sidebar-wrapper .list-group {
    margin-bottom: 130px;
  }
  #sidebar-wrapper.is-visible {
    top: 79px;
    left: 0px !important;
    transform: translateX(0px);
    margin-left: 0px !important;
  }
}
@media (max-width: 768px) {
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

:root {
  --theme-black: #121212;
  --theme-black-soft: #1d1d1d;
  --theme-black-elevated: #272727;
  --theme-ink: #18130f;
  --theme-surface: #fffaf5;
  --theme-orange: #f97316;
  --theme-orange-deep: #c2410c;
  --theme-orange-soft: #fff0e3;
  --theme-orange-glow: rgba(249, 115, 22, 0.2);
}

body {
  color: var(--theme-ink);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 28%),
    linear-gradient(180deg, #23170f 0, #f4ede6 17rem, #f7f2ec 100%);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--theme-orange);
}
body::-webkit-scrollbar-track {
  background-color: rgba(249, 115, 22, 0.08);
}

a,
a:focus,
a:hover,
.text-primary,
.text-yellow,
.section-title .sub-title {
  color: var(--theme-orange);
}

.bg-primary {
  background-color: var(--theme-orange) !important;
}

.main-header {
  background: rgba(12, 12, 12, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.main-header.fixed-header {
  background: rgba(12, 12, 12, 0.9);
}
.main-header .header-section {
  padding-top: 14px;
  padding-bottom: 14px;
}
.main-header .sidebar-icon span {
  background-color: #fff;
}
.main-header .menu-list li a {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.main-header .menu-list li a:hover,
.main-header .menu-list li a:focus,
.main-header .menu-list li.current-menu-item > a,
.main-header .menu-list li.current-menu-parent > a {
  color: var(--theme-orange);
}
.main-header .menu-list li a:before,
.main-header .menu-list li.current-menu-item > a:before,
.main-header .menu-list li.current-menu-parent > a:before {
  background: var(--theme-orange);
}
.main-header .nav-item .dropdown-menu a:hover,
.main-header .nav-item .dropdown-menu a:focus {
  color: var(--theme-orange);
  background-color: rgba(249, 115, 22, 0.08);
}
.main-header .sub-menu {
  background-color: #1a1a1a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.main-header .sub-menu li a {
  color: rgba(255, 255, 255, 0.9);
}

.header-branding {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  margin-right: 16px;
}
.header-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--theme-orange) 0, var(--theme-orange-deep) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 24px rgba(194, 65, 12, 0.32);
}
.header-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.header-kicker {
  color: #ffbf94;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}
.header-title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bg-overly {
  background-color: rgba(0, 0, 0, 0.78);
}

.hero-section,
.page-header {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.28), transparent 24%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #111 0, #2a1a11 38%, #111 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.16);
}
.hero-section .section-title *,
.page-header h1,
.page-header p,
.page-header .text-muted {
  color: #fff;
}
.hero-section .section-title h1,
.page-header h1 {
  text-shadow: none;
}
.hero-kicker,
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffbf94;
  margin-bottom: 12px;
}
.hero-copy,
.page-hero-copy p {
  max-width: 760px;
  color: #f6d8c1;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.portal-dashboard-shell {
  background: transparent;
}

.portal-alert {
  align-items: flex-start !important;
  gap: 12px;
  background: linear-gradient(135deg, #151515 0, #222 100%) !important;
  color: #fff !important;
  border-left: 4px solid var(--theme-orange);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.portal-alert a {
  color: var(--theme-orange) !important;
  font-weight: 700;
  text-decoration: underline;
}

.dashboard-nav {
  position: relative;
  margin: -34px 0 28px;
  padding: 0;
}
.dashboard-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}
.dashboard-nav ul li {
  flex: 1 1 220px;
  margin: 0;
  min-width: 0;
}
.dashboard-nav ul li a {
  max-width: none;
  width: 100%;
  min-height: 64px;
  padding: 16px 18px;
  justify-content: flex-start;
  line-height: 1.25;
  white-space: normal;
  background: linear-gradient(135deg, var(--theme-black) 0, var(--theme-black-elevated) 100%);
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}
.dashboard-nav ul li a:hover,
.dashboard-nav ul li a:focus {
  background: linear-gradient(135deg, var(--theme-orange) 0, var(--theme-orange-deep) 100%);
  transform: translateY(-2px);
}

.portal-map-shell {
  height: clamp(360px, 68vh, 860px);
  min-height: 440px;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(249, 115, 22, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

#sidebar-wrapper {
  background: linear-gradient(180deg, #111 0, #1d1d1d 100%);
  border-right: 1px solid rgba(249, 115, 22, 0.14) !important;
}
#sidebar-wrapper .sidebar-heading,
#sidebar-wrapper .list-group-item {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(249, 115, 22, 0.08);
}
#sidebar-wrapper .list-group-item {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  border-left: 3px solid transparent;
}
#sidebar-wrapper .list-group-item:hover,
#sidebar-wrapper .list-group-item:focus,
#sidebar-wrapper .list-group-item.active {
  background: rgba(249, 115, 22, 0.14) !important;
  color: #fff;
  border-left-color: var(--theme-orange);
}

.form-block,
.form-content-block,
.card-block,
.modal-content,
.table,
.table-responsive,
.white-box {
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.form-block,
.form-content-block,
.card-block,
.modal-content,
.white-box {
  background: rgba(255, 255, 255, 0.98);
}
.form-block h2,
.modal .modal-title {
  color: var(--theme-black);
}

.form-group .form-control,
.form-group select.form-control,
.bootstrap-select,
.StripeElement {
  min-height: 52px;
  border-radius: 14px;
  border-color: #e1c9b2;
  box-shadow: none;
}
.form-group .form-control:focus,
.StripeElement--focus {
  border-color: var(--theme-orange);
  box-shadow: 0 0 0 0.2rem var(--theme-orange-glow);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn.btn-primary {
  background: linear-gradient(135deg, var(--theme-orange) 0, var(--theme-orange-deep) 100%) !important;
  border: none;
  box-shadow: 0 16px 24px rgba(194, 65, 12, 0.24);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  border: none;
  opacity: 1;
  filter: brightness(1.05);
}
.btn.btn-outline-primary {
  color: var(--theme-orange) !important;
  border-color: rgba(249, 115, 22, 0.45);
  background-color: rgba(255, 255, 255, 0.98) !important;
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:active {
  color: #fff !important;
  background-color: var(--theme-orange) !important;
  border-color: var(--theme-orange);
}
.btn.btn-secondary,
.btn.btn-light {
  color: #fff !important;
  background-color: var(--theme-black);
  border-color: var(--theme-black);
}
.btn.btn-secondary:hover,
.btn.btn-light:hover,
.btn.btn-secondary:focus,
.btn.btn-light:focus {
  background-color: var(--theme-black-soft);
  border-color: var(--theme-black-soft);
}
.btn.btn-warning {
  color: var(--theme-black);
}

.table thead th {
  border-bottom: 2px solid var(--theme-orange);
}
.table.tablesorter-default .header,
.table.tablesorter-default .tablesorter-header {
  background-color: var(--theme-orange-soft);
}
.table tr:hover td {
  background-color: rgba(249, 115, 22, 0.08);
}

.info-page-section {
  padding: 42px 0 72px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.info-grid-two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.info-card,
.qa-item {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}
.info-card h3,
.qa-item h3 {
  margin-bottom: 12px;
  color: var(--theme-black);
}
.info-card p,
.qa-item p {
  color: #4b3a2f;
  margin-bottom: 18px;
}
.faq-list {
  display: grid;
  gap: 18px;
}
.contact-list {
  margin: 0 0 22px;
  padding: 0;
}
.contact-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #4b3a2f;
}
.contact-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-orange);
}

.main-footer {
  background: linear-gradient(180deg, #151515 0, #050505 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.18);
}
.main-footer .widget-title,
.main-footer * {
  color: #fff;
}
.main-footer .footer-dec,
.main-footer .copyright-block a,
.main-footer .copyright-text {
  color: rgba(255, 255, 255, 0.76);
}
.main-footer .menu-list li a:hover,
.main-footer .menu-list li a:focus,
.main-footer .copyright-block a:hover,
.main-footer .copyright-block a:focus {
  color: var(--theme-orange);
}
.main-footer .copyright-block {
  border-top-color: rgba(249, 115, 22, 0.16);
}

@media (max-width: 1199px) {
  .main-header .menu-list {
    max-width: min(360px, 100vw);
    height: calc(100vh - 74px);
    margin-top: 74px;
    padding: 18px 18px 28px;
    background: linear-gradient(180deg, #111 0, #1e1e1e 100%);
    border-left: 1px solid rgba(249, 115, 22, 0.15);
  }
  #sidebar-wrapper {
    top: 74px;
    height: calc(100vh - 74px);
  }
  #sidebar-wrapper.is-visible {
    top: 74px;
  }
}

@media (max-width: 991px) {
  .main-header .header-section {
    border-bottom: 1px solid rgba(249, 115, 22, 0.18);
    background: transparent;
  }
  .header-title {
    font-size: 20px;
  }
  .hero-copy,
  .page-hero-copy p {
    font-size: 15px;
  }
  .portal-map-shell {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .header-branding {
    gap: 10px;
    max-width: calc(100% - 68px);
  }
  .header-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .header-kicker {
    font-size: 10px;
  }
  .header-title {
    font-size: 18px;
  }
  .page-header,
  .hero-section {
    padding-top: 44px;
    padding-bottom: 34px;
  }
  .dashboard-nav {
    margin: -18px 0 22px;
  }
  .dashboard-nav ul {
    display: grid;
    grid-template-columns: 1fr;
  }
  .portal-alert {
    border-radius: 18px;
    margin-top: 12px;
  }
  .portal-map-shell {
    min-height: 300px;
    height: 52vh;
    border-radius: 18px;
  }
  .info-page-section {
    padding: 28px 0 56px;
  }
  .form-block,
  .form-content-block,
  .card-block,
  .modal-content,
  .table,
  .table-responsive,
  .white-box {
    border-radius: 18px;
  }
}
/*# sourceMappingURL=main.css.map */
