/* --- GLOBAL STYLES ---*/
@font-face {
  font-family: segoeRegular;
  src: url(../../Fonts/segoeuiRegular.ttf);
}
@font-face {
  font-family: segoeRegular;
  src: url(../../Fonts/segoeuiRegular.ttf);
}
@font-face {
  font-family: segoeBold;
  src: url(../../Fonts/segoeuiBold.ttf);
}
@font-face {
  font-family: segoeBlack;
  src: url(../../Fonts/segoeuiBlack.ttf);
}
@font-face {
  font-family: segoeSemiBold;
  src: url(../../Fonts/segoeuiSemiBold.ttf);
}
body {
  font-family: segoeRegular;
  color: #152444;
  font-size: 16px;
}

.web {
  display: block;
}

.mob {
  display: none;
}

a {
  color: #152444;
  text-decoration: none;
}
a:hover {
  color: #152444;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}

button:focus {
  box-shadow: none !important;
}

h4 {
  font-family: segoeSemiBold;
  color: #9A8459;
}

.customContainer {
  padding: 5%;
}

.d-grid {
  display: grid;
}

.active {
  color: #9A8459;
  font-family: segoeSemiBold;
}
.active:hover {
  color: #9A8459;
}

.navbar {
  border-bottom: 1px solid #ddd;
  padding: 0;
}
.navbar .navbar-nav {
  align-items: baseline;
  width: 100%;
  justify-content: end;
}
.navbar .navbar-nav .navbar-toggler {
  padding: 0;
}
.navbar .navbar-nav .dropdown {
  position: static;
  z-index: 10;
  padding: 1.5% 0;
}
.navbar .navbar-nav .dropdown-menu {
  width: 90%;
  border-radius: 0;
  padding: 1% 4%;
  background-color: rgba(21, 36, 68, 0.8901960784);
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  height: auto;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.88rem;
  color: white;
  margin: 3.5% auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:focus, .navbar .navbar-nav .dropdown-menu .dropdown-item.active {
  color: #9A8459;
  background-color: transparent;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  font-size: 1rem;
  background-color: transparent;
}
.navbar .navbar-nav .dropdown-toggle::after {
  vertical-align: 0.1em;
}
.navbar .navbar-collapse {
  flex-basis: auto;
}
.navbar .customContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: inherit;
  align-items: center;
  padding: 0 5%;
}

footer {
  background-color: #152444;
  padding-top: 8%;
}
footer .footerMenu {
  justify-content: end;
  padding: 8% 5% 0;
}
footer .footerMenu p {
  font-size: 0.8rem;
  margin-left: 2%;
}
footer p {
  font-size: 0.65rem;
}
footer .contactFooter {
  padding: 3% 5%;
  border-top: 1px solid #9A8459;
  display: flex;
}
footer .contactFooter .location {
  border-right: 1px solid #9A8459;
  padding-right: 3%;
  text-align: right;
}
footer .contactFooter .contacts {
  width: 50%;
  justify-content: end;
  display: flex;
}
footer .contactFooter .contacts div:first-child p {
  margin: 1% 0 0;
}
footer .contactFooter .contacts div:last-child {
  padding-left: 3%;
}
footer .contactFooter .contacts div:last-child h2 {
  font-weight: bold;
  margin-bottom: 0;
}
footer .copyRight {
  background-color: #9A8459;
  padding: 0.5% 0;
}
footer .copyRight p {
  margin-bottom: 0;
}

.hamburgerMenu {
  width: 25px;
  height: 15px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburgerMenu span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: #152444;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburgerMenu span:nth-child(1) {
  top: 0px;
}
.hamburgerMenu span:nth-child(2), .hamburgerMenu span:nth-child(3) {
  top: 7px;
}
.hamburgerMenu span:nth-child(4) {
  top: 14px;
}
.hamburgerMenu.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburgerMenu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.hamburgerMenu.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburgerMenu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-item {
    padding: 1%;
  }
  .navbar-expand-md .navbar-nav .nav-item:last-child {
    padding-right: 0;
  }
  nav .dropdown-menu {
    height: 100vh;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 1279px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1680px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 1900px) {
  body {
    font-size: 22px;
  }
}
@media (max-width: 550px) {
  .web {
    display: none;
  }
  .mob {
    display: block;
  }
  .customContainer {
    padding: 10% 5%;
  }
  .navbar .navbar-nav {
    align-items: start;
    margin-top: 3%;
  }
  .navbar .navbar-nav .dropdown {
    width: 100%;
  }
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    white-space: nowrap;
    padding-left: 0;
  }
  .navbar .navbar-nav .dropdown .dropdown-menu {
    margin: 0.5rem 0;
    background-color: #152444;
    width: 100%;
  }
  .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    padding: 1rem;
    text-align: left;
    margin: 0;
  }
  .navbar .navbar-nav .nav-item {
    margin: 2% 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
  }
  footer .contactFooter {
    padding: 5%;
    text-align: center;
    display: block;
  }
  footer .contactFooter img {
    margin-bottom: 5%;
  }
  footer .contactFooter .contacts {
    width: 100%;
    display: block;
  }
  footer .contactFooter .contacts .location {
    border: 0;
    padding: 0;
    margin-bottom: 5%;
    text-align: center;
  }
  footer .contactFooter .contacts .location img {
    margin-bottom: 0;
  }
}
h1 {
  background-color: #152444;
  padding: 15% 5% 3%;
  color: white;
  font-family: "segoeSemiBold";
  font-size: 5vw;
}

.news {
  display: flex;
  align-items: end;
  margin-top: 8%;
}
.news:first-child {
  margin-top: 0;
}
.news img {
  margin-right: 5%;
  width: 35%;
}
.news h3 {
  font-family: "segoeSemiBold";
  color: #9A8459;
}
.news h3 span {
  font-size: 1rem;
  margin-top: 1%;
}
.news button {
  background-color: #9A8459;
  border: 0;
  color: white;
  padding: 1% 3%;
}

footer {
  padding-top: 0;
}

@media (max-width: 900px) {
  h1 {
    padding: 30% 5% 3%;
    font-size: 6.5vw;
  }
  .news {
    flex-direction: column;
    margin-top: 12%;
  }
  .news img {
    width: 100%;
    margin: auto;
  }
  .news .newsTxt {
    text-align: center;
    margin-top: 3%;
  }
  .news:has(.imgRight) {
    flex-direction: column-reverse;
  }
}/*# sourceMappingURL=News&Events.css.map */