@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", serif;
  font-weight: 500;
  transition: 0.3s;
  line-height: 1.3em;
  scroll-behavior: smooth;
}

h1 {
  text-transform: uppercase;
}

/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/
:root {
  --primary: #BA203F;
  --black: #000000;
  --white: #ffffff;
  --text: #333333;
}

/* Navbar section */
.nav {
  width: 100%;
  height: 65px;
  position: absolute;
  line-height: 65px;
  text-align: center;
  background-color: var(--black);
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
  padding-top: 1rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
}

.brand_logo {
  width: 180px;
}

.nav div.logo a:hover {
  color: var(--primary);
}

.nav div.main_list {
  height: 65px;
  float: right;
  z-index: 1000000;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 15px;
}

.nav div.main_list ul li a:hover {
  color: var(--primary);
}

.navTrigger {
  display: none;
}

.nav {
  transition: all 0.4s ease;
}

/* Media qurey section */
@media screen and (min-width: 1050px) and (max-width: 1050px) {
  .container {
    margin: 0;
  }
}
@media screen and (max-width: 1050px) {
  .navTrigger {
    display: block;
  }
  .brand_logo {
    width: 160px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    margin-top: 60px;
    position: absolute;
    overflow: hidden;
    transition: 0s;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: auto;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--black);
    /*same background color of navbar*/
    background-position: center top;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 18px;
    padding: 20px;
  }
  .nav div.media_button {
    display: block;
  }
}
/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */
.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
}

.navTrigger i:nth-child(1) {
  animation: outT 0.8s backwards;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 6px 0;
  animation: outM 0.8s backwards;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  animation: outBtm 0.8s backwards;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  animation: inBtm 0.8s forwards;
}
@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}
.affix {
  padding: 0;
  background-color: #111;
}

@media screen and (max-width: 500px) {
  .nav {
    line-height: normal;
  }
}
.myH2 {
  text-align: center;
  font-size: 4rem;
}

.myP {
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 20px;
}

@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}
/* Navbar section end */
/* Home section */
.home {
  width: 100%;
  height: 100vh;
  background-image: url("assets/hero_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10000;
  background-position: top;
}

.home_content {
  position: absolute;
  width: 100%;
  margin-top: 200px;
  text-align: center;
}
.home_content .home_h {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}
.home_content .home_h h1,
.home_content .home_h h3,
.home_content .home_h p {
  color: var(--white);
  font-weight: 600px;
}
.home_content .home_h h1 {
  font-size: 40px;
  font-weight: 700;
}
.home_content .home_h h3 {
  font-size: 20px;
}

.home_btn {
  padding: 2rem;
}
.home_btn .btn {
  width: 100px;
  background-color: #BA203F;
  color: var(--white);
  padding: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.home_btn .btn:hover {
  background-color: var(--black);
}

@media screen and (max-width: 380px) {
  .home .home_content {
    margin-top: 300px;
  }
  .home .home_content .home_h {
    padding: 0.5rem;
  }
  .home .home_content .home_h h1,
  .home .home_content .home_h h3,
  .home .home_content .home_h p {
    color: var(--white);
    font-weight: 600px;
  }
  .home .home_content .home_h h1 {
    font-size: 23px;
    font-weight: 700;
  }
  .home .home_content .home_h h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .home .home_content {
    margin-top: 300px;
  }
  .home .home_content .home_h {
    padding: 5px;
  }
  .home .home_content .home_h h1 {
    font-size: 30px;
  }
}
/* Home section end */
/* Stats section */
.stats {
  padding: 20px;
  /* background-color: white; */
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  /* background-color: #0f0f0f65; */
}

.stats p {
  font-size: 18px;
}

.stats > h1 {
  text-align: center;
  /* background-color: #00000065; */
  /* width: 50%; */
  color: var(--primary);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 400;
  padding: 3rem;
}

.stats .dekoracija-div {
  text-align: center;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 0px 10px;
}

/* Remove extra left and right margins, due to padding */
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 870px) {
  .column {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
  }
  .stats .row .column .card1 br {
    line-height: 100px;
  }
  .stats .row .column .card1 h1 {
    font-size: 2em;
    padding: 0px;
  }
  .stats .row .column .card1 p {
    padding: 0px;
    font-size: 15px;
  }
}
@media screen and (max-width: 426px) {
  .stats .row .column .card1 p {
    padding: -10px;
  }
  .stats > h1 {
    font-size: 40px;
    padding: 2rem;
  }
}
/* Style the counter cards */
.stats .row .column .card1 {
  padding: 16px;
  text-align: center;
  background: none;
  border: none;
}

.stats .row .column .card1 h3 {
  padding: 10px;
  font-size: 20px;
  color: var(--text);
}

.stats .row .column .card1 .lh {
  line-height: 26px;
}

.stats .row .column .card1 h1 {
  /* color: rgb(99, 88, 88); */
  /* color: rgb(167, 167, 167); */
  color: var(--primary);
  font-size: 70px;
  font-weight: 700;
}

@media screen and (max-width: 390px) {
  .column {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
  }
  .stats > h1 {
    font-size: 20px;
    padding: 0px;
  }
  .stats .row .column .card1 h1 {
    font-size: 60px;
  }
}
/* Stats section end */
/*About section*/
.about {
  height: auto;
  text-align: center;
  background-color: rgba(167, 167, 167, 0.1450980392);
  padding: 20px;
}
.about h1 {
  text-align: center;
  color: var(--primary);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 400;
  padding: 2rem;
}
.about .about_content {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.about .about_content p {
  font-weight: 500;
  font-size: 20px;
  text-align: justify;
  color: var(--text);
}

@media screen and (max-width: 1200px) {
  .about .about_content {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .about h1 {
    padding: 20px 0px 20px 0px;
  }
  .about .about_content {
    width: 95%;
  }
  .about .about_content p {
    text-align: left;
  }
}
@media screen and (max-width: 390px) {
  .about .about_content {
    width: 100%;
  }
}
/*About section end*/
.slike {
  display: flex;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}
.slike .s {
  text-align: center;
  width: 100%;
}
.slike .s img {
  text-align: center;
  width: 400px;
  border-radius: 8px;
}

@media screen and (max-width: 500px) {
  .slike .s img {
    width: 100%;
  }
}
/*Info section*/
.info_wrapper center {
  text-align: center;
  color: var(--primary);
  margin: 0 auto;
  font-size: 36px;
  font-weight: 400;
  padding: 2rem;
  text-transform: uppercase;
}

.info-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  height: 100vh;
}
.info-section .info-image {
  flex: 1;
  padding-right: 20px;
}
.info-section .info-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.info-section .info-text {
  flex: 1;
  padding-left: 20px;
}
.info-section .info-text .info_title {
  font-size: 30px !important;
}
.info-section .info-text h1 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 20px;
  text-transform: uppercase;
}
.info-section .info-text p {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  color: var(--text);
}

/* Responsive styles */
@media (max-width: 768px) {
  .info-section {
    height: 100%;
    flex-direction: column;
    text-align: center;
  }
  .info-section .info-image,
  .info-section .info-text {
    padding: 0;
  }
  .info-section .info-image {
    margin-bottom: 20px;
  }
  .info-section .info-text h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .info-section .info-text p {
    text-align: left;
    font-size: 20px;
  }
  .reverse {
    flex-direction: column-reverse !important;
  }
  .info-section .info-image img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (max-width: 390px) {
  .info-section .info-text .info_title {
    font-size: 23px !important;
  }
}
/*Info section end*/
/*Selector section*/
.product-wrapper {
  padding: 20px;
  height: 100%;
}
.product-wrapper h1 {
  font-size: 40px;
  padding: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 20px;
  text-transform: uppercase;
}
.product-wrapper .product-wrapper-desc {
  text-align: center;
  margin: 0 auto;
  width: 50%;
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
}

.product-section {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.product-section .product-card {
  background-color: #fff;
  border-bottom: 2px solid var(--primary);
  text-align: center;
  flex: 1 1 calc(50% - 20px);
  max-width: 450px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-section .product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.product-section .product-card h3 {
  margin: 15px 0;
  color: var(--primary);
  font-size: 20px;
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
}
.product-section .product-card .product-description {
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.6;
  width: 100%;
}
.product-section .product-card button {
  background-color: #BA203F;
  color: var(--white);
  padding: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  border: none;
  text-transform: uppercase;
}
.product-section .product-card button:hover {
  background-color: #000000;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .product-section {
    height: 100%;
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .product-wrapper .product-wrapper-desc {
    width: 100%;
  }
  .product-section {
    padding: 0px;
  }
}
@media screen and (max-width: 390px) {
  .product-section .product-card h3 {
    font-size: 16px;
  }
}
/*Selector section end*/
/*Contact section*/
.contact {
  background: linear-gradient(180deg, #BA203F 0%, #000000 100%);
}
.contact h1 {
  text-align: center;
  /* background-color: #00000065; */
  /* width: 50%; */
  color: var(--white);
  margin: 0 auto;
  font-size: 40px;
  font-weight: 400;
  padding: 3rem;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  height: auto;
}
.contact-section .map {
  flex: 1;
  text-align: center;
}
.contact-section .map iframe {
  width: 600px;
  height: 450px;
  border: 0;
}
.contact-section .contact-form {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-section .contact-form .contact-info {
  margin-bottom: 20px;
}
.contact-section .contact-form .contact-info p {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form form .input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-section .contact-form form .input-row input {
  flex: 1;
}
.contact-section .contact-form form input, .contact-section .contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.contact-section .contact-form form button {
  width: 100px;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  border: none;
}
.contact-section .contact-form form button:hover {
  cursor: pointer;
  background-color: var(--black);
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-section .map, .contact-section .contact-form {
    flex: 1 1 100%;
  }
  .contact-form .input-row {
    flex-direction: column;
  }
  .contact-section .map {
    padding: 20px;
  }
  .contact-section .map iframe {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  .contact-section {
    padding: 0px;
  }
  .contact-section .contact-form .contact-info p {
    font-size: 16px;
  }
  .contact h1 {
    padding-top: 20px !important;
  }
}
/*Contact section end*/
/*Footer section*/
.footer {
  background-color: var(--black);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}
.footer .footer-content .social-icons {
  margin-top: 10px;
}
.footer .footer-content .social-icons a {
  margin: 0 10px;
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer .footer-content .social-icons a:hover {
  color: #007BFF; /* Highlight color */
}
.footer .footer-content .social-icons i {
  display: inline-block;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-content p {
    font-size: 16px;
  }
  .footer-content .social-icons a {
    font-size: 1rem;
  }
}
@media (max-width: 390px) {
  .footer .footer-content p {
    font-size: 10px;
  }
}
/*Footer section edn*/
.title {
  font-size: 36px !important;
  text-align: center;
  font-weight: 400 !important;
}

.title_white, .p_white {
  color: #ffffff !important;
}

.parag {
  font-size: 20px;
}

p {
  font-weight: 400 !important;
}

.gap {
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.tech {
  background-image: url("assets/Abstract_Background_-_Waves_and_Particles_-_Technology_-_Light.jpg");
}

@media screen and (max-width: 500px) {
  .title {
    font-size: 30px !important;
  }
  center {
    font-size: 30px !important;
  }
}
@media screen and (max-width: 390px) {
  .title {
    font-size: 23px !important;
    padding: 0px !important;
    padding: 10px 0px 10px 0px !important;
  }
  .parag {
    font-size: 18px !important;
    padding: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */