@import url('css2.css');html {
    font-family: "Roboto",sans-serif;
}

:root {
    --viewport: 375px;
    --bg-color: #f4f6fa;
    --color: #fb5607;
}

*,::after,::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
    height: fit-content;
}

body {
    width: var(--viewport);
    max-width: var(--viewport);
    overflow-x: hidden;
    background-color: var(--bg-color);
    margin: auto;
    margin-top: 0;
    transition: all .3s ease;
    font-weight: 400;
    word-break: break-word;
    height: fit-content;
}

b {
    font-weight: 700;
}

#ew-block {
    position: relative;
    width: 100%;
    display: block;
    padding: 4px;
    background: #004eff;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s ease-out;
}

#ew-block span {
    margin-left: 8px;
    font-size: 18px;
}

.section-3-5-1 {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.section-3-5-1 > div:first-of-type {
    background-color: var(--color);
    width: 100%;
    padding: 12px;
    text-align: center;
    position: relative;
}

.section-3-5-1 > div:first-of-type > h1 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: 40px;
    letter-spacing: 0.01px;
    position: relative;
}

.section-3-5-1 > div:last-of-type {
    position: relative;
    width: 100%;
    height: fit-content;
    min-height: 100px;
    margin-bottom: -5px;
}

.section-3-5-1 > div:last-of-type > img {
    position: relative;
    width: 100%;
    height: auto;
}

.section-4-17-2 {
    background: #FFFFFF;
    width: 100%;
    position: relative;
    min-height: 80px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.section-4-17-2 > div:first-of-type,.section-4-17-2 > div:last-of-type {
    padding: 11px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-basis: 46%;
    text-align: center;
}

.section-4-17-2 > div:first-of-type {
    background-color: #EBEBEB;
    color: #222;
}

.section-4-17-2 > div:last-of-type {
    background-color: var(--color);
    color: #fff;
}

.section-4-17-2 > div:first-of-type > span,.section-4-17-2 > div:last-of-type > span {
    position: relative;
}

.section-4-17-2 > div:first-of-type > s,.section-4-17-2 > div:last-of-type > div {
    position: relative;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    position: relative;
}

.section-4-17-2 > div:nth-of-type(2) {
    flex-basis: 8%;
    position: relative;
}

.section-4-17-2 > div:nth-of-type(2)::before,.section-4-17-2 > div:nth-of-type(2)::after {
    position: absolute;
    width: 23px;
    height: 100%;
    content: '';
}

.section-4-17-2 > div:nth-of-type(2)::before {
    top: 0;
    left: 0;
    background-color: #EBEBEB;
    clip-path: polygon(0% 0%,100% 50%,0% 100%);
}

.section-4-17-2 > div:nth-of-type(2)::after {
    top: 0;
    right: 0;
    background-color: var(--color);
    clip-path: polygon(100% 0%,0% 0%,100% 50%,0% 100%,100% 100%);
}

.section-7-34-3 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    padding: 16px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.section-7-34-3 > div {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: relative;
}

.marquee {
    background: red;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee__inner {
    display: inline-block;
    padding-left: 100%;
    /* старт за межами екрану */
    animation: marquee 15s linear infinite;
}

.marquee__inner span {
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 0 50px;
    /* відстань між фразами */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

form input, form select {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
}

form input:focus, form select:focus {
    border-color: #fb5607;
    box-shadow: 0 0 5px rgba(251, 86, 7, 0.6);
}

form select {
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    /* ховає стандартну стрілку */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

/* кастомна стрілочка */
form select::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.section-7-34-3 > div > div {
    width: 24px;
    height: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.section-7-34-3 > div > div > svg {
    position: relative;
    width: 24px;
    height: 24px;
    color: var(--color)
}

.section-7-34-3 > div > span {
    width: 100%;
    position: relative;
    text-align: left;
}

.section-6-27-4 {
    width: 100%;
    position: relative;
    min-height: 76px;
    padding: 16px;
    background-color: #fff;
    text-align: center;
}

.section-6-27-4 > button {
	border: none;
	cursor: pointer;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	height: 78px;
	width: 100%;
	display: block;
	border-radius: 6px;
	line-height: 76px;
	text-decoration: none;
	text-align: center;
	background: linear-gradient(to bottom, #fc0303, #fc4a03);
	border-bottom: 6px solid #c04c1d;
	box-shadow: 0 2px 5px rgba(0,0,0,0.6);
	font-size: 26px;
	margin: 0px auto;
	color: #fff;
	position: relative;
}
.button-m:active{
	background: linear-gradient(to bottom, #3c8c3c, #3c8c3c);
	top: 2px;
}

.section-12-48-5 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    padding: 32px 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.section-12-48-5 > h2 {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
}

.section-12-48-5 > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.section-12-48-5 > div > div {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.section-12-48-5 > div > div > div:first-of-type {
    position: relative;
    width: 100%;
    height: fit-content;
    flex-shrink: 0;
}

.section-12-48-5 > div > div > div:first-of-type > video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.section-12-48-5 > div > div > div:last-of-type {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-12-48-5 > div > div > div:last-of-type > h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    position: relative;
}

.section-12-48-5 > div > div > div:last-of-type > div {
    text-align: justify;
    position: relative;
}

.section-6-27-6 {
    width: 100%;
    position: relative;
    min-height: 76px;
    padding: 16px;
    background-color: #fff;
    text-align: center;
}

.section-6-27-6 > button {
	border: none;
	cursor: pointer;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	height: 78px;
	width: 100%;
	display: block;
	border-radius: 6px;
	line-height: 76px;
	text-decoration: none;
	text-align: center;
	background: linear-gradient(to bottom, #fc0303, #fc4a03);
	border-bottom: 6px solid #c04c1d;
	box-shadow: 0 2px 5px rgba(0,0,0,0.6);
	font-size: 26px;
	margin: 0px auto;
	color: #fff;
	position: relative;
}
.button-m:active{
	background: linear-gradient(to bottom, #3c8c3c, #3c8c3c);
	top: 2px;
}

.section-8-37-7 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #222;
    padding: 32px 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.section-8-37-7 > h2 {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
}

.section-8-37-7 > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    row-gap: 32px;
    column-gap: 16px;
    align-items: start;
    position: relative;
    flex-wrap: wrap;
}

.section-8-37-7 > div > div {
    flex: 1 1 50%;
    max-width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
}

.section-8-37-7 > div > div > div:first-of-type {
    width: 100%;
    height: 121px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 8px;
    position: relative
}

.section-8-37-7 > div > div > div:first-of-type > img {
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 121px;
}

.section-8-37-7 > div > div > div:last-of-type {
    width: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-8-37-7 > div > div > div:last-of-type > h3 {
    width: 100%;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
}

.section-8-37-7 > div > div > div:last-of-type > span {
    width: 100%;
    position: relative;
}

.section-8-46-8 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    padding: 32px 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.section-8-46-8 > h2 {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
}

.section-8-46-8 > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.section-8-46-8 > div > div {
    width: 100%;
    height: fit-content;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-8-46-8 > div > div > div:first-of-type {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    z-index: 10;
}

.section-8-46-8 > div > div > div:first-of-type > h3 {
    position: relative;
    padding: 8px 16px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 8px;
    background-color: var(--color);
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

.section-8-46-8 > div > div > div:nth-of-type(2) {
    position: relative;
    width: 100%;
    height: fit-content;
    margin-bottom: -5px;
    flex-shrink: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    min-height: 100px;
}

.section-8-46-8 > div > div > div:nth-of-type(2) > img {
    position: relative;
    width: 100%;
    height: auto;
}

.section-8-46-8 > div > div > div:last-of-type {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    padding: 16px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow-hidden;}

.section-6-27-9 {
    width: 100%;
    position: relative;
    min-height: 76px;
    padding: 16px;
    background-color: #fff;
    text-align: center;
}

.section-6-27-9 > button {
	border: none;
	cursor: pointer;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	height: 78px;
	width: 100%;
	display: block;
	border-radius: 6px;
	line-height: 76px;
	text-decoration: none;
	text-align: center;
	background: linear-gradient(to bottom, #fc0303, #fc4a03);
	border-bottom: 6px solid #c04c1d;
	box-shadow: 0 2px 5px rgba(0,0,0,0.6);
	font-size: 26px;
	margin: 0px auto;
	color: #fff;
	position: relative;
}
.button-m:active{
	background: linear-gradient(to bottom, #3c8c3c, #3c8c3c);
	top: 2px;
}

.section-10-43-10 {
    width: 100%;
    position: relative;
    min-height: 350px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    padding: 32px 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.section-10-43-10 > h2 {
    width: 100%;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
}

.section-10-43-10 > div {
    width: 100%;
    position: relative;
    height: 222px;
    overflow: hidden;
}

.section-10-43-10 > div > img {
    width: 100%;
    height: 222px;
    object-fit: cover;
    object-position: relative;
    position: relative;
    border-radius: 8px;
}

.section-10-43-10 > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    position: relative;
    list-style: none;
}

.section-10-43-10 > ul > li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: solid 1px #D1D1D1;
}

.section-10-43-10 > ul > li:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.section-10-43-10 > ul > li > div {
    position: relative;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    min-width: 33%;
}

.section-10-43-10 > ul > li > span {
    position: relative;
    text-align: right;
}

.section-13-47-11 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    padding: 32px 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.section-13-47-11 > h2 {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
}

.section-13-47-11 > div {
    width: 100%;
    min-height: 300px;
    height: fit-content;
    position: relative;
}

.section-13-47-11 > div > span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: var(--color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 220px;
    cursor: pointer;
    transition: all .3s ease-in;
    z-index: 10;
}

.section-13-47-11 > div > span:hover {
    opacity: .9;
}

.section-13-47-11 > div > span > svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.section-13-47-11 > div > span[data-slider-arrow="left"] {
    left: 0;
}

.section-13-47-11 > div > span[data-slider-arrow="right"] {
    right: 0;
}

.section-13-47-11 > div > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding: 32px 16px 0 16px;
    flex-wrap: nowrap;
    overflow: hidden;
}

@keyframes section-13-47-11-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.section-13-47-11 > div > div > div {
    display: flex;
    border-radius: 8px;
    background-color: #f6f6f6;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: all .3s ease-in;
    flex-shrink: 0;
    height: fit-content;
}

.section-13-47-11 > div > div > div.hidden {
    display: none;
}

.section-13-47-11 > div > div > div.animation {
    animation: .3s linear section-13-47-11-opacity;
}

.section-13-47-11 > div > div > div > div:first-of-type {
    position: relative;
    border-radius: 8px;
    width: 279px;
    height: 279px;
    overflow: hidden;
    flex-shrink: 0;
}

.section-13-47-11 > div > div > div > div:first-of-type > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-13-47-11 > div > div > div > div:last-of-type {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-13-47-11 > div > div > div > div:last-of-type > div:first-of-type {
    width: 100%;
    position: relative;
    text-align: justify;
    font-size: 16px;
    line-height: 19px;
}

.section-13-47-11 > div > div > div > div:last-of-type > aside {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: start;
}

.section-13-47-11 > div > div > div > div:last-of-type > aside > div:first-of-type {
    width: 56px;
    height: 56px;
    position: relative;
    flex-shrink: 0;
    border-radius: 100%;
    overflow: hidden;
}

.section-13-47-11 > div > div > div > div:last-of-type > aside > div:first-of-type > img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center;
}

.section-13-47-11 > div > div > div > div:last-of-type > aside > div:last-of-type {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
    max-width: calc(100% - 68px);
}

.section-13-47-11 > div > div > div > div:last-of-type > aside > div:last-of-type > span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    text-align: left;
}

.section-13-47-11 > div > div > div > div:last-of-type > aside > div:last-of-type > small {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    text-align: left;
}

.section-9-38-12 {
    width: 100%;
    position: relative;
    min-height: 60px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #222;
    padding: 32px 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.section-9-38-12 > h2 {
    width: 100%;
    position: relative;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}

.section-9-38-12 > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    position: relative;
    list-style: none;
}

.section-9-38-12 > ul > li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.section-9-38-12 > ul > li > div {
    color: var(--color);
    flex-basis: 33px;
    width: 33px;
    height: 33px;
    border: solid 1px var(--color);
    border-radius: 50%;
    font-weight: 500;
    position: relative;
    text-align: center;
    align-content: center;
    flex-shrink: 0;
}

.section-9-38-12 > ul > li > span {
    width: 100%;
    position: relative;
    text-align: left;
}

.section-3-5-13 {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.section-3-5-13 > div:first-of-type {
    background-color: var(--color);
    width: 100%;
    padding: 12px;
    text-align: center;
    position: relative;
}

.section-3-5-13 > div:first-of-type > h1 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: 40px;
    letter-spacing: 0.01px;
    position: relative;
}

.section-3-5-13 > div:last-of-type {
    position: relative;
    width: 100%;
    height: fit-content;
    min-height: 100px;
    margin-bottom: -5px;
}

.section-3-5-13 > div:last-of-type > img {
    position: relative;
    width: 100%;
    height: auto;
}

.section-4-17-14 {
    background: #FFFFFF;
    width: 100%;
    position: relative;
    min-height: 80px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.section-4-17-14 > div:first-of-type,.section-4-17-14 > div:last-of-type {
    padding: 11px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-basis: 46%;
    text-align: center;
}

.section-4-17-14 > div:first-of-type {
    background-color: #EBEBEB;
    color: #222;
}

.section-4-17-14 > div:last-of-type {
    background-color: var(--color);
    color: #fff;
}

.section-4-17-14 > div:first-of-type > span,.section-4-17-14 > div:last-of-type > span {
    position: relative;
}

.section-4-17-14 > div:first-of-type > s,.section-4-17-14 > div:last-of-type > div {
    position: relative;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    position: relative;
}

.section-4-17-14 > div:nth-of-type(2) {
    flex-basis: 8%;
    position: relative;
}

.section-4-17-14 > div:nth-of-type(2)::before,.section-4-17-14 > div:nth-of-type(2)::after {
    position: absolute;
    width: 23px;
    height: 100%;
    content: '';
}

.section-4-17-14 > div:nth-of-type(2)::before {
    top: 0;
    left: 0;
    background-color: #EBEBEB;
    clip-path: polygon(0% 0%,100% 50%,0% 100%);
}

.section-4-17-14 > div:nth-of-type(2)::after {
    top: 0;
    right: 0;
    background-color: var(--color);
    clip-path: polygon(100% 0%,0% 0%,100% 50%,0% 100%,100% 100%);
}

.section-6-29-15 {
    width: 100%;
    position: relative;
    min-height: 290px;
    padding: 24px;
    background-color: #fff;
}

.section-6-29-15 > form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-6-29-15 > form > div:first-of-type {
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: #222;
    position: relative;
}

.section-6-29-15 > form > fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
}

.section-6-29-15 > form > fieldset > div {
    width: 100%;
    position: relative;
}

.section-6-29-15 > form > fieldset > div > input {
    width: 100%;
    color: #222;
    border: solid 1px #DEDEDE;
    border-radius: 8px;
    padding: 14px 12px 14px 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    position: relative;
    background-color: #fff;
}

.section-6-29-15 > form > fieldset > div::before {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 16px;
    left: 12px;
    content: "";
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.section-6-29-15 > form > fieldset > div:first-of-type::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjMzMzIgMTRWMTIuNjY2N0MxMy4zMzMyIDExLjk1OTQgMTMuMDUyMiAxMS4yODExIDEyLjU1MjEgMTAuNzgxQzEyLjA1MiAxMC4yODEgMTEuMzczNyAxMCAxMC42NjY1IDEwSDUuMzMzMTdDNC42MjU5MyAxMCAzLjk0NzY1IDEwLjI4MSAzLjQ0NzU1IDEwLjc4MUMyLjk0NzQ2IDExLjI4MTEgMi42NjY1IDExLjk1OTQgMi42NjY1IDEyLjY2NjdWMTQiIHN0cm9rZT0iI0FBQUFBQSIgc3Ryb2tlLXdpZHRoPSIxLjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNOC4wMDAxNiA3LjMzMzMzQzkuNDcyOTIgNy4zMzMzMyAxMC42NjY4IDYuMTM5NDMgMTAuNjY2OCA0LjY2NjY3QzEwLjY2NjggMy4xOTM5MSA5LjQ3MjkyIDIgOC4wMDAxNiAyQzYuNTI3NCAyIDUuMzMzNSAzLjE5MzkxIDUuMzMzNSA0LjY2NjY3QzUuMzMzNSA2LjEzOTQzIDYuNTI3NCA3LjMzMzMzIDguMDAwMTYgNy4zMzMzM1oiIHN0cm9rZT0iI0FBQUFBQSIgc3Ryb2tlLXdpZHRoPSIxLjQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}

.section-6-29-15 > form > fieldset > div:last-of-type::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzQzNDhfMTA4OSkiPgo8cGF0aCBkPSJNMTQuNjY2NSAxMS4yOFYxMy4yOEMxNC42NjcyIDEzLjQ2NTcgMTQuNjI5MiAxMy42NDk0IDE0LjU1NDggMTMuODE5NUMxNC40ODA0IDEzLjk4OTcgMTQuMzcxMyAxNC4xNDI0IDE0LjIzNDUgMTQuMjY3OUMxNC4wOTc3IDE0LjM5MzQgMTMuOTM2MiAxNC40ODkgMTMuNzYwMyAxNC41NDg1QzEzLjU4NDQgMTQuNjA3OSAxMy4zOTggMTQuNjMgMTMuMjEzMSAxNC42MTMzQzExLjE2MTcgMTQuMzkwNCA5LjE5MTEzIDEzLjY4OTQgNy40NTk3OSAxMi41NjY3QzUuODQ5MDEgMTEuNTQzMSA0LjQ4MzM1IDEwLjE3NzQgMy40NTk3OSA4LjU2NjY1QzIuMzMzMTEgNi44Mjc0NSAxLjYzMTk1IDQuODQ3MzEgMS40MTMxMyAyLjc4NjY1QzEuMzk2NDcgMi42MDIyOSAxLjQxODM4IDIuNDE2NDkgMS40Nzc0NiAyLjI0MTA3QzEuNTM2NTQgMi4wNjU2NCAxLjYzMTUxIDEuOTA0NDQgMS43NTYzIDEuNzY3NzNDMS44ODExIDEuNjMxMDIgMi4wMzMgMS41MjE3OSAyLjIwMjMyIDEuNDQ3QzIuMzcxNjQgMS4zNzIyMSAyLjU1NDY5IDEuMzMzNDkgMi43Mzk3OSAxLjMzMzMySDQuNzM5NzlDNS4wNjMzMyAxLjMzMDEzIDUuMzc2OTkgMS40NDQ3IDUuNjIyMyAxLjY1NTY3QzUuODY3NjEgMS44NjY2NCA2LjAyNzg0IDIuMTU5NjEgNi4wNzMxMyAyLjQ3OTk4QzYuMTU3NTQgMy4xMjAwMyA2LjMxNDA5IDMuNzQ4NDcgNi41Mzk3OSA0LjM1MzMyQzYuNjI5NDkgNC41OTE5MyA2LjY0ODkgNC44NTEyNiA2LjU5NTczIDUuMTAwNTdDNi41NDI1NiA1LjM0OTg4IDYuNDE5MDMgNS41Nzg3MiA2LjIzOTc5IDUuNzU5OThMNS4zOTMxMyA2LjYwNjY1QzYuMzQyMTYgOC4yNzU2OCA3LjcyNDEgOS42NTc2MSA5LjM5MzEzIDEwLjYwNjdMMTAuMjM5OCA5Ljc1OTk4QzEwLjQyMTEgOS41ODA3NCAxMC42NDk5IDkuNDU3MjIgMTAuODk5MiA5LjQwNDA1QzExLjE0ODUgOS4zNTA4OCAxMS40MDc4IDkuMzcwMjkgMTEuNjQ2NSA5LjQ1OTk4QzEyLjI1MTMgOS42ODU2OCAxMi44Nzk3IDkuODQyMjQgMTMuNTE5OCA5LjkyNjY1QzEzLjg0MzYgOS45NzIzNCAxNC4xMzk0IDEwLjEzNTUgMTQuMzUwOCAxMC4zODVDMTQuNTYyMiAxMC42MzQ1IDE0LjY3NDYgMTAuOTUzIDE0LjY2NjUgMTEuMjhaIiBzdHJva2U9IiNBQUFBQUEiIHN0cm9rZS13aWR0aD0iMS40IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF80MzQ4XzEwODkiPgo8cmVjdCB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
}

.section-6-29-15 > form > fieldset > div > input::placeholder {
    color: #939393;
    opacity: 0.75;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.section-6-29-15 > form > div:last-of-type {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.section-6-29-15 > form > div:last-of-type > button {
	border: none;
	cursor: pointer;
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	height: 78px;
	width: 100%;
	display: block;
	border-radius: 6px;
	line-height: 76px;
	text-decoration: none;
	text-align: center;
	background: linear-gradient(to bottom, #fc0303, #fc4a03);
	border-bottom: 6px solid #c04c1d;
	box-shadow: 0 2px 5px rgba(0,0,0,0.6);
	font-size: 26px;
	margin: 0px auto;
	color: #fff;
	position: relative;
}
.button-m:active{
	background: linear-gradient(to bottom, #3c8c3c, #3c8c3c);
	top: 2px;
}

.section-6-29-15 > form > div:last-of-type > span {
    color: #939393;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-align: center;
    position: relative;
}

.section-2-12-16 {
    background: #FFFFFF;
    color: #212121;
    width: 100%;
    position: relative;
    min-height: 64px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.section-2-12-16 > div {
    text-align: center;
    width: 100%;
}

.section-2-12-16 > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-2-12-16 > div > a {
    color: #212121;
    text-align: center;
}
