@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
    margin: 0;
}
/* BUTTON */
#btn-white {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: black;
    background: white;
    border-radius: 2px;
    border: 2px solid white;
    padding: 15px 32px;
}
#btn-white:hover {
    color: white;
    background: transparent;
}
#btn-360 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    background: transparent;
    border-radius: 2px;
    border: 2px solid white;
    padding: 10px 32px;
    display: flex;
    justify-content: center;
}
#btn-360:hover {
    color: white;
    background: #ffffff42;
}
#btn-360 svg {
    height: 30px;
    width: auto;
    margin-right: 20px;
}
#btn-360 img {
    height: 30px;
    width: auto;
    margin-right: 20px;
}
#btn-360 span {
    height: 30px;
    display: flex;
    align-items: center;
}
.btn-menu-tel a {
    color: var(--color-tertiary) !important;
    margin-top: -1px !important;
}
.btn-menu-tel a:hover {
    border-bottom: 0 !important;
}
.btn-menu-tel a::before {
    content: url(/wp-content/uploads/2023/11/ico-menu-tel.svg);
    padding-right: 5px;
}
.btn-menu-tel a::before > svg {
    height: 10px;
}

.btn-menu-fb a {
    width: 24px;
    margin: 0 5px !important;
}
.btn-menu-fb a:hover {
    border-bottom: 0 !important;
}
.btn-menu-fb a::before {
    display: block;
    margin-top: -3px;
    content: url(/wp-content/uploads/2023/11/ico-menu-fb.svg);
}
.btn-menu-in a {
    width: 24px;
    margin: 0 5px !important;
}
.btn-menu-in a:hover {
    border-bottom: 0 !important;
}
.btn-menu-in a::before {
    display: block;
    margin-top: -3px;
    content: url(/wp-content/uploads/2023/11/ico-menu-in.svg);
}
.btn-menu-yt a {
    width: 24px;
    margin: 0 5px !important;
}
.btn-menu-yt a:hover {
    border-bottom: 0 !important;
}
.btn-menu-yt a::before {
    display: block;
    margin-top: -3px;
    content: url(/wp-content/uploads/2023/11/ico-menu-yt.svg);
}

/* MENU  */
/* .logo {
	position: absolute;
	top: 0;
	left: 10px;

} */
.logo img {
    height: auto;
    width: auto;
}
.navbar {
    background-color: transparent;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 999;
}
.menu a {
    display: block;
    padding: 0 10px;
    color: var(--color-primary-dark);
    text-decoration: none;
}
.menu a:hover {
}
nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    width: 100%;
}

nav li > ul {
    margin: 0;
    padding: 0;
    background: var(--color-white);
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

nav li > ul a {
    padding: 8px 10px !important;
}
nav li > ul a:before {
    content: "-";
    padding-right: 20px;
}
span.plus {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plus,
.minus {
    float: right;
    font-weight: 400;
    color: var(--color-black);
    font-size: 20px;
    border: 2px solid var(--color-black);
}

.plus:hover,
.minus:hover {
    cursor: pointer;
}

.minus {
    display: none;
}

.open .plus {
    display: none;
}

.open .minus {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .open > ul {
    margin: 8px 0;
    height: auto;
}

.menu-button {
    display: block;
    position: absolute;
    top: 8px;
    right: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99),
        -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
}

.open .menu-button {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.bread {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    -webkit-transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 10;
}

.bread-top {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    z-index: 20;
}

.open .bread-top {
    -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bread-bottom {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.open .bread-bottom {
    -webkit-transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.25s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.ham {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-black);
    position: absolute;
    left: 9px;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    z-index: 0;
}

.ham-top {
    top: 24px;
    -webkit-transition: -webkit-transform 0.2s 0.2s;
    transition: -webkit-transform 0.2s 0.2s;
    transition: transform 0.2s 0.2s;
    transition: transform 0.2s 0.2s, -webkit-transform 0.2s 0.2s;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.open .ham-top {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0;
    transition-delay: 0;
}

.ham-bottom {
    bottom: 23px;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
}

.open .ham-bottom {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

/* @media screen and (max-width: 1140px) and (min-width: 767px) {
    .menu a {
        font-size: 1.15vw;
        margin: 0 10px;
    }
} */
/* @media screen and (min-width: 767px) {
    nav {
        font-size: 14px;
    }
    .open {
        display: flex;
        justify-content: flex-end;
    }
    span.minus {
        display: none !important;
    }
    .menu a:hover {
        border-bottom: 2px solid var(--color-primary-dark);
    }
    .sub-menu {
        background: var(--color-primary-dark);
        min-width: 200px;
    }
    .sub-menu a {
        font-size: 12px;
        color: var(--color-white) !important;
        border-bottom: 0;
    }
    .sub-menu a:hover {
        font-weight: 600;
        border-bottom: 0;
    }

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        background: #6699cc;
        width: 100%;
    }
    nav ul:not(.sub-menu) {
        background-color: transparent;
    }
    nav ul:not(.sub-menu) > li {
        display: inline-block;
    }
    nav ul:not(.sub-menu) > li:hover:not(.menu-item-has-children) {
    }
    nav ul:not(.sub-menu) > li a {
    }
    nav li > ul a:before {
        content: none;
        padding-right: 0px;
    }
    nav .minus,
    nav .plus {
        display: none;
    }
    nav .sub-menu {
        display: none;
    }
    nav .menu-item-has-children:hover {
    }
    nav .menu-item-has-children:hover .sub-menu {
        display: block;
        height: auto;
        position: absolute;
        top: 45px;
        width: auto;
        border-right: 0px;
        border-left: 0px;
        padding: 10px 30px 10px 0;
    }
} */

/* HERO */
.animated-arrow {
    width: 50px;
    text-align: left;
    color: var(--color-white);
    position: relative;
    animation-name: animated-arrow;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    font-size: 2rem;
    margin-top: -0.5rem;
}
@keyframes animated-arrow {
    0% {
        left: 0px;
    }

    50% {
        left: 20px;
    }

    100% {
        left: 0px;
    }
}
.trapezoid-box-2 {
    display: flex;
    justify-content: flex-end;
    border-left: 80px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 70px solid var(--color-tertiary);
}
@media screen and (max-width: 676px) {
    .trapezoid-box-2 {
        border-left: 0px solid transparent;
        justify-content: center;
    }
}
.trapezoid-box-2 > div {
    position: absolute;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-align: right;
}
@media screen and (max-width: 676px) {
    .trapezoid-box-2 > div {
        text-align: center;
    }
}
.trapezoid-box-2 > div > a {
    color: var(--color-white);
    width: 100%;
}

/* IMAGE CAROUSEL - img */
img.swiper-slide-image {
    height: 600px !important;
    object-fit: cover;
}
/* IMAGE CAROUSEL - navigations */
.swiper-pagination-bullet {
    border-radius: 0;
    width: 7vw !important;
    height: 5px !important;
    margin: 0 10px 20px 10px !important;
}

/* STEP-BY-STEP */
.step-by-step-item {
    transform: skewX(35deg);
    height: 70px;
}
.step-by-step-item h1 {
    transform: skewX(-35deg);
    color: var(--color-white);
    margin: 0;
}
.step-by-step-item img {
    transform: skewX(-35deg);
}
/* COUNTER */
.elementor-counter-number {
}

/* FOOTER */
.footer-container {
    background-image: url(/wp-content/uploads/2023/11/footer-bg.svg);
    background-repeat: no-repeat;
    background-size: 45%;
    background-position: right -10px top 20px;
    padding: 50px;
}
@media screen and (max-width: 767px) {
    .footer-container {
        background-image: none;
    }
}
.footer-top {
    width: 50%;
    display: grid;
    grid-template-columns: 35% 50%;
    align-items: end;
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .footer-top {
        width: 100%;
        grid-template-columns: 100%;
        justify-items: center;
        text-align: center;
    }
}
.footer-top > div {
    padding: 5px;
}
.footer-top img {
    width: 70%;
}
@media screen and (max-width: 767px) {
    .footer-top img {
        width: 150px;
    }
}
.footer-top a {
    color: var(--color-black);
    text-decoration: none;
}
.footer-bottom {
    width: 70%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
    .footer-bottom {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .footer-bottom {
        width: 100%;
        grid-template-columns: 100%;
        justify-items: center;
        text-align: center;
    }
}
.footer-bottom > div {
    padding: 5px;
}
.footer-bottom img {
    width: 70%;
}
.footer-copy {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .footer-copy {
        justify-items: center;
        text-align: center;
    }
}

/* 404 */
.error-container {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100vh;
}
@media only screen and (max-width: 767px) {
    .error-container {
        grid-template-columns: 100%;
    }
}
.error-info {
    display: grid;
    justify-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-dark);
    color: var(--color-white) !important;
}
.error-info h1 {
    color: var(--color-white);
}
.error-info h3 {
    color: var(--color-white);
}
.error-info p {
    color: var(--color-white);
}
.error-img {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
}
.error-img img {
    width: 30vw;
}

.asterisk-disclaimer {
    text-align: center;
}

.slide-right {
    opacity: 0;
    animation: slide-right 3s ease-in-out 2s forwards;
}

@keyframes slide-right {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-left {
    opacity: 0;
    animation: slide-left 3s ease-in-out 2s forwards;
}

@keyframes slide-left {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* .menu .menu-item-740 a {
	margin: 0px
}

.folder-menu-button {
    font-weight: 600;
		color: #fff!important;
    background-color: #50427E;
    border-radius: 2px;
    border: 2px solid #50427E;
	 	display: flex;
    align-items: center;
		transition: 
				background-color 500ms 			ease-in-out,
			color 500ms ease-in-out,
			border-color 500ms ease-in-out;
}

.folder-menu-button a {
	color: #fff;
	padding: 0.5rem 1rem; 
}

@media (max-width:640px){
	.folder-menu-button a {
	font-size: 14px;
}}

li#menu-item-740:hover {
	color: #50427E;
    background-color: #fff;align-content		border-bottom: 2px solid transparent;
}

li#menu-item-740:hover a{
	color: #50427E;
		border-bottom: 0px;
}

li#menu-item-740 a:hover{
		border-bottom: 0px;
}

.folder-menu-button::after {
content: url('https://new.novepiaseczno.test/wp-content/uploads/2024/02/nove-piaseczno-icon-folder-button-2.svg)');
	margin: 5px 10px 0px -10px;
    display: inline-block;
    width: 30px; 
    height: 35px;
	vertical-align: middle;
	transition: content 500ms;
}

.folder-menu-button:hover::after {
content: url('https://new.novepiaseczno.test/wp-content/uploads/2024/02/nove-piaseczno-icon-folder-button-3-01.svg');
}

.navbar {
	max-width: 1280px;
	margin: 0 auto;
}

.trapezoid-box a {
	margin-top: 7.5rem;
} */