/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* :root{
    --stefan-one:  #000;
} */
@font-face {
    font-family: "MyriadPro-Bold";
    src:
      url("../fonts/MyriadPro-Bold.otf") format("opentype"),
      url("../fonts/MyriadPro-Bold.svg") format("svg"),
      url("../fonts/MyriadPro-Bold.eot") format("eot"),
      url("../fonts/MyriadPro-Bold.woff") format("woff")
  }

@font-face {
font-family: "MyriadPro-Regular";
src:
    url("../fonts/MyriadPro-Regular.eot") format("opentype"),
    url("../fonts/MyriadPro-Regular.svg") format("svg"),
    url("../fonts/MyriadPro-Regular.eot") format("eot"),
    url("../fonts/MyriadPro-Regular.woff") format("woff")
}
  

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Main zauzima preostali prostor */
    background: url('../img/bg-desktop-en.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.container{
    display: flex;
    height: 500px;
    max-width: 1100px;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;

    .text-coll{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50%;

        .text{
            color: white;
            font-size: 24px;
            width: 430px;
            font-weight: 700;
            text-align: center;
            font-family: 'MyriadPro-Bold';
            margin: 5px 0 20px 0;
        }

        .button{
            background-color: yellow;
            color: black;
            font-size: 32pt;
            padding: 10px 40px;
        }
    }
}

.promo-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 20px;
}

.promo-item {
    position: relative;
    width: 250px;
    text-align: center;
}

.promo-background {
    background: url('../img/step-bg.png') no-repeat center;
    background-size: contain;
    height: 190px;
}

.promo-text {
    position: absolute;
    width: 100%;
    height: 170px;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-weight: bold;
}

.promo-text h2 {
    margin: 0;
    font-size: 18px;
    color: yellow;
}

.promo-text p {
    margin: 30px 0 0;
    font-size: 14px;
    padding: 0 10px;
}

.tpl-logo-wrap{
    float: none;
    margin: 0 auto;
}