/*               Body                  */
body {

    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 300;

    overflow-x: hidden;
}

.help-block.error{
    color: red;
}

    /*              header                  */
.header {
    /*height: 500px;*/

    padding-bottom: 100px;

    width: 100%;
    position: relative;
    background-image: url('../images/kontakt.jpg');
    background-repeat: no-repeat;
    background-size: cover
}

.header .fluid-img {
    top: 20px !important;
    max-width: 830px;
    width: 100%
}

.header .container-fluid {
    z-index: 100;
    position: relative
}

.header:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: ' ';
    background-color: rgba(58, 42, 81, 0.9);
    z-index: 0;
}

.header:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    bottom: 0;
    z-index: 0;
    border-width: 0 0px 70px 100vw;
    right: 0;
}

/*          Odstępy         */
.mt-25 {
    margin-top: 25px;
}

.mt-75 {
    margin-top: 75px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-75 {
    margin-bottom: 75px;
}

.pt-25 {
    padding-top: 25px;
}

.mb-50 {
    margin-bottom: 50px;
}

.center {
    margin: auto;
}

/*          przyciski           */
.mybtn {
    width: 100%;
    background-color: #ff7148;
    border: none;
    -webkit-box-shadow: 0 0 0 0 #ff7148;
    box-shadow: 0 0 0 0 #ff7148;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all
}

.mybtn:focus, .mybtn:hover {
    -webkit-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px transparent;
    color: #fff;
    background-color: #ff7148;
}

.mybtn-twin {
    width: 49.5%;
    background-color: #ff7148;
    border: none;
    -webkit-box-shadow: 0 0 0 0 #ff7148;
    box-shadow: 0 0 0 0 #ff7148;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all
}

.mybtn-twin:focus, .mybtn-twin:hover {
    -webkit-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px transparent;
    color: #fff;
    background-color: #ff7148;
}

/*          Linie           */
.line {
    background-color: rgba(58, 42, 81, 1);
    position: relative;
    padding: 70px 0;
    color: white;
}

.line:before, .line:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;

    border-style: solid;

    position: absolute;

    right: 0;
}

.line:before {
    border-color: #fff transparent transparent transparent;
    top: 0;
    z-index: 1;
    border-width: 70px 100vw 0 0;
}

.line:after {
    border-color: transparent transparent #fff transparent;
    bottom: 0;
    z-index: 0;
    border-width: 0 0px 70px 100vw;

}

.line-bottom:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    z-index: 1;
    border-width: 70px 100vw 0 0;
    right: 0;
}

.line-bottom {
    position: relative;
    padding: 70px 0;
    color: white;
}

.line-bottom:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: ' ';
    background-color: rgba(58, 42, 81, 0.9);
    z-index: 0;
}

.contact-backgroud {
    z-index: 9;
    width: 100%;
    position: relative;
    background-image: url('../images/kontakt.jpg');
    background-repeat: no-repeat;
    background-size: cover
}


/**
 * Formularze
 */
input, textarea, select {
    /*border: 1px solid #ccc;*/
    border: 1px solid transparent;
    outline: none;
    box-shadow: none;

    -webkit-box-shadow: 0 0 0 0 #ff7148;
    box-shadow: 0 0 0 0 #ff7148;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all
}

input:focus, textarea:focus, select:focus {
    border: 1px solid #ff7148;
    box-shadow: none;

    /*background-color: #ff7148 !important;*/
    /*color: #ffffff !important;*/
    -webkit-box-shadow: 0 0 0 10px transparent !important;
    box-shadow: 0 0 0 10px transparent !important;
    color: #fff !important;
    /*background-color: #ff7148 !important;*/

}