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: 'cavant';
  src: url('../../source/font/itcavant.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'tisa';
  src: url('../../source/font/tisapro-ita-webfont.woff2') format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: italic;
}

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;
}

@media only screen and (min-width: 1000px) {
      nav {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 1;
      }

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

      #menu {
        font-family: cavant;
        font-size: 14px;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        position: absolute;
        right: 2%;
        top: 0;
        height: 100px;
        margin: 0;
        display: flex;
        align-items: anchor-center;
        color: #969696;
      }

      #menu a {
        color: #969696; /* 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: #000;
      }

      #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) {


  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;
      }

      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: #cdcdcd;
        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: cavant;
        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 1 */
#hero_fullscreen {
    height: 100svh;
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover !important;
    overflow: hidden;
}

#vp {
    height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain !important;
}

#hero_fullscreen video {
    max-width: none !important;
    object-fit: cover !important;
}

.hero-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0px;
    align-content: center;
    justify-content: center;
    align-items: start;
    height: 100%;
    width: 100%;
}

.hero-image-box {
    height: 100%;
    width: 100%;
    display: grid;
    align-items: stretch;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.hero-text-box {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    align-self: end;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: max-content;
    text-align: left;
    /* z-index: 10; */
}

video {
    width: 100%;
    height: 100% !important;
}

@media screen and (min-width: 1000px) {
    #padder {
        width: 94%;
        margin: auto;
        font-family: cavant;
    }

    .dmt_studio_m_t1 {
        text-transform: none;
        font-size: 4vw;
        line-height: 4vw;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t2 {
        font-size: 3vw;
        line-height: 3vw;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t3 {
        text-transform: none;
        font-size: 2vw;
        line-height: 2vw;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t4 h2 {
        font-family: tisa;
        font-size: 1.8vw;
        line-height: 1.5vw;
        padding-bottom: 2.5vw;
        color: #65778c;
        font-weight: 900;
        text-transform: none;
        padding-bottom: 5vh;
        font-weight: 600;
    }
}

@media only screen and (max-width: 1000px) {
    #padder {
        width: 85%;
        margin: auto;
        font-family: cavant;
    }

    .dmt_studio_m_t1 {
        text-transform: none;
        font-size: 8vw;
        line-height: 8vw;
        margin-bottom: 0px;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t2 {
        text-transform: none;
        font-size: 6vw;
        line-height: 6vw;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t3 {
        text-transform: none;
        font-size: 5vw;
        line-height: 5vw;
        font-weight: 100;
        letter-spacing: 0px;
    }

    .dmt_studio_m_t4 h2 {
        text-transform: none;
        font-family: tisa;
        font-size: 4vw;
        line-height: 5vw;
        padding-bottom: 4vw;
        color: #65778c;
        font-weight: 900;
        text-transform: none;
        padding-bottom: 3vh;
        letter-spacing: 0px;
    }
}


/**
*  ____            _   _               ____
* / ___|  ___  ___| |_(_) ___  _ __   |___ \
* \___ \ / _ \/ __| __| |/ _ \| '_ \    __) |
*  ___) |  __/ (__| |_| | (_) | | | |  / __/
* |____/ \___|\___|\__|_|\___/|_| |_| |_____|
*/
/* SECTION 2 */
#section2 {
  background-color: #ffe6e8;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover !important;
}

.s2_crop_out {
  height: 100%;
  width: 1400px;
  justify-items: anchor-center;
}

.s2_crop_in {
  height: 100%;
}

.s2_left {
  font-family: cavant;
  text-align: center;
  color: #d00018;
  float: left;
  align-content: center;
}

@media screen and (min-width: 1000px) {
    #section2 {
    height: 550px;
    }

    .s2_crop_in {
      width: calc(100% - 100px);
    /* background-color: red; */
    }

    .s2_left {
      font-size: 25px;
      line-height: 40px;
      height: 100%;
      width: 47%;
    }

    .s2_right {
      float: right;
      height: 100%;
      width: 47%;
    }

    #s2_left_center {
      display: grid;
      justify-content: center;
      justify-self: center;
      padding: 0px 50px;
    }

    .s2_right_center {
      height: 100%;
      width: 50%;
      display: grid;
      justify-content: center;
      justify-self: center;
      /* background-image: url("/source/media/img/dtm-girl.webp"); */
      background-repeat: no-repeat;
      background-position: 50% 100%;
      background-size: cover;
    }
}

@media only screen and (max-width: 1000px){
  #section2 {
    height: 100svh;
  }

  .s2_crop_in {
    width: 85%;
  }

  .s2_crop {
    height: 100%;
    width: 1400px;
  }

  .s2_left {
    font-size: 2.9svh;
    line-height: 5.33vw;
    height: 40svh;
    width: 100%;
  }

  .s2_right {
    float: left;
    height: 60svh;
    width: 100%;
    overflow: hidden;
  }

  .s2_right_center {
    aspect-ratio: 366 / 550;
  }

  .s2_right_center img {
    width: 100%;
  }
}

/**
*  ____            _   _               _____
* / ___|  ___  ___| |_(_) ___  _ __   |___ /
* \___ \ / _ \/ __| __| |/ _ \| '_ \    |_ \
*  ___) |  __/ (__| |_| | (_) | | | |  ___) |
* |____/ \___|\___|\__|_|\___/|_| |_| |____/
*/
/* SECTION 3 */
#section3 {
  background: white;
  width: 100%;
  display: flex;
  padding-bottom: 80px;
}

.s3_crop_out {
    /* background-color: blue; */
    height: 100%;
    width: 1280px;
    justify-items: anchor-center;
}

.s3_crop_in {
    height: 100%;
}

.selected {
    height: calc(50% - 20px);
    font-family: cavant;
}

.port_item {
    background-color: green;
    overflow: hidden;
    height: auto;
    float: left;
    margin: 20px 0px;
    border-radius: 12px;
    position: relative;
    background-color: #fff;
    transition: 0.4s all ease-in-out;
}

.port_item:hover {
    transition: 0.4s all ease-in-out;
    transform: translate(0px, -20px);
    scale: 100%;
    box-shadow: 0px 20px 18px -10px #adadad !important;
}

.port_item:nth-child(odd) {}

.port_item:nth-child(even) {
  float: right;
}

.port_item video {
    display: block; /* Zamedzí pridaniu medzery od inline-block správania */
    margin: 0;
    padding: 0;
}

.port_item a {
    text-decoration: none;
    color: inherit;
}

.port_name {
    font-family: cavant;
    margin: 0;
}

.port_quote {
    color: #65778c;
    font-family: tisa;
    margin: 5px 0 0;
}

#testimonials {
  font-family: cavant;
}

#testimonial_icon {
    height: 80px;
    width: 80px;
    font-family: cavant;
    font-size: 80px;
    line-height: 40px;
    transform: rotate(180deg);
    color: white;
    background-color: black;
    border-radius: 100%;
    justify-content: center;
    display: grid;
}

blockquote {
    margin: 0;
}

footer {
    color: #65778c;
    font-family: tisa;
    margin-top: 10px;
    font-size: 0.9em;
}

/* SECTION 3 - PORT ITEM */
@media screen and (min-width: 1000px) {
  #section3 {
      padding-top: 120px;
      align-items: center;
      justify-content: center;
      object-fit: cover !important;
  }

  .s3_crop_in {
      width: calc(100% - 100px);
  }

  .selected {
      aspect-ratio: 2 / 1.222; /* Pomery strán: šírka 2 a výška 1 (50 %) */
      width: 50%;
      font-size: 40px;
      line-height: 53.33px;
      float: left;
      align-content: center;
      margin-top: 20px;
  }

  .port_item {
      width: calc(50% - 20px);
  }

  .p_item {
      width: calc(100% - 60px);
      height: 60px;
      padding: 30px;
  }

  .port_name {
      font-size: 24px;
      font-weight: 100;
  }

  .port_quote {
      font-size: 16px;
      font-weight: 100;
  }

  .testimonials_wraper {
    width: calc(50% - 100px);
    margin-left: 20px;
    padding: 50px;
    height: auto;
    float: right;
  }

  #testimonials {
    float: left;
    font-size: 24px;
    line-height: 32px;
  }

  #testimonial_icon {
      float: left;
      margin-left: 46px;
  }

  blockquote {
      padding: 25px 25px 0px 50px;
  }

  footer {
      font-size: 0.9em;
  }
}

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

  .s3_crop_in {
    width: 85%;
  }

  .selected {
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 53.33px;
    padding: 120px 0px;
  }

  .port_item {
    width: 100%;
  }

  .port_item:hover {
    transition: 0.4s all ease-in-out;
    transform: translate(0px, -20px);
    scale: 100%;
    box-shadow: 0px 20px 18px -10px #adadad !important;
  }

  .port_item:nth-child(odd) {}

  .port_item:nth-child(even) {
    float: right;
  }

  /* SECTION 3 - PORT ITEM */

  .p_item {
    width: calc(100% - 60px);
    height: 60px;
    padding: 30px;
  }

  .port_name {
    font-size: 24px;
    font-weight: 100;
  }

  .port_quote {
    font-size: 16px;
    font-weight: 100;
  }

  .testimonials_wraper {
    width: 100%;
    height: auto;
    text-align: center;
  }

  #testimonials {
    font-size: 24px;
    line-height: 32px;
  }

  #testimonial_icon {
    margin: 0 auto;
    text-align: center;
  }

  blockquote {
    padding: 25px 0px;
  }

  footer {
    font-size: 0.9em;
  }
}

/**
*  ____            _   _               _  _
* / ___|  ___  ___| |_(_) ___  _ __   | || |
* \___ \ / _ \/ __| __| |/ _ \| '_ \  | || |_
*  ___) |  __/ (__| |_| | (_) | | | | |__   _|
* |____/ \___|\___|\__|_|\___/|_| |_|    |_|
*/
/* SECTION 4 */
#section4 {
  width: 100%;
  overflow: hidden;
}

.s4_crop_out {
  height: 100%;
  justify-items: anchor-center;
  padding-top: 120px;
}

.s4_crop_in {
  height: 100%;
  width: 85%;
}

.s4_lootie_icon{
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}

.s4_nadpis{
  font-family: cavant;
  padding-top: 10px;
  letter-spacing: -.67px !important;
  font-weight: 100;
}

.s4_popis{
  font-family: tisa;
  color: #45545F !important;
  margin: 17px 0px;
}

@media screen and (min-width: 1000px) {
      #section4 {
        height: 900px;
        background: linear-gradient(white 0%, #e4f7f7);
        justify-content: center;
        display: grid;
      }

      .s4_flexer {
        position: absolute;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
      }

      .s4_crop_out {
        width: 1400px;
        padding-top: 120px;
      }

      div#obrazky_serv {
        width: 1400px;
        height: 100%;
        margin: 0 auto;
      }

      .s4_third{
        width: 29.3333333333%;
        height: 370px;
        float: left;
        text-align: center;
        }

      .s4_third a,
      .s4_third a:hover {
        text-decoration: none;
        color: inherit;
      }

      .s4_third:nth-of-type(2),
      .s4_third:nth-of-type(3),
      .s4_third:nth-of-type(5),
      .s4_third:nth-of-type(6) {
        margin-left: 6%;
      }

      .s4_nadpis{
        font-size: 35px;
        line-height: 53.33px;
      }

      .s4_popis{
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -.18px;
      }

      .s4_learn {
        width: max-content;
        text-align: center;
        opacity: 0%;
        padding-bottom: 40px;
        transition: all 0.6s;
        border-bottom: 1px solid #485700 !important;
        position: relative;
        top: 32px;
        margin: 0 auto;
      }

      .s4_third:hover .s4_learn {
        opacity: 100%;
        color: #485700;
        top: 0px;
        padding-bottom: 10px;
      }

      /* services animation------------------ */
      /* default css positions-------- */

      img.j {
      	position: relative;
      	opacity: 0;
      	z-index: 0 !important;
      }

      img.k {
      	position: relative;
      	opacity: 0;
      	z-index: 0 !important;
      }

      img.sr_img_1 {
      	bottom: -565px;
        left: -476px;
      }

      img.sr_img_2 {
      	width: 340px;
        bottom: -564px;
        left: -415px;
      }

      img.sr_img_3 {
        width: 380px;
        bottom: -395px;
        left: 770px;
        transform: rotate(205deg);
      }

      img.sr_img_4 {
      	width: 530px;
        bottom: -159px;
        right: -877px;
      }

      /* services image animations-------- */
      #sr_real_1 {
          animation: obr .6s ease forwards;
      }

      /* Animácia pre druhý obrázok s oneskorením */
      #sr_real_2 {
          animation: obr .6s ease forwards;
          animation-delay: 0.25s;
      }

      /* Animácia pre tretí obrázok s oneskorením */
      #sr_real_3 {
          animation: obr .6s ease forwards;
          animation-delay: 0.5s;
      }

      /* Animácia pre obrázok s id sr_realr */
      #sr_real_4 {
          animation: obrr .6s ease forwards;
          animation-delay: 0.85s;
      }
    	@keyframes obr {
    		0% {opacity: 0.5; left: -830px; bottom: -830px; filter: blur(10px);}
    		100%{opacity: 1;}
    	}
      @keyframes obrr {
    		0% {opacity: 0.5; right: -1430px; bottom: -630px; filter: blur(10px);transform: rotate(30deg);}
    		100%{opacity: 1;}
    	}

      img.reasons_cupcake {
        position: absolute;
        opacity: 0;
        width: 250px;
        z-index: 0 !important;
      }

  		img#cupcakean {
      	animation: prich 1s ease forwards;
      }

      @keyframes prich {
      	from {opacity:0;bottom: 540px;left: -400px; transform: rotate(0deg);}
      	to {opacity: 1;bottom: 540px;left: 0px; transform: rotate(35deg);}
      }

}

@media only screen and (max-width: 1000px) {
      #section4 {
        background: #e4f7f7;
      }

      .s4_crop_out {
        padding-top: 80px;
      }

      div#obrazky_serv {
        position: relative;
        width: 100%;
        height: 200px;
      }

      img.sr_img_2 {
        position: absolute;
        width: 320px;
        bottom: 0;
        left: -155px;
      }

      img.sr_img_3 {
        position: absolute;
        width: 380px;
        top: 0px;
        right: -206px;
        transform: rotate(205deg);
      }

      .s4_third{
        text-align: center;
        padding-top: 80px;
      }

      .s4_third a,
      .s4_third a:hover {
        text-decoration: none;
        color: inherit;
      }

      .s4_third:nth-of-type(2),
      .s4_third:nth-of-type(3),
      .s4_third:nth-of-type(5),
      .s4_third:nth-of-type(6) {
      }

      .s4_nadpis{
        font-size: 35px;
        line-height: 53.33px;
      }

      .s4_popis{
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -.18px;
      }

      .s4_learn {
        color: #485700;
      }

      .s4_third:hover .s4_learn {
      }
}

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

#section5 {
  background: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover !important;
}

.s5_crop_out {
  height: 100%;
  width: 1400px;
}

.s5_crop_in {
  height: 100%;
  width: 85%;
}

.s5_brands {
  font-family: cavant;
  font-size: 40px;
  line-height: 50px;
  font-weight: 100 !important;
  float: left;
}

.s5_brands_p {
  font-family: tisa;
  color: #65778c;
}

.s5_brands_logos {
  float: left;
}

.s5_brand-container {

  float: left;
  justify-content: center;
  display: flex;
  border-right: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}

@media screen and (min-width: 1000px) {
        .s5_crop_out {
          justify-items: anchor-center;
        }

        .s5_crop_in {
          padding: 200px 0px;
          display: flex;
          align-items: center;
        }

        .s5_brands {
          width: 25%;
          margin-left: 10%;
        }

        .s5_brands_p {
          font-size: 22px;
          letter-spacing: -.46px;
          line-height: 34px;
        }

        .s5_brands_logos {
          width: 60%;
          margin-left: 5%;
        }

        .s5_brand-container {
          width: 33%;
        }


        .s5_brand-container:nth-of-type(3) {
          border-right: none !important;
        }

        .s5_brand-container:nth-of-type(4),
        .s5_brand-container:nth-of-type(5) {
          border-bottom: none !important;
        }

        .s5_brand-container:nth-of-type(6) {
          border-right: none !important;
          border-bottom: none !important;
        }
}

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

        #section5 {
          padding: 30px 0px;
        }

        .s5_crop_in {
          margin: 0 auto;
          text-align: center;
        }

        .s5_brands {
          width: 100%;
        }

        .s5_brands_p {
          font-size: 22px;
          letter-spacing: -.46px;
          line-height: 34px;
        }

        .s5_brands_logos {
          width: 100%;
        }

        .s5_brand-container {
          width: calc(50% - 1px);
        }

        .s5_brand-container:nth-of-type(2),
        .s5_brand-container:nth-of-type(4) {
          border-right: none !important;
        }

        .s5_brand-container:nth-of-type(5){
          border-bottom: none !important;
        }

        .s5_brand-container:nth-of-type(6) {
          border-right: none !important;
          border-bottom: none !important;
        }
}

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

/* SECTION 6 */

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

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

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

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

.s6_crop_in {
  height: 100%;
  width: 85%;
}

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

a.nicefont:link {
  font-family: cavant;
  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: 'cavant';
  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: cavant;
  font-size: 22px;
  color: white;
  padding: 11px 0px 0px 11px;
}

#digital {

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

.timezone {
  font-family: tisa;
  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, transparent, #3d3d3d, transparent);
  height: 2px;
  /* margin: 0 auto; */
  float: left;
}

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


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

.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: cavant;
  color: #ffffff;
  font-size: 25px;
  line-height: 35px;
  padding-top: 50px;
  text-align: center;
}

.quote-text {
  width: 100%;
}

.quote-author a {
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #0099b3;
}

.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;
  }

}
