/*
  GLOBAL
  ------
*/

html,
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2rem;
}

/*
  LAYOUT
  ------
*/

/*
.container {
  max-width: 1440px;
}
*/

.mt-lg {
  margin-top: 10rem;
}

/*
  LINK
  ----
*/

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*
  HEADLINES
  ---------
*/

h1,
.h1 {
  font-weight: 900;
  font-size: 2.5rem;
}

h1.hero {
  font-size: 4.5rem;
}

h1:not(.hero)::after {
  content: '';
  display: block;
  height: .25rem;
  width: 4rem;
  margin-top: 1.5rem;
  margin-bottom: 0rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

h2,
.h2 {
  font-weight: 900;
  font-size: 2rem;
}

.h3 {
  font-weight: 900;
  font-size: 1.5rem;
}

/*
  TEXT COLORS
  -----------
*/

.text-success {
  color: #00ff94 !important;
}

.text-hover-success {
  transition: color .15s ease-in-out;
}

.text-hover-success:hover {
  color: #00ff94 !important;
}

.btn-success {
  background-color: #00ff94 !important;
  border-color: #00ff94 !important;
}

.text-black-success {
  transition: color .15s ease-in-out;
}

.text-hover-black:hover {
  color: #000000 !important;
}

/*
  BACKGROUND COLORS
  -----------------
*/

.bg-success {
  background-color: #00ff94 !important;
}

.bg-hover-success {
  transition: background-color .15s ease-in-out;
}

.bg-hover-success:hover {
  background-color: #00ff94 !important;
  color: #000;
}

.bg-hover-success:hover .text-success {
  color: #000 !important;
}

.bg-primary {
  background-color: #0b0e30 !important;
}

/*
  SCROLL ARROW
  ------------
*/

a[href="#reseni"] {
  transition: color .15s ease-in-out,
              bottom .15s ease-in-out;
}

a[href="#reseni"]:hover {
  bottom: -1rem !important;
}

/*
  NAVBAR
  ------
*/

.navbar-nav .nav-item .nav-link {
  color: #fff;
  position: relative;
  top: 0;
  transition: color .15s ease-in-out,
              top .15s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #00ff94;
  top: .25rem;
  text-decoration: none;
}

/*
  BUTTONS
  -------
*/

.btn i {
  transition: margin-left .15s ease-in-out;
}

.btn:hover i {
  margin-left: 1.5rem !important;
}

.nav-pills .nav-item .nav-link {
  border: .125rem solid transparent;
  color: #fff;
}

.nav-pills .nav-item .nav-link.active {
  border: .125rem solid #00ff94;
  background-color: #00ff94;
  color: #000;
}

.nav-pills .nav-item:hover .nav-link:not(.active) {
  border: .125rem solid #00ff94;
  color: #00ff94 !important;
  cursor: pointer;
}

/*
  FORM
  ----
*/

.form-control {
  border: .125rem solid transparent;
  height: auto !important;
}

.form-control:focus {
  border: .125rem solid #00ff94 !important;
  background-color: #000 !important;
  box-shadow: none;
}

.form-control:hover {
  border: .125rem solid #00ff94 !important;
}

label {
  padding-left: calc(1.5rem + .125rem) !important;
}

/*
  GALLERY
  -------
*/

.hover-opacity-50 {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color .15s ease-in-out;
}

.hover-opacity-50:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, .25);
}

.hover-opacity-50 * {
  transition: opacity .15s ease-in-out;
  opacity: 0;
}

.hover-opacity-50:hover * {
  opacity: 1;
}

@media (min-width: 768px) {
  .w-lg-auto {
    width: auto !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .bg-lg-none {
    background-color: transparent !important;
  }

  h1,
  .h1 {
    font-weight: 900;
    font-size: 4rem;
  }

  h1.hero {
    font-size: 9.5rem;
  }

  .w-h-lg-600 {
    width: 600px;
    height: 600px;
  }

  .pt-lg-250 {
    padding-top: 250px;
  }

  .pb-lg-150 {
    padding-bottom: 150px;
  }

  .mt-lg-0 {
    margin-top: 0rem;
  }

  .position-lg-absolute {
    position: absolute;
  }

  .service-1 {
    width: 300px !important;
    height: 300px;
    top: 0px;
  }

  .service-2 {
    width: 300px !important;
    height: 300px;
    top: 275px;
    margin-left: -750px;
  }

  .service-3 {
    width: 300px !important;
    height: 300px;
    top: 275px;
    margin-right: -750px;
  }

  .service-4 {
    width: 300px !important;
    height: 300px;
    top: 700px;
    margin-left: -525px;
  }

  .service-5 {
    width: 300px !important;
    height: 300px;
    top: 700px;
    margin-right: -525px;
  }
}

/*
  ANIMATION
  ---------
*/

.spin {
  -webkit-animation:spin 30s linear infinite;
  -moz-animation:spin 30s linear infinite;
  animation:spin 30s linear infinite;
}

@-moz-keyframes spin {
  100% { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/*
  CAROUSEL
  --------
*/

.slick-disabled {
  opacity: .5;
}
