body {
  margin: 0 auto;
  padding: 0;
}

body:has(#menuCheckbox:checked) {
  overflow: hidden;
}

html.resizing *,
html.resizing *::before,
html.resizing *::after {
  transition: none !important;
  animation: none !important;
}

html.resizing #menu * {
  transition: none !important;
  animation: none !important;
}

@font-face {
  font-family: 'poppins';
  src: url('/source/font/Poppins-Bold.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

/* @font-face {
  font-family: 'meri';
  src: url('/source/font/Merriweather_24pt-SemiBoldItalic.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: oblique !important;
} */

@font-face {
  font-family: 'sans';
  src: url('/source/font/open-sans.regular.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: oblique !important;
}

@font-face {
  font-family: 'sans_300';
  src: url('/source/font/open-sans.light.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: oblique !important;
}

h1, h2, h3, h4, h5, h6 {
  display: block;
  font-size: unset;
  /* font-weight: 100 !important; */
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* menu */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

#menuCheckbox {
  display: none;
}

#menu.hidden-during-resize {
  display: none !important;
}

div#menuToggle ul#menu li.spacer-line .line_80 {
    display: none;
}


div#menuToggle ul#menu li.socials_burger .social-icon {
  display: none;
}

.privacy-link {
    color: inherit;       /* Zachováva farbu textu podľa rodiča */
    text-decoration: none; /* Odstráni podčiarknutie */
    transition: color 0.3s ease; /* Hladká animácia pri zmene farby */
}

.privacy-link:hover {
    color: #fff;          /* Biela farba pri hoveri */
    text-decoration: none; /* Zabezpečí, že podčiarknutie sa nevráti */
}

@media only screen and (min-width: 1000px) {
      nav {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 2;
        /* background: rgba(255, 255, 255, 0.7); */
      }

      .logo {
        margin-left: 2%;
        width: max-content;
      }

      .svg {
        height: 70px;
        margin-top: 0px;
      }

      #menu {
        font-family: poppins;
        font-size: 14px;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        position: absolute;
        right: 2%;
        top: 0;
        height: 80px;
        margin: 0;
        display: flex;
        align-items: center;
        color: #595959;
      }

      #menu a {
        color: #595959; /* Default color */
        text-decoration: none; /* Remove underline */
        transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for color and background */
      }

      #menu a:hover,
      #menu a.active  {
        color: #A81552;
      }

      #menu a {
        color: inherit;        /* Dediť farbu z nadradeného prvku */
        text-decoration: none; /* Odstrániť podčiarknutie */
      }

      #menu li {
          float: left;
          padding: 0 15px;        /* Vnútorný rozostup medzi položkami */
          border-right: 1px solid #ccc; /* Zvislá čiara ako oddeľovač */
          /* padding-left: 30px; */
          align-items: anchor-center;
      }

      #menu li:nth-last-child(-n+3) {
        border-right: none;     /* Odstráni oddeľovač za poslednou položkou */
        padding-right: 0px;
      }

      .flag-image {
        padding-right: 4px;
      }

      div#menuToggle ul#menu li.spacer-line {
        display: none !important;
      }

}

@media only screen and (max-width: 1000px) {
  .logo {
        margin: 10px 0 0 20px;
        width: max-content;
    }

  div#menuToggle ul#menu li.spacer-line .line_80 {
    display: block !important;
    width: 80%;
    background: linear-gradient(90deg, transparent, #0000000d, transparent);
    height: 1px;
    float: left;
  }

  div#menuToggle ul#menu li.socials_burger .social-icon {
    display: inline !important;
    fill: #000;
  }

  body:has(#menuCheckbox:checked) {
    overflow: hidden;
  }

      nav {
          position: absolute;
          z-index: 2;
      }

      main {
        width: calc(100% - 240px);
        max-width: 680px;
        margin: 100px auto;
      }

      p {
        font-size: 18px;
        line-height: 28px;
      }

      * {
        scroll-behavior: smooth;
      }

      /* Menu code starts here */

      #menuToggle {
        display: block;
        position: absolute;
        top: 20px;
        left: calc(100svw - 73px);
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
        padding: 20px 0px 20px 20px;
      }

      #menuToggle a
      {
        text-decoration: none;
        color: #232323;
        transition: color 0.3s ease;
      }

      #menuToggle a:hover
      {
        color: tomato;
      }

      #menuToggle input {
        display: block;
        width: 52px;
        height: 52px;
        position: absolute;
        top: 0px;
        left: 0px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        margin: 0;
        -webkit-touch-callout: none;
      }

      /*
       * Just a quick hamburger
       */
      #menuToggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 5px 0px;
        position: relative;
        background: #8b8b8b;
        border-radius: 1px;
        z-index: 1;
        transform-origin: -2px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
      }

      #menuToggle span:first-child {
        transform-origin: 0% 0%;
      }

      #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
      }

      /*
       * Transform all the slices of hamburger
       * into a crossmark.
       */
      #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
      }

      /*
       * But let's hide the middle one.
       */
      #menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
      }

      /*
       * Ohyeah and the last one should go the other direction
       */
      #menuToggle input:checked ~ span:nth-last-child(2) {
        opacity: 1;
        transform: rotate(-45deg) translate(0, -1px);
      }

      /*
       * Make this absolute positioned
       * at the top left of the screen
       */
      #menu {
        font-family: poppins;
        text-align: center;
        position: fixed;
        width: 100vw;
        height: 100svh;
        margin: 0;
        padding: 50px;
        padding-top: 125px;
        top: 0;
        right: 0px;
        box-sizing: border-box;
        background: #fff;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(165%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
      }

      #menu li
      {
        padding: 10px 0;
        font-size: 22px;
      }

      #menu li label
      {
        cursor: pointer;
      }

      /*
       * And let's fade it in from the right
       */
      #menuToggle input:checked ~ ul {
        transform: none;
        opacity: 1;
      }
      html.resizing ul#menu {
        transition: none !important;
      }

      #menuToggle input[type="checkbox"] {
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
      }

}


/**
*  ____            _   _                __
* / ___|  ___  ___| |_(_) ___  _ __    / /_
* \___ \ / _ \/ __| __| |/ _ \| '_ \  | '_ \
*  ___) |  __/ (__| |_| | (_) | | | | | (_) |
* |____/ \___|\___|\__|_|\___/|_| |_|  \___/
*/

/* SECTION 6 */

.section6 {
  position: relative;
  width: 100%;
}

.awesome_half {
  position: relative;
  z-index: 1;
  background: #333;
  display: flex;
  justify-content: center;
}

.awesome_text {
  width: 100%;
  color: #fff;
  font-family: poppins;
  font-weight: 100;
  text-align: center;
}

.s6_crop_out {
  width: 1400px;
  justify-items: anchor-center;
}

.s6_crop_in {
  height: 100%;
  width: 85%;
  margin: 0 auto;
}

.s6_third {
  height: 90px;
  float: left;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.nicefont:link {
  font-family: poppins;
  color: white;
  text-decoration: none;
  position: relative;
}

a.nicefont:visited{
  text-decoration: none;
}

a.nicefont:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  text-decoration: none;
}

a.nicefont:active {
  text-decoration: none;
}

a.nicefont:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
/*Email Landing Page END*/

button#dtm_button {
  background-color: #eaeaea;
  color: black;
  font-family: 'poppins';
  border-radius: 14vh;
  transition: 0.4s all;
  padding: 33px 50px 27px 50px;
  margin: 0 auto !important;
  width: max-content;
  cursor: pointer;
  border: 0;
}

button#dtm_button:hover {
  background-color: #7ed208;
  color: white;
  transition: 0.4s all;
  transform: translate(0px, -3px);
  box-shadow: 0px 7px 7px -2px #00000070;
}

/*clock*/
.clock_container {
  margin: 0 auto;
  padding: 0px;
  width: max-content;
}

.clock {
  float: left;
  width: 70px;
  height: 70px;
  position: relative;
  padding: 0px;
  border: 1px solid #fff;
  /*  box-shadow: -4px -4px 10px rgba(67,67,67,0.5),
            inset 4px 4px 10px rgba(0,0,0,0.5),
            inset -4px -4px 10px rgba(67,67,67,0.5),
            4px 4px 10px rgba(0,0,0,0.3);  */
  border-radius: 50%;
  /*  margin: 50px auto;*/
}

.outer-clock-face {
  position: relative;
  background: #333333;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.outer-clock-face::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg)
}

.outer-clock-face::after,
.outer-clock-face::before,
.outer-clock-face .marking{
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  left: 49.5%;
}

.inner-clock-face {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: #333333;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: 1;
}

.inner-clock-face::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 20px;
  margin-left: -5px;
  margin-top: -5px;
  background: #fff;
  z-index: 11;
}

.inner-clock-face::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  margin-left: -4px;
  margin-top: -4px;
  background: #282828;
  z-index: 11;
}

.hand {
  width: 80%;
  right: 50%;
  background: #61afff;
  position: absolute;
  top: 50%;
  border-radius: 20px;
  transform-origin: 100%;
  transform: rotate(90deg);
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.hand.hour-hand {
  background: #fff;
  margin-top: -2px;
  height: 4px;
  width: 30%;
  z-index: 3;
}

.hand.min-hand {
  background: #fff;
  margin-top: -1px;
  height: 2px;
  z-index: 10;
  width: 45%;
}

.hand.second-hand {

  background: #ee791a;
  width: 55%;
  height: 2px;
  margin-top: -1px;
}
/*clock end*/

/*clock digital start*/
#hodiny {
  width: 113px;
  float: left;
  font-family: poppins;
  font-size: 22px;
  color: white;
  padding: 11px 0px 0px 11px;
}

#digital {

  /* padding-left: 4px; */
}

.timezone {
  font-family: meri;
  font-size: 16px;
  padding-top: 30px;
  color: #fff;
  text-align: right;
}
/*clock digital end*/

.spacer-line {
  float: left;
  width: 100%;
  margin: 50px 0px;
  justify-content: center;
  display: flex;
  color: #0099b3;
}

.line_80 {
  width: 80%;
  background: linear-gradient(90deg, #333, #3d3d3d, #333);
  height: 2px;
  /* margin: 0 auto; */
  float: left;
}

.socials {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.social-icon:hover {
    fill: #7ed208;
    scale: 100%;
}

.social-icon {
    fill: #ffffff;
    scale: 80%;
    transition: 0.2s all;
}

#quotes-container {
  width: 100%;
  font-family: poppins;
  color: #ffffff;
  font-size: 25px;
  line-height: 35px;
  padding-top: 50px;
  text-align: center;
}

.quote-text {
  width: 100%;
}

.quote-author a {
  font-family: meri;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #8bba34;
}

.copyright {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #686868;
  width: 100%;
  text-align: center;
  float: left;
  padding-bottom: 50px;
}

.quotes_half {
  /* height: 500px; */
  background: #262626;
  color: white;
  display: flex;
  justify-content: center;
  position: sticky;
  bottom: 0;
  z-index: 0; /* Nižší z-index, aby sa skryla pod sekciu */
}

@media screen and (min-width: 1000px) {
    .awesome_text {
      font-size: 52px;
      padding: 80px 0px;
    }

    .s6_third {
      width: 36%;
    }

    .s6_third:nth-of-type(2) {
      width: 28%;
    }
    .s6_third:nth-of-type(3) {
      width: 36%;
    }

    /*Email Landing Page START*/
    a.nicefont:link {
      font-size: 24px;
    }

    button#dtm_button {
      font-size: 22px;
    }

    .quote-author a {
      font-size: 20px;
    }

    .copyright {
      font-size: 14px;
      line-height: 21px;
    }
}

@media only screen and (max-width: 1000px) {

  .awesome_text {
    font-size: 8vw;
    padding: 60px 0px 0px 0px;
  }

  #order {
    display: flex;
    flex-direction: column;
  }

  .s6_third {
    width: 100%;
  }

  .s6_third:nth-of-type(2) {
    order: 1;
    padding-top: 35px;
  }

  /*Email Landing Page START*/
  a.nicefont:link {
    font-size: 24px;
  }
  /*Email Landing Page END*/

  button#dtm_button {
    font-size: 22px;
  }

  .quote-author a {
    font-size: 20px;
  }

  .copyright {
    font-size: 14px;
    line-height: 21px;
  }
}
