@import url('fonts.css');
@import url('bootstrap-icons.min.css');
@import url('lightbox.min.css');

:root {
  --bs-primary: #000;
  --bs-secondary: #f8f8f8;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  height: 100%;
  color: var(--bs-primary);
  background-color: #fff;
}

.spacer {
  padding-top: 107px;
}

/* TYPOGRAPHY */
h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
  font-weight: 600;
  margin: 30px 0 30px 0;
}
h1, .h1 {
  margin-top: 0;
  font-size: 45px;
}
h2, .h2 {
  font-size: 40px;
}
h3, .h3 {
  font-size: 35px;
}
h4, .h4 {
  font-size: 30px;
} 
h5, .h5 {
  font-size: 25px;
} 
h6, .h6 {
  font-size: 20px;
}

h1 small, .h1 small, 
h2 small, .h2 small, 
h3 small, .h3 small, 
h4 small, .h4 small, 
h5 small, .h5 small, 
h6 small, .h6 small {
  letter-spacing: 0;
  font-weight: 300;
  margin-left: 30px;
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: #999;
  text-decoration: none;
}

.downloads a {
  color: #e42322;
}
.downloads a:hover {
  color: var(--bs-primary);
}

small {
  font-size: 65%;
  display: block;
  font-weight: 300;
}

strong, b, .fw-bold {
  font-weight: 600;
}

hr {
  display: block;
  margin: 30px 0;
}

ul {
  list-style-image: url('../img/ul.png');
}
ul li {
  margin-bottom: 15px;
}
ul li:last-child {
  margin-bottom: 0;
}

/* button */
.btn {
  border: none;
  border-radius: 0;
}
.btn:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #444 !important;
  color: var(--bs-white);
}

/* background */
.bg-primary {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.bg-grey {
  background-color: var(--bs-secondary);
}

/* nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bs-white) !important;
  box-shadow: 0 0 15px 0 rgba(22,22,22,.25);
  transition: all .25s;
}
.navbar-brand {
  margin-right: 30px;
}
.navbar-brand img {
  width: 100%;
  max-width:120px;
}
.nav-item {
  margin-bottom: 0;
}
.nav-link {
  font-weight: 600;
  color: var(--bs-primary);
  padding: 15px 20px !important;
  transition: all .25s;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #e42322 !important; 
}

.navbar-toggler {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 22, 22, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0;
  min-width: 220px;
  box-shadow: 0 0 15px 0 rgba(22,22,22,.25);
}
.dropdown-menu li {
  margin-bottom: 0;
}
.dropdown-item {
  padding: 10px 15px !important;
  font-size: 16px;
  color: var(--bs-primary);
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.navbar.fixed-top {
  background-color: var(--bs-white) !important;
  box-shadow: 0 0 15px 0 rgba(22,22,22,.25);
}

.nav-language {
  width: auto;
  font-size: 14px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: none;
  border-radius: 0;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  box-shadow: none !important;
}

/* section */
.section {
  display: block;
  position: relative;
  padding: 60px 0;
}

.section#section-start {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 500px;
  background-image: url('../img/start-bg.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
  box-shadow: 0 0 15px 0 rgba(22,22,22,.25);
  z-index: 1;
}
.section-start-title {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  color: var(--bs-primary);
}
.section-start-title small {
  padding-top: 15px;
  font-weight: 500;
  margin: 0;
  color: #e42322;
}

.section-l::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 30px solid var(--bs-white);
}
.section-r::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 30px solid var(--bs-white);
}
.bg-grey.section-l::before,
.bg-grey.section-r::before {
  border-color: var(--bs-secondary) !important;
}
.section-l .section-text {
  padding: 30px 0 30px 30px;
}
.section-r .section-text {
  padding: 30px 30px 30px 0;
}
.section-img {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 30px;
}

/* footer */
.footer {
  display: block;
  position: relative;
  padding: 60px 0;
  margin-top: 75px;
  background-color: #000;
  color: var(--bs-white);
}
.footer a {
  color: var(--bs-white);
  transition: all .25s;
}
.footer a:hover {
  color: var(--bs-white);
  opacity: .5;
}
.footer .footer-img {
  display: block;
  margin: -141px auto 30px auto;
  width: 100%;
  max-width: 420px;
}

/* card */
.card {
  border-radius: 0;
  border: none;
  background-color: var(--bs-white);
  margin-bottom: 15px;
}
.card-body {
  padding: 30px;
}
.card-title {
  margin: 0 0 15px 0;
  font-size: 25px;
}
.card-text {
  font-size: 16px;
}
.card-body .btn {
  margin-top: 15px;
}

.card-services {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  margin: 15px 0;
}
.card-services:hover {
  background-color: #444;
}
.card-services .card-title {
  text-align: center;
  margin: 0;
  font-size: 20px;
}

/* GALLERY */
.galery-item {
  display: block;
  position: relative;
  width: 100%;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}
.galery-item::after {
  content: '';
  display: block;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  height: 50px;
  width: 50px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23fff" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  background-color: var(--bs-primary);
  transition: all .25s;
  border-radius: 50%;
}
.galery-item:hover::after {
  background-size: 30px;
}

/* FORM */
.form-control {
  border-radius: 0;
  padding: 15px;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}
.form-control:focus {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  box-shadow: none;
}

/* MODAL */
.modal-title {
  margin: 0;
}
.modal-content {
  border-radius: 0;
  border: none;
  padding: 15px;
}

/* MOBIL */
@media (max-width: 1399.98px) {
  /* GALLERY */
  .galery-item {
    min-height: 160px;
  }
}
@media (max-width: 1199.98px) {
  /* GALLERY */
  .galery-item {
    min-height: 140px;
  }
}
@media (max-width: 991.98px) {
  /* nav */
  .navbar {
    background-color: var(--bs-white) !important;
  }
  .nav-link {
    padding: 10px 0 !important;
  }

  /* section */
  .section {
    padding: 45px 0;
  }

  .section#section-start {
    min-height: 400px;
    background-image: url('../img/start-bg.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .section-start-title {
    font-size: 26px;
  }

  .section-l,
  .section-r {
    padding: 0;
  }

  .section-l::before,
  .section-r::before {
    content: '';
    display: block;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 350px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .section-l .section-text,
  .section-r .section-text {
    padding: 45px 0;
  }

  /* GALLERY */
  .galery-item {
    min-height: 180px;
  }
}
@media (max-width: 767.98px) {
  /* SECTION */
  .section#section-start {
    min-height: 300px;
  }

  /* GALLERY */
  .galery-item {
    min-height: 140px;
  }
}
@media (max-width: 575.98px) {
  /* SECTION */
  .section#section-start {
    min-height: 250px;
  }
  .section-start-title {
    font-size: 22px;
  }

  /* GALLERY */
  .galery-item {
    min-height: 120px;
  }
}
