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

html {
  font-size: 10px;
  font-family: "Work-Sans", sans-serif !important;
  scroll-behavior: smooth; }

body {
  font-size: 1.6rem !important;
  font-family: "Work-Sans", sans-serif !important; }

main {
  overflow: hidden; }

h1,
h2,
h3,
h4 {
  font-weight: normal; }

img {
  width: 100%;
  height: auto; }

label {
  cursor: pointer; }

button {
  cursor: pointer; }

picture img {
  display: block; }

body picture {
  overflow: hidden; }

a {
  text-decoration: none !important; }

input:focus,
textarea:focus {
  border-color: #000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }

button:focus {
  outline: none !important; }

@font-face {
  font-family: "Roboto";
  font-weight: bold;
  src: url("../fonts/Roboto/Roboto-Bold.ttf"); }

@font-face {
  font-family: "Roboto";
  font-weight: normal;
  src: url("../fonts/Roboto/Roboto-Regular.ttf"); }

@font-face {
  font-family: "Myraidpro";
  font-weight: normal;
  src: url("../fonts/Myraid/MYRIADPRO-SEMIBOLD.OTF"); }

@font-face {
  font-family: "Myraidpro";
  font-weight: bold;
  src: url("../fonts/Myraid/MYRIADPRO-BOLD.OTF"); }

@font-face {
  font-family: "Work-Sans";
  font-weight: normal;
  src: url("../fonts/work-sans/WorkSans-Regular.ttf"); }

@font-face {
  font-family: "Work-Sans";
  font-weight: bold;
  src: url("../fonts/work-sans/WorkSans-Bold.ttf"); }

@font-face {
  font-family: "Bebas-Neue";
  font-weight: normal;
  src: url("../fonts/bebas-neue/BebasNeue-Regular.ttf"); }

@font-face {
  font-family: "Lora";
  font-weight: normal;
  src: url("../fonts/lora/Lora-Italic.ttf"); }

h1 {
  font-size: 2.8rem; }

h2 {
  font-size: 2.6rem; }

h3 {
  font-size: 2.4rem; }

h4 {
  font-size: 2.2rem; }

h5 {
  font-size: 2rem; }

h6 {
  font-size: 1.8rem; }

.container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem; }
  @media (max-width: 1440px) {
    .container {
      max-width: 120rem; } }
  @media (max-width: 1200px) {
    .container {
      max-width: 96rem; } }
  @media (max-width: 991px) {
    .container {
      max-width: 72rem; } }
  @media (max-width: 768px) {
    .container {
      max-width: 54rem; } }

.hidden {
  display: none; }

@media (max-width: 768px) {
  .d-none-sm {
    display: none !important; } }

.m-top-1 {
  margin-top: 1rem; }
  @media (max-width: 1200px) {
    .m-top-1 {
      margin-top: 3rem; } }

.m-top-3 {
  margin-top: 3rem; }

.m-top-5 {
  margin-top: 5rem; }

.m-top-6 {
  margin-top: 6rem; }

.mute-video {
  background: url("../img/SVG/volume-mute2.svg") no-repeat center;
  background-size: 32px;
  border: 0;
  width: 32px;
  height: 32px;
  text-indent: -999px;
  position: absolute;
  top: 5%;
  left: 2%;
  z-index: 9999999;
  cursor: pointer; }

.unmute-video {
  background: url("../img/SVG/volume-high.svg") no-repeat center;
  background-size: 32px;
  position: absolute;
  top: 5%;
  left: 2%;
  z-index: 9999999;
  cursor: pointer; }

.about {
  padding: 5rem 0; }
  @media (max-width: 768px) {
    .about {
      padding: 2rem 0; } }
  .about__container {
    display: flex;
    flex-direction: column;
    gap: 5rem; }
    @media (max-width: 991px) {
      .about__container {
        gap: 0; } }
  .about__card-wrap {
    display: flex;
    gap: 2rem; }
    @media (max-width: 991px) {
      .about__card-wrap {
        flex-direction: column; } }
  .about__card-wrap-reverse {
    display: flex;
    gap: 2rem; }
    @media (max-width: 991px) {
      .about__card-wrap-reverse {
        flex-direction: column-reverse; } }
  .about__card-img {
    flex-basis: 50%; }
    @media (max-width: 991px) {
      .about__card-img {
        flex-basis: 100%; } }
  .about__card-text-top {
    flex-basis: 50%;
    padding: 0 0 3rem 3rem; }
    @media (max-width: 991px) {
      .about__card-text-top {
        flex-basis: 100%;
        padding: 0;
        margin-bottom: 2rem; } }
  .about__card-text {
    flex-basis: 50%;
    padding: 0 0 3rem 3rem; }
    @media (max-width: 991px) {
      .about__card-text {
        flex-basis: 100%;
        padding: 0; } }
  .about__heading {
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    position: relative; }
    .about__heading::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 20%;
      height: 0.3rem;
      background-color: #000; }

.background {
  height: 45vh;
  background-image: url(../img/background-1.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  .background__overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem; }
  .background__heading {
    font-size: 4rem;
    font-weight: bold;
    color: #fff; }
    @media (max-width: 768px) {
      .background__heading {
        font-size: 2rem; } }
  .background__text {
    font-size: 2rem;
    color: #fff; }
    @media (max-width: 768px) {
      .background__text {
        font-size: 1.4rem;
        text-align: center; } }

.features__container {
  display: flex; }
  @media (max-width: 768px) {
    .features__container {
      flex-direction: column; } }

.features__card-left {
  background-color: #0387ba;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  flex-basis: 50%;
  padding: 5rem; }
  @media (max-width: 1200px) {
    .features__card-left {
      padding: 3rem; } }
  @media (max-width: 768px) {
    .features__card-left {
      gap: 1rem;
      padding: 2rem; } }

.features__card-right {
  background-color: #f57f20;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  flex-basis: 50%;
  padding: 5rem; }
  @media (max-width: 1200px) {
    .features__card-right {
      padding: 3rem; } }
  @media (max-width: 768px) {
    .features__card-right {
      gap: 1rem;
      padding: 2rem; } }

.features__heading {
  font-size: 3rem;
  font-weight: bold; }
  @media (max-width: 768px) {
    .features__heading {
      font-size: 2rem; } }

.features__desc {
  font-size: 1.8rem; }
  @media (max-width: 1200px) {
    .features__desc {
      text-align: center; } }
  @media (max-width: 768px) {
    .features__desc {
      font-size: 1.4rem; } }

.footer {
  background-image: url(./../img/zemun.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }
  .footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    padding-top: 15rem;
    background-color: rgba(0, 0, 0, 0.7); }
  .footer__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20rem; }
  .footer__logo-box {
    display: flex;
    align-items: center;
    margin-bottom: 3rem; }
  .footer__logo {
    max-width: 10rem; }
    @media (max-width: 991px) {
      .footer__logo {
        max-width: 7rem; } }
  .footer__logo-text {
    text-transform: uppercase;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff; }
    @media (max-width: 991px) {
      .footer__logo-text {
        font-size: 2rem; } }
  .footer__text {
    font-family: "Lora", sans-serif;
    font-size: 2rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem; }
    @media (max-width: 768px) {
      .footer__text {
        font-size: 1.6rem; } }
  .footer__social-box {
    display: flex;
    gap: 2rem; }
  .footer__social {
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem;
    width: 4.5rem;
    position: relative;
    transition: all 0.3 ease-in-out; }
    .footer__social:hover {
      background-color: #000; }
    .footer__social:hover .footer__svg {
      fill: #fff; }
    .footer__social:hover .footer__tooltip {
      opacity: 1;
      transform: translate(-50%, 0); }
  .footer__svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: #000;
    transition: all 0.3s ease-in-out; }
  .footer__tooltip {
    font-size: 1.2rem;
    color: #a0a0a0;
    background-color: #000;
    position: absolute;
    bottom: 105%;
    left: 50%;
    border-radius: 10%;
    padding: 0.5rem;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all 0.3s ease-in; }
  .footer__copyright-box {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background-color: #0387ba;
    width: 100%; }
  .footer__copyright {
    color: #fff;
    font-size: 1.2rem; }
    @media (max-width: 768px) {
      .footer__copyright {
        text-align: center; } }

.gallery {
  padding-top: 10rem; }
  @media (max-width: 768px) {
    .gallery {
      padding-top: 3rem; } }
  .gallery__heading-main {
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    width: 50%;
    position: relative; }
    .gallery__heading-main::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 20%;
      height: 0.3rem;
      background-color: #000; }
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem; }
    @media (max-width: 991px) {
      .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 4rem; } }
    @media (max-width: 768px) {
      .gallery__grid {
        grid-template-columns: repeat(1, 1fr); } }
  .gallery__thumb {
    margin-bottom: 3rem; }
    @media (max-width: 991px) {
      .gallery__thumb {
        margin-bottom: 0rem; } }
  .gallery__zoom {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    transition: all 0.3s ease-in-out; }
  .gallery__transition {
    transform: scale(1.1); }

.header__top {
  background-color: #0387ba; }

.header__top-wrap {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0; }
  @media (max-width: 991px) {
    .header__top-wrap {
      padding: 0.5rem 0; } }

.header__top-link {
  font-family: "Lora", sans-serif;
  font-weight: bold;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 991px) {
    .header__top-link {
      font-size: 1.6rem; } }
  @media (max-width: 768px) {
    .header__top-link {
      font-size: 1.4rem;
      letter-spacing: normal; } }
  .header__top-link:hover {
    color: #f57f20; }
  .header__top-link:hover .header__top-svg {
    fill: #f57f20; }

.header__top-svg {
  height: 3rem;
  width: 3rem;
  fill: #fff;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 768px) {
    .header__top-svg {
      height: 1.5rem;
      width: 1.5rem; } }

.header__bottom {
  position: relative; }

.header__bottom-wrap {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 1440px) {
    .header__bottom-wrap {
      align-items: center;
      gap: 3rem; } }
  @media (max-width: 991px) {
    .header__bottom-wrap {
      padding: 0.5rem 0; } }
  @media (max-width: 768px) {
    .header__bottom-wrap {
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 1rem; } }

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

.header__logo {
  width: 27rem;
  height: 9rem; }

.header__nav-box {
  display: flex;
  align-items: center;
  margin: 0 auto; }
  @media (max-width: 768px) {
    .header__nav-box {
      display: none; } }

.header__menu-btn {
  display: none; }
  @media (max-width: 991px) {
    .header__menu-btn {
      display: flex; } }

.header__svg-menu {
  height: 3rem;
  width: 3rem;
  fill: #000;
  display: none; }

.header__social-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; }

.header__social {
  background-color: #0387ba;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  width: 4.5rem;
  position: relative;
  transition: all 0.3 ease-in-out; }
  @media (max-width: 768px) {
    .header__social {
      height: 3rem;
      width: 3rem; } }
  .header__social:hover {
    background-color: #f57f20; }
  .header__social:hover .header__svg {
    fill: #fff; }
  .header__social:hover .header__tooltip {
    opacity: 1;
    transform: translate(-50%, 0); }

.header__svg {
  height: 1.5rem;
  width: 1.5rem;
  fill: #fff;
  transition: all 0.3s ease-in-out; }

.header__tooltip {
  font-size: 1.2rem;
  color: #a0a0a0;
  background-color: #000;
  position: absolute;
  bottom: 105%;
  left: 50%;
  border-radius: 10%;
  padding: 0.5rem;
  transform: translate(-50%, 50%);
  opacity: 0;
  transition: all 0.3s ease-in; }

.hero {
  position: relative; }
  .hero__wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 2rem; }
    @media (max-width: 768px) {
      .hero__wrapper {
        flex-direction: column;
        gap: 0; } }
  .hero__slider {
    max-height: 33vw; }
    @media (max-width: 1700px) {
      .hero__slider {
        max-height: 28vw; } }
    @media (max-width: 991px) {
      .hero__slider {
        max-height: 50vw; } }
    @media (max-width: 768px) {
      .hero__slider {
        max-height: 75vw;
        order: 1; } }
  .hero__video {
    height: auto;
    width: 100%; }
  .hero__svg-arrow {
    height: 3.5rem;
    width: 3.5rem;
    fill: #fff; }
    @media (max-width: 991px) {
      .hero__svg-arrow {
        height: 2rem;
        width: 2rem; } }
  .hero__svg-arrow-prev {
    height: 3.5rem;
    width: 3.5rem;
    fill: #fff;
    margin-left: 1rem; }
    @media (max-width: 991px) {
      .hero__svg-arrow-prev {
        height: 2rem;
        width: 2rem; } }
  .hero__banner-box {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 3%;
    right: 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    padding: 4rem;
    margin-top: 3rem;
    max-width: 55%; }
    @media (max-width: 1440px) {
      .hero__banner-box {
        right: 8%; } }
    @media (max-width: 1200px) {
      .hero__banner-box {
        right: 10%;
        top: 5%;
        margin-top: 0;
        padding: 2rem; } }
    @media (max-width: 991px) {
      .hero__banner-box {
        display: none; } }
  .hero__banner-img {
    max-width: 15rem; }
    @media (max-width: 1440px) {
      .hero__banner-img {
        max-width: 15rem; } }
  .hero__banner-heading {
    text-transform: uppercase;
    line-height: 0.5;
    font-size: 5rem;
    font-weight: 800;
    color: #ff0000; }
    @media (max-width: 1200px) {
      .hero__banner-heading {
        font-size: 2.4rem;
        margin-bottom: 2rem; } }
  .hero__banner-text {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    text-align: start;
    margin: 1rem 0 3rem; }
    @media (max-width: 1440px) {
      .hero__banner-text {
        font-size: 2.4rem; } }
    @media (max-width: 1440px) {
      .hero__banner-text {
        margin-bottom: 1.5rem; } }
    @media (max-width: 991px) {
      .hero__banner-text {
        margin-bottom: 2rem; } }
    @media (max-width: 768px) {
      .hero__banner-text {
        width: 90%; } }
  .hero__banner-btn {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.7rem;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 1200px) {
      .hero__banner-btn {
        font-size: 1.4rem;
        padding: 0.5rem 1.5rem; } }
    .hero__banner-btn:hover {
      color: #000;
      background-color: #fff; }

.location {
  background-color: #f2f2f2;
  padding: 10rem 0; }
  @media (max-width: 768px) {
    .location {
      padding: 3rem; } }
  .location__container {
    display: flex;
    justify-content: space-between;
    gap: 4rem; }
    @media (max-width: 991px) {
      .location__container {
        flex-wrap: wrap;
        justify-content: center; } }
    @media (max-width: 768px) {
      .location__container {
        flex-direction: column; } }
  .location__card {
    flex-basis: 20%;
    display: flex;
    align-items: center;
    flex-direction: column; }
    @media (max-width: 991px) {
      .location__card {
        flex-basis: 45%; } }
  .location__map {
    flex-basis: 60%;
    height: 50rem; }
    @media (max-width: 991px) {
      .location__map {
        flex-basis: 100%; } }
    @media (max-width: 768px) {
      .location__map {
        flex-basis: 30rem; } }
  .location__title-box {
    display: flex;
    justify-content: center; }
  .location__title {
    text-transform: uppercase;
    font-size: 3.2rem;
    font-family: "Bebas-Neue", sans-serif;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    position: relative; }
    .location__title::after {
      content: "";
      height: 0.1rem;
      width: 5rem;
      border-bottom: 1px solid #000;
      position: absolute;
      bottom: 0;
      right: 50%;
      transform: translateX(50%); }
  .location__address-box {
    display: flex;
    gap: 1rem;
    align-self: flex-start;
    margin-bottom: 2rem; }
    @media (max-width: 991px) {
      .location__address-box {
        align-self: center; } }
  .location__link-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
    @media (max-width: 991px) {
      .location__link-box {
        align-items: center; } }
  .location__link {
    color: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in-out; }
    .location__link:hover {
      color: #4d4d4d; }
    .location__link:hover .location__svg {
      fill: #4d4d4d; }
  .location__svg-big {
    height: 6rem;
    width: 6rem;
    margin-bottom: 3rem; }
  .location__svg {
    height: 2rem;
    width: 2rem; }
  .location__btn {
    text-transform: uppercase;
    color: #000;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    margin-top: 3rem;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 1200px) {
      .location__btn {
        font-size: 1.4rem;
        padding: 1rem; } }
    .location__btn:hover {
      color: #fff;
      background-color: #000; }
  .location__desc {
    text-align: center; }

.nav {
  display: flex;
  justify-content: center; }
  @media (max-width: 991px) {
    .nav {
      flex-direction: column;
      align-items: center;
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 100vw;
      transform: translateX(100%);
      background-color: #3a3a3a;
      transition: transform 0.3s ease-in-out;
      padding: 6rem 5rem 0;
      z-index: 999; } }
  @media (max-width: 768px) {
    .nav {
      padding: 5rem 3rem 0; } }
  .nav__close-btn {
    display: none; }
    @media (max-width: 991px) {
      .nav__close-btn {
        display: flex;
        align-self: flex-end; } }
  .nav__svg-close {
    height: 3rem;
    width: 3rem;
    fill: #fff; }
  .nav__visible {
    transform: translate(0); }
  .nav__list {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 991px) {
      .nav__list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        width: 100%;
        height: 100%; } }
  .nav__item {
    list-style: none; }
    @media (max-width: 991px) {
      .nav__item {
        width: 100%; } }
    .nav__item:not(:last-child) {
      margin-right: 5rem; }
      @media (max-width: 1200px) {
        .nav__item:not(:last-child) {
          margin-right: 3rem; } }
  .nav__link {
    color: #000;
    font-size: 2rem;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 991px) {
      .nav__link {
        color: #fff;
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 2rem 0; } }
    .nav__link:hover {
      color: #f57f20; }
  .nav__active {
    color: #fff; }
    @media (max-width: 991px) {
      .nav__active {
        background-color: #967b43; } }
  .nav__logo-box {
    display: none; }
    @media (max-width: 991px) {
      .nav__logo-box {
        display: flex;
        position: absolute;
        top: 7%;
        left: 7%; } }
    @media (max-width: 768px) {
      .nav__logo-box {
        display: flex;
        position: absolute;
        top: 5%;
        left: 5%;
        width: 100%; } }

.swiper-container-hero {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  height: 100%;
  width: 100%; }

.swiper-wrapper-hero {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-button-next-hero,
.swiper-button-prev-hero {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-prev-hero {
  left: 3%;
  background-color: rgba(0, 0, 0, 0.3);
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 991px) {
    .swiper-button-prev-hero {
      height: 3.5rem;
      width: 3.5rem; } }
  .swiper-button-prev-hero:hover {
    background-color: rgba(0, 0, 0, 0.6); }

.swiper-button-next-hero {
  right: 3%;
  background-color: rgba(0, 0, 0, 0.3);
  height: 5.5rem;
  width: 5.5rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out; }
  @media (max-width: 991px) {
    .swiper-button-next-hero {
      height: 3.5rem;
      width: 3.5rem; } }
  .swiper-button-next-hero:hover {
    background-color: rgba(0, 0, 0, 0.6); }

.swiper-pagination-bullet {
  width: 1.5rem !important;
  height: 1.5rem !important;
  background: #000 !important; }
  @media (max-width: 991px) {
    .swiper-pagination-bullet {
      width: 1rem !important;
      height: 1rem !important; } }

.swiper-pagination-bullet-active {
  background: #fff !important; }

.swiper-slide-2 {
  width: 100% !important; }
