@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
.d-flex {
  display: flex;
}
.d-flex.j-between {
  justify-content: space-between;
}
.d-flex .col-md-3 {
  flex: 0 0 30%;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  min-width: 320px;
  background-color: #ffffff;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.6rem;
}

p {
  line-height: 1.6;
}
p + .btn {
  margin-top: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  line-height: 1.6;
}

button, input, textarea, select {
  outline: none;
  border: none;
  background-color: transparent;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.py {
  padding: 10rem 0;
}
.py-top {
  padding: 10rem 0 0 0;
}
.py-last {
  padding: 0 0 10rem 0;
}

.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

.place-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ck-powered-by-balloon {
  display: none !important;
}

.divider {
  display: block;
  background-color: transparent;
  border: transparent;
}

.bg-light {
  background-color: #ffffff;
}

.badge {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: pointer;
}
.badge-warning {
  background-color: rgb(231, 167, 12);
}

.errors-204 {
  text-align: center;
  width: 100%;
}
.errors-204 h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.errors-204 p {
  margin-bottom: 2rem;
}

.img {
  display: block;
  width: 100%;
}
.img-scale-h200 {
  height: 200px;
  width: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.img-center {
  margin: 0 auto;
}
.img-circle {
  border-radius: 50%;
}

.whiteBox {
  padding: 2rem;
  background-color: #ffffff;
}

.grid {
  display: grid;
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 992px) {
  .grid-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-3-1 {
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
}
.grid-1-3 {
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
}
@media (max-width: 480px) {
  .grid-1-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .grid-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}
.grid-1-1 {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 480px) {
  .grid-1-1 {
    grid-template-columns: 1fr;
  }
}
.grid-1-2 {
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.grid-2-1 {
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

.preloader-wrap {
  background-color: #EDF2F6;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
}

.preloader-spinner {
  left: 50%;
  margin: -20px 0 0 -20px;
  top: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  text-align: center;
  -webkit-animation: zion-rotate 2s infinite linear;
  animation: zion-rotate 2s infinite linear;
}

.preloader-dot1, .preloader-dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #072248;
  border-radius: 100%;
  -webkit-animation: zion-bounce 2s infinite ease-in-out;
  animation: zion-bounce 2s infinite ease-in-out;
}

.preloader-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes zion-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes zion-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes zion-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes zion-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.navbar {
  color: #ffffff;
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  transition: background-color 0.3s linear, padding 0.3s linear;
  padding: 2rem 0;
}
.navbar_bigmenu {
  flex-grow: 1;
}
@media (max-width: 900px) {
  .navbar_bigmenu {
    display: none;
  }
}
.navbar_bigmenu_language {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.navbar_bigmenu > ul {
  display: flex;
  gap: 4rem;
  font-size: 1.8rem;
  justify-content: flex-start;
  position: relative;
}
.navbar_bigmenu > ul li {
  cursor: pointer;
}
.navbar_bigmenu-drop_menu {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem;
  gap: 2rem;
  display: grid;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  transform: translate(0, 20px);
  border-radius: 10px;
  color: #000000;
  box-shadow: 0 0 10px 1px gray;
}
.navbar_bigmenu-drop_menu span {
  text-underline-style: dash;
  font-weight: 700;
  color: #072248;
}
.navbar_bigmenu-drop_menu ul {
  font-size: 1.6rem;
  padding-left: 1rem;
}
.navbar_bigmenu-drop:hover > .navbar_bigmenu-drop_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 10px);
}
.navbar.scrolled {
  background-color: rgba(7, 34, 72, 0.9);
  padding: 1rem 0;
}
.navbar_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 480px) {
  .navbar_brand {
    padding: 1rem 0;
  }
}
.navbar_brand img {
  height: 7rem;
}
@media (max-width: 480px) {
  .navbar_brand img {
    height: 5rem;
  }
}
.navbar_menu > ul {
  align-items: center;
  height: 100%;
  display: flex;
  gap: 3rem;
  font-weight: 700;
}
.navbar_menu > ul > li {
  width: 100%;
  height: 100%;
}
.navbar_menu > ul > li > a, .navbar_menu > ul > li > span {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar_menu > ul > li:hover > a, .navbar_menu > ul > li:hover > span {
  color: #ef3139;
}
.navbar_menu > ul a, .navbar_menu > ul span {
  display: block;
  padding: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s linear;
}
.navbar_menu > ul a:hover {
  color: #ef3139;
}
.navbar_menu-desktop {
  position: relative;
}
.navbar_menu-desktop .drop {
  position: relative;
}
.navbar_menu-desktop .drop:hover > ul {
  opacity: 1;
  visibility: visible;
}
.navbar_menu-desktop .drop_menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #072248;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
.navbar_menu-desktop .drop_menu span {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.navbar_menu-mobile {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  background-color: #ffffff;
  top: 0;
  width: 100%;
  height: 100vh;
  line-height: 2;
  transition: 0.3s linear;
  min-width: 300px;
  color: #000000;
}
@media (max-width: 480px) {
  .navbar_menu-mobile {
    top: 0;
  }
}
.navbar_menu-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #CCCCCC;
  background-color: #072248;
  height: 92.4px;
}
.navbar_menu-mobile-header img {
  height: 50px;
}
.navbar_menu-mobile-header button {
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
}
.navbar_menu-mobile-header a, .navbar_menu-mobile-header button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar_menu-mobile-body {
  padding: 2rem;
}
.navbar_menu-mobile .accordion_title {
  padding: 0.5rem;
  line-height: 1;
  border-color: transparent;
  border-radius: 0;
}
.navbar_menu-mobile .accordion li {
  line-height: 1.8;
}
.navbar_menu-mobile .accordion:not(:last-child) {
  margin-bottom: 1rem;
}
.navbar_menu-mobile.expand {
  transform: translateX(0%);
}
.navbar_menu-mobile-submenu {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  background-color: black;
  padding: 2rem;
  height: 100vh;
  line-height: 2;
  transition: 0.3s linear;
  min-width: 360px;
  top: 0;
}
.navbar_menu-mobile-submenu.expand {
  transform: translateX(0%);
}
.navbar_menu-mobile .drop span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.navbar_menu-mobile .drop span svg {
  font-size: 0.8em;
}
.navbar_hamburger {
  display: none;
}
@media (max-width: 900px) {
  .navbar_hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.navbar_hamburger img {
  display: block;
}
.navbar_hamburger button {
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
}

.topbar {
  padding: 1rem 0;
  color: #ffffff;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
}
.topbar h1 {
  font-weight: 300;
}
.topbar > article {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.btn {
  display: inline-block;
  padding: 1em 2em;
  border-radius: 5px;
  outline: none;
  transition: 0.3s linear;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #072248;
  color: #ffffff;
}
.btn-light {
  background-color: #ffffff;
  color: #000000;
}
.btn-light-transparent {
  border: 1px solid #000000;
  background-color: rgba(255, 255, 255, 0.99);
  color: #000000;
  font-weight: 700;
}
.btn-black {
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.99);
}
.btn-black-transparent {
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}
.btn-danger {
  background: #ef3139;
  color: #ffffff;
}
.btn:hover {
  opacity: 0.8;
}
.btn-sm {
  padding: 0.2em 1em !important;
}
.btn-ssm {
  padding: 0.1em 1em !important;
}
.btn-md {
  padding: 0.4em 1em !important;
}
.btn-lg {
  font-size: 2rem !important;
}
.btn_rounded {
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.9em 1.2em;
  line-height: 1;
  border-radius: 2em;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn_rounded:hover {
  opacity: 1;
}
.btn_rounded:before {
  content: "";
  width: 50%;
  height: 2.5em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 1;
  transition: 0.3s linear;
  border-radius: 2em;
}
.btn_rounded:hover:before {
  width: 100%;
}
.btn_rounded-gray {
  color: #072248;
}
.btn_rounded-gray:before {
  background: rgba(204, 204, 204, 0.4);
}
.btn_rounded-gray:hover {
  color: #ef3139;
}
.btn_rounded-active {
  color: #ffffff;
}
.btn_rounded-active:before {
  background: #ef3139;
}
.btn_rounded-primary {
  color: #072248;
}
.btn_rounded-primary:before {
  background: #ef3139;
}
.btn_rounded-primary:hover {
  color: #ffffff;
}
.btn_primary-round-reverse {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 12px 24px;
  line-height: 1;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn_primary-round-reverse:hover {
  color: #ffffff;
}
.btn_primary-round-reverse:hover:before {
  width: 100%;
}
.btn_primary-round-reverse:before {
  content: "";
  width: 70px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.9;
  background: #ef3139;
  transition: 0.3s linear;
  border-radius: 20px;
}
.btn_active-round {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1em 2em;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #ffffff;
  background-color: #ef3139;
  text-shadow: 0 0 10px #000000;
  transition: all 0.3s ease-in-out;
  border-radius: 2em;
}
.btn_active-round:hover {
  color: #ffffff;
}
.btn_active-round:hover:before {
  width: 100%;
}
.btn_active-round:before {
  content: "";
  width: 4em;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.9;
  background: #072248;
  transition: 0.3s linear;
  border-radius: 2em;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
}
.card_image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card .thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card_body {
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: 0.3s linear;
  padding: 1rem;
  background: #ffffff;
  cursor: pointer;
}
.card_body-bottom {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
}
.card_body:hover {
  margin-top: -15px;
  padding-bottom: 25px;
}
.card .card_footer {
  padding: 1rem;
}
.card .card_footer .card_body-bottom {
  display: flex;
  align-items: center;
}
.card .card_footer .card_body-bottom p {
  font-size: 14px;
  cursor: pointer;
}
.card_bottom {
  padding: 1rem;
}
.card h4 {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.cardOverlay {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  width: 100%;
}
.cardOverlay img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.cardOverlay_title {
  position: absolute;
  z-index: 2;
  color: #072248;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cardOverlay_overlay {
  position: absolute;
  top: 100%;
  height: 75%;
  padding: 10px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  z-index: 3;
  transition: 0.3s linear;
  opacity: 0.5;
  width: 100%;
}
.cardOverlay_overlay > div {
  background-color: rgba(7, 34, 72, 0.9);
  padding: 10px;
  height: 90%;
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  border-radius: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cardOverlay_footer {
  width: 100%;
}
.cardOverlay_footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cardOverlay:hover .cardOverlay_overlay {
  top: 0;
  opacity: 1;
}

.slider_news-nav {
  display: flex;
  gap: 1rem;
}
.slider_news-nav button {
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.listItem {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  background: #072248;
  padding: 10px;
  border-radius: 10px;
  color: #ffffff;
  transition: 0.3s linear;
}
.listItem:hover {
  background: rgba(7, 34, 72, 0.8);
}
.listItem span {
  font-size: 18px;
}

.selectGroup {
  position: relative;
}
.selectGroup .dropList {
  position: absolute;
  width: 99%;
  z-index: 2;
  left: 0.5%;
  overflow: hidden;
  transition: height 0.3s linear;
}
.selectGroup .dropList div {
  background: #ffffff;
  overflow-y: auto;
  max-height: 250px;
}
.selectGroup .dropList button {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  transition: 0.3s linear;
  margin-bottom: 1px;
  line-height: 1;
  border: unset;
}
.selectGroup .dropList button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.selectGroup button {
  text-align: left;
  cursor: pointer;
  font-size: inherit;
  width: 100%;
  padding: 1.5rem 1rem;
  resize: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }
}
.hero_image {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.hero_image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.hero_content {
  position: relative;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  padding: 15rem 0;
}
@media (max-width: 480px) {
  .hero_content {
    padding: 7rem 0;
  }
}
.hero_content h1 {
  margin: 3rem 0;
  text-shadow: 0 0 3px black;
}
@media (max-width: 768px) {
  .hero_content h1 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .hero_content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero_content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.hero_content h3 {
  text-transform: uppercase;
  text-shadow: 0 0 3px black;
}
.hero_actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: start;
  margin-top: 2rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(200px, 3fr);
  gap: 3rem;
}
@media (max-width: 640px) {
  .intro {
    grid-template-columns: repeat(1, minmax(340px, 1fr));
  }
}
.intro article h2 {
  margin-bottom: 3rem;
}
.intro article:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro article:first-child div {
  height: 100%;
}
.intro article:last-child div {
  width: 100%;
}
.intro article img {
  text-align: center;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-height: 460px;
}
@media (max-width: 640px) {
  .intro article img {
    width: 100%;
  }
}

.lastNews {
  background-color: rgba(7, 34, 72, 0.99);
  color: #ffffff;
}
.lastNews h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.lastNews_wrapper .card {
  display: flex;
  flex-direction: column;
}
.lastNews_wrapper .card_body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  font-size: 1.3rem;
}
.lastNews_wrapper .card_body h4 {
  font-size: 1.4rem;
}
.lastNews_wrapper .readMore {
  display: block;
}
.lastNews_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.lastNews_actions .slider_news-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer {
  border-top: 3px solid #ef3139;
  background-color: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  font-size: 1.4rem;
}
.footer .logo {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
  line-height: 1.3;
  flex-direction: column;
  justify-content: flex-start;
}
.footer .logo img {
  height: 100px;
}
.footer .logo h4 {
  text-align: center;
  text-transform: uppercase;
  line-break: loose;
  padding: 0 10%;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.footer_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer_wrapper_col {
  flex: 1 0 210px;
}
.footer_wrapper_col:nth-child(1) {
  flex: 1 0 280px;
}
.footer_wrapper_col h5 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer_wrapper_col > *:not(h5) {
  line-height: 2;
  font-size: 1.6rem;
}
.footer_wrapper img {
  max-width: 100%;
  height: 60px;
}
.footer_wrapper_brand {
  flex: 1 0 280px;
}

.bottomBar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
}
.bottomBar p {
  font-size: 1.2rem;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.about h2 {
  line-height: 1;
  font-size: 3rem;
  grid-area: title;
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #072248;
}
.about h2:after {
  content: "";
  display: inline-block;
  height: 3px;
  background-color: #ef3139;
  flex: 1;
}
.about_description {
  grid-area: text;
  text-align: justify;
}
.about h3, .about h4, .about h5, .about h6 {
  text-transform: uppercase;
  line-height: 2;
}
.about p {
  font-weight: 400;
  text-transform: none;
}

.courseLevel article {
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  gap: 3rem;
}
@media (max-width: 768px) {
  .courseLevel article {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .courseLevel article {
    grid-template-columns: 1fr;
  }
}
.courseLevel .card {
  transition: 0.3s linear;
  cursor: pointer;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.courseLevel .card_body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  font-size: 1.3rem;
}
.courseLevel .card_body h4 {
  font-size: 1.4rem;
}
.courseLevel .card:hover {
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.4);
}
.courseLevel_single article {
  text-align: justify !important;
}
.courseLevel_single p {
  margin-bottom: 1rem;
}
.courseLevel_single ul, .courseLevel_single ol {
  list-style-type: circle;
  list-style-position: inside;
}
.courseLevel_single ul li, .courseLevel_single ol li {
  display: flex;
  align-items: center;
}
.courseLevel_single ul li:before, .courseLevel_single ol li:before {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  margin-right: 5px;
  background-color: #000000;
}
.courseLevel_single_sp {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: justify !important;
}
.courseLevel_single_sp .accordion_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}
@media (max-width: 640px) {
  .courseLevel_single_sp .accordion_footer {
    flex-direction: column;
  }
}
.courseLevel_single_sp .accordion_footer .btn-primary {
  cursor: unset;
}
.courseLevel_single_sp .accordion_footer .btn-primary:hover {
  opacity: 1;
}
.courseLevel_single_sp .accordion_footer div {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 640px) {
  .courseLevel_single_sp .accordion_footer div {
    flex-direction: column;
  }
}
.courseLevel_single_sp .accordion_footer .btn_rounded-active {
  color: #072248;
}

.newsSingle {
  display: grid;
  grid-template-columns: auto minmax(320px, 320px);
  gap: 3rem;
}
@media (max-width: 960px) {
  .newsSingle {
    grid-template-columns: auto;
  }
}
.newsSingle_content {
  position: relative;
  line-height: 1.8;
  text-align: justify;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
}
.newsSingle_content p {
  width: 100%;
}
.newsSingle_content img:not(.thumbnail) {
  width: 48%;
  height: 200px;
  display: inline;
  object-fit: cover;
  margin: 10px 1% 10px;
  line-height: 1;
}
.newsSingle_content img:not(.thumbnail):before {
  content: "";
  clear: both;
  display: block;
}
@media (max-width: 740px) {
  .newsSingle_content img:not(.thumbnail) {
    width: 100%;
  }
}
.newsSingle_content img {
  display: block;
  margin: 1rem 0;
  max-height: 450px;
  object-fit: contain;
  width: 100%;
  height: auto;
}
.newsSingle_content.thumbnail {
  object-fit: cover;
  padding: 0;
  margin: 0 0 2rem;
}
.newsSingle_content ul {
  list-style: circle inside;
}

.allNews {
  background-color: #ffffff;
}
.allNews_pagination {
  margin-bottom: 3rem;
  gap: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
}
@media (max-width: 640px) {
  .allNews_pagination {
    grid-template-columns: 1fr;
  }
}
.allNews_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .allNews_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .allNews_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .allNews_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.allNews_wrapper .card {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
}

.nastavno {
  min-height: 70vh;
  border-radius: 20px;
  margin-bottom: 20px;
}
.nastavno .teamCard {
  height: auto;
}
.nastavno .teamCard_info {
  min-height: unset;
}
.nastavno_kategorije {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.nastavno_kategorije .active {
  display: flex;
  border-bottom: 1px solid #ef3139;
  background-color: #ef3139;
  color: #ffffff;
  border-bottom: 1px solid #ef3139;
  border-radius: 10px;
}
.nastavno_kategorije .inactive {
  display: flex;
}
.nastavno_kategorije a, .nastavno_kategorije button {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  color: #072248;
  font-weight: bold;
  border-bottom: 1px solid #072248;
  transition: 0.3s linear;
}
.nastavno_kategorije a:hover, .nastavno_kategorije button:hover {
  background-color: #ef3139;
  color: #ffffff;
  border-bottom: 1px solid #ef3139;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .nastavno_kategorije {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.nastavno_osoblje {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .nastavno_osoblje .active {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .nastavno_osoblje .active p {
    font-size: 16px;
  }
}
.nastavno_osoblje .about_fakultet_item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  background: #072248;
  padding: 10px;
  border-radius: 10px;
}
.nastavno_osoblje .about_fakultet_item svg {
  padding: 5px;
  border-radius: 100%;
  font-size: 24px;
  background: #CCCCCC;
  width: 40px;
  height: 40px;
  color: #072248;
}
.nastavno_osoblje .about_fakultet_item p {
  font-size: 18px;
  color: #ffffff;
}
.nastavno_osoblje .about_fakultet_item:hover {
  background: #ef3139;
}
.nastavno_osoblje .inactive {
  display: none;
}

.nenastavno .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nenastavno .wrapper_item:after {
  content: "";
  display: block;
  background-color: #CCCCCC;
  height: 1px;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}
.nenastavno .wrapper_item .card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.nenastavno .wrapper_item .card .title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #072248;
  width: 100%;
}
.nenastavno .wrapper_item .card > div {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nenastavno .wrapper_item .card_body {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
  flex: 1 0 calc(50% - 2rem);
}
.nenastavno .wrapper_item .card_body:hover {
  margin: 0;
  padding: 1rem;
}
.nenastavno .wrapper_item .card_body img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}
.nenastavno .wrapper_item .card_body .card_body_items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nenastavno .wrapper_item .card_body .card_body_items .ime {
  font-weight: bolder;
  font-size: 2.5rem;
  color: #072248;
}
.nenastavno .wrapper_item .card_body .card_body_items .role, .nenastavno .wrapper_item .card_body .card_body_items .obrazovanje, .nenastavno .wrapper_item .card_body .card_body_items .email {
  color: rgb(122, 122, 122);
}
.nenastavno .wrapper_item .card_body .card_body_items .email {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .nenastavno .wrapper_item .card_body {
    flex-direction: column !important;
  }
  .nenastavno .wrapper_item .card_body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.accordion {
  border-radius: 10px;
  background-color: #ffffff;
}
.accordion:not(:last-child) {
  margin-bottom: 2rem;
}
.accordion_title {
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid #072248;
  transition: background-color 0.3s linear;
}
.accordion_title.active {
  background-color: #072248;
  color: #ffffff;
  border-radius: 10px;
}
.accordion_title h4 {
  flex-grow: 1;
}
.accordion_title .icon {
  font-weight: 700;
  font-size: 2rem;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #072248;
  border-radius: 5px;
}
.accordion_title .icon:after, .accordion_title .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
.accordion_title .icon:after {
  width: 50%;
  height: 2px;
}
.accordion_title .icon:before {
  height: 50%;
  width: 2px;
  transition: 0.3s linear;
}
.accordion_title .icon svg {
  position: absolute;
  inset: 0;
}
.accordion_title .icon:not(.active) svg:first-of-type {
  visibility: visible;
}
.accordion_title .icon:not(.active) svg:last-of-type {
  visibility: hidden;
}
.accordion_title .icon.active {
  color: #ffffff;
  position: relative;
  width: 20px;
  height: 20px;
}
.accordion_title .icon.active:before {
  transform: translate(-50%, -50%) scaleY(0);
}
.accordion_title .icon.active svg:nth-child(1) {
  visibility: visible;
}
.accordion_title .icon.active svg:nth-child(2) {
  visibility: hidden;
}
.accordion_body {
  border-radius: 0 0 10px 10px;
  transform-origin: top center;
  overflow: hidden;
  transition: height 0.3s ease;
}
.accordion_body > div {
  padding: 20px;
}
.accordion_body > div * {
  line-height: 1.4;
}
.accordion_body img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-top: 20px;
}
.accordion_body ol, .accordion_body ul {
  list-style-position: inside;
}

/*----------------------------------------------------*/
/* Team Style */
/*----------------------------------------------------*/
.team {
  text-align: center;
  position: relative;
  transition: 0.3s linear;
  cursor: pointer;
  /*-------------------------*/
  /* Team Image */
  /*-------------------------*/
  /*-------------------------*/
  /* Team Info */
  /*-------------------------*/
}
.team:hover {
  z-index: 3;
}
.team-bg {
  background: #ffffff;
  position: absolute;
  left: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
  z-index: 1;
  opacity: 0;
  transition: 0.3s linear;
  border-radius: 15px;
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
}
.team:hover .team-bg {
  opacity: 1;
}
.team-img {
  overflow: hidden;
}
.team-img img {
  position: relative;
  z-index: 2;
  transform: scale(1);
  border-radius: 5px;
  transition: 0.3s linear;
  width: 100%;
  height: 100%;
}
.team:hover .team-img img {
  transform: scale(1.1);
}
.team-info {
  position: relative;
  z-index: 2;
  padding: 20px 0 0;
}
.team-info .team-name {
  color: #072248;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s linear;
}
.team-info .team-name:hover {
  color: #ef3139;
}
.team-info p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0;
}

.dekanat .teamCard_wrapper {
  margin: 5rem auto;
  min-height: 50vh;
  grid-auto-rows: 1fr;
  pointer-events: none;
  gap: 7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dekanat .teamCard_wrapper > * {
  pointer-events: auto;
}
.dekanat .teamCard_wrapper > * img {
  transition: 0.3s linear all;
}
@media (max-width: 1000px) {
  .dekanat .teamCard_wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
  }
}
@media (max-width: 576px) {
  .dekanat .teamCard_wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 400px;
  }
}

.teamCard {
  min-width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.teamCard:hover .teamCard_info {
  transform: translateY(-60%);
  width: 100%;
}
.teamCard_img {
  position: relative;
}
.teamCard_img:after {
  position: absolute;
  inset: 0;
  display: block;
}
.teamCard_img img {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 1rem;
}
.teamCard_info {
  position: relative;
  padding: 1rem;
  width: 95%;
  margin: -10% auto 0;
  background: linear-gradient(rgba(7, 34, 72, 0.9), rgba(7, 34, 72, 0.9));
  color: #ffffff;
  border-radius: 1rem;
  text-align: center;
  text-shadow: 0 0 3px #000000;
  flex: 1;
  min-height: 105px;
  transition: 0.3s linear;
}
.teamCard_info h4 {
  transition: 0.3s linear;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.teamCard_info h4 span {
  margin-right: 5px;
}
.teamCard_info h4 span:last-child {
  margin-right: 0;
}
.teamCard_info h3 {
  line-height: 1.3;
  text-align: center;
}
.teamCard_info h3 span {
  margin-right: 5px;
}
.teamCard_info cite {
  width: 100%;
  display: inline-block;
  text-align: right;
  margin-top: 0.5rem;
}

.documents {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
@media (max-width: 720px) {
  .documents {
    grid-template-columns: 1fr;
  }
}
.documents img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 720px) {
  .documents aside {
    display: none;
  }
}
.documents article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  gap: 1rem;
}
.documents article .item {
  border-top: 1px solid #CCCCCC;
}
.documents article .item:last-of-type {
  border-bottom: 1px solid #CCCCCC;
}
.documents article a {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.documents article a span:first-child {
  font-size: 1.8rem;
  margin-right: 1rem;
}
.documents .accordion {
  border-radius: 0;
  margin: 1rem 0 0 0;
}
.documents .accordion_title {
  padding: 1rem;
  border-radius: 0;
}
.documents .accordion_body {
  overflow: unset;
}
.documents .accordion_body > div {
  padding: 1rem 0 0 0;
}

.studyProgram.grid-3-1 {
  grid-template-columns: minmax(auto, 11fr) minmax(290px, 1fr);
  gap: 4rem;
}
@media (max-width: 992px) {
  .studyProgram.grid-3-1 {
    grid-template-columns: 1fr;
  }
}
.studyProgram article {
  text-align: justify;
}
.studyProgram article h3 {
  line-height: 3;
  color: #072248;
  font-weight: 700;
}
.studyProgram aside {
  min-width: 290px;
}
.studyProgram aside ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CCCCCC;
  line-height: 1.6;
  gap: 5px;
}
.studyProgram aside ul li span:nth-child(1) {
  font-weight: 600;
}
.studyProgram aside ul li span:nth-child(2) {
  align-self: flex-end;
  line-height: 1.6;
  text-align: right;
}
.studyProgram.table {
  overflow-x: auto;
}
@media (max-width: 480px) {
  .studyProgram.table {
    overflow-x: scroll;
  }
}
.studyProgram table {
  width: 100%;
  min-width: 400px;
}
@media (max-width: 576px) {
  .studyProgram table {
    font-size: 1.3rem;
    line-height: 1.1;
  }
}
.studyProgram table thead {
  background-color: #072248;
  color: #ffffff;
}
.studyProgram table th, .studyProgram table td {
  padding: 1rem 0.5rem;
  border: 1px solid #000000;
}
@media (max-width: 576px) {
  .studyProgram table th, .studyProgram table td {
    padding: 1rem 0.3rem;
  }
}
.studyProgram table th:not(:nth-child(2)), .studyProgram table td:not(:nth-child(2)) {
  text-align: center;
}
.studyProgram table th.godina, .studyProgram table td.godina {
  text-align: left;
}
.studyProgram table .active {
  background-color: rgba(7, 34, 72, 0.2);
}

.lastNews_sidebar .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.4rem;
  background-color: #ffffff;
}
.lastNews_sidebar h3 {
  background-color: #072248;
  color: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}
.lastNews_sidebar .latestNews {
  display: grid;
  grid-template-columns: 60px 5fr;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.3s linear;
  height: 60px;
  gap: 5px;
}
.lastNews_sidebar .latestNews:hover {
  color: #ef3139;
}
.lastNews_sidebar .latestNews:hover img {
  transform: scale(1.2);
}
.lastNews_sidebar .latestNews .thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.lastNews_sidebar .latestNews .thumbnail img {
  height: 60px;
  width: 60px;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.lastNews_sidebar .latestNews .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1;
  font-size: 1.3rem;
}
.lastNews_sidebar .latestNews .content span {
  background-color: #072248;
  color: #ffffff;
  padding: 0.4rem;
  font-size: 1rem;
  border-radius: 5px;
}

.newsCard.cardOverlay .content * {
  background: transparent !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .osoblje_single.grid-1-3 {
    grid-template-columns: 1fr;
  }
}
.osoblje_single img {
  width: 100%;
  min-width: 280px;
}
.osoblje_single h2 {
  color: #072248;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.osoblje_single h2 span {
  font-size: 0.7em;
  font-weight: 400;
  color: #ef3139;
  margin-left: 1rem;
}
.osoblje_single p span {
  font-weight: 700;
  margin-right: 1rem;
}
.osoblje_single .obrazovanje {
  margin: 2rem 0;
}
.osoblje_single .obrazovanje li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "godina tema" "godina ustanova";
}
.osoblje_single .obrazovanje li span:nth-child(1) {
  padding: 0 2rem 2rem 0;
  grid-area: godina;
  margin-right: 2rem;
  position: relative;
  font-weight: 700;
}
.osoblje_single .obrazovanje li span:nth-child(1):before {
  content: "";
  display: block;
  height: 100%;
  width: 0.5rem;
  position: absolute;
  background-color: rgba(204, 204, 204, 0.8);
  left: 100%;
  transform: translateX(-50%);
}
.osoblje_single .obrazovanje li span:nth-child(1):after {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  background-color: #072248;
  border-radius: 50%;
  position: absolute;
  left: 100%;
  top: 0;
  transform: translate(-50%, 50%);
}
.osoblje_single .obrazovanje li span:nth-child(2) {
  grid-area: tema;
}
.osoblje_single .obrazovanje li span:nth-child(3) {
  grid-area: ustanova;
  padding-bottom: 2rem;
}

.raspored article h4 {
  font-size: 2rem;
}
.raspored article h5 {
  font-size: 1.8rem;
  line-height: 2em;
}
.raspored article ul li {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e1e1;
  transition: 0.3s linear;
}
.raspored article ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.raspored article ul li a {
  display: block;
  transition: 0.3s linear;
}
.raspored article ul li svg {
  margin-right: 1rem;
}
.raspored article ul li:hover {
  background-color: #e2e1e1;
}
.raspored article ul li:hover a {
  transform: translateX(10px);
}

.kontakt {
  line-height: 1.3;
  grid-template-areas: "leftSide rightSide";
}
@media (max-width: 980px) {
  .kontakt {
    grid-template-columns: 100%;
    grid-template-areas: "rightSide rightSide";
    gap: 0;
  }
}
.kontakt article:nth-of-type(1) {
  grid-area: leftSide;
  min-height: 80vh;
}
@media (max-width: 980px) {
  .kontakt article:nth-of-type(1) {
    min-height: unset;
  }
}
.kontakt article:nth-of-type(1) img {
  height: 100%;
  display: block;
  object-fit: cover;
}
.kontakt article:nth-of-type(2) {
  grid-area: rightSide;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kontakt article > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .kontakt article > div {
    grid-template-columns: 1fr;
  }
}
.kontakt article > div dl {
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}
.kontakt article > div dl dt {
  font-weight: 700;
}
.kontakt article > div dl dd:not(:last-child) {
  margin-bottom: 2rem;
}
.kontakt article > div dl dd span {
  display: inline-block;
  width: 100%;
}

.contactForm {
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.4);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contactForm input, .contactForm textarea, .contactForm button {
  border: 1px solid #CCCCCC;
}
.contactForm .inputGroup {
  position: relative;
}
.contactForm .inputGroup:hover label {
  top: 0;
}
.contactForm .inputGroup label {
  position: absolute;
  padding: 0 1rem;
  left: 0;
  top: 0;
  transform: translate(0, 50%);
  transition: 0.3s linear;
  line-height: 1.5;
}
.contactForm .inputGroup input, .contactForm .inputGroup textarea {
  width: 100%;
  padding: 1.5rem 1rem;
  resize: none;
}
.contactForm .inputGroup input:not(:placeholder-shown) + label, .contactForm .inputGroup input:focus + label, .contactForm .inputGroup input:active + label, .contactForm .inputGroup textarea:not(:placeholder-shown) + label, .contactForm .inputGroup textarea:focus + label, .contactForm .inputGroup textarea:active + label {
  transform: translate(5px, -50%);
  background-color: #072248;
  color: #ffffff;
  border-radius: 1rem;
}
.contactForm .inputGroup span {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  transform: translateY(0);
  background-color: #ef3139;
  padding: 2px 10px;
  border-radius: 15px 15px 15px 15px;
  color: #ffffff;
  box-shadow: 0px 5px 8px 1px rgba(0, 0, 0, 0.5);
  animation-name: fadeInError;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.contactForm .btn {
  align-self: flex-end;
}
@keyframes fadeInError {
  from {
    transform: translateY(-25%);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.nauka {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.nauka article {
  grid-template-areas: "text image";
}
.nauka article:nth-child(even) {
  grid-template-areas: "image text";
}
@media (max-width: 768px) {
  .nauka article:nth-child(even) {
    grid-template-areas: "image" "text";
  }
}
.nauka article div:nth-child(1) {
  grid-area: text;
}
.nauka article div:nth-child(2) {
  grid-area: image;
}
@media (max-width: 768px) {
  .nauka article {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
  }
}

.izdavac .sectionTitle {
  margin: 3rem 0;
}
.izdavac.udzbenici img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
}
.izdavac .grid > div {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}
.izdavac .book_wrapper {
  position: relative;
  perspective: 800px;
}
.izdavac .book_wrapper:hover .back {
  transform: rotateY(0deg);
}
.izdavac .book_wrapper:hover .front {
  transform: rotateY(-180deg);
}
.izdavac .book_wrapper > div {
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  transition: transform 0.3s linear;
  cursor: pointer;
  transform-style: preserve-3d;
  border-radius: 20px;
  overflow: hidden;
}
.izdavac .book_wrapper .front {
  z-index: 2;
  position: relative;
}
.izdavac .book_wrapper .back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  background-color: #072248;
  color: #ffffff;
  z-index: 1;
  padding: 10px;
}
.izdavac .book_wrapper .back > div {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.izdavac .book_wrapper .back > div:after, .izdavac .book_wrapper .back > div:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
}
.izdavac .book_wrapper .back > div:after {
  border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  border-top: 2px solid #ef3139;
  border-left: 2px solid #ef3139;
  left: 0;
  top: 0;
}
.izdavac .book_wrapper .back > div:before {
  right: 0;
  bottom: 0;
  border-right: 2px solid #ef3139;
  border-bottom: 2px solid #ef3139;
  border-bottom-right-radius: 10px;
}
.izdavac .book_wrapper .back > div div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.izdavac .book_wrapper .back h4 {
  padding: 0 5px;
  line-height: 1.3;
  font-size: 2rem;
}
.izdavac .book_wrapper .back p, .izdavac .book_wrapper .back h4 {
  text-align: center;
}

.akreditovaniCentar_info .location-map {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}
.akreditovaniCentar_info > div {
  font-style: normal;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.4);
  padding: 2rem;
  line-height: 1.6;
}
.akreditovaniCentar_info > div dt {
  font-weight: 600;
}

.googleMap_100vw iframe {
  width: 100%;
}

.social {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  cursor: pointer;
  color: #ffffff;
}
.social .circle {
  background-color: #ef3139;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: relative;
  z-index: 100;
  transition: color 0.3s linear;
}
.social .icons {
  border-radius: 2rem;
  transform-origin: right center;
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 99;
}
.social:hover ul {
  transform: translateX(0);
}
.social:hover ul li {
  animation-name: twist-forward;
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}
.social:hover ul li:not(:first-child) {
  margin-left: 0.5rem;
}
.social:hover .icons {
  visibility: visible;
}
.social:hover .circle {
  color: #072248;
}
.social ul {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1.5s ease-in-out;
  transform: translateX(100%);
  padding-right: 5rem;
  z-index: 98;
}
.social ul li {
  background-color: #ef3139;
  font-size: 2rem;
  height: 2em;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation-duration: 1s;
  animation-name: twist-backward;
  animation-timing-function: linear;
  transition: margin 1s ease-in-out;
  transition-delay: 0s;
  border-radius: 3rem !important;
}
.social ul li a {
  line-height: 1;
  display: block;
}
.social ul li > * {
  position: relative;
  z-index: 2;
}
.social ul li:last-child {
  border-radius: 0 3rem 3rem 0;
}
.social ul li:first-child {
  border-radius: 3rem 0 0 3rem;
}
.social ul li:hover:after {
  transform: scale(1);
}
.social ul li:after {
  content: "";
  height: 4rem;
  width: 4rem;
  background-color: #072248;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3rem;
  z-index: 1;
  transform: scale(0);
  transition: 0.3s linear;
}

@keyframes twist-backward {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes twist-forward {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.searchInput {
  display: flex;
  gap: 1rem;
}
@media (max-width: 640px) {
  .searchInput {
    width: 100%;
  }
}
.searchInput input {
  border: 1px solid #000000;
  height: 100%;
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  padding: 0 1rem;
}
@media (max-width: 640px) {
  .searchInput input {
    max-width: unset;
    padding: 1rem 1rem;
  }
}
.searchInput button, .searchInput a {
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners_intro {
  margin-bottom: 20px;
}
.partners_intro h2 {
  line-height: 1.6;
}
.partners_intro ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.partners_card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1020px) {
  .partners_card {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .partners_card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .partners_card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .partners_card {
    grid-template-columns: repeat(1, 1fr);
  }
}
.partners_logo {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners_footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0 0;
}
.partners_flag {
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  gap: 3px;
  align-items: center;
  height: 1.2em;
  border-radius: 0.6em;
  overflow: hidden;
  padding-right: 5px;
  box-shadow: 0px 0px 3px 3px #cccccc;
}
.partners_flag p {
  line-height: 1;
}
.partners_flag img {
  height: 1.2em;
  width: 1.2em;
  border-radius: 50%;
  display: block;
  vertical-align: middle;
}
.partners_body {
  flex: 1;
}
.partners_item {
  border: 1px solid #CCCCCC;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: 0.3s linear;
  display: flex;
  flex-direction: column;
}
.partners_item:hover {
  cursor: pointer;
  transform: translateY(-10px);
}
.partners_item .headLine {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
}
.partners_item h5 {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.3;
}

.gallery {
  display: grid;
  column-gap: 20px;
  row-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.modal-content {
  position: relative;
}
.modal-content:hover .modal-close-btn {
  top: 1%;
}
.modal-close-btn {
  color: #ffffff;
  position: absolute;
  top: -20%;
  left: 50%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  transition: 0.3s linear;
  line-height: 3em;
  text-align: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.modal-close-btn:hover:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close-btn:hover:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close-btn:after, .modal-close-btn:before {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.1s ease-in-out;
}
.modal-close-btn:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.modal-close-btn:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.pagination {
  display: flex;
  justify-content: space-between;
}
.pagination .active {
  background-color: #888888;
  border-radius: 5px;
}
.pagination .box {
  font-size: 2rem;
  height: 2em;
  width: 2em;
  border-radius: 5px;
  border: 1px solid gray;
  line-height: 2em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  display: flex;
  gap: 0.5rem;
}
.calendar [data-tooltip-id] {
  cursor: pointer;
  transition: box-shadow 0.2s linear;
}
.calendar [data-tooltip-id]:hover {
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.4);
}
.calendar h3 {
  text-align: center;
  margin-bottom: 20px;
}
.calendar .legenda {
  position: relative;
}
.calendar .legenda > p {
  margin: 50px 0 25px;
}
.calendar .legenda ul {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
}
@media (max-width: 550px) {
  .calendar .legenda ul {
    grid-template-columns: repeat(2, auto);
  }
}
.calendar .legenda ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.calendar .legenda ul li i {
  height: 2em;
  width: 2em;
  border-radius: 50%;
  display: inline-block;
  aspect-ratio: 1;
}
.calendar .legenda ul li span {
  flex: 1;
  display: inline-block;
}
.calendar-wraper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1150px) {
  .calendar-wraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960px) {
  .calendar-wraper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .calendar-wraper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .calendar-wraper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.weekDay {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin: 5px 0;
}
.weekDay-name {
  text-align: center;
}

.tooltip {
  max-width: calc(100vw - 10px) !important;
  z-index: 100;
  position: absolute;
  display: block;
  color: #ffffff;
  padding: 8px 12px;
  background-color: #333;
  opacity: 0;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s linear;
  transform: translateY(10px);
  white-space: nowrap;
}
.tooltip > * {
  white-space: normal;
}
.tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.tooltip-arrow_down {
  position: absolute;
  top: 100%;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #333;
  opacity: 1;
  transform-origin: top left;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.month-day {
  aspect-ratio: 1;
  position: relative;
}
.month-day.exist {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.month > .empty {
  border: transparent;
}

/*--------------------------------------------*/
/* Typography Variable */
/*--------------------------------------------*/
/*--------------------------------------------*/
/* Color Variable */
/*--------------------------------------------*/
/*--------------------------------------------*/
/* Other Variable */
/*--------------------------------------------*/
/*------------------------------------*/
/* Error 404 */
/*------------------------------------*/
.error-404 .title {
  margin-top: 30px;
}

.digit {
  font-size: 230px;
  font-weight: 600;
}

.fill-primary {
  fill: #ef3139;
}

.fill-dark {
  fill: #022d62;
}

.errorPage-404 {
  padding-top: 0rem;
}
.errorPage-404 article {
  padding: 20rem 0 10rem;
  background-color: #ffffff;
  text-align: center;
}
.errorPage-404 article h2 {
  color: #072248;
  margin: 3rem 0;
}
.errorPage-404 article h6 {
  font-size: 1.6rem;
  color: #072248;
  font-weight: 500;
}
.errorPage-404 article .btn {
  margin-top: 3rem;
}
.errorPage-404 .w-100 {
  width: 80%;
}
.errorPage-404 .h-100 {
  height: 100%;
}

/*# sourceMappingURL=style.css.map */
