
h3 {
    font-size: 1.3em;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
    url('../fonts/SFProDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


:root {
    background: rgba(2, 5, 9, 1);
    --orange: #F1A842;
    --black: rgba(1, 4, 10, 1);
}


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

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
}

a {
    text-decoration: none;
    transition: .3s ease-out;
    color: white;
}

.v-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1456px;
    padding-left: 30px;
    padding-right: 30px;
}
.orange-btn {
    background: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0px 0px 22px #EB8F24;
    border-radius: 110px;
    position: relative;
    width: 100%;
    margin-bottom: 37px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 700;
    font-size: 25.4275px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    text-shadow: 0px 0px 22.1109px #EB8F24;
    cursor:pointer;

}
.orange-btn:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 370.36px;
    min-height: 76.28px;
    transform: translate(-50%, -50%);
    background: rgba(255, 146, 45, 0.2);
    mix-blend-mode: hard-light;
    opacity: 0.1;
    filter: blur(27.6386px);
}
.outline-btn {
    width: 100%;
    margin-bottom: 37px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
    filter: drop-shadow(0px 0px 22px #EB8F24);
    border-radius: 110px;

    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 700;
    font-size: 25.4275px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    cursor: pointer;
}
.btn {
    width: 100%;
    margin-bottom: 37px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D4D4D4;
    border: 2px solid #D4D4D4;
    border-radius: 110px;

    color: #333333;
    font-family: 'SF Pro Display';
    font-style: normal;
    font-weight: 700;
    font-size: 25.4275px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0.01em;
    cursor: pointer;
}


/*header*/
header {
    position: relative;
    padding-top: 62px;
    /*min-height: 600px;*/
}
header img.bg {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0px;
    max-width: 2272px;
    object-fit: contain;
}
header .v-container {
    position: relative;
    z-index: 2;
}
header .logo {
    margin-bottom: 163px;
    display: block;
    width: 130px;
    height: 37px;
}
header h1 {
    font-weight: 700;
    font-size: 51.6689px;
    line-height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 275px;
}
header h1 span {
    display: block;
    padding: 0 14px 3px 12px;
    background: var(--orange);
    box-shadow: 0px 0px 24.9564px #EB8F24;
}
/*header end*/


/*footer*/
footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 82px;
}
footer .logo {
    margin-bottom: 21px;
    display: block;
}
footer .requisites {
    font-size: 20px;
    line-height: 24px;
}
footer .politics {
    font-size: 20px;
    line-height: 24px;
    text-decoration-line: underline;
    display: block;
}
footer .links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
footer .links a {
    font-size: 20px;
    line-height: 24px;
    text-decoration-line: underline;
    text-align: right;
}
footer .links a.phone {
    display: flex;
    align-items: center;
    gap: 21px;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 53px;
    text-decoration: none;
}
/*footer end*/



/*catalog*/
main {
    position: relative;
    z-index: 2;
}
.v-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 50px;
    width: 100%;
    margin-bottom: 130px;
}
.v-catalog .item {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.v-catalog .item .photo {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}
.v-catalog .item .name {
    text-align: center;
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 39px;
}
.v-catalog .item .prop {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 24px;
    gap: 15px;
}
.v-catalog .item .prop:before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background: var(--orange);
    flex-shrink: 0;
}
.v-catalog .item .prop:last-child {
    margin-bottom: 80px;
}
.v-catalog .item .price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}
.v-catalog .item .old-price {
    position: relative;
    font-size: 25px;
    line-height: 120%;
    text-align: center;
}
.v-catalog .item .old-price:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border: 1px solid #FF0000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-1.92deg);
}
.v-catalog .item .price {
    font-size: 35px;
    line-height: 120%;
    text-align: center;
    color: var(--orange);
    margin-bottom: 50px;
    font-weight: 600;
}
/*catalog end*/



/*form*/
.form-modal-wrapper {
    display: none;
    padding: 0;
    background: none;
    width: 100%;
    max-width: 600px;
}
form {
    background: var(--black);
    width: 100%;
    max-width: 600px;
    border: 2.20863px solid #F1A842;
    box-shadow: 0px 0px 16.2783px #EB8F24;
    border-radius: 7.36211px;
    padding: 18px 33px;
    position: relative;
}
form .closeFormBtn {
    position: absolute;
    top: 11px;
    right: 10px;
    cursor: pointer;
}
form * {
    color: white;
}
form .title {
    max-width: 90%;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}
form label {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    font-family: 'Gilroy';
}
form input {
    width: 100%;
    height: 37px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: white;
    background: var(--black);
    border: 1px solid white;
    border-radius: 7px;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 105%;
    color: #FFFFFF;
    position: relative;
    z-index: 4;
}
.checkbox .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
}
.checkbox .check svg {
    opacity: 0;
    transition: .3s ease-out;
}
.checkbox input:checked + .check svg {
    opacity: 1;
}
form button {
    width: 100%;
    min-height: 44px!important;
    font-size: 18px!important;
    margin: 0!important;
}
form .error {
    color: red;
    font-size: 9px;
    padding-bottom: 7px;
    padding-top: 8px;
}
/*form end*/

@media (max-width: 1280px) {
    .v-catalog {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1024px) {
    footer {
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        gap: initial;
    }
    footer .logo {
        width: 111px;
        height: 32px;
        margin-bottom: 12px;
        display: block;
    }
    footer .logo img {
        width: 100%;
        height: 100%;
    }
    footer .requisites {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    footer .politics {
        order: 4;
        font-size: 12px;
        line-height: 1;
    }
    footer .links {
        align-items: flex-start;
    }
    footer .links a.phone {
        margin-bottom: 15px;
        font-size: 15px;
        gap: 10px;
    }
    footer .links a.phone svg {
        width: 16px;
        height: 16px;
        color: rgba(183, 24, 46, 1);
        flex-shrink: 0;
        margin-top: 3px;
    }
    footer .links a {
        font-size: 12px;
        line-height: 1;
        margin-bottom: 5px;
        display: block;
    }
}
@media (max-width: 768px) {
    .v-catalog {
        grid-template-columns: 1fr;
        grid-gap: 70px;
    }
    header h1 {
        font-size: 42px;
    }
    header img.bg {
        right: -20%;
    }
}
@media (max-width: 580px) {
    header {
        padding-top: 27px;
    }
    header h1 {
        font-size: 25px;
        margin-bottom: 500px;
    }
    header img.bg {
        right: initial;
        left: 50%;
        width: 528px;
        transform: translateX(-50%);
        top: 150px;
    }
    header .logo {
        width: 74px;
        height: 21px;
        margin-bottom: 60px;
    }
    header .logo img {
        width: 100%;
    }
    footer {
        margin-bottom: 55px;
    }
    .v-catalog {
        margin-bottom: 78px;
    }
}


.fancybox__toolbar__button--close {
    display: none !important;
}