/* --------------------------
--- GENERAL CSS ---
----------------------------- */

html {
  font-size: 16px;
}

body {
  background: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  /*line-height: 1.4;*/
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* fix for aos animation */
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:focus,
a:hover {
  color: #ffffff8b;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.btn {
  position: relative;
  background: transparent;
  border: 1px solid #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  padding: 13px 40px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn:hover,
.btn:focus {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
}

.img-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 100%;
  height: auto;
}

.cart-icon {
  width: 50px;
  height: 50px;
  color: #fff;
}

/* --------------------------
--- BACK TO TOP ---
----------------------------- */
#back-to-top {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.533);
  border: 1px solid #fff;
  cursor: pointer;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
#back-to-top:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin: -2px 0 0 -5px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#back-to-top.reveal {
  filter: alpha(opacity=100);
  opacity: 1;
}
#back-to-top.reachBottom {
  bottom: 15px;
}

/* --------------------------
--- HEADER ---
----------------------------- */
.header {
  position: absolute;
  width: 100%;
  z-index: 3;
  padding-top: 15px;
}
.container-header {
  padding: 0 5vw;
}
@media (min-width: 992px) {
  /* STICKY NAVIGATION */
  .sticky .header {
    position: fixed;
    top: -120px;
    width: 100%;
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    color: #000;

    transition: all 0.8s ease-in-out; /* Adjust the transition duration and timing function as needed */
  }
  .sticky .mainmenu ul li:not(:last-child) a {
    color: #000;
  }
  .sticky .logo-white {
    display: none;
  }
  .sticky .logo-d {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .sticky .header {
    height: 120px;
  }
}
/* header-main */
.header-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container img {
  height: 105px;
}
.logo-white {
  display: none;
}
@media (min-width: 992px) {
  .header {
    padding-top: 0;
  }
}

/* ////////////////////////////////////// */
/* HOME INTRO SECTION  */
/* ////////////////////////////////////////// */

.home-intro-container-inner {
  display: flex;
  height: 100vh;
  align-items: center;
}

.heading-primary-container {
  position: absolute;
  padding-left: 5vw;
}

.background-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.intro-text-box h1::before {
  content: url("../images/arrow.svg");
  display: block;
  width: 5vw;
  height: 5vw;
}

.intro-text-box h1 {
  font-size: calc(1rem + 4vw);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.intro-text-box p {
  font-size: 24px;
  padding-left: 6.5vw;
}

/* ////////////////////////////////////// */
/* PRODUCTS SECTION */
/* ///////////////////////////////////////// */

.mod-home-featured-products {
  padding: 0 80px 0 120px;
  margin-top: -180px;
  position: relative;
}

.grid--3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.rags-img {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 30px;
}

.product-container h3 {
  margin-left: 15px;
}

.introtext ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: start;
}

.introtext li {
  font-weight: 400;
}

/* /////////////////////////////////////// */
/* EXPERIENCE SECTION */
/* //////////////////////////////////////////// */

.background-img2 {
  width: 100%;
  height: 650px;
}

.experience-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 120px 120px;
}

.experience-textbox {
  font-size: 200px;
  font-weight: 700;
}

.experience-textbox p {
  text-transform: uppercase;
  font-size: 42px;
  margin-top: -40px;
}

.experience-text {
  font-size: 24px;
  font-weight: 600;
  padding: 0 120px 0 80px;
  line-height: 1.6;
}

/* /////////////////////////////////////// */
/* FOOTER */
/* //////////////////////////////////////////// */

.footer-main {
  padding: 6vw 120px 100px 80px;
}
.footer-columns {
  text-align: center;
}
.footer-1 {
  margin-bottom: 40px;
}
.footer .logo {
  height: 100px;
  width: auto;
}

@media (min-width: 768px) {
  .footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: end;
    text-align: inherit;
  }
  .footer-1 {
    margin-bottom: 0px;
  }
  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
  }
}

.footer-menu li {
  list-style: none;
  font-size: 20px;
  font-weight: 600;
}

.mod-custom p {
  font-size: 18px;
  font-weight: 600;
}

.footer-link {
  font-size: 18px;
  font-weight: 400;
}

.footer-copy {
  border-top: 1px solid #ccc;
  margin: 0 110px 0 80px;
  padding: 30px 0px 50px;
}

.copyright {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
}

.copyright p {
  font-size: 12px;
  font-weight: 400;
}

/* /////////////////////////////////////// */
/* O NAMA */
/* //////////////////////////////////////////// */

.header-onama {
  position: relative;
  background-image: url("../images/ek-bg2.jpg");
  padding: 250px 0 250px 80px;
  height: 400px;
  background-size: cover;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.body-article-onama {
  padding: 40px 5vw;
}

.onama-intro {
  line-height: 1.6;
  width: 60%;
}

.section-offer {
  text-align: center;
  padding-top: 40px;
}

/* /////////////////////////////////////// */
/* KONTAKT */
/* //////////////////////////////////////////// */

.header-contact {
  position: relative;
  background-image: url("/ekokrpa/images/ek-bg2.jpg#joomlaImage://local-images/ek-bg2.jpg?width=1920&height=1280");
  padding: 250px 0 250px 80px;
  height: 400px;
  background-size: cover;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.article-title h1 {
  font-size: calc(1rem + 4vw);
}

.body-article-contact {
  display: flex;
  gap: 320px;
  padding: 40px 5vw;
}

#map {
  height: 500px;
  color: #000;
}

/* /////////////////////////////////////// */
/* PRODUCT LAYOUT */
/* //////////////////////////////////////////// */

.container-layout-product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 150px;
}

.product-title h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.product-image img {
  width: 80%;
  border-radius: 30px;
}

.product-description ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#mod-custom115 {
  margin: 0 200px;
}

.delivery {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* /////////////////////////////////////// */
/* BLOG CATEGORY LAYOUT */
/* //////////////////////////////////////////// */

.blog {
  padding: 150px 8vw;
}

.blog h1 {
  margin-bottom: 40px;
}

.leading-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

figure {
  overflow: hidden;
  border-radius: 30px;
}

figure img {
  width: 100%;
  height: 100%;

  transition: all 0.4s ease;
}

figure img:hover {
  transform: scale(1.05);
}

.item-content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-upit {
  margin: 0 400px;
  width: 40%;
}

/* /////////////////////////////////////// */
/* MEDIA QUERIES-HOME PAGE */
/* //////////////////////////////////////////// */

@media (max-width: 75em) {
  .experience-text {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    line-height: 1.4;
  }
}

@media (max-width: 57em) {
  .home-intro-container-inner {
    height: 100vh;
  }

  .intro-text-box h1::before {
    width: 44px;
    height: 44px;
  }

  .intro-text-box h1 {
    font-size: 44px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .intro-text-box p {
    font-size: 20px;
  }

  .mod-home-featured-products {
    padding: 0 8vw;
    margin-top: -120px;
  }

  .grid--3-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .experience-flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 120px 8vw;
  }
}

@media (max-width: 44em) {
  .intro-text-box h1::before {
    width: 68px;
    height: 68px;
  }

  .intro-text-box h1 {
    font-size: calc(1rem + 6vw);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .intro-text-box p {
    font-size: 18px;
    padding-left: 15.5vw;
    width: 80%;
  }

  .icon-mobile-nav {
    height: 42px;
    width: 42px;
  }

  .grid--3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .background-img2 {
    width: 100%;
    height: 300px;
  }

  .logo {
    width: 240px;
  }

  .footer-menu li {
    font-size: 16px;
  }

  .footer-link {
    font-size: 14px;
  }

  .mod-custom p {
    font-size: 16px;
    font-weight: 600;
  }
  .footer-main {
    padding: 40px 60px 80px 60px;
  }

  .footer-copy {
    margin: 0 5vw;
  }

  .item,
  .copyright {
    font-size: 12px;
    font-weight: 300;
  }

  .copyright p {
    font-size: 12px;
    font-weight: 300;
  }
}

@media (max-width: 34em) {
  .experience-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
  }

  .experience-textbox {
    font-size: 150px;
  }
  .experience-textbox p {
    font-size: 34px;
    margin-top: -30px;
  }

  .footer-main {
    padding: 40px 20px;
  }
  .footer-copy {
    margin: 0 20px;
  }
}

/* /////////////////////////////////////// */
/* MEDIA QUERIES-KRPE PAGE */
/* //////////////////////////////////////////// */

@media (max-width: 65em) {
  .leading-article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 44em) {
  .leading-article-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* /////////////////////////////////////// */
/* MEDIA QUERIES-PRODUCT PAGE*/
/* //////////////////////////////////////////// */
@media (max-width: 70em) {
  .product-image img {
    width: 100%;
    border-radius: 30px;
  }
  .container-layout-product {
    padding: 150px 30px;
  }

  .form-upit {
    margin: 0 auto;
    width: 80%;
  }
}
@media (max-width: 46em) {
  .container-layout-product {
    grid-template-columns: 1fr;
  }
}

/* /////////////////////////////////////// */
/* MEDIA QUERIES-ONAMA PAGE*/
/* //////////////////////////////////////////// */
@media (max-width: 65em) {
  .onama-intro {
    width: 80%;
  }
}
@media (max-width: 46em) {
  .onama-intro {
    width: 100%;
  }
}
/* /////////////////////////////////////// */
/* MEDIA QUERIES-KONTAKT PAGE*/
/* //////////////////////////////////////////// */
@media (max-width: 80em) {
  .body-article-contact {
    gap: 200px;
  }
}
@media (max-width: 65em) {
  .body-article-contact {
    gap: 100px;
  }
}
@media (max-width: 57em) {
  .body-article-contact {
    display: inline-block;
  }

  .column-right {
    margin-top: 40px;
  }
}

/* -------------------------------
--- CUSTOM ANIMATIONS ---
---------------------------------- */

/* Logo, Hamburger */
.focus-in-expand {
  -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    0.8s both;
  animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}
@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/*  main-menu */
.fade-in-top-1 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0s both;
}
.fade-in-top-2 {
  -webkit-animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s
    both;
  animation: fade-in-top 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* Intro slider text */
.fade-in-bottom-1 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s both;
}
.fade-in-bottom-2 {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s
    both;
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s both;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
