@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Black.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Bold.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Medium.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Medium.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Book.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --base: #e95911;
    --primary-color: #3a3a3a;
    --white: #fff;
    --red: #e1000a;
    --yellow: #f39110;
    --grey-accent: #f3f3f3;
    --transition: all 0.4s ease;
    --tj-color-text-body-3: #67787a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: normal;
    font-size: 16px;
}

h1 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 23px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.title {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    padding: 10px;
    margin: 0 auto 20px;
}

.title h1 {
    max-width: 85%;
    margin: auto;

}

.form-wrapper {
    border: 1px solid #F6931D;
    margin: 50px 0;
    background-color: #F3F3F3;
    margin-top: 10px;
}

.form-wrapper form {
    max-width: 85%;
    margin: auto;
}

.form-wrapper .col-md-6,
.form-wrapper .col-md-12 {
    background-color: #fff;
}

.form-wrapper form .row {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 10px 20px 10px;
    border: 1px solid #E0E0E0;
    margin: 0;

}

.form-wrapper form .form-control {
    border: unset;
    border-bottom: 1px dashed #ccc;
    border-radius: 0;
    padding-left: 0;

}

.form-wrapper label {
    font-weight: bold;
    color: #000000;
}

.form-wrapper .req {
    color: #EC1C24;
}

.form-select {
    padding-left: 35px;
}

.pament-mode {
    width: 50%;
    position: relative;
}

.pament-mode::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon.png");
    background-repeat: no-repeat;
    top: 39px;
    left: 5px;
}

.submit {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    color: #fff;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    margin-right: 0;
    border: 0;
    transition: 0.3s;
}

.submit:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

.spin {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

footer,
footer a {
    color: #fff;
    text-decoration: none;
}

footer .top {
    background-color: #000000;
}

.social a {
    transition: 0.3s;
}

.social a:hover {
    scale: 1.1;
}

.copy {
    color: #DEE1E6;
    text-align: center;
    background: #191919;
}

.form-control:focus,
.form-select:focus {
    box-shadow: unset;
}

@media(max-width:767px) {
    .pament-mode {
        width: 100%;
        margin-bottom: 20px;
    }

    .mar-t {
        margin-top: 15px;
    }

    .captc {
        flex-direction: column;
        align-items: start !important;
    }

    .title h1,
    .form-wrapper form {
        max-width: 90%;

    }

}

.header-img,
.footer-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

._failed {
    border-bottom: solid 4px red !important;
}

._failed i {
    color: red !important;
}

._success {
    box-shadow: 0 15px 25px #00000019;
    padding: 20px;
    width: 100%;
    text-align: center;
    margin: 5px auto;
    border-bottom: solid 4px #28a745;
}

._success .fa-check-circle {
    font-size: 55px;
    color: #28a745;
}


._success h2 {
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}

._success p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #495057;
    font-weight: 500;
}

.text-left {
    text-align: left;
}

.w-45 {
    width: 45%;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* Remove number input arrows - Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* Remove number input arrows - Firefox */
input[type="number"] {
    -moz-appearance: textfield !important;
    appearance: textfield;
}

button#reloadCaptcha {
    border: unset !important;
}

.form-wrapper form .additional-param textarea {
    height: 38px;
}

.form-wrapper form .additional-param th {
    background-color: #e1000a;
    color: #fff;
}