body {
  font-family: 'Montserrat';
}
header {
  padding: 25px 100px;
  display: flex;
  align-items: center;
  background: rgba(36, 0, 74, 0.2);
  backdrop-filter: blur(2px);
}
header #logo img {
  height: 40px;
}
header .header-menu {
  margin-left: auto;
}
header .header-menu a {
  color: white;
  opacity: .6;
  margin: 0 15px 0 15px;
  transition: all .3s;
  text-decoration: none;
}
header .header-menu a:hover {
  opacity: 1;
}
header .header-right {
  margin-left: auto;
  display: flex;
  color: white;
}
header .header-right a.cta {
  margin-left: 40px;
  transition: all 0.3s;
  color: white;
  background: #0aa571;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
header .header-right a.cta:hover {
  text-decoration: none;
  transform: scale(1.5) !important;
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 30px;
  }
  header #logo img {
    height: 40px;
  }
  header .header-menu {
    display: none;
  }
  header .header-right {
    display: none;
  }
}
footer.footer-copyright {
  padding: 30px;
  background: black;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-align: center;
}
#intro {
  background-size: cover;
  background-position: 50% 50%;
  box-sizing: border-box;
  height: 100vh;
}
#intro .intro-overlay {
  position: relative;
  background: rgba(36, 0, 74, 0.5);
  color: white;
  display: flex;
  box-sizing: border-box;
  height: 100vh;
  flex-direction: column;
  padding-bottom: 80px;
}
#intro .intro-content {
  display: grid;
  padding: 70px 100px 70px 100px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
}
@media screen and (max-width: 768px) {
  #intro .intro-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    grid-gap: 0px;
  }
}
#intro .intro-img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #intro .intro-img {
    width: 60vw;
    margin: 40px auto 40px auto;
  }
}
#intro .intro-text {
  margin-top: auto;
}
#intro .intro-text h1 {
  font-family: inherit;
  color: white;
  font-size: 65px;
  font-weight: 900;
}
#intro .intro-text h2 {
  font-family: inherit;
  color: white;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 300;
  opacity: .9;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #intro .intro-text {
    margin-top: 20px;
  }
  #intro .intro-text h1 {
    font-size: 40px;
  }
  #intro .intro-text h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
#intro .intro-text .cta {
  color: white;
  background: #0aa571;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
#intro .intro-right {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #intro .intro-right {
    margin-top: auto;
  }
}
#intro .intro-numbers {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: auto;
  grid-gap: 30px;
  padding-bottom: 40px;
}
#intro .intro-numbers article {
  text-align: left;
  position: relative;
}
#intro .intro-numbers article:before {
  position: absolute;
  left: -15px;
  top: -10px;
  width: 60px;
  height: 60px;
  content: '';
  display: block;
  border-top: 4px solid #0aa571;
  border-left: 4px solid #0aa571;
}
#intro .intro-numbers article .n {
  font-weight: 800;
  font-size: 25px;
  margin-bottom: 10px;
}
#intro .intro-numbers article .t {
  font-size: 13px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #intro .intro-numbers article .n {
    font-size: 18px;
  }
  #intro .intro-numbers article .t {
    font-size: 10px;
  }
}
#intro .intro-banner {
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0px;
  height: 80px;
  background: #f5c242;
  box-sizing: border-box;
  padding-left: 130px;
  color: #24004a;
  font-size: 16px;
}
#intro .intro-banner img {
  position: absolute;
  left: 15px;
  top: 0px;
  bottom: 0px;
  height: 80px;
}
#intro .intro-banner h3 {
  color: #24004a;
  font-size: 20px;
  margin: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  #intro .intro-banner {
    bottom: 40px;
    padding-left: 90px;
  }
  #intro .intro-banner img {
    left: -10px;
  }
}
#about {
  padding: 100px;
  display: flex;
  align-items: center;
  background: #24004a;
  color: white;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  #about {
    flex-direction: column;
    padding: 30px;
  }
}
#about .icon {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  #about .icon {
    margin: 20px auto 30px auto;
  }
}
#about .icon img {
  width: 150px;
}
#about h2 {
  color: #0aa571;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 900;
  font-family: inherit;
}
#about .li {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
#about .li .iconify {
  font-size: 35px;
  color: #0aa571;
  margin-right: 20px;
  flex-shrink: 0;
}
#about .cta {
  color: white;
  background: #0aa571;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
#info {
  line-height: 1.5;
}
#info h2 {
  color: #24004a;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  font-family: inherit;
}
#profit {
  padding: 30px 0 30px 0;
  background: rgba(10, 165, 113, 0.9);
  color: white;
  line-height: 1.5;
  position: relative;
}
#profit h2 {
  color: white;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  font-family: inherit;
}
#profit:before {
  display: block;
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: red;
  z-index: -1;
  background-image: url(/image/0/3087083.jpg);
  background-size: cover;
  background-position: 50% 50%;
  filter: grayscale(100%);
}
#profit .cc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #profit .cc {
    display: block;
  }
}
#profit .cc article {
  width: 45%;
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #profit .cc article {
    width: 100%;
    margin: 20px 0 20px 0;
  }
}
#ponuka {
  padding: 80px;
  background: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #ponuka {
    padding: 30px;
  }
}
#ponuka h2 {
  color: #0aa571;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  font-family: inherit;
}
#ponuka .li {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
#ponuka .li .iconify {
  font-size: 35px;
  flex-shrink: 0;
  color: #0aa571;
  margin-right: 20px;
}
#ponuka .cc {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #ponuka .cc {
    display: block;
  }
}
#ponuka .cc article {
  order: 1;
}
#ponuka .cc .ri {
  flex-shrink: 0;
  width: calc( 50vw - 50px );
  margin-left: 100px;
  order: 2;
}
#ponuka .cc .ri img {
  width: 100%;
}
#ponuka .cc .ri img.bplogo {
  width: 25%;
  display: block;
  margin: 0px auto 40px auto;
  opacity: .6;
}
@media screen and (max-width: 768px) {
  #ponuka .cc .ri {
    width: 100%;
    margin: 20px 0 20px 0;
  }
}
#faq {
  padding: 30px 0 30px 0;
  background: #dedede;
  color: black;
}
#faq h2 {
  color: black;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 700;
  font-family: inherit;
}
#faq h3 {
  font-family: inherit;
  margin-bottom: 4px;
  padding-bottom: 0;
  line-height: 1.1;
  color: black;
  font-weight: 600;
  font-size: 18px;
}
#faq p {
  margin-top: 0px;
  margin-bottom: 25px;
}
.formbox {
  width: 95%;
  max-width: 100%;
}
.formbox label {
  color: #aaaaaa;
  display: block;
  font-size: 16px;
  margin-top: 15px;
  font-family: inherit;
  text-transform: uppercase;
}
.formbox input,
.formbox textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #444444;
  color: white;
  background: none;
  font-family: inherit;
  border-radius: 5px;
}
.formbox input:focus,
.formbox textarea:focus {
  outline-color: #24004a;
}
.formbox button {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background: #24004a;
  border-radius: 5px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  border: none;
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 23px;
  font-family: inherit;
}
.formbox .radio {
  display: flex;
}
.formbox .radio a {
  background: #dedede;
  padding: 5px 10px;
  flex: 1;
  margin-left: 15px;
  text-align: center;
  text-transform: uppercase;
  color: black;
  border-radius: 5px;
  cursor: pointer;
}
.formbox .radio a:nth-of-type(1) {
  margin-left: 0;
}
.formbox .radio a.active {
  background: black;
  color: white;
}
.formbox .mailform-alert {
  width: 350px;
  border-radius: 5px;
}
#kontakt {
  padding: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  background: black;
  color: white;
}
@media screen and (max-width: 768px) {
  #kontakt {
    padding: 30px;
    display: block;
  }
}
#kontakt h2 {
  color: white;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  font-family: inherit;
}
#kontakt .kontaktcta {
  display: block;
  padding: 10px 40px;
  background: rgba(10, 165, 113, 0.15);
  border-radius: 5px;
  margin-top: 30px;
  font-size: 20px;
  color: #0aa571;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #kontakt .kontaktcta {
    flex-direction: column;
  }
}
#kontakt .kontaktcta .iconify {
  font-size: 70px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #kontakt .kontaktcta .iconify {
    margin: 0 0 15px 0;
  }
}
#kontakt .kontaktcta:hover {
  background: #0aa571;
  color: white;
}
section .image-gallery.theme-one {
  justify-content: center;
  margin: 30px auto 30px auto;
  max-width: 800px;
  grid-gap: 30px;
}
section .image-gallery.theme-one > a {
  border-radius: 2px;
  border: 5px solid white;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  filter: grayscale(100%);
}
section .image-gallery.theme-one > a h6 {
  display: none;
}
