@import url('./pb-variables.css');




.icon-16 {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
}

.icon-18-24 {
    width: var(--size-18-24);
    height: var(--size-18-24);
    min-width: var(--size-18-24);
    min-height: var(--size-18-24);
}

.icon-20 {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
}

.icon-24 {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.icon-32 {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

.icon-24-32 {
    width: var(--size-24-32);
    height: var(--size-24-32);
    min-width: var(--size-24-32);
    min-height: var(--size-24-32);
}


.s-primary {
    stroke: var(--color-primary);
}

.f-primary {
    fill: var(--color-primary);
}


.gap-6-12 {
    gap: var(--size-6-12);
}


header {
    padding: var(--size-4-6) 0;
}

header a,
footer a {
    text-decoration: none;
    color: inherit;
}

header a:hover,
footer a:hover {
    color: inherit;
}

h1 {
    font-size: var(--size-24-48);
}

h2 {
     font-size: var(--size-24-32);
     padding: var(--size-24-32) 0 var(--size-6-12) 0;
}

h3 {
     font-size: var(--size-18-24);
     padding: var(--size-6-12) 0 var(--size-6-12) 0;
}


.list-style-icon {
    position: relative;
    margin: 0;
    padding:0;
    margin-left: 30px;
}

.list-style-icon li {
	position: relative;
	list-style-type: none;
	margin: 6px 0;
}

.list-style-icon li:before {
    content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	left: -30px;
	top: 5px;
	margin-top: auto;
	margin-bottom: auto;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e40c21' viewBox='0 0 24 24'%3E%3Cpath d='M20,12C20,16.42 16.42,20 12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C12.76,4 13.5,4.11 14.2,4.31L15.77,2.74C14.61,2.26 13.34,2 12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12M7.91,10.08L6.5,11.5L11,16L21,6L19.59,4.58L11,13.17L7.91,10.08Z'/%3E%3C/svg%3E");
	transition: 0.15s;
}


.b-menu-header {
    list-style: none;
    padding: 0;
    margin: 0;
}

.b-menu-header li {
    margin: 0;
    padding: 0;
}


.b-logo {
    display: flex;
    align-items: center;
}

.b-logo img {
    width: 100%;
    height: auto;
}


.b-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--size-12-24);
    margin-bottom: var(--size-6-12);
    font-family: var(--font-heading);
}

@media screen and (max-width: 768px) {
    .b-contacts {
        flex-direction: column;
        align-items: start;
        gap: var(--size-4-6);
    }
}

.b-contacts__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--size-4-6);
    font-size: var(--size-16-24);
}


.b-footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: var(--size-12-24);
    background-color: #fff;
    box-shadow: var(--shadow-default);
    padding: var(--size-12-24);
    border-left: 4px solid var(--color-primary);
    border-radius: 4px 0 0 4px;
}

.b-footer-contacts__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--size-6-12);
}



.b-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    gap: var(--size-12-24);
}


.b-attention {
    border-left: 4px solid var(--color-primary);
    border-radius: 4px 0 0 4px;
    background-color: var(--color-bg-soft);
    padding: var(--size-12-24);
    padding-left: var(--size-6-12);
}

.lazy-video {
    position: relative;
    width: 100%;
    aspect-ratio: var(--video-aspect-ratio, 16 / 9);
    overflow: hidden;
    background: #111;
    padding: var(--size-6-12);
    box-shadow: var(--shadow-default);
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: var(--size-12-24);
}

.lazy-video__player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
}

.lazy-video__play {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.lazy-video__play svg {
    display: block;
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;

    fill: var(--color-primary);
    transition:
        fill 0.2s ease,
        transform 0.2s ease;
}

.lazy-video:hover .lazy-video__play svg {
    fill: var(--color-primary-hover);
    transform: scale(1.08);
}

.lazy-video.is-loaded .lazy-video__play {
    display: none;
}




.form-title {
    font-family: var(--font-title-bold);
    font-size: var(--size-14-18);
}

.form-check-oferta label {
    user-select: none;
    font-size: 12px;
    line-height: 1.1;
    margin-bottom: 0;
}

.form-check-oferta input {
    width: var(--size-12-18);
    min-width: var(--size-12-18);
    height: var(--size-12-18);
    min-height: var(--size-12-18);
    
}

.form-check-oferta a {
    text-decoration: underline;
}

.form-check-oferta a:hover {
    color: inherit;
}

.form-button-send .btn-default {
    border: none;
    
    min-height: 100%;
    
}
