:root {
    --light-color-1: #FFFFFF;
    --light-color-2: #F8F8F8;
    --light-color-3: #E6E6E6;
    --orange-color-lighter: #FE832A;
    --orange-color-darker: #F56805;
    --blue-color: #da4242;
    --blue-second-color: #da4242;
	--button-hover: 213 88 0;
    --blue-shadow: 206 76 70;
	--dark-img: 0 0 0 / 47%;
	--dark-bg-contact: 0 0 0 / 45%;
	--grey-bg-contact: 244 244 244;
	--form-bg: 255 255 255;
	--box-shadow-subpage: 0 0 0 / 5%;
	--box-shadow-navbar: 0 0 0 / 4%;
    --grey-color: #717171;
    --black-color: #000000;
    --default-font-website: "Poppins", sans-serif;
    --container-padding: 5% 11%;
    --container-padding-tb0: 11%;
}


body {
    color: var(--black-color);
    font-family: var(--default-font-website);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.PopupMessages__banner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25%;
    padding: 0 var(--container-padding-tb0);
}

.PopupMessages__banner .PopupMessages__bannerL {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.PopupMessages__banner .PopupMessages__bannerL>span {
    display: block;
    width: .2vh;
    height: 80%;
    background: var(--light-color-3);
}

.PopupMessages__banner .PopupMessages__bannerItem h4 {
    font-size: 1.3756613756613756vh;
    color: var(--grey-color);
    font-weight: 500;
}

.PopupMessages__banner .PopupMessages__bannerItem h4>span.koaJGF {
    color: #5E5E5E;
}

.PopupMessages__banner .PopupMessages__bannerItem {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative; 
}

.PopupMessages__banner .PopupMessages__bannerItem>img {
    height: 2.962962962962963vh;
    position: relative;
    bottom: .5291005291005291vh;
    width: 2.328042328042328vh;
    margin-right: 2.1164021164021163vh;
}


header#navbar .navbarDesktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 2vh var(--container-padding-tb0);
    background: var(--light-color-2);
}

header#navbar .logo {
    height: auto;
    justify-content: start;
}

header#navbar .logo>a>img {
    padding: 0;
    min-height: unset;
    max-height: 8.465608465608465vh;
    max-width:  21.26984126984127vh;
}

@media screen and (min-width: 1320px) {
    header#navbar .logo {
        display: grid;
        align-items: center;
        margin: 0;
        float: none;
    }
}

header#navbar nav.menu>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4vh;
}

header#navbar nav.menu>ul>li>a {
    font-size: 1.693121693121693vh;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
    -webkit-transition: .2s cubic-bezier(0.39, 0.58, 0.57, 1);
    -o-transition: .2s cubic-bezier(0.39, 0.58, 0.57, 1);
    transition: .2s cubic-bezier(0.39, 0.58, 0.57, 1);
}

header#navbar nav.menu>ul>li.current-menu-item>a {
    color: var(--orange-color-darker);
    font-weight: bold;
}

header#navbar nav.menu>ul>li>a:hover {
    color: var(--orange-color-lighter);
}

header#navbar button,
header#navbar nav.menu>ul>li.menu-item-31 {
    background: var(--orange-color-darker);
    padding: .7vh 2.8vh;
    font-size: 1.4814814814814814vh;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    border: none;
}

header#navbar nav.menu>ul>li.menu-item-31 {
	padding: .5vh 2vh;
}

header#navbar button>a,
header#navbar nav.menu>ul>li.menu-item-31>a {
    color: var(--light-color-1);
    text-decoration: none;
}

@media screen and (max-width: 1630px) {
    .PopupMessages__banner {
        gap: 15%;
    }
}

@media screen and (max-width: 1400px) {
    .PopupMessages__banner {
        gap: 5%;
    }
}

section#azpoz__header {
    background: url(../images/azpoz__header2.png);
    display: block;
    height: 874px;
}



@media screen and (max-width: 1200px) {
    header#navbar .navbarDesktop {
        display: none;
    }
    header#navbar .navbarMobile {
        position: absolute;
        opacity: 0;
        transform: translateY(-3.2rem);
        display: flex;
        flex-direction: column;
        flex: 1 1 100%;
        min-height: 0;
        max-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        transition-property: min-height, background-color, color, opacity, transform;
        transition-duration: 250ms;
        transition-timing-function: ease;
        padding: 0 var(--container-padding-tb0);
    }
    header#navbar {
        transition-property: background-color, color, opacity;
        transition-duration: 250ms;
        transition-timing-function: ease;
        transform: translate3d(0, 0, 0);
    }
    header#navbar.navbarActive {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        background: rgb(0 0 0 / 91%);
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        overflow: hidden;
        z-index: 9999999;
        transition-property: background-color, color, opacity;
        transition-duration: 250ms;
        transition-timing-function: ease;
        transform: translate3d(0, 0, 0);
    }
    header#navbar .navbarMobile.navbarMobileActive {
        position: relative;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    header#navbar .navbarMobile .navbarMobileNav {
        flex: 0 0 auto;
        padding: 3vh 0;
    }
    header#navbar .navbarMobileBar {
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 2vh var(--container-padding-tb0);
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon {
        display: flex;
        min-width: 32px;
        max-width: 32px;
        height: 100%;
        padding: 0;
        position: relative;
        cursor: pointer;
        flex-direction: column;
        align-items: flex-end;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIconExit {
        opacity: 0;
        visibility: hidden;
        display: none;

    }
    header#navbar .navbarMobileBar .navbarMobileBarIconExit svg {
        width: 40px;
        height: 40px;

    }
    header#navbar .navbarMobileBar .navbarMobileBarIconExit svg path {
        fill: var(--light-color-1);
        transition: .3s ease-out;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIconExit:hover svg path {
        fill: var(--orange-color-darker);
    }
    header#navbar.navbarActive .navbarMobileBar .navbarMobileBarIconExit {
        opacity: 1;
        visibility: visible;
        display: block;
        height: 40px;
        position: relative;
        cursor: pointer;

    }
    header#navbar.navbarActive .navbarMobileBar .navbarMobileBarIcon {
        display: none;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon span {
        display: block;
        height: 3px;
        width: 24px;
        opacity: 1;
        margin-bottom: 4px;
        border-radius: 16px;
        background: var(--black-color);
        border-radius: 20px;
        transition: .3s ease-out;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon:hover span {
        background: var(--orange-color-darker);
        width: 100%!important;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon span:nth-child(1) {
        width: 80%;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon span:nth-child(2) {
        width: 100%;
    }
    header#navbar .navbarMobileBar .navbarMobileBarIcon span:nth-child(3) {
        width: 50%;
    }
    header#navbar .navbarMobileBar .navbarMobileBarLogo {
        min-width: 200px;
        max-width: 200px;
    }
    header#navbar .navbarMobileBar .navbarMobileBarLogo img {
       max-width: 100%;
       height: 100%; 
    }
    .PopupMessages__banner {
        display: none;
    }
    header#navbar .navbarMobile .navbarMobileNav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        z-index: 1;
        position: relative;
        flex-direction: column;
        gap: 1vh;
    }
    header#navbar .navbarMobile .navbarMobileNav ul li a {
        color: var(--light-color-1);
        font-weight: bold;
        font-size: 20px;
    }
    header#navbar nav.menu>ul>li.current-menu-item>a {
        color: var(--light-color-1);
    }
    header#navbar .navbarMobile .navbarMobileNav ul li a:hover {
        color: var(--orange-color-darker);
    }
}

@media screen and (min-width: 1201px) {
    header#navbar .navbarMobile,
    header#navbar .navbarMobileBar {
        display: none;
    }
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

section#azpoz__header .azpoz__header_content {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide {
    background: none;
    color: white;
    text-align: left;
    padding: 0 var(--container-padding-tb0);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content {
    width: 60%;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>h2 {
    font-size: 5.502645502645502vh;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>h2>b {
    font-weight: 700;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    width: 74%;
    margin: 3vh 0;
    padding: 0;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>button {
    background: none;
    border: 1px solid white;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>button>a {
    display: flex;
    font-size: 17px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: center;
    padding: 1.6vh 4vh;
}

section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>button>a>svg {
    width: 15px;
    margin-left: 2.5vh;
    fill: white;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    color: var(--light-color-1);
    padding-left: 1%;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    color: var(--light-color-1)!important;
    padding-right: 1%!important;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-title {
    padding: 8vh var(--container-padding-tb0);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-title>h2 {
    font-weight: 600;
    font-size: 3vh;
    line-height: 1.2;
}

.color-text {
    color: var(--orange-color-darker);
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 4vh var(--container-padding-tb0);
    gap: 2vh;
    z-index: 3;
    position: relative;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons .azpoz__arguments_content-iconsItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons .azpoz__arguments_content-iconsItem .azpoz__arguments_content-iconsItem__text {
    text-align: center;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons .azpoz__arguments_content-iconsItem .azpoz__arguments_content-iconsItem__text>h4 {
    font-size: 2vh;
}

section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons .azpoz__arguments_content-iconsItem .azpoz__arguments_content-iconsItem__text>p {
    color: #595959;
    font-size: 15px;
}

section#azpoz__arguments .azpoz__arguments_content {
    position: relative;
}

section#azpoz__arguments .azpoz__arguments_content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background: var(--light-color-2);
    -webkit-border-bottom-left-radius: 60px;
    -moz-border-radius-bottomleft: 60px;
    border-bottom-left-radius: 60px;
    z-index: 2;
}

@media screen and (max-width: 1050px) {
    section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content {
        width: 100%;
    }
    section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>h2 {
        font-size: 3vh;
    }
    section#azpoz__header .azpoz__header_content .azpoz__header__functions .swiper-slide .azpoz-swpier-slide_content>p {
        font-size: 13px;
        margin: 5vh 0;
    }
    section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-title>h2 {
        font-size: 4vh;
    }
    section#azpoz__arguments .azpoz__arguments_content .azpoz__arguments_content-icons {
        grid-template-columns: 1fr;
    }
}

section#azpoz__offer {
    margin: 5vh 0;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle .azpoz__offer_contentTitleItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 3vh;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle .azpoz__offer_arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2vh;
    position: relative;
    z-index: 10;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle .azpoz__offer_arrows .azpoz__offer_arrowLeft,
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle .azpoz__offer_arrows .azpoz__offer_arrowRight {
    position: relative;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

span.TitleCircle {
    display: block;
    width: 2vh;
    height: 2vh;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--blue-color), var(--blue-second-color));
    -webkit-box-shadow: 0px 0px 13px 1px rgb(var(--blue-shadow));
    -moz-box-shadow: 0px 0px 13px 1px rgb(var(--blue-shadow));
    box-shadow: 0px 0px 13px 1px rgb(var(--blue-shadow));
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle>h2 {
    font-size: 4vh;
    font-weight: 600;
}


section#azpoz__offer .azpoz__offer_content .swiper.azpoz__offer_contentBoxes {
    padding: 2vh 0 2vh var(--container-padding-tb0);
}

section#azpoz__offer .azpoz__offer_content .swiper.azpoz__offer_contentBoxes .swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 2vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    cursor: pointer;  
    min-height: 460px;
    max-height: 460px;
}

section#azpoz__offer .carousel-cell>h3 {
    text-align: left;
    color: white;
    font-size: 2.5vh;
    margin: 0;
}

section#azpoz__offer .carousel-cell {
	background-repeat: no-repeat;
	background-size: cover;
}

section#azpoz__offer .carousel-cell:nth-child(1),
section#azpoz__offer .carousel-cell:nth-child(5) {
    background-image: url(../images/pokup-azpoz-slide.png);
}

section#azpoz__offer .carousel-cell:nth-child(2) {
	background-image: url(../images/carousel-2.png);
}

section#azpoz__offer .carousel-cell:nth-child(3) {
	background-image: url(../images/carousel-3.png);
}

section#azpoz__offer .carousel-cell:nth-child(4) {
	background-image: url(../images/carousel-4.png);
}

section#azpoz__sec .azpoz__sec_content {
	display: grid;
	grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4vh var(--container-padding-tb0);
	gap: 9vh;
}

section#azpoz__offer .carousel-cell {
    padding: 2vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    cursor: pointer;
    min-height: 460px;
    max-height: 460px;
}
  
  .carousel-cell {
    width: 28%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px;
    counter-increment: carousel-cell;
  }
  
  .carousel-cell.is-selected {
    background: #ED2;
  }
  

.carousel {
  width: 100%;
}

.carousel-cell {
  width: calc((100% / 3.5) - 10px); /* 10px to margines między komórkami */
  margin-right: 10px; /* margines między komórkami */
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText h3 {
	font-size: 4vh;
	font-weight: 600;
	margin: 0;
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText p {
	margin: 0;
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText {
	    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 4vh;
}

@media screen and (max-width: 1660px) {
	section#azpoz__sec .azpoz__sec_content {
		padding: 4vh 3%;
	}
	
}

@media screen and (max-width: 1270px) {
	section#azpoz__sec .azpoz__sec_content {
		padding: 4vh 1%;
	}
	section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText h3 {
		font-size: 2.5vh;
	}
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText button {
	    background: var(--orange-color-darker);
    border: none;
    padding: .7vh 2vh;
	    transition: .3s cubic-bezier(0.39, 0.58, 0.57, 1);
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText button:hover {
	background: rgb(var(--button-hover));
}

section#azpoz__sec .azpoz__sec_content .azpoz__sec_contentText button>a {
	    color: white;
    text-decoration: none;
    font-size: 1.5vh;
    display: flex;
    align-items: center;
    gap: 1.5vh;
    font-weight: 500;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentTitle .azpoz__offer_arrows {
	display: none;
}

section#azpoz__contact .azpoz__contact_header {
	background-image: url(/wp-content/uploads/2024/07/pozar-wyjscie.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 14vh 0;
	position: relative;
}

section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	padding: 0 var(--container-padding-tb0);
	position: relative;
	z-index: 2;
}


section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 11vh;
	margin: 0 0 8vh;
}

section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content>h2 {
	    color: white;
    font-weight: 600;
    font-size: 4.5vh;
}

section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems .azpoz__contact_header_contentItemsItem>h5 {
	color: white;
    font-weight: 500;
    font-size: 1.8vh;
}

section#azpoz__contact .azpoz__contact_header:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(var(--dark-img));
	z-index: 1;
}

section#azpoz__contact .azpoz__contact_formular {
    margin-top: -16vh;
	margin-bottom: 10vh;
	padding: 0 var(--container-padding-tb0);
    position: relative;
    z-index: 2;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(var(--dark-bg-contact));
	z-index: -1;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header {
	    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vh;
	position: relative;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header>svg {
	width: 60px;
	height: 60px;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header>h2 {
	    color: white;
    font-size: 4vh;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content {
	background: rgb(var(--grey-bg-contact));
    padding: 6vh 14vh;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_field--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vh;
    justify-content: space-between;
    min-width: 100%;
    max-width: 100%;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field {
	max-width: 100%;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label {
	min-width: 100%;
	max-width: 100%;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label input.wpcf7-form-control,
section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label textarea {
    background: rgb(var(--form-bg));
	border: 1px solid rgb(var(--form-bg));
    padding: 2vh;
    border: none;
    width: calc(100% - 40px);
    font-family: "Poppins", sans-serif;
    color: black !important;
    font-weight: 500;
	font-size: 15px;
	-webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
	outline: 0;
}


section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label input.wpcf7-form-control:focus-visible,
section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label textarea:focus-visible {
	border-color: var(--orange-color-darker);
	outline: 0;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field br {
	display: none;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field p {
	margin: 0;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field>.azpoz__form_fieldItem {
	margin-top: 1vh;
}

.wpcf7-spinner {
	display: none!important;
}

section#azpoz__contact .wpcf7-submit {
	background: var(--orange-color-darker);
    padding: 2vh 5vh;
    border: none;
    font-size: 15px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .wpcf7 form>p {
	text-align: right;
}

section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_field--grid .azpoz__form_fieldItem:nth-child(5) {
	grid-column: span 2;
}

@media screen and (max-width: 980px) {
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content,
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems {
		grid-template-columns: 1fr;
	}
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content>h2 {
		font-size: 3vh;
	}
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems {
		gap: 3vh;
	}
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems .azpoz__contact_header_contentItemsItem>svg {
		    width: 60px;
    height: 60px;
	}
	section#azpoz__contact .azpoz__contact_header .azpoz__contact_header_content .azpoz__contact_header_contentItems .azpoz__contact_header_contentItemsItem>h5 {
		margin: 0;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header {
		flex-direction: column;
		padding: 2vh 0;
		gap: 1vh;
	}
	section#azpoz__contact .azpoz__contact_formular {
		padding: 0;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_header>h2 {
		font-size: 2.8vh;
		margin: 0;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content {
		padding: 1vh;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_field--grid {
		grid-template-columns: 1fr;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_field--grid .azpoz__form_fieldItem:nth-child(5) {
		grid-column: auto;
	}
	section#azpoz__sec .azpoz__sec_content {
		grid-template-columns: 1fr;
	}
}

footer#colophon {
	border-top: 1px solid #e5e5e5;
}

footer#colophon .azpoz__footer {
	display: flex;
	justify-content: space-between;
	padding: 0 var(--container-padding-tb0);
	align-items: center;
}

footer#colophon .azpoz__footer p {
	margin: 1vh 0;
}

footer#colophon .azpoz__footer p a {
	    color: black;
    text-decoration: none;
}

header#navbar {
	    position: relative;
    z-index: 4;
    box-shadow: -12px 20px 20px 0px rgb(var(--box-shadow-navbar));
}

section#azpoz__subpage {
	    background: #f7f7f7;
    padding: 8vh var(--container-padding-tb0);
    margin: -2vh 0 5vh;
    position: relative;
    z-index: 3;
    box-shadow: 0px 0px 16px 8px rgb(var(--box-shadow-subpage));
}

section#azpoz__subpage h1 {
	font-size: 2em;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 3.8px;
    text-align: center;
	    margin: 0.83em 0 0;
}

section#azpoz__subpage .breadcrumbs {
	text-align: center;
	    font-size: 12px;
	font-weight: bold;
}

section#azpoz__subpage .breadcrumbs a {
	color: #494949;
    text-decoration: none;
	font-weight: 400;
}

section#azpoz__contactItems .azpoz__contactItems_content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
	    padding: 0 var(--container-padding-tb0);
	gap: 9vh;
}

section#azpoz__contactItems .azpoz__contactItems_content .azpoz__contactItems_contentItem svg {
	width: 5rem;
	height: 5rem;
	fill: var(--orange-color-darker);
}

section#azpoz__contactItems .azpoz__contactItems_content .azpoz__contactItems_contentItem h3 {
	margin: 2vh 0 0;
}

section#azpoz__contactItems .azpoz__contactItems_content .azpoz__contactItems_contentItem {
	display: flex;
	    flex-direction: column;
    align-items: center;
}

section#azpoz__contactItems .azpoz__contactItems_content .azpoz__contactItems_contentItem p {
	font-size: 1.3vh;
	text-align: center;
}

@media screen and (max-width: 1450px) {
	section#azpoz__contactItems .azpoz__contactItems_content {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 980px) {
	section#azpoz__contactItems .azpoz__contactItems_content {
		grid-template-columns: 1fr;
	}
}

section#azpoz__contact.subpage .azpoz__contact_formular {
	    margin-top: 10vh;
    margin-bottom: 10vh;
    padding: 0 var(--container-padding-tb0);
    position: relative;
    z-index: 2;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_header:after {
	content: "";
	    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(var(--form-bg));
    z-index: -1;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_content {
	    background: rgb(247 247 247);
    padding: 2vh;
    border: 1px solid #ebebeb;
    border-radius: 11px;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_field--grid {
	gap: 3vh;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label input.wpcf7-form-control, section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field .azpoz__form_fieldItem label.azpoz__form_fieldItem__label textarea {
	    background: rgb(241 241 241);
    border: 1px solid rgb(223 223 223) !important;
    padding: 2vh;
    border-radius: 11px;
    border: none;
    width: calc(100% - 40px);
    font-family: "Poppins", sans-serif;
    color: black !important;
    font-weight: 500;
    font-size: 15px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    outline: 0;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_content .azpoz__form_field>.azpoz__form_fieldItem {
	margin-top: 3vh;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_header>h2 {
	color: black;
}

section#azpoz__contact.subpage .azpoz__contact_formular .azpoz__contact_formular_header>svg {
	display: none;
}

section#azpoz__map {
	margin-bottom: -.7vh;
}

section#azpoz__uslugi {
	padding: 6vh 0;
}

section#azpoz__uslugi .azpoz__uslugi_content,
section#azpoz__offer .azpoz__offer_content {
	padding: 0 var(--container-padding-tb0);
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--title,
section#azpoz__offer .azpoz__offer_content .azpoz__offer_content--title {
	position: relative;
	display: block;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--title h2,
section#azpoz__offer .azpoz__offer_content .azpoz__offer_content--title h2 {
	font-size: 4vh;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--title .azpoz__uslug_content--title__bg>span,
section#azpoz__offer .azpoz__offer_content .azpoz__offer_content--title .azpoz__offer_content--title__bg>span {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(241 241 241);
    font-size: 16vh;
    color: transparent;
    position: absolute;
    bottom: 0;
    top: -12vh;
    z-index: -1;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items {
	display: flex;
	flex-wrap: wrap;
	gap: 2vh;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item svg {
    width: 20px;
    height: 20px;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item .azpoz__uslugi_content--item_icon>svg {
	width: 80px;
	height: 80px;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item {
background: #fbfbfb;
    padding: 2vh;
    border: 1px solid rgb(245 245 245);
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: .3s ease-out;
	flex: 25%;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item a {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item .azpoz__uslugi_content--item_text>p {
	    font-size: 3vh;
    font-weight: 600;
    margin: 2vh 0 3vh;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item .azpoz__uslugi_content--item_arrow {
    position: relative;
    display: block;
    width: fit-content;
    background: var(--orange-color-darker);
    padding: 2vh 2vh 1.5vh;
	    transition: .3s ease-out;
	z-index: 1;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:hover {
	background: var(--orange-color-darker);
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:hover .azpoz__uslugi_content--item_text>p {
	color: white;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:hover svg {
	fill: white;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:hover .azpoz__uslugi_content--item_icon>svg g{
	fill: white;
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:nth-child(5),
section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:nth-child(6) {
	grid-column: span 2;
}

section#azpoz__uslugi.azpoz__uslugi_blue .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item .azpoz__uslugi_content--item_arrow,
section#azpoz__uslugi.azpoz__uslugi_blue .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:hover {
	background: var(--blue-color);
}

section#azpoz__uslugi.azpoz__uslugi_blue .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:nth-child(5) {
	grid-column: span 1;
}

section#azpoz__uslugi.azpoz__uslugi_blue .azpoz__uslugi_content .azpoz__uslugi_content--items .azpoz__uslugi_content--item:nth-child(6) {
	grid-column: span 2;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

section#azpoz__offer.offer_sub {
	margin: 10vh 0;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item {
	padding: 2vh;
	background: #f8f8f8;
	cursor: pointer;
	transition: .2s ease-out;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:hover {
	transform: scale(1.03);
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(2),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(3),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(6),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(7),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(10),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(11),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(14),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(15),
section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(18) {
	background: #f3f3f3;
}

section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:last-child {
	grid-column: span 2;
}

.azpoz__contact_header_contentItemsItem>svg {
	width: 100px;
	height: 100px;
	fill: white;
}

@media screen and (max-width: 980px) {
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks {
		grid-template-columns: 1fr;
	}
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:last-child {
		grid-column: span 1;
	}
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(2), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(4), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(6), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(8), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(10), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(12), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(14),
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(16),
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(18) {
		    background: #f3f3f3;
	}
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(3), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(7), 
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(11),
	section#azpoz__offer .azpoz__offer_content .azpoz__offer_contentBlocks .azpoz__offer_contentBlocks--item:nth-child(15) {
			background: #f8f8f8;		
	}
}

section#azpoz__aboutus {
	background-image: url(/wp-content/themes/azpoz/assets/images/firebg.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 5vh 0;
}

section#azpoz__aboutus .azpoz__aboutus_content {
	    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    padding: 4vh var(--container-padding-tb0);
    gap: 5vh 13vh;
}

section#azpoz__aboutus .azpoz__aboutus_content .azpoz__aboutus_content--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	transition: .3s ease-out;
	padding: 2vh;
}

section#azpoz__aboutus .azpoz__aboutus_content .azpoz__aboutus_content--item:hover {
	background: var(--orange-color-darker);
}

section#azpoz__aboutus .azpoz__aboutus_content .azpoz__aboutus_content--item .Content {
	text-align: center;
}

section#azpoz__aboutus .azpoz__aboutus_content .azpoz__aboutus_content--item .Icon>svg {
	width: 80px;
	height: 80px;	
}

section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--text h3 {
    font-size: 3vh;
    font-weight: 300;
    margin: 2vh 0 0;
}

section#azpoz__uslugi.references {
	margin: 4vh 0;
}

.vc_row {
	padding: 0 var(--container-padding-tb0);
}

@media screen and (max-width: 980px) {
	section#azpoz__aboutus .azpoz__aboutus_content {
		grid-template-columns: 1fr;
	}
}

.wpb_wrapper ul {
	list-style: none;
	padding-left: 0;
}

.wpb_wrapper ul li {
	position: relative;
    padding-left: 25px;
	margin: .5vh 0 0;
}

.wpb_wrapper ul li::before {
	    content: '';
    position: absolute;
    left: 0;
    top: 14%;
    width: 12px;
    height: 27px;
    background-image: url('/wp-content/uploads/2024/08/azpoz__marker__black.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.wpb_wrapper ul li:hover::before {
	background-image: url('/wp-content/uploads/2024/08/azpoz__marker.png');
}

.gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.gallery .gallery-item {
	width: 100%;
}

.gallery .gallery-item img {
	width: 100%;
	height: auto;
}

.azpoz__sticky {
	position: sticky!important;
	top: 15px;
}

.azpoz__footer__links {
	display: flex;
	gap: 2rem;
}

.azpoz__footer__links a {
	    color: var(--black-color);
    text-decoration: none;
}

@media screen and (max-width: 980px) {
	.wpb_wrapper ul li::before {
		top: 3%;
	}
	.wpb_wrapper ul li {
		margin: 1vh 0 0;
	}
	.gallery {
		grid-template-columns: 1fr;
	}
	section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--title .azpoz__uslug_content--title__bg>span, section#azpoz__offer .azpoz__offer_content .azpoz__offer_content--title .azpoz__offer_content--title__bg>span {
		font-size: 11vh;
	}
	section#azpoz__sec .azpoz__sec_content {
		padding: 0 var(--container-padding-tb0);
	}
	section#azpoz__sec {
		margin-bottom: 5rem;
	}
	footer#colophon .azpoz__footer,
	.azpoz__footer__links {
		flex-direction: column;
		align-items: flex-start;
	}
	section#azpoz__contact .azpoz__contact_formular .azpoz__contact_formular_content .wpcf7 form>p {
		text-align: center;
	}
	.azpoz__footer__links {
		gap: .3rem;
	}
}

@media screen and (max-width: 1450px) {
	section#azpoz__uslugi .azpoz__uslugi_content .azpoz__uslugi_content--title .azpoz__uslug_content--title__bg>span, section#azpoz__offer .azpoz__offer_content .azpoz__offer_content--title .azpoz__offer_content--title__bg>span {
		font-size: 13vh;
		top: -9vh;
	}
}