ul.info {
    list-style-type: none;
}

#main article {
    width: 90vw;
    background-color: rgb(0 0 0 / 96%);
}

#header .header-logo-only {
    display: inline-flex;
    width: 45%;
    height: 100%;
    background-image: url(../../images/znak.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


#header .header-logo {
    display: inline-block;
    width: 330px;
    height: 80px;
    background-image: url(../../images/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

article#contact canvas#nokey {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

article#contact div.close {
    z-index: 100;
}

article#contact a,
article#contact input,
article#contact textarea {
    z-index: 100;
    position: relative;
}

article#team .team-container .circle {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 20px;
}

article#team .team-container .circle .photo {
    width: 200px;
    height: 200px;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 100%;
    border: solid 5px white;
}

article#team .team-container .circle.niemyjski .photo {
    background-image: url(../../images/team/niemyjski.png);
}

article#team .team-container .circle.iwanek .photo {
    background-image: url(../../images/team/iwanek.png);
}

article#team .team-container .circle.lewandowski .photo {
    background-image: url(../../images/team/lewandowski.png);
}

article#team .team-container .circle.nowakowski .photo {
    background-image: url(../../images/team/nowakowski.png);
}

article#team .team-container .circle.stepien .photo {
    background-image: url(../../images/team/stepien.png);
}

article#team .team-container .circle.aati1 .photo {
    background-image: url(../../images/team/aati1.png);
}

article#team .team-container .circle.rusin1 .photo {
    background-image: url(../../images/team/rusin1.png);
}

article#team .team-container .circle.empty .photo {
    background-image: url(../../images/team/empty.png);
}


article#team .team-container .circle .phone {
    text-align: center;
}

article#team .team-container .circle:before {
    content: "";
    background-image: url(../../images/team/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 96%;
    height: 90%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 2%;
    border: #ffffff solid 1px;
    filter: brightness(0.5);
}

article#team .team-container .circle:first-child:before {
    background-position: left center;
}

article#team .team-container .circle:nth-child(2):before {
    background-position: center center;
}

article#team .team-container .circle:nth-child(3):before {
    background-position: right center;
}


article#team .team-container .circle .phone > a{
    font-size: 14px;
    text-decoration: none !important;
    border-bottom-style: none;
}

article#team .team-container .circle .name {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
}

article#team .team-container .circle .description {
    text-align: center;
    font-size: 14px;
    height: 2.5rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

article#contact .message-sent {
    display: none;
}

article#contact.sent .message-sent {
    display: initial;
}

article#contact .message-error {
    display: none;
}

article#contact.error .message-error {
    margin: 10px 0 30px;
    display: block;
    color: #ffb400;
    font-weight: bold;
}

article#contact.sent #contact-form {
    display: none;
}

article#contact #contact-form .loader {
    display: none;
}

article#contact.sending #contact-form .actions {
    display: none;
}

article#contact.sending #contact-form .loader {
    display: inline-block;
    margin-left: 64px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 32px 0 #fff, -32px 0 #fff;
    position: relative;
    animation: flash 0.3s ease-in infinite alternate;
}

article#contact.sending #contact-form .loader::before,
article#contact.sending #contact-form .loader::after {
    content: '';
    position: absolute;
    left: -64px;
    top: 0;
    background: #FFF;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform-origin: 35px -35px;
    transform: rotate(45deg);
    animation: hitL 0.3s ease-in infinite alternate;
}

article#contact.sending #contact-form .loader::after {
    left: 64px;
    transform: rotate(-45deg);
    transform-origin: -35px -35px;
    animation: hitR 0.3s ease-out infinite alternate;
}

@keyframes flash {

    0%,
    100% {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 0.25);
    }

    25% {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 180, 0, 1);
    }

    50% {
        background-color: rgba(255, 180, 0, 1);
        box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 0.25);
    }

    75% {
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: 32px 0 rgba(255, 180, 0, 1), -32px 0 rgba(255, 255, 255, 0.25);
    }
}

@keyframes hitL {
    0% {
        transform: rotate(45deg);
        background-color: rgba(255, 180, 0, 1);
    }

    25%,
    100% {
        transform: rotate(0deg);
        background-color: rgba(255, 255, 255, 0.25);
    }
}

@keyframes hitR {

    0%,
    75% {
        transform: rotate(0deg);
        background-color: rgba(255, 255, 255, 0.25);
    }

    100% {
        transform: rotate(-45deg);
        background-color: rgba(255, 180, 0, 1);
    }
}



article#about {
    min-height: 90vh;
}

article#about .list-steps {
    justify-items: right;
    align-content: center;
}

article#about .list-steps .step {
    margin: 30px 20px;
    padding: 10px 20px;
    border-left: #2f2f2f solid 5px
}

article#about .list-steps.step-1 .step.step-1,
article#about .list-steps.step-2 .step.step-2,
article#about .list-steps.step-3 .step.step-3 {
    border-color: #ffb400;
}

article#about .list-steps .step .description {
    display: block;
    font-size: 14px;
    color: #4a4a4a;
    font-weight: bold;
}

article#about .list-steps .step .main {
    display: block;
}

article#about .place-circle {
    justify-items: left;
    align-content: center;
    margin: 40px 0;
}

@media (max-width: 768px) {
    article#about .list-steps {
        display: none;
    }
    article#about .place-circle {
        justify-items: center;
    }
}

article#about .place-circle .circle {
    position: relative;
    max-width: 400px;
    max-height: 400px;
    border: #ffb400 solid 3px;
    border-radius: 100%;    
    width: 80%;
    aspect-ratio : 1 / 1;
    box-shadow: 0px 0px 10px #ffb400;
}

article#about .place-circle .circle::after {
    border: #2d2d2d 6px;
    border-radius: 100%;
    width: 94%;
    aspect-ratio: 1 / 1;
    display: block;
    top: 3%;
    left: 3%;
    content: "";
    position: absolute;
    border-style: dashed;
}

article#about .place-circle .circle::before {
    border: #141414 6px;
    border-radius: 100%;
    width: 114%;
    aspect-ratio: 1 / 1;
    display: block;
    top: -7%;
    left: -7%;
    content: "";
    position: absolute;
    border-style: double;
}

article#about .place-circle .circle-title {
    position: absolute;
    font-weight: bold;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

article#about .place-circle .circle-step {
    position: absolute;
    width: 30%;
    height: 30%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #000000;
    left: -5%;
    top: 5%;
    z-index: 20;
    transition: all 400ms;
    border: solid #d6d6d6 3px;
    color: #2d2d2d;
    font-weight: bold;
}
article#about .place-circle .circle-step.step-1 {
    left: 7%;
    top: 11%;
    width: 10%;
    height: 10%;
}
article#about .place-circle.step-1 .circle-step.step-1 {
    left: -5%;
    top: 5%;
    width: 30%;
    height: 30%;
    font-size: 50px;
    border-color: #ffb400;
    color: white;
}

article#about .place-circle .circle-step.step-2 {
    left: 51%;
    top: -5%;
    width: 10%;
    height: 10%;
}
article#about .place-circle.step-2 .circle-step.step-2 {
    left: 43%;
    top: -13%;
    width: 30%;
    height: 30%;
    font-size: 50px;
    border-color: #ffb400;
    color: white;
}

article#about .place-circle .circle-step.step-3 {
    left: 94%;
    top: 34%;
    width: 10%;
    height: 10%;
}
article#about .place-circle.step-3 .circle-step.step-3 {
    left: 82%;
    top: 27%;
    width: 30%;
    height: 30%;
    font-size: 50px;
    border-color: #ffb400;
    color: white;

}
article#about .place-circle .circle-step.circle-step-extra {
    visibility: hidden;
}
article#about .place-circle.step-3 .circle-step.circle-step-extra  {
    visibility: visible;
    position: absolute;
    width: 20%;
    height: 20%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    left: 80%;
    top: 27%;
    z-index: 20;
    transition: all 400ms;
    border: solid #b2b2b2 3px;
}

article#about .place-circle.step-3 .circle-step.circle-step-extra.extra-1 {
    left: 65%;
    top: 54%;
    box-shadow: -2px 2px 7px #df9f00;
    background-image: url(../../images/about/zakup.png);
}
article#about .place-circle.step-3 .circle-step.circle-step-extra.extra-2 {
    left: 62%;
    top: 19%;
    box-shadow: -2px -2px 7px #df9f00;
    background-image: url(../../images/about/sprzedaz.png);
}
article#about .place-circle.step-3 .circle-step.circle-step-extra.extra-3 {
    left: 103%;
    top: 57%;
    box-shadow: 3px 2px 7px #df9f00;
    background-image: url(../../images/about/inwestycja.png);
}
article#about .place-circle.step-3.extra-1 .circle-step.circle-step-extra.extra-1,
article#about .place-circle.step-3.extra-2 .circle-step.circle-step-extra.extra-2,
article#about .place-circle.step-3.extra-3 .circle-step.circle-step-extra.extra-3 {
    background-color: #df9f00;
}

article#about .step-description {
    margin-top: 30px;
}

article#about .step-description .step {
    display: none;
}

article#about .step-description.step-1 .step-1,
article#about .step-description.step-2 .step-2,
article#about .step-description.step-3:not(.extra-1):not(.extra-2):not(.extra-3) .step-3:not(.extra-1):not(.extra-2):not(.extra-3) {
    display: inline-block;
}

article#about .step-description .step.step-extra {
    display: none;
}
article#about .step-description.step-3.extra-1 .step.step-extra.extra-1,
article#about .step-description.step-3.extra-2 .step.step-extra.extra-2,
article#about .step-description.step-3.extra-3 .step.step-extra.extra-3 {
    display: inline-block;
} 