#container-form .form {
    background: #242C4E;
    width:100%;
    border-radius:9px;
    box-sizing: border-box;
}
#container-form .form > .title {
    font-family: var(--font-bold);
    font-weight: 700;
    color:#FFF;
    display:block;
}
#container-form .form > .description {
    font-family: var(--font-regular);
    font-weight: 400;
    color:#CACACA;
}
#container-form .form > .description > .contacts {
    display: flex;
    flex-wrap:nowrap;
    align-items: center;
}
#container-form .form > .description > .contacts > a {
    font-family: var(--font-regular);
    font-weight: 400;
    color:#ECA900;
    display:inline-block;
    margin-left:15px;
    &:first-child {
        margin-left:0px;
    }
}
#container-form .form > .description > .contacts > a > i {
    width:18px;
    height:18px;
    display:block;
    &::after {
        width:18px;
        height:18px;
        background-color:#ECA900;
    }
}
#container-form .form > .inputs {
    width:100%;
}
#container-form .form > .inputs > .form-group > .form-control {
    border:1px solid #F5F5F5;
    color:#FFF;
    width:100%;
    &::placeholder {
        color:#FFF;
    }
    &::-webkit-input-placeholder {
        color:#FFF;
    }
    &:-ms-input-placeholder {
        color:#FFF;
    }
    &::-moz-placeholder {
        color:#FFF;
    }
}
#container-form .form > .bottom-send {
    margin-top:20px;
}
#container-form .form > .bottom-send > .left {
    display:flex;
}
#container-form .form > .bottom-send > .left > .checkbox {
    margin-left:15px;
    &:first-child {
        margin-left:0px;
    }
}
#container-form .form > .bottom {
    display: flex;
    flex-wrap:wrap;
    border-top:1px solid #868686;
    box-sizing: border-box;
}
#container-form .form > .bottom > .left {
    display: inline-block;
}
#container-form .form > .bottom > .left > .title {
    font-family: var(--font-bold);
    font-weight: 700;
    color:#FFF;
}
#container-form .form > .bottom > .left > .flex > .form-group {
    margin-top:0;
}
#container-form .form > .bottom > .left > .flex > .btn {
    margin-left:16px;
    display:inline-block;
    text-align:center;
}
#container-form .form > .bottom > .left > .flex > .btn > i {
    width:20px;
    height:20px;
    &::after {
        width:20px;
        height:20px;
        background-color:#000;
    }
}
#container-form .form > .bottom > .right {
    display:inline-block;
}
#container-form .form > .bottom > .right > .title {
    font-family: var(--font-bold);
    font-weight: 700;
    color:#FFF;
}
#container-form .form > .bottom > .right > .box {
    display:block;
}
#container-form .form > .bottom > .right > .box.pc > .head {
    display:flex;
}
#container-form .form > .bottom > .right > .box.pc > .head > .top_title {
    font-family: var(--font-regular);
    font-weight: 400;
    color:#D7D7D7;
    display:inline-block;
}
#container-form .form > .bottom > .right > .box.pc > .body {
    display:flex;
}
#container-form .form > .bottom > .right > .box.pc > .body > .value {
    display: inline-block;
    font-family: var(--font-regular);
    font-weight: 400;
    color:#FFFFFF;
}
#container-form .form > .bottom > .right > .box.mobile > .item {
    display:flex;
    width:100%;
    align-items:center;
    font-family: var(--font-regular);
    font-weight: 400;
    color:#D7D7D7;
}
#container-form .form > .bottom > .right > .box.mobile > .item > span {
    color:#FFFFFF;
    margin-left:5px;
}
@media (min-width:100px){
    #container-form .form {
        padding:15px 20px;
    }
    #container-form .form > .title {
        font-size:18px;
    }
    #container-form .form > .description {
        font-size:14px;
        margin-top:10px;
    }
    #container-form .form > .description > .contacts {
        flex:none;
        width:100%;
        margin-top:12px;
    }
    #container-form .form > .inputs {
        margin-top:30px;
    }
    #container-form .form > .bottom-send > .left {
        width: 100%;
        flex:none;
    }
    #container-form .form > .bottom-send > .right {
        margin-top:20px;
        width:100%;
        flex:none;
    }
    #container-form .form > .bottom-send > .right > .btn {
        width:100%;
        text-align:center;
    }
    #container-form .form > .bottom {
        padding:20px 0 0 0;
        margin-top:20px;
    }
    #container-form .form > .bottom > .left {
        width:100%;
        flex:none;
    }
    #container-form .form > .bottom > .left > .title {
        font-size:18px;
    }
    #container-form .form > .bottom > .left > .flex {
        margin-top:20px;
        flex-wrap:nowrap;
    }
    #container-form .form > .bottom > .left > .flex > .form-group {
        flex:1;
    }
    #container-form .form > .bottom > .left > .flex > .btn {
        padding:14px 19px;
        display:flex;
        align-items:center;
    }
    #container-form .form > .bottom > .right {
        width:100%;
        flex:none;
        margin-top:20px;
        border-top:1px solid #868686;
        padding:20px 0 0 0;
    }
    #container-form .form > .bottom > .right > .title {
        font-size:18px;
    }
    #container-form .form > .bottom > .right > .box.pc {
        display: none;;
    }
    #container-form .form > .bottom > .right > .box.mobile > .item {
        font-size:14px;
        margin-top:7px;
    }
}
@media (min-width:797px){
    #container-form .form > .bottom-send > .left {
        width: 50%;
    }
    #container-form .form > .bottom-send > .right {
        margin-top:0;
        width:50%;
        justify-content: right;
        display: flex;
    }
    #container-form .form > .bottom-send > .right > .btn {
        width:auto;
    }
    #container-form .form > .bottom > .left {
        width:47%;
        padding-right:20px;
    }
    #container-form .form > .bottom > .right {
        width:40%;
        padding:0;
        padding-left:20px;
        margin-top:0px;
        border-top:0px;
        border-left:1px solid #868686;
    }
}
@media (min-width:1024px){
    #container-form .form > .title {
        font-size:24px;
    }
    #container-form .form > .description {
        font-size:16px;
        margin-top:15px;
    }
    #container-form .form > .inputs > .form-group {
        min-width:30%;
        width:auto;
        margin-top:20px;
        flex:1;
        margin-left:30px;
        &:first-child {
            margin-left:0px;
            margin-top:0px;
        }
        &:nth-child(2){
            margin-left:0px;
        }
    }
    #container-form .form > .inputs > .form-group:first-child {
        width:100%;
        flex:none;
    }
}
@media (min-width:1200px){
    #container-form .form > .title {
        font-size:30px;
    }
    #container-form .form > .inputs > .form-group {
        min-width:30%;
        width:auto;
        margin-top:0px;
        flex:1;
        margin-left:30px;
        &:first-child {
            margin-left:0px;
            margin-top:0px;
        }
        &:nth-child(2){
            margin-left:30px;
        }
    }
    #container-form .form > .inputs > .form-group:first-child {
        width:auto;
        flex:1;
    }
    #container-form .form > .bottom > .left {
        width:332px;
    }
    #container-form .form > .bottom > .right {
        width:auto;
        flex:1;
    }
    #container-form .form > .bottom > .right > .box.mobile {
        display:none;
    }
    #container-form .form > .bottom > .right > .box.pc {
        display: block;
    }
    #container-form .form > .bottom > .right > .box.pc > .head {
        margin-top:16px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title {
        font-size:16px;
        width:197px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title.two {
        width:200px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title.three {
        width:auto;
        flex:1;
    }
    #container-form .form > .bottom > .right > .box.pc > .body {
        box-sizing:border-box;
        border-top:1px solid #6B6795;
        margin-top:10px;
        padding:10px 0;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value {
        font-size:16px;
        width:197px;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value.two {
        width:200px;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value.three {
        width:auto;
        flex:1;
    }
}
@media (min-width:1400px){
    #container-form .form > .title {
        font-size:38px;
    }
    #container-form .form > .bottom > .left {
        width:369px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title.two {
        width:322px;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value.two {
        width:322px;
    }
}
@media (min-width:1600px){
    #container-form .form > .bottom > .left {
        width:438px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title {
        width:250px;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value {
        width:250px;
    }
    #container-form .form > .bottom > .right > .box.pc > .head > .top_title.two {
        width:322px;
    }
    #container-form .form > .bottom > .right > .box.pc > .body > .value.two {
        width:322px;
    }
}

#container-plus .body {
    display:flex;
    flex-wrap:wrap;
}
#container-plus .body > .item {
    display:inline-block;
}
#container-plus .body > .item > .image {
    mask-size:100% 100%;
    -webkit-mask-size:100% 100%;
    background-color: #ECA900;
    mask-repeat:no-repeat;
    -webkit-mask-repeat: no-repeat;
    display:block;
}
#container-plus .body > .item > .text {
    font-family: var(--font-regular);
    font-weight: 400;
    color:#FFF;
    line-height:1.2em;
}
#container-plus .actions > .btn {
    display:inline-block;
}
#container-plus .actions > .social {
    display:flex;
}
#container-plus .actions > .social > a {
    width:33px;
    height:33px;
    flex:none;
    margin-left:18px;
    &:first-child {
        margin-left:0px;
    }
}
#container-plus .actions > .social > a > .icon {
    width:33px;
    height:33px;
    display:block;
    &::after {
        background-color:#ECA900;
        width:33px;
        height:33px;
    }
}
@media (min-width:100px){
    #container-plus .body {
        width:100%;
    }
    #container-plus .body > .item {
        width:100%;
        margin-top:30px;
        &:first-child {
            margin-top:0px;
        }
    }
    #container-plus .body > .item > .image {
        width:45px;
        height:45px;
    }
    #container-plus .body > .item > .text {
        margin-top:10px;
        font-size:14px;
    }
    #container-plus .actions {
        margin-top:20px;
    }
    #container-plus .actions > .btn {
        width:100%;
    }
    #container-plus .actions > .social {
        width:100%;
        margin-top:20px;
    }
}
@media (min-width:576px){
    #container-plus .body > .item {
        width:255px;
        margin-top:30px;
        margin-left:30px;
        &:nth-child(2n+1){
            margin-left:0px;
        }
        &:nth-child(2){
            margin-top:0px;
        }
        &:first-child {
            margin-top:0px;
            margin-left:0px;
        }
    }
    #container-plus .body > .item > .text {
        margin-top:20px;
    }
    #container-plus .actions {
        align-items:center;
        margin-top:40px;
    }
    #container-plus .actions > .btn {
        width:85%;
    }
    #container-plus .actions > .social {
        width:11%;
        margin-top:0;
        margin-left:20px;
    }
}
@media (min-width:797px){
    #container-plus .body > .item {
        width:345px;
    }
}
@media (min-width:1024px){
    #container-plus .body > .item {
        margin-top:0px;
        margin-left:30px;
        width:203px;
        &:nth-child(2n+1){
            margin-left:30px;
        }
        &:first-child {
            margin-left:0px;
        }
    }
    #container-plus .body > .item > .image {
        width:50px;
        height:50px;
    }
    #container-plus .body > .item > .text {
        margin-top:40px;
    }
    #container-plus .actions {
        width:403px;
        margin-top:30px;
    }
    #container-plus .actions > .btn {
        width: 74%;
    }
    #container-plus .actions > .social {
        width: 21%;
        margin-top:0;
        margin-left:20px;
    }
}
@media (min-width:1200px){
    #container-plus .body > .item {
        width:209px;
        margin-left:91px;
        &:nth-child(2n+1){
            margin-left:91px;
        }
        &:first-child {
            margin-left:0px;
        }
    }
    #container-plus .body > .item > .text {
        font-size:16px;
    }
}
@media (min-width:1400px){
    #container-plus .body > .item {
        width:239px;
    }
}
@media (min-width:1600px){
    #container-plus .body > .item {
        width:289px;
    }
    #container-plus .body > .item > .image {
        width:60px;
        height:60px;
    }
    #container-plus .body > .item > .text {
        font-size:18px;
    }
}

#container-image img {
    width:100%;
}

#container-cars-models .swiper > .swiper-wrapper > .line {
    flex:none;
}
#container-cars-models .swiper > .swiper-wrapper > .line > .img {
    display: flex;
    justify-content: center;
    align-items:center;
}
#container-cars-models .swiper > .swiper-wrapper > .line > .img > img {
    object-fit:cover;
    width:100%;
}
#container-cars-models .swiper > .center {
    position: relative;
    display:flex;
    justify-content: center;
    align-items:center;
    width:100%;
    margin-top:16px;
}
#container-cars-models .swiper .swiper-button-prev > svg,
#container-cars-models .swiper .swiper-button-next > svg {
    display:none !important;
}
#container-cars-models .swiper .swiper-button-prev::after,
#container-cars-models .swiper .swiper-button-next::after {
    content:"";
    width:100%;
    height:100%;
    mask-image:url(/template/img/icons/arrow-round.svg);
    -webkit-mask-image:url(/template/img/icons/arrow-round.svg);
    mask-size:100% 100%;
    -webkit-mask-size:100% 100%;
    background-color:#FFF;
    display:block;
}
#container-cars-models .swiper .swiper-button-prev::after {
    transform: rotate(180deg);
}
#container-cars-models .swiper > .center > .swiper-button-next,
#container-cars-models .swiper > .center > .swiper-button-prev {
    display:inline-block;
    flex:none;
    position: relative;
    left:unset !important;
    right:unset !important;
    top:unset !important;
    bottom:unset !important;
    margin:0;
}
#container-cars-models .swiper > .center > .swiper-pagination {
    display:flex;
    flex:none;
    position: relative;
    left:unset !important;
    right:unset !important;
    top:unset !important;
    bottom:unset !important;
    margin:0 12px;
    width:auto;
}
#container-cars-models .swiper > .center > .swiper-pagination > .swiper-pagination-bullet {
    margin-left:12px;
    width:6px;
    height:6px;
    background:#FFF;
    &:first-child {
        margin-left:0px;
    }
}
#container-cars-models .swiper > .center > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background:#ECA900;
    position: relative;
    &::after {
        content:"";
        pointer-events: none;
        width:10px;
        height:10px;
        border:1px solid #ECA900;
        border-radius:50%;
        position: absolute;
        top:-3px;
        left:-3px;
    }
}
@media (min-width:100px){
    #container-cars-models .swiper {
        overflow: unset;
    }
    #container-cars-models .swiper > .swiper-wrapper > .line {
        width:81px;
        margin-left:40px;
        &:first-child {
            margin-left:0px;
        }
    }
    #container-cars-models .swiper > .swiper-wrapper > .line > .img {
        width:81px;
        height:104px;
    }
    #container-cars-models .body > .button-center {
        width:100%;
        display:none;
    }
    #container-cars-models .body > .button-center > .btn {
        margin-top:20px;
    }
}
@media (min-width:1200px){
    #container-cars-models .swiper {
        overflow: hidden;
    }
    #container-cars-models .swiper > .swiper-wrapper > .line {
        width:89px;
        margin-left:40px;
        &:first-child {
            margin-left:0px;
        }
    }
    #container-cars-models .swiper > .swiper-wrapper > .line > .img {
        width:89px;
        height:104px;
    }
    #container-cars-models .swiper > .center {
        display:none;
    }
    #container-cars-models .body > .button-center {
        display:flex;
    }
}
@media (min-width:1400px){
    #container-cars-models .swiper > .swiper-wrapper > .line {
        width:102px;
        margin-left:40px;
        &:first-child {
            margin-left:0px;
        }
    }
    #container-cars-models .swiper > .swiper-wrapper > .line > .img {
        width:98px;
        height:150px;
    }
}
@media (min-width:1600px){
    #container-cars-models .swiper > .swiper-wrapper > .line {
        margin-left:64px;
        &:first-child {
            margin-left:0px;
        }
    }
}

#container-contacts .body {
    display: flex;
    flex-wrap: wrap;
}
#container-contacts .body > .left {
    display:inline-block;
    flex:none;
}
#container-contacts .body > .left > .title {
    font-family: var(--font-bold);
    font-weight: 700;
    color:#fff;
}
#container-contacts .body > .left > .contacts {
    display:block;
}
#container-contacts .body > .left > .contacts > .item {
    display: block;
}
#container-contacts .body > .left > .contacts > .item > label {
    display:block;
    font-family: var(--font-regular);
    font-weight: 400;
    color:#ECA900;
    display: block;
}
#container-contacts .body > .left > .contacts > .item > .value {
    font-family: var(--font-regular);
    font-weight: 400;
    color:#FFF;
    display: flex;
    align-items:center;
}
#container-contacts .body > .left > .contacts > .item > a.value {
    color:#FFF;
}
#container-contacts .body > .left > .contacts > .item > .value > i {
    width:20px;
    height:20px;
    margin-right:8px;
    &::after {
        width:20px;
        height:20px;
        background-color: #FFF;
    }
}
#container-contacts .body > .left > .social {
    display: flex;
}
#container-contacts .body > .left > .social > a {
    display:flex;
    align-items:center;
    margin-left:18px;
    font-family: var(--font-regular);
    font-weight: 400;
    color:#FFF;
    font-size:18px;
    &:first-child {
        margin-left:0px;
    }
}
#container-contacts .body > .left > .social > a > i {
    width:34px;
    height:34px;
    &::after {
        width:34px;
        height:34px;
        background-color:#FFF;
    }
}
#container-contacts .body > .right {
    display:inline-block;
}
#container-contacts .body > .right > img {
    width:100%;
    border-radius: 12px;
}
@media (min-width:100px){
    #container-contacts {
        box-sizing:border-box;
        padding:0 0 40px 0;
    }
    #container-contacts .body > .left {
        width:100%;
    }
    #container-contacts .body > .left > .title {
        font-size:32px;
    }
    #container-contacts .body > .left > .contacts {
        margin-top:15px;
    }
    #container-contacts .body > .left > .contacts > .item {
        width:100%;
        margin-top:20px;
        &:first-child {
            margin-top:0px;
        }
    }
    #container-contacts .body > .left > .contacts > .item > label {
        font-size: 16px;
    }
    #container-contacts .body > .left > .contacts > .item > .value {
        font-size: 18px;
        margin-top:10px;
    }
    #container-contacts .body > .left > .social {
        margin-top:30px;
    }
    #container-contacts .body > .left > .btn {
        margin-top:30px;
    }
    #container-contacts .body > .right {
        margin-top:30px;
        width:100%;
    }
}
@media (min-width:1024px){
    #container-contacts .body > .left {
        width:320px;
    }
    #container-contacts .body > .right {
        flex:1;
        width:auto;
        margin-top:0px;
    }
}
@media (min-width:1200px){
    #container-contacts .body > .left {
        width:470px;
    }
    #container-contacts .body > .left > .title {
        font-size:40px;
    }
    #container-contacts .body > .left > .contacts {
        margin-top:30px;
    }
    #container-contacts .body > .left > .contacts > .item > .value {
        font-size: 20px;
    }
}
@media (min-width:1400px){
    #container-contacts .body > .left {
        width:500px;
    }
    #container-contacts .body > .left > .title {
        font-size:56px;
        margin-top:20px;
    }
}
@media (min-width:1600px){
    #container-contacts .body > .left {
        width:590px;
    }
    #container-contacts .body > .left > .title {
        margin-top:50px;
    }
    #container-contacts .body > .left > .contacts > .item > label {
        font-size: 18px;
    }
    #container-contacts .body > .left > .contacts > .item > .value {
        font-size: 22px;
    }
}