html {
    font-size: 62.5%;
}

* {
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Inter';
    font-weight: 300;
    src: local('Inter'), url('fonts/Inter-Light.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-weight: 400;
    src: local('Inter'), url('fonts/Inter-Regular.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    font-weight: 800;
    src: local('Inter'), url('fonts/Inter-Bold.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'CinzelDecorative';
    font-weight: 400;
    src: local('CinzelDecorative'),
        url('fonts/CinzelDecorative-Regular.ttf') format('truetype');
    font-display: swap;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #898989;
    margin: 0;
    padding: 0;
    font-family: 'Inter', calibri, tahoma;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5rem;
}

.row {
    display: flex;
}
.box {
    display: flex;
    flex-direction: column;
}

.header {
    width: 100%;
}

.header__top {
    background: #898989;
    color: #fff;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.3rem;
}
.header__innerwrapper {
    width: 100%;
    max-width: 1250px;
    height: 100%;
    padding: 0.5rem 0rem;
    align-items: center;
    justify-content: space-between;
}
.header__bottom {
    color: #898989;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
.header__logo {
    background: url('images/logo.png') center center no-repeat;
    background-size: contain;
    width: 70px;
    height: 64px;
    cursor: pointer;
}
.header__menu {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.header__menu--link {
    height: 100%;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 2.2rem;
    line-height: 3rem;
    color: #898989;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.header__menu--link:hover {
    color: #474747;
}
.innerwrapperrow {
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
}
.topblock {
    height: 100%;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    align-items: center;
}

.topblock a {
    display: flex;
    align-items: center;
    color: #ffffff;
}
.topblock a:hover {
    text-decoration: none;
}

img.toprowimg {
    background: transparent;
    height: 20px;
    margin-right: 0.5rem;
}
.content {
    width: 100%;
    max-width: 1250px;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
}

.uppercase {
    text-transform: uppercase;
}
.bold {
    font-weight: 700;
}

h1,
h2 {
    width: 100%;
    font-weight: 400;
    font-size: 3.2rem;
    line-height: 4.3rem;
    text-align: left;
    font-family: 'CinzelDecorative';
}

.section {
    width: 100%;
    align-items: center;
    padding: 3rem 5rem;
}

.titlesection {
    background: url('images/title2.jpg') center top no-repeat;
    background-size: cover;
    width: 100%;
    height: 65rem;
    align-items: center;
    position: relative;
}

.titlesection__box {
    font-family: 'Cinzel';
    width: 450px;
    position: absolute;
    left: 10rem;
    bottom: 2rem;
    color: #ffffff;
}
.titlesection__box--text {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2rem;
    padding: 1.5rem;
}
.title__heading {
    font-size: 3rem;
    line-height: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Cinzel';
}
.title__description {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Cinzel';
}
.titlesection__box--buttons {
    margin-top: 2rem;
    justify-content: space-between;
    padding: 0 2rem;
}
.titlesection__box--link {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2rem;
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    line-height: 2.1rem;
    transition: all 0.4s;
}
.titlesection__box--link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.titlerow {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

.sectionbox {
    width: 33%;
    align-items: center;
    justify-content: space-between;
}
.sectionbox-inner {
    align-items: center;
}
.darkbutton {
    background: #898989;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
    font-family: 'Cinzel';
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2.2rem;
    transition: all 0.4s;
    margin: 1rem 2rem;
    border: 1px solid #fff;
}
.darkbutton:hover {
    color: #898989;
    border: 1px solid #898989;
    background: #fff;
    transform: scale(1.05);
}

.whyus__title {
    font-size: 3.2rem;
    font-family: 'Inter';
    font-weight: 300;
}
hr.halfhr {
    display: inline;
    width: 200px;
    height: 3px;
    background: #898989;
    margin: 1.5rem 0;
}
.whyus {
    padding: 8rem 0;
}

.mt-200 {
    margin-top: 20rem;
}

.letter {
    background: #898989;
    border: 1px solid #fff;
    color: #fff;
    width: 10rem;
    height: 10rem;
    border-radius: 5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 4rem;
    font-family: 'CinzelDecorative';
    cursor: pointer;
    transition: all 0.4s;
}
.letter-wrapper {
    background: #898989;
    width: 10.4rem;
    height: 10.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.letter-wrapper:hover {
    background: #ffffff;
}
.letter-wrapper:hover .letter {
    background: #fff;
    border: 1px solid #898989;
    color: #898989;
}

.letter__title {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    font-family: 'CinzelDecorative';
    padding: 2rem;
}
.letter__text {
    width: 100%;
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'Inter';
    padding: 2rem;
    text-align: center;
}

.title__bottom--wrapper {
    width: 50%;
    align-items: center;
    justify-content: center;
}
.title__bottom {
    width: 100%;
    font-size: 3.2rem;
    font-family: 'Inter';
    font-weight: 300;
    padding: 1rem;
    align-items: center;
}
.contentimg {
    background: url('images/titleContent.jpg') center top no-repeat;
    width: 600px;
    height: 650px;
    transition: all 0.4s;
}
.contentimg:hover {
    background: url('images/titleContent2.jpg') center top no-repeat;
}

.fullwidth {
    width: 100%;
}

.rightbox {
    height: 400px;
}
iframe {
    border: 0;
}

.contactrow {
    width: 100%;
    padding: 1.5rem 0.5rem;
    font-size: 2.4rem;
    line-height: 2.9rem;
    text-align: left;
}

.odbornostrow {
    width: 100%;
}
.odbornostbox {
    width: 100%;
}
.odbornost__title {
    width: 100%;
    font-size: 2.4rem;
    line-height: 2.9rem;
    text-align: left;
}

.odbornost__description {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.9rem;
    text-align: left;
    margin-bottom: 2rem;
}

.odbornost__imgwrapper {
    width: 500px;
    height: 930px;
    overflow: hidden;
    margin-left: 2rem;
}

.odbornost__img {
    background: url('images/odbornost.jpg') center center no-repeat;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.odbornost__img:hover {
    transform: scale(110%);
}

.cennikbox {
    width: 50%;
    padding: 1rem;
}

.cennik__img {
    background: url('images/cennik.jpg') left bottom no-repeat;
    background-size: cover;
    width: 100%;
    height: 700px;
}
.cennik__img:hover {
    background: url('images/cennik2.jpg') left top no-repeat;
    background-size: cover;
    width: 100%;
    height: 700px;
}

.cennik__title {
    width: 100%;
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin-top: 1.5rem;
    text-align: left;
}
.cennik__description {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.9rem;
    text-align: left;
    margin-bottom: 0.5rem;
}

.onas__row {
    text-align: left;
}
.onas__imgwrapper {
    width: 500px;
    height: 760px;
    overflow: hidden;
    float: right;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}
.onas__img {
    background: url('images/onas.jpg') center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.onas__img:hover {
    transform: scale(110%);
}

.onas__box {
    width: 60%;
    padding: 1.5rem;
    text-align: left;
}
.onas__imgc {
    background: url('images/onas4.jpg') center center no-repeat;
    margin-top: 2rem;
    width: 100%;
    height: 360px;
}

.onas__imgb {
    background: url('images/onas2.jpg') center center no-repeat;
    width: 500px;
    height: 700px;
    transition: all 0.5s;
}
.onas__imgb:hover {
    background: url('images/onas3.jpg') center center no-repeat;
}

.refbox {
    width: 50%;
    padding: 1rem;
    text-align: left;
}
.ref {
    margin: 2rem;
}
.ref__author {
    padding-top: 2rem;
}

.review-link-box {
    margin: 4rem 0;
    width: 100%;
    max-width: 500px;
    font-size: 1.8rem;
}
.review-link-box a {
    color: #898989;
    font-weight: bold;
    text-decoration: underline;
}

.referencie__imgs {
    justify-content: space-between;
}
.ref__img {
    width: 33%;
}

.sluzbybox {
    width: 50%;
}
.sluzby__img {
    width: 30rem;
    height: 33rem;
    position: relative;
}
.sluzby__img div.sluzby__hovertext {
    display: none;
}
.sluzby__img:hover div.sluzby__hovertext {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    font-family: 'CinzelDecorative';
    text-transform: lowercase;
    letter-spacing: 2px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    outline: solid 12px #898989;
    outline-offset: -12px;
    color: #898989;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.7rem;
}
.sluzby__imga {
    background: url('images/sluzby.jpg') center center no-repeat;
    background-size: cover;
    margin: 3.1rem;
}
.sluzby__imgb {
    background: url('images/sluzby2.jpg') center center no-repeat;
    background-size: cover;
    margin: 3.1rem;
}
.sluzby__imgc {
    background: url('images/sluzby3.jpg') center center no-repeat;
    background-size: cover;
    margin: 3.1rem;
}
.sluzby__imgd {
    background: url('images/sluzby4.jpg') center center no-repeat;
    background-size: cover;
    width: 25rem;
    margin: 2rem 0.5rem;
}
.sluzby__imge {
    background: url('images/sluzby5.jpg') center center no-repeat;
    background-size: cover;
    width: 25rem;
    margin: 2rem 0.5rem;
}
.sluzby__imgf {
    background: url('images/sluzby6.jpg') center center no-repeat;
    background-size: cover;
    width: 25rem;
    margin: 2rem 0.5rem;
}

.sluzby__circle {
    border: 2px solid #898989;
    color: #898989;
    width: 12rem;
    min-width: 12rem;
    padding: 1rem;
    height: 12rem;
    border-radius: 6rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'CinzelDecorative';
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: lowercase;
    transition: all 0.4s;
}
div:hover > .sluzby__circle {
    background: #898989;
    border: 2px solid #898989;
    color: #fff;
}
.sluzba {
    margin: 3rem 1rem;
}
.sluzba__text {
    padding: 0 1.5rem;
    text-align: left;
}
.sluzby__imgs {
    justify-content: center;
}

.blog-posts {
    width: 100%;
}
.blog-post {
    width: 100%;
    padding: 1rem 0;
    min-height: 15rem;
    margin-bottom: 1rem;
    cursor: pointer;
}
.blog-post:hover {
    background: #ececec;
}
a.blog-post {
    width: 100%;
    height: 100%;
    text-decoration: none;
    flex-wrap: wrap;
}

.blog-img {
    width: 30rem;
    height: 45rem;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.blog-title {
    padding-left: 2rem;
    height: 100%;
}
.blog-title h2 {
    font-family: 'Inter';
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #898989;
    text-decoration: none;
}

.blog-post__content p,
.blog-post__content ul {
    text-align: left;
}

ul {
    line-height: 2;
    padding: 0 0 0 1.5rem;
    text-align: left;
}

.text-left {
    text-align: left;
}

.blog-post__title {
    font-family: 'Inter';
}

.blog-left {
    width: 75%;
    padding-right: 2rem;
    text-align: left;
}

.blog-row-img {
    width: 250px;
    height: 150px;
    margin-bottom: 2rem;
}
.blog-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_imgs_row {
    width: 100%;
    padding: 2rem 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog_imgs_row img {
    width: 100%;
}

.img_descriptionbox {
    width: 32%;
    margin-bottom: 2rem;
}
.img_descriptionbox p {
    text-align: left;
    padding: 0 1rem;
}

.blog-halves {
    width: 100%;
    flex-wrap: wrap;
}

.half h3 {
    text-align: center;
}
.half {
    padding: 1rem;
    width: 50%;
    text-align: left;
}

.faq-item {
    margin-bottom: 4rem;
}
.faq-title {
    font-weight: 600;
    font-size: 1.8rem;
}
.faq-content {
    padding: 0.5rem 0 0 1rem;
}

@media (max-width: 1200px) {
    .kontakt {
        flex-direction: column;
    }
}
@media (max-width: 1000px) {
    .onas__imgwrapper {
        width: 400px;
        height: 600px;
    }
    .onas__imgc {
        height: 250px;
    }
    .cennikrow {
        flex-direction: column;
    }
    .cennikbox {
        width: 100%;
    }
}
@media (max-width: 800px) {
    .section {
        padding: 2rem;
    }
    .titlerow {
        flex-direction: column;
    }
    .sectionbox {
        width: 100%;
        padding-bottom: 4rem;
    }
    .letter__title {
        padding: 1rem;
    }
    .letter__text {
        padding: 1rem;
        text-align: center;
    }
    .contentimg {
        display: none;
    }
    .title__bottom--wrapper {
        width: 100%;
        align-items: center;
    }
    .sluzba {
        margin: 2rem 1rem;
        flex-direction: column;
        align-items: center;
    }
    .sluzba__text {
        padding: 1rem;
        text-align: center;
    }
    .sluzby__imgs {
        flex-wrap: wrap;
    }
    .sluzby__imga {
        margin: 1rem;
    }
    .sluzby__imgb {
        margin: 1rem;
    }
    .sluzby__imgc {
        margin: 1rem;
    }
    .sluzby__imgd {
        margin: 1rem;
    }
    .sluzby__imge {
        margin: 1rem;
    }
    .sluzby__imgf {
        margin: 1rem;
    }
    .map {
        width: 100%;
    }
    .referencie {
        flex-direction: column;
    }
    .refbox {
        width: 100%;
    }

    .odbornostrow {
        flex-direction: column;
    }
    .odbornost__imgwrapper {
        width: 100%;
        height: 500px;
        margin-left: 0rem;
    }

    .odbornost__img {
        background-size: contain;
    }

    .onas__imgwrapper {
        width: 300px;
        height: 500px;
    }

    .onas__box {
        width: 100%;
    }
    .onas__imgc {
        height: 460px;
    }

    .onas__imgb {
        background: url('images/onas2.jpg') center center no-repeat;
        background-size: contain;
        width: 100%;
        height: 500px;
    }
    .onas__bottom {
        flex-direction: column;
    }

    .blog-left {
        width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }

    .blog-img {
        width: 100%;
    }
    .blog-post__content {
        flex-direction: column;
    }

    .half {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .titlesection {
        background: url('images/title2.jpg') 60% top no-repeat;
        background-size: cover;
        height: 40rem;
    }
    .titlesection__box {
        max-width: 350px;
        width: auto;
        left: unset;
        bottom: 1.5rem;
    }
    .titlesection__box--text {
        border-radius: 1rem;
        padding: 1rem;
    }
    .title__heading {
        font-size: 2rem;
        line-height: 3rem;
    }
    .title__description {
        font-size: 1.4rem;
        line-height: 1.4rem;
    }
    .titlesection__box--buttons {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    .titlesection__box--link {
        border-radius: 1rem;
        padding: 1rem;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .sluzbybox {
        width: 100%;
    }
    .sluzby__wrapper {
        flex-direction: column;
    }
    .referencie__imgs {
        flex-wrap: wrap;
        height: auto;
    }
    .ref__img {
        width: 100%;
    }

    .onas__imgwrapper {
        width: 100%;
        height: 400px;
    }

    .img_descriptionbox {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .header__top {
        display: none;
    }
    .header__innerwrapper {
        flex-direction: column;
    }
    .header__menu {
        justify-content: center;
        padding-top: 3rem;
    }
    .header__menu--link {
        padding: 1rem;
    }
    .cennik__img {
        height: 550px;
    }
    .cennik__img:hover {
        height: 550px;
    }
}
