@import url(lvDefault.css?v=2);

/*@import url(lvTestOnline.css);*/

:root {
    --bg-body-color: #fbf9f6;

    --def-text-color: #262626;
    --def-text2-color: #434343;
    --def-text-primary: #2f5157;
    --def-text-orange: #f07d00;
    --def-text-white: #ffffff;
    --def-text-black: #212121;
    --def-text-red: #db0500;
    --def-text-green: #068000;
    --def-text-primary2: #354259;

    --def-text-size: 17px;
    --def-text-weight: 400;

    --def-color-grey0: #f1f1f1;
    --def-color-grey1: #e5e5e5;
    --def-color-grey2: rgb(176, 176, 176);
    --def-color-grey3: #777777;
    --def-color-grey4: #5b5b5b;
    --def-color-grey5: #363636;

    --a-color: #2f5157;
    --a-hover-color: #2f5157;

    --input-btn-bg: #2f5157;
    --input-btn-bg-hover: #000;
    --input-btn-text: #fff;
    --input-btn-border-radius: 4px;
    --input-btn-textcolor-hover: #fff;
    --input-btn-weight: 600;

    --input-bg: #ffffff;
    --input-border: rgba(47, 81, 87, 0.4);
    --input-border-radius: 4px;
    --input-border-color-focus: #2f5157;

    --def-text-header-color: #2f5157;
    --def-text-title-color: #696868;

    --def-border-image-color: #2f5157;

    --def-table-border-color: #f1f1f1;
    --def-table-bg-hover-color: #f7f7f7;
}


/* main */

body {
    background: var(--bg-body-color);
}

.main {
    width: 1600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
}

.main1000 {
    width: 1000px !important;
}
.main800 {
    width: 800px !important;
}

ul {
    margin-left:0;
}

li {
    list-style: none;
    background: url(../img/li.png) no-repeat left top;
    padding-left: 24px;
    margin-bottom: 10px;
}

.contentBodyBase {
    margin-top: 70px;
}


/* header */


header {
    text-align: center;
    position: relative;
    height: 80px;
    padding: 0px 10px;
    background: url(../img/tlo_belka.gif) repeat-y center center;
    display: flex;
    box-shadow: 0px 0px 5px 0px rgba(0, 50, 50, .3);
}

header .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



#logo img {
    position: absolute;
    top:-2px;
    left: 50%;
    margin-left: -92px;
    z-index: 200;
    width: 180px;
    height: 179px;
}

#logo a:hover {
    opacity: 1;
}


#cat {
    display: flex;
    gap: 20px;
}
#cat a {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    color: var(--def-text-primary);
    font-family: "Yeseva One", serif;
}

#cat span {
    width: 30px;
}

#contact, #contact div {
    display: flex;
    gap: 20px;
}

#contact a.email {
    border: solid 1px #fbf9f6;
    border-radius: 12px 4px;
    width: 50px;
    height: 50px;
    background: url(../img/email.png) no-repeat center center;

}

#contact div a.tel {
    border: solid 1px #fbf9f6;
    border-radius: 12px 4px;
    width: 50px;
    height: 50px;
    background: url(../img/tel.png) no-repeat center center;
}

#contact a.kon {
    border: solid 1px #fbf9f6;
    border-radius: 12px 4px;
    height: 50px;
    width: auto;
    background: #fbf9f6;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    font-family: "Yeseva One", serif;
    padding: 0 25px;
    gap: 8px;
}



#contact a:hover {
    opacity: 0.7;
    transition: .4s;
}


/** NAVIGATION **/

/* nav menu top */

nav#menu {
    display: flex;
    justify-content: center;
    gap: 24px;
}

nav#menu a {
    font-size: 20px;
    color: #09090B;
    text-transform: uppercase;
}

nav#menu a:hover, nav#menu a.sel {
    color: var(--a-hover-color);
}

/** CONTENT **/


section.content .main {
    display: flex;
    padding: 20px 0;
}

/* body column */



#kontakt .text {
    margin-bottom: 20px;
    color: var(--def-text-primary);
    font-weight: 500;
    text-align: center;
}

#kontakt .main {
    width: 100%;
    max-width: 784px;
    padding: 30px 0 70px 0;
}

#kontakt .main h3 {
    text-align: center;
    line-height: 110%;
}

.contentFormBase {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contentFormBase .cols {
    width: 49%;
}

.contentFormBase .cols100w {
    width: 100%;
    margin-top:-10px;
}

.contentFormBase .formInput {
    position: relative;
}

.contentFormBase .formRow {
    margin-top: 20px;
}

.formInput input, .formRow label, .formRow textarea {
    border: solid 1px #a4b6b7;
    background: #fbf9f6;
    border-radius: 12px 4px;
    height: 50px;
    padding-left: 20px;
}

.formRow textarea  {
    padding-top: 16px;
}

.formRow label {
    font-weight: normal;
    font-size: 15px;
    cursor: pointer;
}

.formInput span {
    background: #fbf9f6;
    position: absolute;
    top:-8px;
    left: 15px;
    padding: 0 5px 0 5px;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    color:#1e3e43;
}

.formInput span small {
    color:red;
}

.wyslij {
    display: flex;
    justify-content: center;
    width: 100% !important;
    text-align: center;
}

.wyslij input {
    border-radius: 12px 4px;
    height: 50px;
    padding: 15px 20px 10px 20px;
    font-family: "Yeseva One", serif;
    text-transform: none;
    font-weight: normal;
    font-size: 20px;
    letter-spacing: 1px;
}





/** FOOTER **/

footer {
    text-align: center;
    padding: 12px 15px;
    color: #1e3e43;
    font-size: 15px;
    background: #e2d6c6;
    height: 40px;
}





#duzastopka {
    background: #f2ece2;
    padding: 40px 0;
}

#duzastopka .main {
    display: flex;
    align-items: center;
    justify-content: center;
}

#adresst {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

#adresst img {
    width: 80%;
}

#txt1 {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#txt1 h2 {
    margin:0;
    font-size: 20px;
    color: var(--def-text-primary);
    font-family: "Yeseva One", serif;

}


#kontakty, #txt2 {
    line-height: 150%;
    font-size: 16px;
    color:#09090B;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

#kontakty a,#txt2 a {
    font-size: 28px;
    color:var(--def-text-primary);
    background: url(../img/tel2.png) no-repeat 3px center;
    padding: 5px 0 0  35px;
    font-family: "Yeseva One", serif;
    font-weight: bold;
}

#txt2 a {
    font-size: 20px;
}


#kontakty a:nth-child(3), #txt2 a:nth-child(3) {
    font-weight: normal;
    background: url(../img/email2.png) no-repeat left center;
}


#adresstL {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 60%;

}

#naturlana-droga,.tloSekcja {
    margin-top: 60px;
    background: #2f5157 url(../img/pasek.png) repeat-x;
    text-align: center;
    min-height: 225px;
}

#naturlana-droga .main, .tloSekcja .main {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#naturlana-droga .main h2 {
    color:#f1f0ee;
    font-size: 38px;
    font-family: "Yeseva One", serif;
}

#naturlana-droga .main .opis {
    color: #fbf9f6;
    font-size: 18px;
    line-height: 140%;
}

.tloSekcja {
    height: 100%;
    min-height: auto;
    padding: 20px 0;
    margin-top:20px;
}

.tloSekcja .main .bodyLayBody {
    align-items: center;
    height: 100%;
    color:#fff;
}

.tloSekcja .main .bodyLayBody p {
    color:#fff;
    line-height: 160%;
    font-size: 21px;
}

.tloSekcja .bodyLay .bodyLayHeader {
    margin-top: 10px;
}

.tloSekcja .bodyLay .bodyLayHeader h1 {
    color: #fff !important;
}



#boxyTop .main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 40px;
}

#boxyTop .main h2 {
    color:#225258;
    font-size: 40px;
    text-align: center;
    width: 100%;
    font-family: "Yeseva One", serif;
    line-height: 140%;
    margin-bottom: 0;
}

#boxyTop .main .boxgl {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px 8px;
    background: url(../img/pasek_bok_box.png) repeat-y left;
    width: 23%;
    color:#1e3e43;
    font-weight: 500;
    font-size: 14px;
    padding: 20px 10px;
    border: solid #a4b6b7 1px;
    line-height: 140%;
}

#boxyTop .main .boxgl img {
    width: 125px;
}

#boxyTop .main .boxgl h2 {
    color: var(--def-text-primary);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 20px 0;
}

#dlakogo .main {
    width: 1150px;
    display: flex;
    gap: 30px;
    align-items: center;
}

#dlakogo .main #foto img {
    border-radius: 120px 40px;
}

#adres {
    text-align: center;
    margin-top: 60px;
    line-height: 120%;
}

#adres .button {
    margin-top: 20px;
}

.contentBody {
    width:100%;
}


.tloSekcja .bodyLay .bodyLayHeader h1 small {
    color:red;
    text-align: center;
    display: block;
    font-size: 21px;
    margin-top: 5px;
}