﻿.btn {
  padding: 1rem 0.75rem;
  margin-right: 0.625rem;
  margin-top: 0.25rem;
  border-radius: 0;
  min-width: 150px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.btn.btn-primary {
  background-color: #2495EE;
  color: #fff;
  transition: all 0.2s ease-in-out;
  border: 1px solid #2495EE;
}
.btn.btn-primary:hover {
  background-color: #81BFC9;
  border: 1px solid #81BFC9;
  color: #fff;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #2495EE;
  transition: all 0.2s ease-in-out;
  border: 1px solid #2495EE;
}
.btn.btn-secondary:hover {
  background-color: #81BFC9;
  border: 1px solid #81BFC9;
  color: #fff;
}

body {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #5F6062;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "futura-pt-bold", sans-serif;
}

h1 {
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 4rem;
}

h2 {
  font-weight: 600;
  font-style: normal;
  font-size: 2.75rem;
  margin: 0.75rem 0;
  color: #2495EE;
}

@media (max-width: 996px) {
  h2 {
    font-size: 1.75rem;
  }
}
h4, .h4 {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h5, .h5 {
  font-weight: 600;
  font-style: normal;
  font-size: 1.75rem;
  color: #2495EE;
}

h6, .h6 {
  font-family: "futura-pt", sans-serif;
  font-weight: 450;
  line-height: 30px;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.lead {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
}

.card-title {
  margin-bottom: 2rem;
}

.form-control, .form-select, .chosen-container-single .chosen-single {
  background-color: #F6F6F6;
  border-radius: 0;
  border: none;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #F6F6F6;
}

.form-check-input:checked {
  background-color: #2495EE;
  border-color: #2495EE;
}

.navbar.fixed-top {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.15);
  /*position: sticky;*/
}
.navbar.fixed-top .navbar-nav {
  text-transform: uppercase;
  line-height: 23px;
  letter-spacing: 0.12em;
}
.navbar.fixed-top .navbar-nav.navbar-menu {
  display: flex;
  gap: 1em;
}
.navbar.fixed-top .navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.navbar.fixed-top .navbar-toggler .navbar-toggler-icon {
  width: 1em;
  height: 1em;
}

.navbar-brand {
  padding: 2.5rem 0;
}

@media (max-width: 1440px) {
  .navbar-brand {
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .navbar.fixed-top .container {
    max-width: 100%;
  }
  .navbar-brand .nav-logo {
    width: 200px;
    max-height: 60px;
    height: inherit;
  }
}
