/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: > 0%
*/

/* CSS by Marek Caban   mcaban4@gmail.com*/


:root {
    --cc-bg: #fff;
    --cc-main: #0031ff;
    --cc-alt: #ffd256;
    --cc-neutral: #616161;
    
    /* Swiper theme */
    --swiper-theme-color: var(--cc-alt);
    
}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}


html {
    height:100%;
    overflow: auto;
    overflow-x: hidden;
    color: #fff;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: "Metropolis";
    font-weight: 400;
    font-size: 1rem; 
    color: var(--cc-main);  
    background-color: var(--cc-bg);
}

.padded {
    padding-left: 10%;
    padding-right: 10%;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
}

.screen-reader {
    display: none;
}

.main-width {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

section:not(.hero):not(.icons) {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

h1 {
    font-family: 'Stag Sans Round';
    font-size: 2rem;
}

h2 {
    font-family: 'Stag Sans Round';
    font-size: 3rem;
    margin: 0;
}

p {
    font-size: 1.3rem;
    margin: 1rem 0;
}

li p {
    margin: 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: numeric;
}

ul, ol {
  padding-left: 1.3rem;
  margin: 1rem 0;
}

img {
    height: auto;
}

/*HEADER */

header {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.page-logo {
    position: absolute;
    left: 0;
    top: -20%;
    width: 26%;
    z-index: 10;
}

.company-logo {
    padding-right: 5%;
    width: 16%;
}


.company-logo img {
    width: 100%;
}

.social {
    padding: 1rem;
}

.social .column {
    width: 35%;
}

/* PAGE */

.hero {
    position: relative;
}

.hero img {
    width: 100%;
}

.page-headline {
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 35%;
    text-align: right;
}


.page-headline h2 {
    color: var(--cc-alt);
}

.subheadline {
    font-family: 'Stag Sans Round';
    font-size: 1.7rem;
    color: var(--cc-bg);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.icons {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
}

.icons img {
    width: 100%;
}    

/* AUTOR */

.author {
    background: var(--cc-main);
    padding: 1rem;
}

.author .columns {
    border: 1px solid var(--cc-bg);
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
}

.author .two.column {
    width: 40%;
}

.author .subheadline {
    font-family: "Metropolis";
    font-size: 400;
    text-transform: initial;
}

.author h2 {
    color: var(--cc-alt);
}

.portrait-cont {
    position: relative;
    padding: 4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.portrait{
    width: 100%;
    min-width: 300px;
    max-width: 361px;
}

.spoons {
    width: 180%;
    max-width: 659px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation-duration: 60s;
       -moz-animation-duration: 60s;
         -o-animation-duration: 60s;
            animation-duration: 60s;
    -webkit-animation-name: rotate;
       -moz-animation-name: rotate;
         -o-animation-name: rotate;
            animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
       -moz-animation-iteration-count: infinite;
         -o-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
       -moz-animation-timing-function: linear;
         -o-animation-timing-function: linear;
            animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: translate(-50%, -50%) rotate(0deg);
         transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -moz-transform: translate(-50%, -50%) rotate(360deg);
         transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: translate(-50%, -50%) rotate(0deg);
       transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -o-transform: translate(-50%, -50%) rotate(360deg);
       transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
       -moz-transform: translate(-50%, -50%) rotate(0deg);
         -o-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
       -moz-transform: translate(-50%, -50%) rotate(360deg);
         -o-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* Recipes */

.recipes .subheadline {
    font-family: "Metropolis";
    font-size: 2rem;
    color: var(--cc-main);
    text-transform: initial
}

.recipes-wrapper {
    position: relative;
    display: block;
    text-align: left;
}

.swiper-button-next {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    right: -70px;
    width: 45px;
    height: 45px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
}
.swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -70px;
    width: 45px;
    height: 45px;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0px;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 6rem;
    font-weight: 900;
}

.single-recipe {
    border-bottom: 2px solid var(--cc-neutral);
    cursor: pointer;
}

.single-recipe a {
    text-decoration: none;
    color: var(--cc-neutral);
}


.single-recipe p a {
    color: var(--cc-main);
}

.single-recipe p a:hover {
    text-decoration: none;
    color: var(--cc-alt);    
}

.single-recipe h2, .single-recipe h3 {
    font-family: "Metropolis";
}

.single-recipe h3 { 
    font-size: 2rem;
    font-weight: 400;
}

.recipe-img-cont {
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.recipe-img {
    width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transition: 0.5s -webkit-transform;
    transition: 0.5s -webkit-transform;
    -o-transition: 0.5s -o-transform;
    -moz-transition: 0.5s transform, 0.5s -moz-transform;
    transition: 0.5s transform;
    transition: 0.5s transform, 0.5s -webkit-transform, 0.5s -moz-transform, 0.5s -o-transform;
    cursor: pointer;
}
    
.play-button:hover {
    -webkit-transform:  translate(-50%, -50%) scale(1.1);
       -moz-transform:  translate(-50%, -50%) scale(1.1);
        -ms-transform:  translate(-50%, -50%) scale(1.1);
         -o-transform:  translate(-50%, -50%) scale(1.1);
            transform:  translate(-50%, -50%) scale(1.1);
}

.recipe-desc {
    margin-top: 2rem;
    color: var(--cc-neutral);
}

.recipe-desc h3 {
    color: var(--cc-main);
}

.recipe-desc p {
    color: var(--cc-neutral);
}


/* PRIZES */

.prizes {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.prizes .subheadline {
    font-family: "Metropolis";
    font-size: 2rem;
    color: var(--cc-main);
    text-transform: initial;
    margin-bottom: 1rem;
}

.prizes-card {
    background: var(--cc-alt);
    padding: 1rem;
    position: relative;
}

.prizes .columns {
    border: 1px solid var(--cc-bg);
}

.prizes h2 {
    font-family: "Metropolis";
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 0;
}

.prizes-wrapper p {
    color: var(--cc-bg);
    font-size: 2.5rem;
    margin: 0;
}

.prizes-wrapper {
    padding: 8rem 18%;
    text-transform: uppercase;
    text-align: center;
}

.bag {
    position: absolute;
    top: -20%;
    right: -7%;
    width: 30%;
}

.book {
    position: absolute;
    bottom: -20%;
    left: -7%;
    width: 20%;
}

/* FOOD */ 

.food .columns {
    gap: 2rem;
}

.food img {
    width: 100%;
}

/* FOOTER */

footer .columns {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
}

.footer-page-logo {
    width: 30%;
    max-width: 281px;
}

.footer-page-logo, .footer-social {
    margin-bottom: 3rem;
}

.footer-page-logo img {
    width: 90%;
}

.footer-logo {
    position: relative;
}

.footer-logo {
    position: relative;
}

.footer-spoons {
    width: 100%;
}

.footer-milko {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    -webkit-transform: translateX( -50% );
       -moz-transform: translateX( -50% );
        -ms-transform: translateX( -50% );
         -o-transform: translateX( -50% );
            transform: translateX( -50% );
    width: 20%;
}

.footer-social .column {
    width: 40%;
}

.footer-social img {
    width: 100%;
}