@charset "UTF-8";

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
  --size: 15px;
  --radius: 30px;
  --font-family: "neue-haas-grotesk-display", var(--default-font-family);
  --headings-font-family: "degular-display", var(--default-font-family);
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-black: 800;
  --white: #fff;
  --black: #000;
  --main-color: #fff; /* text */
  --main-color-hover: #ed3415; /* text hover */
  --main-bg-color: #000; /* bg */
  --main-bg-color-grey: #1c1c1c; /* tmavo siva */
  --main-bg-color-grey-light: #e8f6f6; /* svetla zelena */
  --main-bg-color-custom: #ed3415; /* oranzova */
  --bg-color-red: 0;
  --bg-color-green: 0;
  --bg-color-blue: 0;
}

html {
  font-size: 20px;
}
body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: var(--font-weight-regular);
  color: var(--main-color);
  -webkit-font-smoothing: antialiased;
  background-color: var(--main-bg-color);
}
h1,
h2,
h3,
h4 {
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: var(--main-color);
  -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: var(--main-color-hover);
  border-bottom-color: transparent;
}
a.cta_button,
button.cta_button {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--main-bg-color-custom);
  padding: 1.2rem 4rem;
  border: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: padding 0.3s ease, background-color 0.3s ease;
}
a.cta_button:before,
button.cta_button:before {
  position: absolute;
  top: 15px;
  right: 25px;
  transform: rotate(0deg);
  width: 17px;
  height: 17px;
  content: "";
  background: url("../images/arrow-right.svg") center center no-repeat;
  background-size: cover;
  transition: transform 0.3s ease;
}
a.cta_button:hover:before,
button.cta_button:hover:before {
  transform: rotate(90deg);
}
a.cta_button:hover,
button.cta_button:hover {
  padding-left: 5rem;
  padding-right: 5rem;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#porozpravajme-sa,
#portfolio,
#marketing {
  scroll-margin-top: 100px;
}

/* Base-styles ............................. */

.content {
  position: relative;
  overflow: hidden;
}
.box_margin {
  margin-bottom: calc(var(--size) * 2);
}
.box_margin2 {
  margin-bottom: var(--size);
}
.box_margin3 {
  margin-bottom: calc(var(--size) * 4);
}
.box_padding {
  padding-left: calc(var(--size) * 6);
  padding-right: calc(var(--size) * 6);
}
.box_padding_vertical {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 6);
}
.img-objectfit-cover {
  object-fit: cover;
}
.img-objectfit-contain {
  object-fit: contain;
}
.img-objectfit-fill {
  object-fit: fill;
}
.radius-default {
  border-radius: var(--radius);
}
.higher-z-index {
  z-index: 100;
}
.isolation {
  isolation: isolate;
}
.custom-relative {
  position: absolute;
}
.row-smaller-gutters {
  margin-left: -5px;
  margin-right: -5px;
}
.row-smaller-gutters > [class^="col-"],
.row-smaller-gutters > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.container_bg__light {
  background-color: var(--main-bg-color-grey-light);
}
.container_bg__dark {
  background-color: var(--main-bg-color-grey);
}
.container_bg__custom {
  background-color: var(--main-bg-color-custom);
}
.container_bg_img {
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.title_box {
  position: relative;
}
.text-white .title_box {
  color: var(--white);
}
.title_box > * {
  position: relative;
  font-family: var(--headings-font-family);
  font-weight: var(--font-weight-medium);
  line-height: 1.2em;
}
.title_box :is(h1, h2) {
  font-size: calc(40px + (95 - 45) * ((100vw - 320px) / (1920 - 320)));
}
.title_box__xl :is(h1, h2) {
  font-size: calc(60px + (140 - 60) * ((100vw - 320px) / (1920 - 320)));
}
.title_box small {
  font-size: inherit;
  color: inherit;
}
.title_box small.title_color {
  color: var(--main-bg-color-custom);
}
.title_box small.title_weight {
  font-weight: var(--font-weight-black);
}
.title_shape {
  position: relative;
  isolation: isolate;
}
.title_shape:before {
  position: absolute;
  content: "";
  z-index: -10;
  opacity: 0;
  transition: opacity 1s ease;
}
.title_shape.visible:before {
  opacity: 1;
}
.title_shape__01:before {
  bottom: 0;
  left: 50%;
  width: 110%;
  height: 0;
  padding-bottom: 7%;
  background: url("../images/title-shape-01.png") center center no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1 !important;
}
.title_shape__02:before {
  top: 50%;
  left: 50%;
  width: 110%;
  height: 130%;
  background: url("../images/title-shape-02.png") center center no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}
.title_shape__03:before {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 140%;
  background: url("../images/title-shape-03.png") center center no-repeat;
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}
.subtitle {
  font-size: 1.5rem;
}

/* Header ............................................................... */

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 50px;
  z-index: 1000;
}
.header.scroll {
  position: fixed;
  top: 0;
  background-color: var(--main-bg-color);
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 6px -6px rgba(0, 0, 0, 0.05);
  animation: animateNav 0.4s linear;
}
@keyframes animateNav {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main_logo {
  position: absolute;
  top: 50%;
  left: calc(var(--size) * 6);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.main_logo img {
  width: 180px;
}
.main_logo.scroll img {
  width: 130px;
}

.mainNavigation {
  margin-left: 370px;
}
.contact-btn a {
  font-size: 1rem;
  color: var(--white);
  background-color: var(--main-bg-color-custom);
  padding: 15px 60px;
}
.contact-btn a:hover,
.contact-btn a.hi {
  color: var(--black);
  background-color: var(--white);
}

.mainNavigation {
  position: relative;
  padding: 0;
}
.mainNavigation .navbar-nav {
  margin: 0;
  background-color: var(--main-bg-color-grey);
  padding: 0 60px;
  border-radius: 200px;
}
.mainNavigation a.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--white) !important;
  padding: 15px 0 !important;
  border-bottom: 0;
}
.mainNavigation a.nav-link span {
  position: relative;
  display: inline-block;
}
.mainNavigation a.nav-link span:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-bg-color-custom);
  opacity: 0;
}
.mainNavigation a.nav-link:hover span:after,
.mainNavigation a.nav-link.hi span:after {
  width: 100%;
  left: 0;
  right: auto;
  opacity: 1;
}

/* Video-Section ............................................................... */

.headline-animate br {
  display: none;
}
.video-bg {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  top: -200px;
  z-index: -1;
}

/* Main-Content ............................................................... */

/* About-Us */

.about-us-section {
  padding-top: calc(var(--size) * 14.66);
  padding-bottom: calc(var(--size) * 18.66);
}
.about-text {
  padding-left: calc(var(--size) * 6);
}
.about-us-image {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

/* Clients */

.clientsWrapper .owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clientsWrapper .owl-carousel .client {
  max-width: 350px;
}

/* Offer */

.offerWrapper .owl-stage {
  display: flex;
}
.offerWrapper .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.offerWrapper .owl-prev,
.offerWrapper .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent !important;
  padding: 10px !important;
  border-radius: 50% !important;
  cursor: pointer;
}
.offerWrapper .owl-prev {
  left: -60px;
  background: var(--main-bg-color-custom) url("../images/arrow-left.svg") center
    center no-repeat !important;
  background-size: 50% 50% !important;
}
.offerWrapper .owl-prev:hover {
  background: #545454 url("../images/arrow-left.svg") center center no-repeat !important;
  background-size: 50% 50% !important;
}
.offerWrapper .owl-next {
  right: -60px;
  background: var(--main-bg-color-custom) url("../images/arrow-right.svg")
    center center no-repeat !important;
  background-size: 50% 50% !important;
}
.offerWrapper .owl-next:hover {
  background: #545454 url("../images/arrow-right.svg") center center no-repeat !important;
  background-size: 50% 50% !important;
}
a.offer-card {
  width: 100%;
  height: 100%;
  padding: 3rem;
  color: #7e7e7e;
  background-color: var(--main-bg-color-grey);
  border-bottom: 0;
}
a.offer-card:hover {
  color: var(--white);
  background-color: var(--main-bg-color-custom);
}
a.offer-card h3 {
  font-size: 2rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* Form */

.form-content {
  padding: 4rem 3rem;
}
.form_title h3 {
  font-size: 2.25rem;
  line-height: 1.2;
}
.form-content a.cta_button,
.form-content button.cta_button {
  background-color: #ff492a !important;
}
.form-image {
  top: 0;
  right: 0;
  width: 67%;
  max-width: 1300px;
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
  z-index: -10;
}
.form-content a:hover {
  color: #000 !important;
}

/* Services */

.services-section {
  padding-top: calc(var(--size) * 6);
  padding-bottom: calc(var(--size) * 20);
}
a.service-link {
  display: block;
  font-family: var(--headings-font-family);
  font-size: calc(26px + (60 - 26) * ((100vw - 320px) / (1920 - 320)));
  font-weight: var(--font-weight-medium);
  color: #575757;
  transition: color 0.3s ease, margin-left 0.3s ease;
  text-decoration: none;
  border-bottom: 0;
}
a.service-link:hover {
  color: var(--white);
  margin-left: calc(-1 * var(--size) * 1);
}
.services-image {
  bottom: 0;
  left: calc(var(--size) * 6);
  width: 120%;
  max-width: 1300px;
  z-index: -10;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 0, 1) 0%, rgba(255, 72, 0, 1) 100%);
  box-shadow: 0 0 10px rgba(255, 183, 0, 0.8);
  animation: sparkMove 1.5s ease-out forwards;
  z-index: 5;
}

@keyframes sparkMove {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(calc(100px - 200px * random()), calc(100px - 200px * random()));
    opacity: 0;
  }
}

/* Footer ............................................................... */

.footer-content h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: calc(var(--size) * 9.66);
}
.footer-content h4 {
  font-size: 0.9rem;
  line-height: inherit;
  color: #9d9d9d;
}
.footer-section .list-inline .list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}
.footer-section .list-inline .list-inline-item:not(:last-child):after {
  content: "|";
  padding-left: 0.5rem;
  padding-right: 0.3rem;
  color: var(--white);
}
.footer-image {
  position: relative;
  width: 120%;
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
  z-index: -10;
}
.footer-logo {
  margin-top: -3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.footer-logo img {
    max-width: 90vw;
}

/* Effects ............................. */

a,
.contact-btn a,
.mainNavigation a.nav-link span:after,
.offerWrapper .owl-prev,
.offerWrapper .owl-next,
a.offer-card {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1920px) {
  html {
    font-size: 18px;
  }
  .main_logo img {
    width: 130px;
  }
  .mainNavigation {
    margin-left: 240px;
  }
  .main_logo.scroll img {
    width: 100px;
  }
  .contact-btn a {
    padding: 15px 60px;
  }
  .mainNavigation .navbar-nav {
    padding: 0 30px;
  }
  .mainNavigation a.nav-link {
    padding: 12px 0 !important;
  }
}

@media screen and (max-width: 1366px) {
  :root {
    --radius: 21px;
  }
  html {
    font-size: 16px;
  }
  a.cta_button {
    padding: 1rem 3.5rem;
  }
  a.cta_button:before {
    top: 12px;
    right: 20px;
    width: 12px;
    height: 12px;
  }
  a.cta_button:hover {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .box_margin {
    margin-bottom: var(--size);
  }
  .box_margin3 {
    margin-bottom: calc(var(--size) * 2);
  }
  .box_padding {
    padding-left: calc(var(--size) * 4.66);
    padding-right: calc(var(--size) * 4.66);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .subtitle {
    font-size: 1.31rem;
  }
  .header {
    margin-top: 35px;
  }
  .main_logo {
    left: calc(var(--size) * 4.66);
  }
  .contact-btn a {
    padding: 10px 30px;
  }
  .mainNavigation a.nav-link {
    padding: 10px 0 !important;
  }
  .about-us-section {
    padding-top: calc(var(--size) * 10);
    padding-bottom: calc(var(--size) * 12);
  }
  .about-text {
    padding-left: calc(var(--size) * 4.66);
  }
  .offerWrapper .owl-prev,
  .offerWrapper .owl-next {
    width: 34px;
    height: 34px;
  }
  .offerWrapper .owl-prev {
    left: -55px;
  }
  .offerWrapper .owl-next {
    right: -55px;
  }
  .offerWrapper .owl-next:hover {
    background: #545454 url("../images/arrow-right.svg") center center no-repeat !important;
    background-size: 50% 50% !important;
  }
  a.offer-card {
    padding: 2rem;
  }
  a.offer-card h3 {
    font-size: 1.68rem;
    margin-bottom: 2rem;
  }
  .form-content {
    padding: 3rem 2rem;
  }
  .form_title h3 {
    font-size: 2rem;
  }
  .services-section {
    padding-top: calc(var(--size) * 4.66);
    padding-bottom: calc(var(--size) * 10);
  }
  .services-image {
    left: calc(var(--size) * 4.66);
    width: 70%;
  }
  .clientsWrapper .owl-carousel .client {
    max-width: 230px;
  }
}

@media screen and (max-width: 1200px) {
  .box_padding {
    padding-left: calc(var(--size) * 2);
    padding-right: calc(var(--size) * 2);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .header {
    margin-top: 15px;
  }
  .main_logo {
    left: calc(var(--size) * 2);
  }
  .main_logo img {
    width: 120px;
  }
  .main_logo.scroll img {
    width: 80px;
  }
  .mainNavigation {
    margin-left: 150px;
  }
  .contact-btn a {
    font-size: 0.93rem;
    padding: 10px 15px;
  }
  .mainNavigation a.nav-link {
    font-size: 0.93rem;
  }
  .about-us-section {
    padding-top: calc(var(--size) * 6);
    padding-bottom: calc(var(--size) * 8);
  }
  .about-text {
    padding-left: calc(var(--size) * 2);
  }
  .offerWrapper .owl-prev,
  .offerWrapper .owl-next {
    position: static;
    display: inline-block;
  }
  .offerWrapper .owl-prev {
    margin-right: 1rem;
  }
  .offerWrapper .owl-next {
    margin-left: 1rem;
  }
  .footer-content h3 {
    font-size: 1.31rem;
    margin-bottom: calc(var(--size) * 6.66);
  }
}

@media screen and (max-width: 991px) {
  .box_margin3 {
    margin-bottom: var(--size);
  }
  .box_padding {
    padding-left: var(--size);
    padding-right: var(--size);
  }
  .box_padding_vertical {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .header {
    position: relative !important;
    top: 0 !important;
    margin-top: 0;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    background-color: var(--main-bg-color);
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .main_logo {
    top: 15px !important;
    left: 15px !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .main_logo img {
    width: 180px !important;
  }
  .mainNavigation {
    text-align: center;
    margin-left: 0;
  }
  .contact-btn {
    display: inline-block;
    font-size: 1rem;
    margin-top: 15px;
  }
  .mainNavigation .navbar-nav {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
  .mainNavigation .nav-item {
    font-size: 1rem;
    text-align: center;
    margin-left: 0;
  }
  .mainNavigation a.nav-link {
    font-size: 1rem;
    margin-right: 0;
    padding-left: 0 !important;
  }
  .mainNavigation a.nav-link:before {
    display: none;
  }
  .mainNavigation li.dropdown a.nav-link:hover span:after {
    display: block;
  }
  .mainNavigation .dropdown-menu a.dropdown-item {
    text-align: center;
  }
  .mainNavigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .headline-animate br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --radius: 16px;
  }
  .custom-relative {
    position: relative;
  }
  .about-us-section {
    padding-top: calc(var(--size) * 2);
    padding-bottom: calc(var(--size) * 2);
  }
  .about-text {
    padding-left: 0;
  }
  .form-content {
    padding: 2rem 1rem;
  }
  .form_title h3 {
    font-size: 1.87rem;
  }
  .form-image {
    width: 120%;
    -webkit-transform: translate(-17%, -5%);
    transform: translate(-17%, -5%);
  }
  .services-section {
    padding-top: calc(var(--size) * 3);
    padding-bottom: calc(var(--size) * 3);
  }
  .services-image {
    left: 0;
    width: 100%;
  }
  .video-bg {
    top: -100px;
  }
}
