/* main.css
             _                           _ 
            | |                         | |
__  ________| | _____  _ __ ___    _ __ | |
\ \/ /______| |/ / _ \| '_ ` _ \  | '_ \| |
 >  <       |   < (_) | | | | | |_| |_) | |
/_/\_\      |_|\_\___/|_| |_| |_(_) .__/|_|
                                  | |      
                                  |_|      
*/

html, body {
	scroll-behavior: smooth;
    font-size: 16px;
}

body {
	font-family: 'Nunito', sans-serif;
	color: #000;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
    background: #000;
    max-width: 1140px;
}

.container-fluid {
	border-radius: 0!important;
	-moz-border-radius: 0!important;
	-webkit-border-radius: 0!important;
	-ms-border-radius: 0!important;
	-o-border-radius: 0!important;
}

.wrapper {
	border-radius: 30px;
	overflow-x: hidden;
	position: relative;
}

.content {
	max-width: 1600px;
	margin: auto;
	min-height: 1200px;
}

.disclaimer {
	padding: 30px 0;
	max-width: 620px;
	margin: auto;
	text-align: center;
	font-size: 14px;
}

/* 	wszystkie img responsywne dostosowują się do kontenera w jakim sa umieszczone nie ma potrzeby uzywania img-fluid w klasach */
img {
    max-width: 100%;
    max-height: auto;
    align-self: center;
}

/* ==========================================================================
   pozostałe style poniżej
   ========================================================================== */
    /* div { outline: 1px solid blue; } */


/* Resets
   ========================================================================== */

   ul {list-style: none; margin: 0; padding: 0;}


/* Typography
   ========================================================================== */

.small      {font-size: .85rem;}
.medium     {font-size: 1.2rem;}
.large      {font-size: 1.65rem;}
.xlarge     {font-size: 2.5rem;}

.thin       {font-weight: 300;}
.regular    {font-weight: 400;}
.semi       {font-weight: 600;}
.bold       {font-weight: 700;}
.nobr	    {white-space: nowrap;}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}


/* Backgrounds
   ========================================================================== */

.bg-1, .bg-2, .bg-3, .bg-4 {
    background-size: cover;
    background-repeat: no-repeat;}
.bg-1 {
    background: url('../img/bg_1.jpg');
    background-position: center center;}
.bg-2 {
    background-image: url("../img/bg_2.jpg");
    background-position: center top;}
.bg-3 {
    background-image: url("../img/bg_3.jpg");
    background-position: center top;}
.bg-4 {
    background-image: url("../img/bg_4.jpg");
    background-position: center top;}

/* Layout
   ========================================================================== */

   .hero-cta {
       display: -webkit-box;
       display: -ms-flexbox;
       display: flex;
       -webkit-box-pack: center;
           -ms-flex-pack: center;
               justify-content: center;
       -webkit-box-align: center;
           -ms-flex-align: center;
               align-items: center;
    }
    header {
       border-radius: 24px 24px 0 0;
    }
    .spec {
        position: relative;
    }
    .spec-logos {
        max-width: 300px;
    }
    footer h2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .logos-container {
        position: relative;
    }
    .logos-wrapper {
        position: absolute;
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
    }
    .logos-wrapper a {
        display: inline-block;
    }
    .hr-line {
        display: block;
        height: 1px;
        width: 90%;
        background: rgb(80, 80, 80); /* Fallback */
        background: rgba(255,255,255, .2);
        margin: 2rem auto;
    }
    .hr-line:before {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        background: rgb(0,0,0);
        background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 25%);
        height: 2px;
        width: 200px;
        z-index: 5;
    }
    .hr-line:after {
        position: absolute;
        right: 0;
        top: 0;
        content: "";
        background: rgb(0,0,0);
        background: linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 25%);
        height: 2px;
        width: 200px;
        z-index: 5;
    }
    section {
        padding: 0 30px;
    }
    .sklep div {
        margin: 2rem auto;
    }
   
/* Colors
   ========================================================================== */

   header {
       background: #f0f3f8;
    }
    .white {
        color: #fff;
    }
    .green {
        color: #76b900;
    }
    .lgrey {
        color: #c8c8c8;
    }

    /* Animation
   ========================================================================== */

   /* .content-wrapper img {
       -webkit-transition: .2s ease-in-out;
       -o-transition: .2s ease-in-out;
       transition: .2s ease-in-out;
   }
   
   .content-wrapper img:hover {
       -webkit-transform: translateY(-10px) scale(1.05);
       -o-transform: translateY(-10px) scale(1.05);
       transform: translateY(-10px) scale(1.05);
   } */

    .scroll-down-icon {
        animation-name: pulse_animation;
        animation-duration: 3000ms;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        margin: 1.5rem 0;
    }

    .scroll-down-icon:hover {
        cursor: pointer;
    }

   @keyframes pulse_animation {
        0% { transform: translateY(0); }
        50% { transform: translateY(15px); }
        100% { transform: translateY(0); }
    }

   /* Media
   ========================================================================== */

   /* mobile */
   @media (max-width: 768px) {
       html, body {
            font-size: 13px;
        }

        .small      {font-size: .85rem;}
        .medium     {font-size: 1rem;}
        .large      {font-size: 1.3rem;}
        .xlarge     {font-size: 1.8rem;}

        .thin       {font-weight: 300;}
        .regular    {font-weight: 400;}
        .semi       {font-weight: 600;}
        .bold       {font-weight: 700;}

        footer h2 {
            flex-direction: column;
        }
        .spec-logos {
            max-width: 180px;
        }
        .hr-line {
            display: block;
        }
   }

    @media (max-width: 991px) {
      .tcm {
          text-align: center!important;
      };
   }



