:root {
    --first-color: #064789;
    --second-color: #FFC123;
    --thrid-color: #253D5B;
    --four-color: rgba(255, 255, 255, 0.8)
}

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

body {
    background-image: url(../images/bg-image.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-size: 16px
}

.header .contacts .tg, .menu-button {
    display: none
}

.button {
    text-decoration: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 100px;
    border: 1px solid var(--first-color)
}

.button--blue {
    background-color: var(--first-color);
    color: var(--second-color)
}

.button--blue:hover, .button--yellow {
    background-color: var(--second-color);
    color: var(--first-color);
    border-color: var(--second-color)
}

.button--yellow:hover {
    background-color: var(--first-color);
    color: var(--second-color);
    border-color: var(--first-color)
}

.button--tg {
    max-width: 330px;
    margin-top: 10px
}

.button--tg img {
    padding-right: 10px
}

.bottom-nav .container .wr .links a.button--transparent:hover, .button--transparent {
    color: var(--first-color)
}

.button--transparent:hover {
    background-color: var(--second-color);
    color: var(--first-color);
    border-color: var(--second-color)
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 25px;
    background-color: var(--first-color)
}

.container {
    padding: 0 20px 30px
}

main .container {
    background-color: rgba(186, 208, 231, .8)
}

.header .container {
    padding-top: 18px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0 10px;
    /*grid-template-areas:"b a""b c";*/
    /*background-image: linear-gradient(to top, rgba(186, 208, 231, .8) 0, rgba(186, 208, 231, .8) 45px, transparent 45px, transparent 100%);*/
    background-image: linear-gradient(to top, rgba(186, 208, 231, .8) 0%, rgba(186, 208, 231, .8) 100%);
    background-size: 20px 100%;
    border-bottom: 2px solid #064789
}

.header .logo {
    width: 150px;
    /*grid-area: b*/
}

.header .contacts {
    /*grid-area: a;*/
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header .contacts .phone {
    display: flex;
    gap: 13px;
    align-items: center
}

.header .contacts .phone a, .header .nav-bar a {
    text-decoration: none;
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    text-transform: uppercase;
    color: var(--first-color)
}

.header .contacts .phone a:hover, .table-block .table-wr th a {
    color: var(--second-color)
}

.header .contacts .mail, .header .nav-bar {
    display: flex;
    gap: 10px;
    align-items: center
}

.header .contacts .mail a {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    text-decoration: none
}

.header .contacts .mail a:hover {
    color: var(--second-color);
    text-shadow: 1px 1px 1px var(--first-color)
}

.header .nav-bar {
    /*grid-area: c;*/
    flex-wrap: wrap;
    gap: 10px 30px;
    justify-content: flex-start
}

.header .nav-bar a {
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    color: var(--thrid-color)
}

.header .nav-bar a:nth-child(4) {
    /*margin-right: 40%*/
}

.header .nav-bar a:hover {
    color: var(--second-color);
    text-shadow: 1px 1px 1px var(--first-color)
}

.banner .container {
    position: relative;
    border-top: 2px solid rgba(186, 208, 231, .8);
    border-bottom: 2px solid rgba(186, 208, 231, .8);
    background-image: url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0
}

.banner .container .text {
    color: var(--second-color);
    padding: 38px 0
}

.banner .container .text h1, h2, h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px
}

.banner .container .text h1, h3 {
    text-transform: uppercase
}

.banner .container .text p {
    font-size: 20px;
    line-height: 24px
}

.banner .container .image {
    position: absolute;
    right: 0;
    bottom: 0
}

.banner .container:after, .banner .container:before {
    content: "";
    display: block;
    width: 60px;
    height: 15px;
    position: absolute;
    background-image: url(../images/decor-1.png);
    background-repeat: no-repeat
}

.banner .container:before {
    top: 0;
    left: 0
}

.banner .container:after {
    bottom: 0;
    right: 0
}

.banner + section .container {
    border-top: 2px solid var(--first-color);
    padding-top: 30px
}

h2 {
    color: var(--first-color);
    padding-top: 20px;
    padding-bottom: 15px
}

h3 {
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 23px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: var(--thrid-color);
    padding-left: 50px;
    background-image: url(../images/title-icon.png);
    background-repeat: no-repeat;
    background-position: left center
}

.table-block .table-wr {
    width: 100%
}

.table-block .table-wr th {
    width: 100%;
    height: 50px;
    background-color: var(--first-color);
    color: var(--second-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    padding: 15px 10px
}

.table-block .table-wr td {
    height: 50px;
    line-height: 19px;
    text-align: center;
    padding: 15px 10px
}

.table-block .table-wr.type-3 tr {
    display: grid;
    grid-template-columns:388px 352px 354px;
    margin-bottom: 4px;
    gap: 4px
}

.table-block .table-wr.type-3 tr th {
    font-weight: 500
}

.table-block .table-wr.type-3 tr td:first-child, .table-block .table-wr.type-3 tr th:first-child {
    text-align: left;
    padding-left: 35px
}

.table-block .table-wr.type-3 tr td:first-child {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #fff;
    background-color: rgba(6, 71, 137, .38)
}

.table-block .table-wr.type-3 tr td:first-child a {
    color: #fff
}

.table-block .table-wr.type-3 td, .table-block .table-wr.type-4 tr {
    background-color: var(--four-color)
}

.table-block .table-wr.type-4 tr {
    display: grid;
    grid-template-columns:repeat(4, 25%);
    margin-bottom: 4px
}

.table-block .table-wr.type-4 td:last-child:after, .table-block .table-wr.type-4 th:last-child:after, .table-block .table-wr.type-4 tr:last-child td:after, .table-block .table-wr.type-4 tr:last-child th:after, .table-block .table-wr.type-5 td:last-child:after, .table-block .table-wr.type-5 th:last-child:after, .table-block .table-wr.type-5 tr:last-child td:after, .table-block .table-wr.type-5 tr:last-child th:after {
    display: none
}

.table-block .table-wr.type-4 td, .table-block .table-wr.type-4 th, .table-block .table-wr.type-5 td, .table-block .table-wr.type-5 th {
    position: relative;
    border-right: 3px solid #fff
}

.table-block .table-wr.type-4 td:after, .table-block .table-wr.type-4 th:after, .table-block .table-wr.type-5 td:after, .table-block .table-wr.type-5 th:after {
    position: absolute;
    content: "";
    display: block;
    width: 3px;
    height: 4px;
    background-color: #fff;
    bottom: -4px;
    right: -3px
}

.table-block .table-wr.type-4 td:last-child, .table-block .table-wr.type-4 th:last-child, .table-block .table-wr.type-5 td:last-child, .table-block .table-wr.type-5 th:last-child {
    border-right: none
}

.table-block .table-wr.type-5 tr {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    margin-bottom: 4px;
    background-color: var(--four-color)
}

.table-block .table-wr.type-7 tr {
    display: grid;
    grid-template-columns:repeat(7, 1fr);
    margin-bottom: 4px;
    gap: 4px
}

.table-block .table-wr.type-7 tr th {
    font-weight: 500
}

.table-block .table-wr.type-7 tr td:first-child, .table-block .table-wr.type-7 tr th:first-child {
    text-align: left
}

.table-block .table-wr.type-7 tr td:first-child {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #fff;
    background-color: rgba(6, 71, 137, .38)
}

.table-block .table-wr.type-7 td {
    background-color: var(--four-color)
}

.article-block .container {
    padding-top: 20px;
    padding-bottom: 30px
}

.article-block .wr {
    background-color: var(--four-color);
    display: flex;
    gap: 30px;
    padding: 20px
}

.article-block .wr .img {
    position: relative;
    transform: translateY(-28px)
}

.article-block .wr p {
    line-height: 19px;
    margin-bottom: 0;
    color: #464646
}

.article-block .wr.type-2 .img {
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.prices-block .wr {
    display: grid;
    gap: 3px
}

.prices-block .wr.type-3 {
    grid-template-columns:repeat(3, 1fr);
    gap: 15px 3px
}

.prices-block .wr.type-3 .title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    gap: 12px;
    height: 60px
}

.prices-block .wr.type-3 .title img {
    width: 35px
}

.prices-block .wr.type-3 .title .text {
    padding: 0
}

.prices-block .wr.type-3 .price {
    padding-top: 9px;
    padding-bottom: 9px
}

.prices-block .wr.type-6 {
    grid-template-columns:repeat(6, 1fr)
}

.prices-block .wr.type-6 .title {
    height: 110px
}

.prices-block .wr.type-6 .text {
    min-height: 55px
}

.prices-block .wr .title {
    margin-bottom: 3px;
    background-color: var(--first-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center
}

.prices-block .wr .title .text {
    padding-top: 7px;
    padding-bottom: 14px
}

.prices-block .wr .price, .text-block .wr {
    background-color: var(--four-color);
    color: #464646
}

.prices-block .wr .price {
    padding-top: 14px;
    padding-bottom: 9px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.prices-block .wr .price b {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px
}

.text-block.informer-block .wr {
    padding: 0
}

.text-block .wr {
    padding: 25px 25px 10px;
    font-size: 18px;
    line-height: 21px
}

.text-block .wr ul {
    list-style: none;
    padding: 0
}

.text-block .wr ul li {
    margin-bottom: 7px
}

.text-block .wr ul.custom-list-item {
    padding: 0 0 0 2rem;
    list-style-image: url(../images/arrow-right-icon.png);
    margin: 0
}

.text-block .wr ul.custom-list-item li {
    margin-bottom: 10px
}

.text-block .wr ol {
    position: relative;
    z-index: 1
}

.text-block .wr ol li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 10px;
    z-index: 3
}

.text-block .wr ol li::marker {
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px
}

.text-block .wr ol li:after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--first-color);
    border-radius: 25px;
    left: -29px;
    top: -5px;
    z-index: -1
}

.text-block .wr a {
    color: var(--second-color);
    text-decoration: none
}

.buttons-block .wr a span, .text-block .wr .buttons {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase
}

.text-block .wr .buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--second-color)
}

.text-block .wr .buttons a, .text-block .wr .buttons button {
    padding: 20px 45px 20px 66px;
    display: flex;
    align-items: center;
    background-image: url(../images/decor-2.png);
    background-repeat: no-repeat;
    background-position: 35px 0
}

.text-block .wr .buttons a span, .text-block .wr .buttons button span {
    padding-left: 13px
}

#open-all:hover, .links-block .wr a.type-3:hover, .path-block .wr form .type-4:hover, .text-block .wr .buttons a:hover, .text-block .wr .buttons button:hover {
    background-color: var(--thrid-color);
    color: var(--second-color)
}

.buttons-block .wr {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 17.5px;
    align-items: center
}

.buttons-block .wr a {
    background-repeat: no-repeat;
    background-position: center 15px
}

.buttons-block .wr a.calc {
    background-image: url(../images/calc-image.png)
}

.buttons-block .wr a.lc-1 {
    background-image: url(../images/lc-1-image.png)
}

.buttons-block .wr a.lc-2 {
    background-image: url(../images/lc-2-image.png)
}

.buttons-block .wr a span {
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    font-weight: 500;
    text-align: center;
    letter-spacing: .03em;
    color: #fff
}

.buttons-block .wr a:hover {
    background-color: var(--thrid-color)
}

.links-block p {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: var(--thrid-color);
    padding-left: 48px
}

.links-block .wr {
    display: grid;
    padding-top: 20px
}

.links-block .wr.type-3 {
    grid-template-columns:repeat(3, 1fr);
    gap: 12px
}

.links-block .wr.type-4 {
    grid-template-columns:repeat(4, 1fr);
    gap: 12px
}

.links-block .wr a {
    line-height: 19px;
    padding-top: 14px;
    padding-bottom: 14px
}

.links-block .wr a.type-3 {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding-left: 66px;
    background-image: url(../images/decor-2.png);
    background-repeat: repeat-y;
    background-position: 35px 0;
    font-size: 14px
}

.links-block .wr a.type-4 {
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 84px;
    background-image: url(../images/location-icon-2.png), url(../images/decor-2.png);
    background-repeat: no-repeat, repeat-y;
    background-position: 39px center, 94% 2px;
    background-color: #fff;
    border-color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--first-color);
    text-transform: none
}

.links-block .wr a.type-4:hover {
    background-image: url(../images/location-icon.png), url(../images/decor-2.png);
    background-color: var(--first-color);
    border-color: var(--first-color);
    color: var(--second-color)
}

.links-block .wr a.type-4 span {
    display: block;
    width: 200px
}

.path-block .wr {
    background-color: var(--second-color);
    color: #fff;
    padding: 37px;
    text-align: center
}

.path-block .wr .title {
    font-weight: 500;
    font-size: 23px;
    line-height: 27px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 15px
}

.path-block .wr .text {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 20px
}

.path-block .wr form .inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.path-block .wr form .inputs input, .path-block .wr form .inputs select {
    padding: 11px 20px;
    width: 196px;
    height: 43px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    appearance: none;
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: 90% center;
    font-size: 18px;
    line-height: 21px;
    color: #464646
}

.path-block .wr form .inputs input::placeholder, .path-block .wr form .inputs select::placeholder {
    font-size: 18px;
    line-height: 21px;
    color: #464646
}

.path-block .wr form .type-4 {
    margin-left: auto;
    margin-right: auto;
    padding: 19.5px 83px;
    font-size: 16px
}

.path-block .wr form .type-4 span {
    position: relative
}

.path-block .wr form .type-4 span:after, .path-block .wr form .type-4 span:before {
    content: "";
    display: block;
    width: 35px;
    height: 14px;
    position: absolute;
    background-image: url(../images/decor-3.png);
    background-repeat: no-repeat;
    top: 2px
}

.path-block .wr form .type-4 span:before {
    left: -49px
}

.path-block .wr form .type-4 span:after {
    right: -49px
}

.cars-block .wr {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 13px
}

.cars-block .wr .item {
    background-color: var(--first-color);
    border-radius: 100px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-image: url(../images/decor-1.png);
    background-repeat: no-repeat;
    background-position: right center
}

.cars-block .wr .item .image {
    width: 95px;
    height: 95px;
    overflow: hidden;
    border-radius: 50%
}

.cars-block .wr .item .image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%
}

.cars-block .wr .item .text {
    display: block;
    color: var(--second-color);
    background-color: var(--first-color);
    text-transform: uppercase;
    padding-right: 15px
}

.bottom-nav .container {
    background-color: rgba(186, 208, 231, .8);
    padding: 0
}

.bottom-nav .container .wr {
    background-color: rgba(6, 71, 137, .6);
    padding: 26px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.bottom-nav .container .wr .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0
}

.bottom-nav .container .wr .nav a {
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 5px 17px
}

.bottom-nav .container .wr .nav a:hover {
    background-color: var(--first-color);
    color: var(--second-color);
    border-radius: 50px
}

.bottom-nav .container .wr .nav a:nth-child(4) {
    margin-right: 100px
}

.bottom-nav .container .wr .links a {
    width: 215px
}

.bottom-nav .container .wr .links a:first-child {
    margin-bottom: 10px
}

.bottom-nav .container .wr .links a.button--transparent {
    color: var(--second-color);
    border-color: var(--second-color)
}

.footer .container {
    background-color: rgba(186, 208, 231, .8);
    padding: 0;
    border-top: 1px solid rgba(186, 208, 231, .8)
}

.footer .container .wr {
    margin-top: 10px;
    background-color: rgba(6, 71, 137, .6);
    padding: 26px 20px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
    justify-content: space-between
}

.footer .container .wr .item, .single .table-block .table-wr.type-7 td a {
    color: #fff
}

.footer .container .wr .item h3 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    line-height: 27px;
    text-transform: none
}

.footer .container .wr .item ul {
    list-style-image: url(../images/arrow-right.svg)
}

.footer .container .wr .item ul li {
    margin-bottom: 2px
}

.footer .container .wr .item a {
    color: #fff;
    text-decoration: none
}

.footer .container .wr .item a:hover {
    text-decoration: underline
}

.footer .container .wr .item form input {
    border: 1px solid var(--second-color);
    color: #fff;
    background-color: transparent;
    padding: 11px 20px;
    margin-bottom: 10px;
    display: block;
    width: 100%
}

.footer .container .wr .item form input::placeholder, .reviews-form form input::placeholder {
    color: #fff
}

.footer .container .wr .item form input:last-child, .reviews-form form input:last-child {
    padding: 15px 20px;
    margin-top: 15px;
    text-align: center;
    border: 0;
    background-color: var(--first-color);
    border-radius: 25px;
    color: var(--second-color);
    text-transform: uppercase;
    background-image: url(../images/decor-3.png);
    background-repeat: no-repeat;
    background-position: 35px center
}

.footer .container .wr .item form input:last-child:hover, .reviews-form form input:last-child:hover {
    background-color: var(--thrid-color)
}

.footer .container .wr .item:last-child a {
    display: block;
    margin-bottom: 5px;
    padding-left: 35px;
    background-repeat: no-repeat;
    background-position: left center
}

.footer .container .wr .item:last-child a.call {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    background-image: url(../images/phone-icon.png)
}

.footer .container .wr .item:last-child a.mail {
    background-image: url(../images/email-icon.png)
}

.footer .container .wr .item:last-child a.vk {
    background-image: url(../images/vk-icon.png)
}

.footer .container .wr .item:last-child a.tg {
    background-size: 25px;
    background-image: url(../images/tg-icon.png)
}

.footer .container .wr .item:last-child p {
    margin-top: 45px;
    margin-bottom: 0;
    padding-left: 35px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px
}

.pag {
    width: 100%;
    margin: 20px 0;
    flex-direction: row;
    flex-wrap: wrap
}

.pag .current a {
    background-color: var(--second-color);
    color: var(--first-color)
}

.single .table-block .table-wr th, .single .table-block .table-wr.type-7 tr td {
    height: auto
}

.single .table-block .table-wr.type-7 td a:hover {
    text-decoration: none
}

.pag, .sub-menu {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px
}

.sub-menu a {
    text-decoration-style: dotted;
    color: #fff
}

.text-block .wr + .wr {
    margin-top: 20px
}

.tarif-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    height: 250px;
    overflow: hidden
}

.tarif-list.open {
    height: auto;
    overflow: auto
}

.farif-item {
    background-color: var(--first-color);
    border-radius: 25px;
    padding: 10px 15px;
    color: var(--second-color)
}

.farif-item:hover {
    background-color: var(--thrid-color);
    color: #fff
}

.farif-item:hover a {
    color: #fff
}

.farif-item a:first-child {
    font-weight: 700
}

.farif-item a, .farif-item a:hover {
    color: var(--second-color)
}

#close-popup a, #open-all {
    font-weight: 700;
    text-decoration: none
}

#open-all {
    display: block;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    background-color: var(--first-color);
    border-radius: 25px;
    padding: 10px;
    color: #fff;
    text-align: center
}

#map {
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0 0 20px
}

.cars div, .scroll-off {
    overflow: hidden
}

.cars img, .popup-bg {
    height: 100%;
    width: 100%
}

.popup-bg {
    display: none;
    background-color: rgba(0, 0, 0, .355);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001
}

.popup-bg.active, .popup.active {
    display: block
}

#close-popup, .popup {
    position: fixed;
    top: 10px
}

.popup {
    overflow-y: scroll;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    width: 80%;
    height: 100%
}

#close-popup {
    background-color: transparent;
    right: 10px;
    z-index: 10003;
    border: 0;
    padding: 0
}

#close-popup a {
    background-color: var(--main-bg-color);
    border-radius: 10px;
    display: inline-block;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 15px
}

#close-popup a:hover {
    background-color: var(--second-bg-color);
    color: var(--main-bg-color)
}

.kalkulyator #sedi-orderform3 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 500px
}

.hidden {
    visibility: hidden
}

.cars {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 15px
}

.cars img {
    object-fit: cover;
    object-position: center
}

.reviews-form form input {
    border: 1px solid var(--second-color);
    color: #fff;
    padding: 11px 20px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    background-color: rgba(6, 71, 137, .6)
}


.searchbar {
    /*background: var(--second-color);*/
    display: grid;
    padding: 5px;
}

.search-main {
    /*margin-bottom: 20px;*/
}

.searchbar .query {
    height: 40px;
}

.query {
    width: 100%;
    background: #fff;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    color: #2c2c2c;
    float: left;
    clear: none;
}


.searchbar p {
    display: inline-block;
    margin: 0;
    padding: 2px;
}

.searchbar .btn_submit {
    float: right;
    display: block;
    border: none;
    background-color: transparent;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI4IiB2aWV3Qm94PSIwIDAgMjggMjgiIHdpZHRoPSIyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMy4zMjIzNyAxOS4zOWMtNC40Mjk3NS00LjQyOTktNC40Mjk2Ni0xMS42Mzc3OCAwLTE2LjA2NzYyIDQuNDI5ODQtNC40Mjk4NCAxMS42Mzc2My00LjQyOTg0IDE2LjA2NzQzIDAgMy43NTgxIDMuNzU4MTEgNC4zMjczIDkuMzQ3NDIgMS43MDkgMTMuNzEyMDIgMCAwLS4xODguMzE1NS4wNjYuNTY5MyAxLjQ0OSAxLjQ0OSA1Ljc5NjUgNS43OTY2IDUuNzk2NSA1Ljc5NjYgMS4xNTM4IDEuMTUzNyAxLjQyODQgMi43NjY5LjQwNTMgMy43OTAybC0uMTc2Mi4xNzZjLTEuMDIzMSAxLjAyMzMtMi42MzY0Ljc0ODgtMy43OTAxLS40MDUgMCAwLTQuMzM4My00LjMzODQtNS43ODQ0LTUuNzg0NC0uMjY2Mi0uMjY2Mi0uNTgxNi0uMDc4MS0uNTgxNi0uMDc4MS00LjM2NDUgMi42MTgyLTkuOTUzODIgMi4wNDkxLTEzLjcxMTkzLTEuNzA5em0xMy45Njk5My0yLjA5NzZjMy4yNzMyLTMuMjczMiAzLjI3MzEtOC41OTkwMy0uMDAwMS0xMS44NzIyMy0zLjI3MzItMy4yNzMxLTguNTk5MDItMy4yNzMxOS0xMS44NzIxMyAwLTMuMjczMTkgMy4yNzMxMS0zLjI3MzE5IDguNTk5MDMgMCAxMS44NzIyMyAzLjI3MzIgMy4yNzMgOC41OTg5MyAzLjI3MyAxMS44NzIyMyAweiIgZmlsbD0iI2I0YjRiNCIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: center center;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    transition: all 300ms;
}

.searchbar .btn_submit {
    margin-left: -70px;
    width: 70px;
    height: 40px;
    background-size: 24px 24px;
}

.ui-menu-item {
    list-style: none;
}

.ui-menu-item a {
    display: block;
    padding: 10px 20px;
    color: #000;
}

.ui-menu-item a:hover {
    color: #d8d8d8;
}


.searchbar + section .container {
    border-top: 2px solid var(--first-color);
    padding-top: 30px;
}

.top-naprav {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
}

.top-naprav a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #fff;
    background-color: rgba(6, 71, 137, .38);
    display: block;
    text-align: center;
    padding: 10px 5px;
    text-decoration: none;
}

.top-naprav a:hover {
    background-color: rgba(4, 54, 104, 0.54);
}

.taxi-services {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.taxi-services.other {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.taxi-services .taxi {
    background-color: var(--first-color);
    color: #fff;
    padding: 10px;
}

.taxi-services .taxi.pro {
  border: 2px solid var(--second-color);
}

.taxi-services .taxi a {
    color: var(--second-color);
    text-decoration: none;
}

.taxi-services .taxi a:hover {
    color: #dfa71b;
}

.taxi-services .taxi .taxi-info {
    padding: 10px;
}

.taxi-services .taxi .taxi-info li {
    display: flex;
    justify-content: space-between;
}


.top-naprav.slim{
    height: 100px;
    overflow: hidden;
}

.top-naprav.slim.open {
    height: auto;
    overflow: auto;
}

.taxi-services.other.slim {
    height: 300px;
    overflow: hidden;
}

.taxi-services.other.slim.open {
    height: auto;
    overflow: auto;
}



.main-white-button {
    margin: 10px;

}

.main-white-button a {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.one-line-props .prop {
    display: grid;
    grid-template-columns:  repeat(2, 1fr);
    margin-bottom: 10px;
}

.one-line-props .phone-btn {
    padding: 5px;
}

.table-form {

}

.table-form .row-new {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    gap: 10px;
    margin-bottom: 10px;
}

.table-form .caption {
    font-weight: bold;
    font-size: 17px;
}

.table-form .row-new .col:first-child {
    font-weight: bold;
    font-size: 17px;
    padding: 5px 5px 5px 10px;
}

.table-form .row-new .col:nth-child(2) {
    padding: 5px 5px 5px 10px;
}

.table-form .row-new .col {
    background-color: #eee;
}

.table-form .row-new input,
.table-form .row-new select,
.table-form .row-new textarea {
    display: block;
    width: 100%;
    padding: 5px;
    height: 60px;

}


.table-form .row-new .submit {
    display: block;
    background-color: #139100;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
}

.table-form .row-new .submit:hover {
    background-color: #117a02;
}



@media (min-width: 1399.98px) {
    .container {
        max-width: 1140px
    }
}

@media (max-width: 1199.98px) {
    .header .container {
        /*background-image: linear-gradient(to top, rgba(186, 208, 231, .8) 0, rgba(186, 208, 231, .8) 37px, transparent 37px, transparent 100%)*/
    }

    .header .logo, .header .logo img {
        width: 110px
    }

    .header .contacts .phone a {
        font-size: 18px
    }

    .header .button {
        padding: 10px 15px
    }

    .header .contacts .mail a, .header .nav-bar a {
        font-size: 16px
    }

    .header .nav-bar {
        margin-top: 10px;
        gap: 10px 20px
    }

    .banner .container .image {
        width: 210px
    }

    .prices-block .wr.type-6 .title {
        height: 105px
    }

    .prices-block .wr.type-6 .title .text {
        min-height: 55px
    }

    .buttons-block .wr .button {
        min-height: 105px
    }

    .table-block .table-wr.type-3 tr {
        grid-template-columns:repeat(3, 1fr)
    }

    .links-block .wr.type-4 {
        grid-template-columns:repeat(2, 1fr)
    }

    #map img {
        width: 100%
    }

    .links-block .wr a.type-4 span {
        width: auto
    }

    .links-block .wr a.type-4 {
        background-repeat: no-repeat, repeat-y
    }

    .bottom-nav .container .wr .nav a:nth-child(4) {
        margin-right: 0
    }

    .footer .container .wr {
        grid-template-columns:repeat(4, 1fr);
        gap: 10px
    }

    .footer .container .wr .item form input:last-child {
        background-position: 20px center
    }
}

@media (max-width: 991.98px) {

    .taxi-services.other {
        grid-template-columns: repeat(2, 1fr);
    }
    .header .contacts .mail {
        gap: 13px
    }

    .header .container {
        background-image: none
    }

    .header .contacts {
        display: grid;
        grid-template-columns:250px 200px 50px;
        justify-content: space-between;
        gap: 10px
    }

    .header .contacts .phone {
        order: 1
    }

    .header .contacts .button--blue {
        order: 2
    }

    .header .contacts .vk {
        order: 3
    }

    .header .contacts .mail {
        order: 4
    }

    .header .contacts .mail a {
        color: var(--first-color)
    }

    .header .contacts .button--transparent {
        order: 5
    }

    .header .contacts .menu-button {
        order: 6
    }

    .header .nav-bar {
        display: none
    }

    .header .nav-bar.open {
        z-index: 100;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        top: 140px;
        background-color: rgba(186, 208, 231, .8);
        padding: 10px
    }

    .header .nav-bar a:nth-child(4) {
        margin-right: 0
    }

    .menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        border: 1px solid var(--thrid-color);
        background-color: transparent;
        border-radius: 25px
    }

    .menu-button span, .menu-button span:after, .menu-button span:before {
        display: block;
        position: relative;
        width: 75%;
        height: 2px;
        border-radius: 1px;
        background-color: var(--thrid-color)
    }

    .menu-button span:after, .menu-button span:before {
        content: "";
        position: absolute;
        width: 100%
    }

    .menu-button span:before {
        top: -7px
    }

    .menu-button span:after {
        top: 7px
    }

    .banner .container .image {
        width: 180px
    }

    .table-block .table-wr th {
        font-size: 16px
    }

    .prices-block .wr.type-6 {
        grid-template-columns:repeat(3, 1fr)
    }

    .prices-block .wr.type-6 .title .text {
        min-height: 1px
    }

    .buttons-block .wr, .cars-block .wr, .footer .container .wr, .links-block .wr.type-3 {
        grid-template-columns:repeat(2, 1fr)
    }

    .prices-block .wr.type-3 .title {
        padding: 5px
    }
}

@media (max-width: 767.98px) {
    .table-block .table-wr.type-4 td, .text-block .wr, body {
        font-size: 13px;
        line-height: 15px
    }

    .banner, .header .contacts .button--transparent, .header .contacts .mail, .header .contacts .vk {
        display: none
    }

    .header .contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 13px
    }

    .header .contacts .button--blue {
        width: 165px
    }

    h1, h2 {
        font-size: 20px;
        line-height: 21px
    }

    h2 {
        font-size: 18px
    }

    h3 {
        background-size: 26px;
        padding-left: 35px
    }

    .button, .buttons-block .wr a span, .footer .container .wr .item h3, .table-block .table-wr.type-4 th, h3 {
        font-size: 14px;
        line-height: 17px
    }

    .table-block .table-wr th {
        height: auto
    }

    .article-block .wr {
        display: block
    }

    .article-block .wr .img {
        transform: none;
        float: left;
        margin-right: 10px
    }

    .article-block .wr .img img {
        width: 62px
    }

    .path-block .wr form .inputs, .text-block .wr .buttons {
        flex-wrap: wrap
    }

    .button {
        padding: 10px 35px
    }

    .text-block .wr .buttons a, .text-block .wr .buttons button {
        padding: 10px 30px 10px 40px;
        background-position: 15px 0
    }

    .button.button--blue.type-2 img {
        width: 18px
    }

    .prices-block .wr.type-6 .title {
        padding: 10px;
        font-size: 13px;
        line-height: 15px
    }

    .prices-block .wr.type-6 .title img {
        width: 27px
    }

    .prices-block .wr.type-6 .title .text {
        min-height: 51px
    }

    .text-block .wr ol li::marker {
        font-size: 14px;
        line-height: 17px
    }

    .text-block .wr ol li:after {
        left: -24px;
        width: 25px;
        height: 25px
    }

    .buttons-block .wr {
        grid-template-columns:repeat(1, 1fr)
    }

    .buttons-block .wr .button {
        min-height: 0
    }

    .table-block .table-wr.type-3 tr td:first-child {
        font-size: 12px
    }

    .path-block .wr form .inputs input, .path-block .wr form .inputs select {
        width: 100%
    }

    .prices-block .wr.type-3 .title {
        height: 100px;
        flex-direction: column;
        font-size: 13px;
        line-height: 15px
    }

    .links-block p {
        font-size: 14px;
        line-height: 17px;
        padding-left: 0
    }

    .links-block .wr a.type-3 {
        background-position: 15px 0;
        padding-left: 45px
    }

    .links-block .wr.type-3 {
        grid-template-columns:repeat(1, 1fr)
    }

    .bottom-nav .container .wr {
        justify-content: space-between;
        flex-wrap: wrap
    }

    .bottom-nav .container .wr .logo {
        order: 1
    }

    .bottom-nav .container .wr .links {
        order: 2
    }

    .bottom-nav .container .wr .nav {
        order: 3
    }

    .footer .container .wr {
        display: flex;
        flex-wrap: wrap;
        gap: 50px
    }

    .footer .container .wr .item:nth-child(1), .footer .container .wr .item:nth-child(2) {
        width: 43%
    }

    .footer .container .wr .item:nth-child(3), .footer .container .wr .item:nth-child(4) {
        width: 100%
    }

    .footer .container .wr .item:last-child p {
        margin-top: 40px
    }

    .footer .container .wr .item ul li {
        margin-bottom: 8px
    }

    .bottom-nav .container .wr .nav a {
        font-size: 13px
    }
}

.mobile-only {
    display: none
}

@media (max-width: 576.98px) {
    .header .contacts .button--blue.mobile-only {
        display: block;
        order: 7
    }

    .header .contacts .phone a {
        font-size: 14px
    }

    .header .container {
        gap: 0 10px
    }

    .header .contacts .tg {
        display: block;
        order: 2;
        padding: 0 !important
    }

    .header .contacts .tg .button {
        padding: 0;
        width: 45px;
        height: 45px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .header .contacts {
        justify-content: space-between
    }

    .header .contacts .phone {
        max-width: 200px;
        width: 100%
    }

    .header .contacts .button--blue {
        max-width: 190px;
        width: 100%
    }

    .cars-block .wr, .links-block .wr.type-4 {
        grid-template-columns:repeat(1, 1fr)
    }

    .menu-button {
        width: 39px;
        height: 39px
    }
}

@media (max-width: 375px) {
    .taxi-services.other {
        grid-template-columns: repeat(1, 1fr);
    }
    .header .logo {
        width: 110px
    }

    .header .logo img {
        width: 100px
    }

    .header .container {
        gap: 0 10px
    }

    .header .contacts .button--blue {
        max-width: 155px;
        width: 100%
    }

    .header .contacts .phone a {
        font-size: 14px
    }

    .table-block .table-wr td, .table-block .table-wr th {
        padding: 5px
    }

    .prices-block .wr.type-3, .prices-block .wr.type-6 {
        grid-template-columns:repeat(2, 1fr)
    }

    .table-block .table-wr.type-3 tr td:first-child, .table-block .table-wr.type-3 tr th:first-child {
        padding-left: 10px
    }

    .path-block .wr {
        padding: 15px
    }

    .links-block .wr a.type-4 {
        font-size: 16px
    }

    .bottom-nav .container .wr .links a {
        width: 100%
    }

    .footer .container .wr {
        gap: 10px
    }

    .footer .container .wr .item:nth-child(1), .footer .container .wr .item:nth-child(2) {
        width: 48%
    }
}