/*
*
*		DoRoboty css style
*			File: v0.1
*
*/

@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@600;700&display=swap');

:root {
    --dr-default: hsl(210deg 29% 29%);
    --dr-separator-header-color: rgb(180, 125, 6);
    --dr-box-bac: rgb(255, 171, 6);
    --dr-box-heollo-gr: rgb(216, 141, 2);
    /* clip-path: circle(93.7% at 0 92%); */
    --dr-box-clip: polygon(0 100%, 0 -25%, 28% 80%, 100% 90%, 100% 100%);
    --dr-box-clip-revert: polygon(0 0%, 0 100%, 28% 20%, 100% 10%, 100% 00%);
    /* --dr-box-clip: polygon(0 100%, 0 0, 18% 3%, 21% 23%, 44% 62%, 83% 70%, 99% 89%, 100% 100%); */
    /* --dr-box-clip: polygon(0 100%, 0 0, 51% 59%, 100% 85%, 100% 100%); */
    /* --dr-box-clip: circle(58.3% at 34% 100%); */
    --dr-footer-bac: rgb(30, 49, 97);

}

body,
head,
html {
    background: var(--dr-default) !important;
}

.dr-mbs {
    margin-bottom: 4rem;
}

.dr-mts {
    margin-top: 4rem;
}

.dr-name-section-container {
    background-color: white;
    padding: 7.5px;
    border-radius: 25px;
    -webkit-hyphens: inherit;
    -ms-hyphens: inherit;
    hyphens: inherit;
    background: rgb(233, 144, 9);
    background: linear-gradient(90deg, rgba(233, 144, 9, 1) 0%, rgba(235, 164, 78, 1) 50%, rgba(232, 201, 71, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e99009", endColorstr="#e8c947", GradientType=1);
    -moz-background-clip: text;
    -o-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-size: 24px;
    font-weight: bold;
}

.dr-line-whitable {
    width: 100%;
    height: 125px;
    background-color: white;
}


nav.lavalamp-menu {
    margin: auto;
    position: relative;
    width: 550px;
    height: 50px;
    background-color: #34495e;
    border-radius: 8px;
    font-size: 0;
}

nav.lavalamp-menu a {
    line-height: 50px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    cursor: pointer;
}

nav.lavalamp-menu .animation {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all .5s ease 0s;
    border-radius: 8px;
}

a.lavalamp-a {
    width: 110px;
}

nav.lavalamp-menu .start-home,
a:nth-child(1):hover~.animation {
    width: 110px;
    left: 0;
    background-color: #a10f17;
}

nav.lavalamp-menu .start-about,
a:nth-child(2):hover~.animation {
    width: 110px;
    left: 110px;
    background-color: #e74c3c;
}

nav.lavalamp-menu .start-blog,
a:nth-child(3):hover~.animation {
    width: 110px;
    left: 220px;
    background-color: #3498db;
}

nav.lavalamp-menu .start-portefolio,
a:nth-child(4):hover~.animation {
    width: 110px;
    left: 330px;
    background-color: #9b59b6;
}

nav.lavalamp-menu .start-contact,
a:nth-child(5):hover~.animation {
    width: 110px;
    left: 440px;
    background-color: #e67e22;
}

nav.lavalamp-menu .start-contact,
a:nth-child(6):hover~.animation {
    width: 110px;
    left: 440px;
    background-color: #207515;
}

nav.lavalamp-menu .start-contact,
a:nth-child(7):hover~.animation {
    width: 110px;
    left: 440px;
    background-color: #b127c4;
}

nav.lavalamp-menu .start-contact,
a:nth-child(8):hover~.animation {
    width: 110px;
    left: 440px;
    background-color: #1abc9c;
}

nav.lavalamp-menu .start-contact,
a:nth-child(9):hover~.animation {
    width: 110px;
    left: 440px;
    background-color: #316308;
}

.dr-separator-header {
    background-color: var(--dr-separator-header-color);
    width: inherit;
    height: 5px;
    margin-bottom: 10px;
}

.dr-separator-header.dr-separator-header-bottom {
    margin-bottom: 0px;
    margin-top: 10px;
}

.dr-box {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dr-box-bac);
    background-image: url(https://mikomaxsmartoffice.com/wp-content/uploads/2019/11/aranzacja-biura-duzej-firmy-mikomax.jpg);
    background-clip: border-box;
    background-origin: border-box;
    background-position: inherit;
    background-repeat: round;
    background-size: cover;
}

.dr-box-hello {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--dr-box-heollo-gr);
    -webkit-clip-path: var(--dr-box-clip);
    clip-path: var(--dr-box-clip);
}

.dr-box .hello {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    margin: 120px auto;
    -webkit-hyphens: inherit;
    -ms-hyphens: inherit;
    hyphens: inherit;
    z-index: 2;
}

.dr-box .hello span {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    font-size: 75px;
    border-bottom: #e67e22 2px solid;
    background: rgb(233, 144, 9);
    background: linear-gradient(90deg, rgba(233, 144, 9, 1) 0%, rgba(235, 164, 78, 1) 50%, rgba(232, 201, 71, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e99009", endColorstr="#e8c947", GradientType=1);
    -moz-background-clip: text;
    -o-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    font-family: 'Antonio', sans-serif;
}

.dr-box .hello div {
    display: inline-block;
    line-height: 85px;
    margin: auto;
    padding: 15px 45px;
    background-color: hsl(0deg 0% 0% / 25%);
    border-radius: 25px;
    box-shadow: 0 0 35px 10px hsl(0deg 0% 0% / 35%);
}

.dr-box .prop-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dr-box .prop-image img {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 20%;
    bottom: 10%;
    z-index: 0;
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dr-box .prop-image-hover:hover>img {
    left: -5%;
    bottom: -25%;
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dr-box-niher {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    background-color: var(--dr-default);
    -webkit-padding-after: 4.5rem;
    padding-block-end: 4.5rem;
    box-shadow: 0px 0px 23px 14px var(--dr-default);
}

.dr-box-niher .dr-box-revert {
    width: 100%;
    height: 200px;
    background-color: var(--dr-box-heollo-gr);
    -webkit-clip-path: var(--dr-box-clip-revert);
    clip-path: var(--dr-box-clip-revert);
}

.dr-box-niher .dr-box-mes {
    position: relative;
    top: -50px;
    display: block;
    font-size: 34px;
    color: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    rotate: -5deg;
    z-index: 1;
}

.dr-container {
    padding: 2rem 5rem;
    min-height: 100px !important;
}

.dr-article {
    margin-bottom: 1rem;
    padding: 15px;
    border-left: 2px solid var(--dr-box-bac);
    border-right: 2px solid var(--dr-box-bac);
    color: white;
}

.dr-article .dr-article-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    height: auto;
    border-top: 1px solid var(--dr-box-bac);
    border-bottom: 1px solid var(--dr-box-bac);
}

.dr-article-heading .dr-article-image {
    min-width: 125px;
    width: 125px;
    height: 125px;
    padding: 7.5px;
    flex-basis: 125px;
}

.dr-article-heading .dr-article-title {
    width: -webkit-fill-available;
    width: -fill-available;
    height: 125px;
    margin-left: 1.5rem;
    flex-basis: max-content;
    overflow: hidden;
}

.dr-article-title h1 {
    width: 100%;
    -webkit-margin-before: 1.5rem;
    margin-block-start: 1.5rem;
    -webkit-margin-after: 1.5rem;
    margin-block-end: 1.5rem;
    font-size: 24px;
    line-height: 30px;
    word-wrap: break-word;
    word-break: break-all;
    word-spacing: initial;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dr-article-title time {
    width: 100%;
    font-size: 12px;
    line-height: 14px;
    margin-top: .5rem;
}

.dr-article .dr-article-content {
    width: 100%;
    min-height: 150px;
    max-height: 250px;
    margin-top: .5rem;
    margin-bottom: 10px;
    clear: both;
}

.dr-article .dr-article-view {
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: var(--dr-box-bac);
}

.dr-article .dr-article-view a {
    text-align: right;
    color: var(--dr-box-bac);
}

.dr-line-separator {
    width: 100%;
    height: 15px;
    background-color: var(--dr-box-bac);
}

.dr-posts-liked {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: baseline;
    -moz-column-gap: 5px;
    column-gap: 5px;
    overflow: hidden;
}

.dr-posts-liked>article {
    position: relative;
    width: calc(25% - 5px);
    max-width: calc(25% - 5px);
    height: 150px;
    flex: 1 0 calc(25% - 5px);
    background-color: var(--dr-box-bac);
    background-clip: border-box;
    background-origin: border-box;
    background-position: inherit;
    background-repeat: round;
    background-size: cover;
    padding: 10px;
}

.dr-posts-liked>article a h1 {
    display: block;
    width: 100%;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    margin: 0;
    padding: 10px 15px;
    font-size: 16px;
    background-color: hsla(0, 0%, 100%, .55);
    text-shadow: 0 0 white;
    text-shadow: 0 0 3px white;
    border-radius: 25px;
    word-wrap: break-word;
    word-break: break-all;
    word-spacing: initial;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dr-posts-liked>article a span {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    margin: auto;
    padding: 10px 15px;
    font-size: 12px;
    background-color: hsla(0, 0%, 100%, .55);
    text-shadow: 0 0 3px white;
    border-radius: 25px;
}


.dr-main-content {
    /* background-color: white; */
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-timing-function: cubic-bezier(0.87, -0.28, 0.95, 0.23);
}

.dr-main-content:hover {
    background-color: transparent;
}


.dr-article-col {
    flex-basis: 80%;
    display: grid;
    grid-template-columns: repeat(3, minmax(30%, 1fr));
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    clear: both;
}

.dr-article-col .dr-col {
    height: auto;
    padding: 5px;
    border: 1px solid var(--dr-box-heollo-gr);
}

.dr-article-col .dr-col:hover {
    border: 1px dashed var(--dr-box-heollo-gr);
}

.dr-article-col .dr-col>.dr-article {
    height: 100%;
    margin: unset;
    padding: unset;
    border: transparent;
    background-color: var(--dr-box-bac);
    color: black;
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation-timing-function: cubic-bezier(0.87, -0.28, 0.95, 0.23);
}

.dr-article-col .dr-col>.dr-article:hover {
    background-color: transparent;
    color: white;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading {
    display: block;
    border: transparent;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-image {
    width: 100%;
    height: 175px;
    padding: unset;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    background-image: linear-gradient(to top, var(--dr-box-bac) 0, var(--dr-box-heollo-gr) 100%);
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-image span {
    position: relative;
    top: -50%;
    display: table;
    margin: auto;
}

.dr-article-col .dr-col>.dr-article:hover .dr-article-heading .dr-article-image {
    -webkit-filter: saturate(4);
    filter: saturate(4);
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-image:hover {
    -webkit-filter: drop-shadow(0px 0px 15px var(--dr-box-heollo-gr)) invert(75%);
    filter: drop-shadow(0px 0px 15px var(--dr-box-heollo-gr)) invert(75%);
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title {
    width: 100%;
    height: auto;
    margin: unset;
    padding: 0.5rem;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title a {
    text-decoration: none;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--dr-box-heollo-gr);
    text-decoration-color: var(--dr-box-heollo-gr);
    color: white;
}

.dr-article-col .dr-col>.dr-article:hover .dr-article-heading .dr-article-title a {
    color: white;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title h1 {
    -webkit-margin-before: .75rem;
    margin-block-start: .75rem;
    -webkit-margin-after: .75rem;
    margin-block-end: .75rem;
    word-wrap: break-word;
    word-break: break-all;
    word-spacing: initial;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title span {
    font-size: 10px;
}

.dr-article-col .dr-col>.dr-article .dr-article-heading .dr-article-title span>time {
    font-size: 12px;
}

.dr-article-col .dr-col>.dr-article .dr-article-content {
    text-align: justify;
    padding: .5rem;
    padding-top: 0;
    overflow: hidden;
    word-wrap: inherit;
    word-break: keep-all;
    word-spacing: revert;
    text-overflow: ellipsis;
    white-space: pre-line;
}

/* aside */
.dr-container-aside {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: flex-start;
}
.dr-aside {
    flex-basis: 20%;
    width: 100%;
    height: initial;
    background-color: white;
    padding: 1em;
}
.dr-aside .dr-name-section-container {
    margin: unset;
    padding: unset;
}
.dr-aside .dr-aside-content {
    margin: unset;
    margin-bottom: 1em;
    padding: unset;
}
.dr-aside .dr-aside-content.dr-aside-category > a {
    display: block;
    margin: .5pc 0;
    padding: .25pc;
    background-color: var(--dr-box-bac);
}
/* aside END */

/* col ytid */

.dr-ytid {
    width: 100%;
    min-height: 50px;
    height: 250px;
    background-color: var(--dr-box-bac);
}

.dr-yt-pl {
    display: grid;
    min-height: 50px !important;
    height: 250px !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    padding: 4em;
}

.dr-yt-pl>div {
    height: 150px;
}

.dr-yt-pl>div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


/* dr-recommended-post */
.dr-recommended-post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    height: 400px;
    background-color: black;
    color: white;
}

.dr-recommended-post a {
    text-decoration: none;
    overflow: hidden;
}

.dr-recommended-post a:hover {
    text-decoration: underline;
}

.dr-recommended-post .dr-col-rmd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow: hidden;
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.dr-recommended-post .dr-col-rmd:hover {
    /* background-size: 150% 150%; */
    background-position: center;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    transition: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

.dr-recommended-post .dr-col-rmd:nth-child(1) {
    background-color: rgba(32, 117, 21, 0.4);
}

.dr-recommended-post .dr-col-rmd:nth-child(2) {
    background-color: rgba(52, 152, 219, 0.4);
}

.dr-recommended-post .dr-col-rmd:nth-child(3) {
    background-color: rgba(161, 15, 22, 0.4);
}

.dr-recommended-post .dr-col-rmd .dr-rmd-title {
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    align-items: center;
    font-size: 48px;
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

/* dr-recommended-post END */

/* footer */

.dr-font {
    background-color: var(--dr-footer-bac) !important;
    margin-top: 150px !important;
}

.dr-fot {
    background: #1e3161;
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: #2f4374 0 10px 20px 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: white !important;
}

.dr-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-content: space-between;
    align-items: start;
    justify-items: stretch;
    justify-content: center;
}

.dr-footer .footer-heading {
    margin-bottom: 15px;
}

.dr-footer .social {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    color: white;
}

.dr-footer .social>a {
    font-size: 32px;
    color: white;
}

.footer-policy {
    background-color: var(--dr-box-heollo-gr);
    margin-top: 1rem;
    padding: 3%;
    font-size: 14px;
}

.footer-policy span {
    margin-trim: .5rem;
    margin-inline: .5rem;
}

.dr-footer .footer-partners {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    margin: 1.5rem .25rem;
    font-size: 18px;
}

.dr-footer .footer-about {
    /* display: flex; */
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 1.5rem .25rem;
    margin-top: 2.5rem;
    font-size: 18px;
}

.dr-footer .footer-about>.footer-about-logo-section {
    flex: 1 1 auto;
    flex-basis: 100px;
}

.dr-footer .footer-about>.footer-about-section {
    flex: 1 1 auto;
    flex-basis: content;
}

.dr-footer .footer-about>.footer-about-section>.footer-partal-named,
.dr-footer .footer-about>.footer-about-section>.footer-partal-slogman {
    width: 100%;
    padding: 0 .8rem;
}

.dr-footer .footer-about>.footer-about-section>.footer-partal-named {
    font-size: 24px;
}

.dr-footer .footer-about>.footer-about-section>.footer-partal-slogman {
    margin-top: 15px;
    font-size: 14px;
}

.dr-footer .footer-partners {
    margin: 1.5rem .25rem;
}

.dr-footer .tsr-footer-item {
    display: block;
    text-align: center;
}

.dr-footer .tsr-footer-item.footer-link a {
    display: block;
    width: inherit;
    font-size: 16px;
    margin: 0 1em;
    margin: 1em 0;
    text-align: center;
    color: white;
}