:root {
    --main-color: #0C73FE;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    font-weight: normal;
    font-style: normal;
    background: #FAFAFB;
    color: #292F37;

}

header {
    padding-top: 8px;
    padding-bottom: 8px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s all;
    z-index: 6;
}

header .logo {
    width: 90px;
    height: 92px;
}

header .logo path {
    transition: 0.3s all;
}

#header {
    background: url('../img/header.webp');
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 600px;
    position: relative;
}

#header .container {
    position: relative;
    z-index: 1;
}

#header::after {
    content: '';
    background: #151F3F;
    opacity: 0.1;
    position: absolute;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;

}

.center-btns ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.center-btns a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.center-btns a svg path {
    fill: white;
    transition: 0.3s all;
}

.center-btns li {
    display: block;
}

.center-btns {
    position: absolute;
    left: 50%;
    margin-left: -151px;
}

.center-btns span {
    color: white;
    font-weight: 600;
    transition: 0.3s all;
    font-size: 16px;
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
}

a:hover {
    text-decoration: none;
}

.open-menu {
    cursor: pointer;

}

.open-menu path {
    fill: white;
    transition: 0.3s all;
}

.right-header {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 21px;
}

.phone-link span {
    display: block;
    transition: 0.3s all;
    color: white;

    font-weight: 700;
    font-size: 18px;
}

.phone-link svg path {
    fill: white;
    transition: 0.3s all;
}

h1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 88px;
    color: white;
    max-width: 630px;
    margin-top: -70px;
}

h1 span {
    font-family: 'Pacifico';
    font-weight: normal;
}

#header .h1-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.form-order {

    margin-top: -170px;
}

.form-order input,
.form-order select {}

::placeholder,
:disabled {
    opacity: 1;
    color: #969CA5;
}

select.disabled {
    color: #969CA5;
}

input,
select {
    color: #292F37;
    padding: 15px 12px;
    background: #F8F8FB;
    font-weight: 500;
    border: none;
    border: 1px solid transparent;
}

.form-order form {
    width: 100%;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3.391551971435547px 4.921075344085693px rgba(74, 99, 117, 0.03), 0px 11.391517639160156px 16.528867721557617px rgba(74, 99, 117, 0.04), 0px 51px 74px rgba(74, 99, 117, 0.07);
}

.form-order-center {
    width: 100%;
}

.btn {
    background: var(--main-color);
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 20px;
    color: white;
}

button,
input,
select {
    outline: none !important;
}

.form-selector {
    background: #F8F8FB;
    padding: 15px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-selector:first-child {
    border-radius: 15px 0px 0px 0px;
}

.form-selector:last-child {
    border-radius: 0px 15px 0px 0px;
}

.form-selectors {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.form-selector p {
    font-weight: 600;
    font-size: 14px;
    color: black;
    opacity: 0.2;
}

.form-selector-icon path {
    fill: black;
    fill-opacity: 0.2;
}

.form-selector-icon {
    position: relative;
}

.form-selector-icon span {
    position: absolute;
    left: 50%;
    padding: 2px 5px;
    background: rgba(56, 242, 164, 0.800000011920929);
    border-radius: 5px;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #1c8c5d;
    margin-left: -22px;
    bottom: 10px;
}

.form-selector.active {
    background: var(--main-color);
}

.form-selector.active .form-selector-icon path {
    fill-opacity: 1;
    fill: white;
}

.form-selector.active p {
    color: white;
    opacity: 1;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Добавление кастомного фона-изображения */
    background-image: url('../img/icons/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) center;
    /* Установка отступов для текста, чтобы избежать перекрытия иконки */
    padding-right: 30px;
    /* Увеличьте значение, если иконка слишком близко к тексту */
}

form .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

form .btn path {
    fill: white;
}

.form-order form .flex-form {
    display: flex;
    align-items: stretch;
    gap: 2px;
}

.form-order form .input-box{
    width: calc((100% - (2px * 4) - 8px) / 5);
}

.form-order form .input-box:first-child select{
    border-radius: 10px 0px 0px 10px;
}

.form-order form .input-box:nth-child(4) input {
    border-radius: 0px 10px 10px 0px;
}
.block-flex-about div{
    margin-top: 15px;
}
.block-flex-about{
    width: 50%;
}
input.date {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Добавление кастомного фона-изображения */
    background-image: url('../img/icons/calendar-blue.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) center;
    /* Установка отступов для текста, чтобы избежать перекрытия иконки */
    padding-right: 30px;
}

h2 {
    font-weight: 700;
    font-size: 32px;
}
input[type='date'], input[type='time'] {
    -webkit-appearance: none;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header a {
    font-weight: 700;
    font-size: 16px;

    text-align: right;

    color: var(--main-color);
}

section:not(:first-child) {
    margin-top: 160px;
}

#boats {
    margin-top: 180px;
}

.news-image {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    background: grey;
    position: relative;
    padding: 50px 40px;
    display: flex;
    align-items: flex-end;
}
.dops-counter{
    display: flex;
    align-items: center;
    gap: 5px;
}


.news-image::after {
    border-radius: 10px;
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000000 100%);

}

h4 {
    font-weight: 700;
    font-size: 28px;
    text-align: left;
    color: #ffffff;
}

.news-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.flex-news-info {
    display: flex;
    align-items: center;
    gap: 25px;

}

.flex-news-info p {
    font-weight: 600;
    font-size: 14px;

    text-transform: uppercase;
    color: #ffffff;
}

.flex-news-info span {
    display: block;

    font-weight: 500;
    font-size: 14px;


    text-transform: uppercase;

    color: #ffffff;
}

#news .row,#boats .row {
    margin-top: 32px;
}

header.scroll {
    background: white;
    transition: 0.3s all;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

header.scroll .logo path {
    fill: #2A6BAE;
    transition: 0.3s all;
}

header.scroll .center-btns span {
    color: #292F37;
    transition: 0.3s all;
}

header.scroll .center-btns a svg path {
    fill: #292F37;
    transition: 0.3s all;
}

header.scroll .phone-link span {
    color: #292F37;
    transition: 0.3s all;
}

header.scroll .phone-link svg path {
    fill: #292F37;
    transition: 0.3s all;
}

header.scroll .open-menu path {
    fill: #292F37;
    transition: 0.3s all;
}

#happy {
    color: white;
}

#happy .container {
    background: #151F3F;
    border-radius: 26px;
    padding-top: 80px;
    padding-bottom: 80px;

}

.lines-happy {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.line-happy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#happy h2 {
    text-align: center;
}
.happy-box{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.happy-box p{
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}
.circle-happy {
    height: 234px;
    width: 234px;
    background: black;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.circle-happy::after {

}

.circle-happy p {
    position: relative;
    z-index: 1;
}

.map-container{
    position: relative;
}
#map {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    margin-top: 32px;


}
.block-map {
    margin-left: -21.5px;
    margin-top: -29.5px;
}
.map-info {
    position: absolute;
    top: 50px;
    left: 50px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
    z-index: 1;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.map-adress {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.adress-text {}

.adress-text p {
    font-weight: 600;
    line-height: 110%;
    font-size: 18px;
}

.adress-text p span {
    font-weight: 400;
    display: block;
}

.copy {
    cursor: pointer;
    padding: 5px 10px;
    margin-top: 10px;
    background: #f8f8fb;

    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    border: none;
    color: #0c73fe;
}

.parking {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.parking p {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
}

.map-info .btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer {
    margin-top: 250px;
    background: #151F3F;
}

footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer ul li {
    display: block;
}

footer ul li a {
    font-weight: 500;
    font-size: 16px;



    color: rgba(255, 255, 255, 0.800000011920929);

}

.logo-footer {
    margin-top: 40px;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.socials a {
    display: block;
}

.socials a img {
    max-width: 25px;
}

p.copyright {
    text-align: center;
    margin-top: 30px;
    font-weight: 400;
    font-size: 14px;


    color: rgba(255, 255, 255, 0.6000000238418579);
}

.other-section h1 {
    font-weight: 700;
    font-size: 52px;
    color: #292F37;
    max-width: unset;
    margin-top: 0;
    line-height: 100%;
}

ul.bread {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

ul.bread li,
ul.bread li a {
    display: inline-block;
    font-weight: 500;
    font-size: 13px;
    line-height: 36px;

    text-transform: lowercase;
    color: rgba(0, 0, 0, 0.5);
}

.filters {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.filter {
    font-weight: 600;
    font-size: 18px;
    color: #292f37;
    cursor: pointer;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s all;
}

.filter.active {
    color: var(--main-color);

    border-color: rgba(41, 47, 55, 0.3);
}

.filter:hover {
    transition: 0.3s all;
    color: var(--main-color);
    border-color: var(--main-color);
}

.row-news {
    margin-top: 50px;
}

.news-page-image {
    height: 310px;
    border-radius: 10px;
    background: grey;
}

.news-page-text {
    margin-top: 15px;
}

.news-link h4 {
    font-weight: 700;
    font-size: 22px;


    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #292f37;
}

.news-page-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.news-page-info p {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;

    color: #292f37;

}

.news-page-info span {
    font-weight: 500;
    font-size: 12px;


    text-transform: uppercase;

    color: rgba(41, 47, 55, 0.6000000238418579);
}

.col-news {
    margin-bottom: 30px;
}

.pages {
    margin-top: 50px;
}

.pages ul {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.pages ul li {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-weight: 600;
    font-size: 14px;
    width: 40px;
    border-radius: 5px;
    transition: 0.3s all;

}

.pages ul li:not(.disabled) {
    cursor: pointer;
}

.pages ul li a {

    color: #292f37;
}

.pages ul li.current {
    background: #D3D7DC;
}

.pages ul li:not(.disabled):hover {
    transition: 0.3s all;
    background: #E6E9EE;
}

.big-image-news {
    height: 430px;
    background: grey;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.current-news .news-page-info {
    margin-bottom: 7px;
}

.current-news .news-page-info p {
    font-weight: 700;
    font-size: 11px;
}

.current-news .news-page-info span {
    font-weight: 400;
    font-size: 11px;
    color: #292f37;
}

.current-news h1 {
    font-weight: 700;
    font-size: 32px;
}

.news-all-text {
    margin-top: 15px;
}

.news-all-text p {
    font-weight: 400;
    font-size: 16px;

    color: #292f37;

}
.news-all-text ul{
    padding-left: 20px;
}

.box-form {
    padding: 30px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 3.391551971435547px 4.921075344085693px rgba(74, 99, 117, 0.03), 0px 11.391517639160156px 16.528867721557617px rgba(74, 99, 117, 0.04), 0px 51px 74px rgba(74, 99, 117, 0.07);
}

.box-form p {
    font-weight: 700;
    font-size: 24px;
}

.box-form span.desc {
    display: block;
    margin-top: 10px;
    font-weight: 400;
    font-size: 12px;


    color: rgba(0, 0, 0, 0.6000000238418579);
}

.box-form form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-form form input,
.box-form form select {
    border-radius: 10px;
}

.box-form form button {
    width: 100%;
    margin: 0;
}

.box-form .btn {
    justify-content: center;
}

.current-news {
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.other-news {
    margin-top: 40px;
}

.row-other {
    margin-top: 60px;
}

.boat-link {
    display: block;
    padding: 30px 20px;

    background: #ffffff;

    border-radius: 20px;
}

.boat-image {
    background: #DBE0E2;
    border-radius: 10px;
    height: 235px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.boat-link h4 {
    font-weight: 700;
    font-size: 22px;
    color: #292F37;
}

.flex-boat-info {
    display: flex;
    align-items: center;
    gap: 7px;
}

.flex-boat {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 7px 15px;

    background: #f8f8fb;

    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;


    color: #89898d;

}
.price{
    margin-top: 30px;
    margin-bottom: 30px;
}
.price p {

    color: #292f37;
    font-weight: 700;
    font-size: 24px;

}

.price p span {
    opacity: 0.5;
    font-weight: 500;
}
.title-span{
    color: #292f37;
    margin-bottom: 2px;
    opacity: 0.8;
    font-weight: 500;
}
.info-price p span{
    opacity: 0.5;
    font-size: 16px;
    font-weight: 500;
}
.title-span:not(:first-child){
    display: block;
    margin-top: 10px !important;
}
.info-price span.desc{
    margin-top: 15px !important;
}
.boat-link .btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.boat-link .btn path {
    fill: white;
}

.btn svg path {
    transition: 0.3s all;
}

.btn {}

.btn:hover {
    color: white;
    transition: 0.3s all;
    background: #015BD6;
}

.news-link h4 {
    transition: 0.3s all;
}

.news-link:hover h4 {
    color: var(--main-color);
    transition: 0.3s all;
}

.center-btns span {
    transition: 0.3s all;
    border-bottom: 1px solid transparent;
}

.scroll .center-btns li:hover span {
    color: var(--main-color);
    transition: 0.3s all;
    border-color: var(--main-color);
}

footer ul li a:hover {
    color: rgba(255, 255, 255, 0.800000011920929);
}

.point-info {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 15px;
}

.dot {
    font-weight: 500;
    font-size: 16px;



    color: rgba(0, 0, 0, 0.30000001192092896);

}

.point-info-adress {
    display: flex;
    align-items: center;
    gap: 2px;
}

.point-info-adress span {
    font-weight: 500;
    font-size: 14px;


    color: rgba(0, 0, 0, 0.699999988079071);
}

.point-info a {
    font-weight: 500;
    font-size: 14px;
    color: var(--main-color);
}

.photos-container {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.row-boat .flex-boat-info {
    margin-top: 30px;
    margin-bottom: 65px;
}

.about-boat {
    margin-top: 25px;
}


.about-boat h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-boat-text p,
.about-boat-text li {
    font-weight: 400;
    font-size: 18px;


    color: rgba(0, 0, 0, 0.699999988079071);
}

.flex-about {
    display: flex;
    align-items: flex-start;
}

.block-flex-about:first-child {
    padding-right: 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.block-flex-about:last-child {
    padding-left: 30px;
}

.flex-about ul {
    margin-top: 15px;
    padding-left: 20px;
}

.info-boat {
    margin-top: 60px;
    padding: 30px 30px;

    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;

}

.info-boat p {
    font-weight: 700;
    font-size: 18px;
}

.info-boat ul {
    margin-top: 20px;
    padding-left: 20px;
}

.info-boat ul li:not(:last-child) {
    padding-bottom: 10px;
}

.info-boat li {
    font-weight: 400;
    font-size: 14px;


    color: rgba(0, 0, 0, 0.5);

}

.info-boat li span {
    font-weight: 600;
}

.first-box form {
    margin-top: 0;
}

.info-price {
    margin-top: 20px;
    margin-bottom: 20px;
}

.first-box.box-form span {
    margin-top: 0;
}

.last-box {
    margin-top: 70px;
}

.box-form p {
    line-height: 100%;
}

.dops-lines {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dop-line {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f8f8fb;
    padding: 15px 15px;
    transition: 0.3s all;
    border-radius: 10px;
}

.dop-text-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dop-text-header p {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.dop-text-header span {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--main-color);
}

p.dop-disc {
    margin-top: 3px;
    font-weight: 400;
    font-size: 13px;


    color: rgba(0, 0, 0, 0.6000000238418579);
}

.switch {
    margin-left: 10px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 60px;
    background: #E8E8E9;
    height: 20px;
    width: 35px;
    position: relative;
    transition: 0.3s all;
}

.switch::after {
    content: '';
    position: absolute;
    border-radius: 100%;
    height: 16px;
    width: 16px;
    background: white;
    left: 2px;
    top: 50%;
    margin-top: -8px;
    transition: 0.3s all;
}

.active .switch {
    transition: 0.3s all;
    background: var(--main-color);
}

.active .switch:after {
    transition: 0.3s all;
    transform: translateX(95%);
}

.dop-line.active {
    border-color: var(--main-color);
}

.big-case-photo {
    background: grey;
    height: 495px;
    border-radius: 10px;
}

.small-case-swiper {
    margin-top: 10px;
}

.small-case-photo {
    cursor: pointer;
    background: grey;
    height: 85px;
    border-radius: 10px;
}

.open-burger {
    background: #3B5197 !important;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

path.cross {
    transition: 0.3s all;
    transform: scale(0);
}

path.burger-line {
    transition: 0.3s all;
}

.open-burger path.burger-line {
    transform: scale(0);
}

.open-burger path.cross {
    transform: scale(1);
}

.bg-burger-menu {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 4;
    left: 0;
    top: 0;
    background: rgba(21, 31, 63, 0.5);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}
.input-box{
    width: 100%;
}
input, select{
    width: 100%;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.burger-menu-line {
    transform: translateY(-150%);
    position: fixed;
    padding-bottom: 110px;
    padding-top: 30px;
    width: 100%;
    z-index: 5;
    top: 0px;

    transition: 0.3s all;

    background: #3B5197;
    border-radius: 0px 0px 60px 60px;
    box-shadow: 0px 3.391551971435547px 4.921075344085693px rgba(74, 99, 117, 0.03), 0px 11.391517639160156px 16.528867721557617px rgba(74, 99, 117, 0.04), 0px 51px 74px rgba(74, 99, 117, 0.07);
}
.burger-menu-line.active{
    transition: 0.3s all;
    transform: translateY(0%);
}
.burger-menu-line ul li:not(:last-child){
    padding-bottom: 30px;
}
.burger-menu-line ul li {
    display: block;
}
.burger-menu-line ul li a {
    display: block;
    font-style: normal;
    color: white;
    font-weight: 600;
    font-size: 32px;

    text-align: center;
}
.error input,.error select{
    border: 1px solid #ff4545;
    background-color: #FFF3F3;
}
.good input,.good select{
    border: 1px solid #0C73FE;
    background-color: #F9FBFF;
}
.news-all-text p{
    padding: .4em 0;
}
p.policy{
    margin-top: 5px;
    opacity: 0.6;
    font-weight: normal !important;
    font-size: 12px;
}
.form-order form p.policy{
    text-align: center;
}
#boats .news-image{
    height: auto;
    aspect-ratio: 1/ 1;
    width: 100%;
}
.col-main-boat{
    margin-bottom: 30px;
}
.dops-flex-line{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dops-flex-line p {
    font-size: 18px;
}
.dops-list{
    margin-bottom: 20px;
}
.dops-hidden{
    padding-top: 10px;
}
.dops-flex-line svg{
    transition: 0.3s all;
}
.dops-flex-line.active svg{
    transition: 0.3 all;
    transform: rotate(180deg);
}
.dops-counter p{
    font-size: 14px;
    font-weight: normal;
}
.dops-counter{
    margin-top: 10px;
    width: fit-content;
    background: #f3f3f3;
    border-radius: 100px;
    padding: 5px 10px;
    padding: 0px 10px;
}
.dops-counter p{
    padding-left: 5px;
    padding-right: 5px;
}
.dops-counter .counter{
    opacity: 0.6;
    font-weight: bold;
}
.mobile{
    display: none;
}
 .checkbox-box{
    display: flex;
    align-items: center;
    gap: 10px;

}
.order-in-page .checkbox-box{
    margin-bottom: 20px;
}
.checkbox-box{
    cursor: pointer;
}
.checkbox-box p{
    font-size: 14px;
    font-weight: 500;
}
.bottom-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.bottom-flex p.policy{
    margin: 0;
}
.checkbox{
    height: 20px;
    width: 20px;
    border: 1px solid rgba(12,115,254,0.5);
    border-radius: 2px;
    position: relative;
}
.checkbox-box.active .checkbox{
    background: var(--main-color);
    border-color: var(--main-color);
}
.checkbox-box.active .checkbox::after{
    content: '';
    background: url('../img/check.svg');
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 992px) {
    .bottom-flex{
        flex-direction: column;
        gap: 10px;

    }
    .checkbox{
        flex-shrink: 0;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    header .logo{
        height: 61px;
        width: 61px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -30.5px;
        margin-left: -30.5px;
    }
    header .container{
        min-height: 67px;
    }
    .center-btns,.phone-link span{
        display: none;
    }
    .open-menu{
        order: 1;
    }
    .right-header{
        order: 2;
    }
    .burger-menu-line ul li a{
        font-size: 21px;
    }
    .burger-menu-line{
        padding-bottom: 60px;
    }
    h1{
        max-width: unset;
        text-align: center;
        font-size: 45px;
        line-height: 110%;
    }
    .form-order form .flex-form{
        flex-direction: column;
    }
    .form-order form .btn{
        margin: 0;
        margin-top: 8px;
        justify-content: center;
    }
    .form-order .input-box{
        width: 100% !important;
    }
    footer ul{
        flex-direction: column;
    }
    h2{
        line-height: 110%;
        font-size: 24px;
    }
    .line-happy{
        flex-wrap: wrap;
    }
    .circle-happy{
        height: 150px;

        width: 150px;
    }
    .happy-box p {
        font-size: 16px;
    }
    .form-selectors{

    }
    .form-selector{
        padding: 10px;
        width: 50%;
    }
    .form-order form{
        border-radius: 0px 0px 20px 20px;
    }
    #header::after{
        opacity: 0.4;
    }
    #boats{
        margin-top: 350px;
    }
    .section-header{
        align-items: flex-end;
    }
    .section-header a{
        font-size: 14px;
    }
    .news-image{
        height: 350px;
        padding: 30px 20px;
    }
    .col-sales:not(:last-child){
        margin-bottom: 30px;
    }
    h4{
        font-size: 21px;
    }
    .news-text{
        gap: 10px;
    }
    section:not(:first-child){
        margin-top: 80px;
    }
    .lines-happy{
        margin-top: 60px;


    }
    .happy-box{
        max-width: 50%;
    }
    #happy .container{
        border-radius: 16px;
    }
    .map-container{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .map-info{
        order: 2;
        position: unset;
    }
    #map{
        order: 1;
        height: 350px;
    }
    .other-section h1{
        text-align: left;
        font-size: 32px;
    }
    .filters{
        margin-top: 40px;
    }
    .filter{
        font-size: 16px;
    }
    ul.bread{
        display: none;
    }
    .col-news{
        margin-bottom: 30px;
    }
    footer{
        margin-top: 120px;
    }
    .big-image-news{
        height: 230px;
    }
    .big-case-photo{
        height: 230px;
    }
    .current-news h1{
        font-size: 24px;
    }
    .news-all-text p{
        font-size: 15px;
    }
    .col-forms{
        margin-top: 50px;
    }
    .about-boat-text p, .about-boat-text li{
        font-size: 15px;
    }
    .about-boat h2{
        font-size: 18px;
    }
    .flex-about{
        flex-direction: column;
    }
    .block-flex-about:first-child{
        padding: 0;
        padding-bottom: 30px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .block-flex-about:last-child{
        border-bottom:  none;
        padding: 0;
        padding-top: 30px;
    }
    .dop-text-header{
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .point-info{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .dot{
        display: none;
    }
    .form-order form input, .form-order form select{
        border-radius: 10px !important;
    }
    .block-flex-about{
        width: 100%;
    }
}
