@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;1,200;1,300;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #4387e3;
  --bg-primary-dark: #235292;
  --secondary-color: #ea5454;
  --paragraph-dark: rgba(19, 18, 18, 0.822);
  --paragraph-white: rgba(255, 255, 255, 0.911);
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 56.25em) {
  html {
    font-size: 55.5%;
  }
}
@media (max-width: 37.25em) {
  html {
    font-size: 50%;
  }
}

body {
  height: 100vh;
  font-family: "Montserrat";
  font-weight: 300;
  font-size: 1.6rem;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}

p {
  font-size: 1.8rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  color: #fff;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.2rem;
  font-weight: 500;
}

h4 {
  font-weight: 500;
  font-size: 1.9rem;
}

.container {
  max-width: 120rem;
  margin: auto;
  padding: 0rem 2rem;
}

section {
  position: relative;
}

.logo {
  width: 7rem;
  margin-right: 1rem;
}

img {
  width: 100%;
}

.header-background {
  height: 100vh;
  background-image: linear-gradient(to bottom right, rgba(67, 135, 227, 0.8), rgba(67, 135, 227, 0.8)), url(../img/papillon_2-min.jpg);
  background-size: cover;
  background-position: top;
}
@media (max-width: 37.5em) {
  .header-background {
    height: 95vh;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 88%, 30% 100%, 0% 100%, 0% 60%);
            clip-path: polygon(0 0, 100% 0%, 100% 88%, 30% 100%, 0% 100%, 0% 60%);
  }
}

/* Header */
header {
  width: 100%;
  padding: 0rem 2rem;
  margin: auto;
  z-index: 2;
  /*Navigation */
}
header nav {
  position: relative;
  max-width: 144rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  color: #fff;
  font-weight: 300;
  height: 120px;
  z-index: 9999;
  letter-spacing: 1px;
}
@media (max-width: 37.5em) {
  header nav {
    height: 100px;
  }
}
header nav h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-right: auto;
  padding-left: 2rem;
  letter-spacing: 1.8px;
  z-index: 999;
}
@media only screen and (max-width: 56.25em) {
  header nav h3 {
    margin-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 37.5em) {
  header nav h3 {
    font-size: 1.8rem;
    margin-left: -10px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
header nav ul :not(last-child) {
  margin-right: 5px;
}
@media only screen and (max-width: 993px) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  margin-right: 1rem;
  list-style: none;
  letter-spacing: 1.3px;
  font-size: 1.3rem;
  position: relative;
}
header nav ul li::after {
  content: "";
  width: 0%;
  height: 3px;
  border-right-color: #ea5454;
  background-color: #ea5454;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: ease-in 0.3s;
}
header .active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #3371c6;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-animation: pulse 3s infinite;
          animation: pulse 3s infinite;
}
header nav ul li:hover::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ea5454;
  position: absolute;
  bottom: -8px;
  left: 0;
}
header a:link {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}
header a:visited {
  color: #fff;
  font-weight: 300;
}

/*Menu mobile */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -1px;
  width: 100%;
  transform: translateX(100%);
  opacity: 0.9;
  height: 100%;
  background-color: #2558a0;
  z-index: 999;
  transition: ease-in 0.4s;
}
.menu-mobile .menu-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  transform: translateY(-10%);
}
.menu-mobile .menu-mobile-nav ul li {
  list-style: none;
  text-transform: uppercase;
  font-size: 1.7rem;
  margin-top: 4rem;
  letter-spacing: 1.5px;
}
.menu-mobile .menu-mobile-nav ul > * {
  background-color: rgba(14, 13, 13, 0.116);
  padding: 0.5rem 4rem;
  text-align: center;
}

.opened {
  transform: translateX(0%);
}

/*End of Menu mobile */
#humburger {
  cursor: pointer;
  display: none;
  width: 27px;
  height: 27px;
  background-color: transparent;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#humburger .line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.863);
  margin-bottom: 4px;
  transition: ease-out 0.5s;
}
#humburger .line-1 {
  transform: rotate(45deg) translateY(4px);
}
#humburger .line-2 {
  transform: rotate(-47deg) translateY(-5px);
  transition: ease-out 0.5s;
}
#humburger .line-3 {
  transform: translateY(-4px);
  opacity: 0;
  transition: ease-in 0.3s;
}
@media (max-width: 993px) {
  #humburger {
    display: flex;
  }
}

/*End of navigation*/
.header-overlay {
  background: var(--bg-primary-dark);
  position: absolute;
  height: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.2;
}
@media (max-width: 37.5em) {
  .header-overlay {
    height: 100px;
  }
}

.clip-path-box {
  position: relative;
  width: 916px;
  height: 120px;
  bottom: 30px;
  background: white;
  transform: skewY(171deg);
  margin-left: auto;
}
@media (max-width: 37.5em) {
  .clip-path-box {
    display: none;
  }
}

.overlay-dark.active {
  width: 40%;
}
@media only screen and (max-width: 993px) {
  .overlay-dark.active {
    display: none;
  }
}

.overlay-dark {
  position: absolute;
  right: 0;
  top: -1px;
  width: 0%;
  height: 100vh;
  opacity: 0.5;
  background: var(--bg-primary-dark);
  transition: all 2s;
}
@media only screen and (max-width: 993px) {
  .overlay-dark {
    display: none;
  }
}

/* Hero section */
.hero h1 {
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1.5px;
}

.hero h4 {
  font-size: 2rem;
  color: #eee;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1.5px;
}

.hero svg {
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .hero svg {
    width: 37px;
  }
}

.hero .icon-switch {
  transition: all 0.2s;
}

/* End Hero */
/* End of Header */
/*ShowCase Section */
.showcase {
  position: relative;
  margin-bottom: 14rem;
}
.showcase h2 {
  margin-bottom: 6rem;
  margin-top: -3rem;
  padding: 0 2rem;
}
@media (max-width: 56.25em) {
  .showcase h2 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 37.5em) {
  .showcase h2 {
    margin-top: 8rem;
  }
}
.showcase img {
  width: 100%;
}

.showcase .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 2rem;
}
@media (max-width: 37.5em) {
  .showcase .grid {
    grid-template-columns: 1fr;
  }
}

/* services */
.services::before {
  content: "";
  position: absolute;
  height: 100px;
  top: -120px;
  right: 0;
  left: 0;
  background: #fff;
  transform: skewY(5deg);
}
@media (max-width: 56.25em) {
  .services::before {
    top: -70px;
  }
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6rem;
}
@media (max-width: 37.5em) {
  .services .grid {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 10rem 0 25rem 0;
  background-image: linear-gradient(to right bottom, rgba(67, 135, 227, 0.9), #4387e3), url(../img/services.jpg);
  background-size: cover;
  background-position: top;
}
@media (max-width: 56.25em) {
  .services {
    padding: 10rem 0 10rem 0;
  }
}
@media (max-width: 37.5em) {
  .services {
    padding: 10rem 0 4rem 0;
    background-image: linear-gradient(left bottom, #4387e3, rgba(50, 118, 212, 0.8)), url(../img/services.jpg);
  }
}
.services h2 {
  margin-bottom: 10rem;
}
@media (max-width: 37.5em) {
  .services h2 {
    margin-bottom: 8rem;
  }
}
.services-item {
  background: #4387e3;
  box-shadow: 12px 15px 20px 10px rgba(0, 0, 0, 0.4);
  height: auto;
  min-width: 100%;
  padding: 1px;
}
@media (max-width: 686px) {
  .services-item {
    justify-self: center;
    min-width: auto;
  }
}
@media (max-width: 476px) {
  .services-item {
    justify-self: auto;
    min-width: 100%;
  }
}
.services-item h3 {
  font-weight: 300;
  padding: 1rem 0;
  background: #3371c6;
}
.services-item div {
  position: relative;
  overflow: hidden;
}
.services-item img {
  width: 100%;
  min-width: 320px;
  height: 250px;
  transform: scale(1.1);
  transition: all 0.7s;
}
.services-item img:hover {
  transform: scale(1.3);
}
.services-item .btn {
  background: var(--secondary-color);
  margin: 0;
  padding: 0.6rem;
}
.services-item a:link {
  color: #fff;
  text-decoration: none;
  margin: 0;
}
.services-item a:visited {
  color: rgb(247, 242, 242);
}
.services-item .overlay {
  background-color: rgba(40, 91, 163, 0.6431372549);
  position: absolute;
  width: 100%;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0%;
  transform: translate(0, 100%);
  color: #fff;
  transition: all ease-in 0.3s;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 37.5em) {
  .services-item .overlay {
    display: none;
  }
}
.services-item-1:hover .overlay {
  transform: translateY(0%);
}
.services-item-2 {
  transform: translateY(50px);
  transition: all ease-in 0.3s;
}
@media (max-width: 993px) {
  .services-item-2 {
    transform: translateY(100px);
  }
}
@media (max-width: 691px) {
  .services-item-2 {
    transform: translateY(0);
  }
}
.services-item-2:hover {
  transform: translateY(20px);
}
.services-item-2:hover .overlay {
  transform: translateX(0%);
}
.services-item-3:hover .overlay {
  transform: translateY(0%);
}

/* About */
.about {
  background-color: #397edb;
  color: #fff;
}
.about h2 {
  text-align: center;
  background-color: #ea5454;
  margin-bottom: 13rem;
  color: #fff;
  padding: 1.5rem;
}
@media (max-width: 37.5em) {
  .about h2 {
    margin-bottom: 8rem;
  }
}
@media (max-width: 56.25em) {
  .about svg {
    height: 100%;
    margin-top: 5rem;
  }
}
.about img {
  width: 250px;
}
@media (max-width: 37.5em) {
  .about img {
    margin-top: 8rem;
    width: 230px;
  }
}

.about .grid {
  display: grid;
  grid-template-columns: 65% 35%;
  grid-gap: 1rem;
}
@media (max-width: 37.5em) {
  .about .grid {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
}

/* .about div:first-child {

} */
/* Klijenti */
.klijenti {
  padding: 5rem 0;
  margin-bottom: 1rem;
}
.klijenti ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  transform: translateY(-10%);
  list-style-type: none;
}
.klijenti-left {
  background-color: #3370c6;
  display: flex;
  align-items: center;
  height: 35rem;
  /* clip-path: polygon(0% 0%, 100% 13%, 100% 86%, 92% 75%, 60% 84%, 0 100%); */
}
@media (max-width: 37.5em) {
  .klijenti-left {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.klijenti-right {
  background-color: var(--secondary-color);
  height: 35rem;
  display: flex;
  align-items: center;
  /* clip-path: polygon(0 12%, 100% 0, 100% 86%, 92% 85%, 11% 71%, 0 82%); */
}
@media (max-width: 37.5em) {
  .klijenti-right {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.klijenti .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  grid-gap: 5rem;
}
@media (max-width: 37.5em) {
  .klijenti .grid {
    grid-template-columns: 1fr;
  }
}

.klijenti h2 {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 3rem;
}

.klijenti p {
  text-align: center;
  margin-bottom: 8rem;
  line-height: 1.4;
}

.klijenti p:last-child {
  margin-top: 5rem;
  color: var(--bg-primary-dark);
  font-weight: 500;
}
@media (max-width: 37.5em) {
  .klijenti p:last-child {
    margin-bottom: 2rem;
  }
}

/*Kontakt sekcija*/
.kontakt {
  background-image: linear-gradient(to right bottom, rgba(59, 120, 204, 0.9), rgba(67, 135, 227, 0.8)), url(../img//kontakt21.png);
  background-size: cover;
  background-position: top;
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 50.5em) {
  .kontakt {
    padding: 6rem 0;
  }
}
.kontakt h2 {
  text-align: center;
  color: #fff;
  margin: 0;
  padding-bottom: 8rem;
}
@media (max-width: 50.5em) {
  .kontakt h2 {
    padding-bottom: 4rem;
  }
}

.kontakt .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  grid-gap: 3rem;
}
@media (max-width: 37.5em) {
  .kontakt .grid {
    grid-template-columns: 1fr;
  }
}

.kontakt .container {
  margin-bottom: 5rem;
}

.kontakt-left {
  /* border: 1px solid rgba(255, 255, 255, 0.37); */
  margin-top: 2.2rem;
  background-color: rgba(51, 112, 198, 0.301);
}
.kontakt-left p {
  color: rgba(255, 255, 255, 0.822);
  font-weight: 400;
}
.kontakt-left h3 {
  text-align: center;
  padding: 1rem;
  background: rgba(38, 77, 131, 0.2);
}
.kontakt-left h4 {
  font-weight: 500;
}

/*Form */
.kontakt-right {
  grid-column: 2/span 3;
  /*End of Form */
}
@media (max-width: 50.5em) {
  .kontakt-right {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 2rem;
  }
}
.kontakt-right .form {
  width: 100%;
  background: transparent;
}
.kontakt-right .form-validation {
  margin-bottom: 1rem;
  padding: 0.5rem;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  visibility: visible;
  opacity: 0;
  transition: all 0.4s;
}
.kontakt-right .wrongmessage {
  opacity: 1;
  visibility: visible;
}
.kontakt-right .wrap {
  display: flex;
  flex-wrap: wrap;
}
.kontakt-right .form_input-wrap {
  width: 100%;
}
.kontakt-right .rs1 {
  width: calc((100% - 10px) / 2);
  position: relative;
}
@media only screen and (max-width: 993px) {
  .kontakt-right .rs1 {
    width: 100%;
  }
}
.kontakt-right .rs1:first-child {
  margin-right: 10px;
}
@media only screen and (max-width: 993px) {
  .kontakt-right .rs1:first-child {
    margin-right: 0;
  }
}
.kontakt-right .rs2 {
  width: 100%;
  position: relative;
}
.kontakt-right button {
  width: 100%;
  padding: 1.5rem;
  background-color: #397edb;
  border: 1px solid rgba(255, 255, 255, 0.212);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
}
.kontakt-right button.form-btn:hover {
  opacity: 0.9;
}
.kontakt-right .form_input {
  width: 100%;
  height: 6rem;
  display: block;
  color: rgba(255, 255, 255, 0.863);
  margin-bottom: 3rem;
  background-color: transparent;
  font-family: inherit;
  font-size: 1.4rem;
  padding: 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.37);
  outline: none;
}
.kontakt-right .form_input--textarea {
  height: 20rem;
  width: 100%;
}
.kontakt-right .form_input--focus {
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 3rem);
  top: 0;
  left: 0px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.479);
  border-radius: 2px;
  transform: scaleX(1.2) scaleY(1.4);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.kontakt-right .form_input:focus + .form_input--focus {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1) scaleY(1);
}
.kontakt-right .form_input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.616);
  font-size: 1.5;
  letter-spacing: 1.1px;
}
.kontakt-right .form_input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.616);
  font-size: 1.5;
  letter-spacing: 1.1px;
}
.kontakt-right .form_input::placeholder {
  color: rgba(255, 255, 255, 0.616);
  font-size: 1.5;
  letter-spacing: 1.1px;
}
.kontakt-right .form_input:focus {
  color: #fff;
  background-color: rgba(67, 135, 227, 0.8);
}

/* Footer */
footer {
  padding: 1.5rem;
  text-align: center;
  background: #264d83;
  color: #fff;
}
footer span {
  font-weight: 500;
}

/*End of  Footer */
/*End of Kontakt sekcija*/
.message button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  transform: translateX(-102%);
  height: 100%;
  background-color: #397edb;
  transition: ease-in-out 1s;
}
.message button {
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-family: inherit;
  padding: 1rem 4rem;
  background-color: #ea5454;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.message button a {
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 33;
}
.message button a:visited {
  color: #fff;
}
.message button:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(102%);
  height: 100%;
  background-color: #265391;
}

/*Utility */
.grid-v-centar {
  display: grid;
  align-content: center;
  height: 70vh;
}

.text-dark {
  color: var(--paragraph-dark);
}

.text-white {
  color: #fff;
}

.text-secondary {
  color: var(--secondary-color);
}

.text-center {
  text-align: center;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 1.5rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 4rem;
}

.mt-1 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

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

.mt-4 {
  margin-top: 4rem;
}

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

.mt-6 {
  margin-top: 7rem;
}

.mt-7 {
  margin-top: 8rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 7rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

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

.h-100 {
  height: 100%;
}

/*End of Utility*/
/*Brakepoints 

        @media (max-width: 37.5em) { @content }; //600px

        @media (max-width: 56.25em) { @content }; //900px

        @media (max-width: 75em) { @content };//1200px

        @media (min-width: 112.5em) { @content };//1800px

*/
@-webkit-keyframes pulse {
  0% {
    background-color: #3371c6;
  }
  50% {
    background-color: #ea5454;
  }
  100% {
    background-color: #3371c6;
  }
}
@keyframes pulse {
  0% {
    background-color: #3371c6;
  }
  50% {
    background-color: #ea5454;
  }
  100% {
    background-color: #3371c6;
  }
}
/* @keyframes animationline {
  0% {
    background-color: #3371c6;
  }

  50% {
    background-color: #ea5454;
  }

  100% {
    background-color: #3371c6;
  }
}
 *//*# sourceMappingURL=style.css.map */