.camp .section-wrapper {
    max-width: 1300px;
}

.header-camp {
    width: 100%;

    position: absolute;
    left: 0;
    top: 0;

    z-index: 100;

    background-color: transparent;
    padding: 10px 0;
}

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

    width: 100%;
}

.header-camp .logo img {
    max-height: 70px;
    width: auto;

    filter: invert(1);
}

.camp-menu {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.camp-menu a {
    color: #fff;
}

.camp-hero {
    position: relative;

    height: 100vh;
    min-height: 768px;
}

.camp-hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.camp-hero .section-wrapper {
    /*
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    */

    padding-top: 150px;
}

.camp-hero__left {
    max-width: 52%;
}

.camp-hero .section-wrapper h1 {
    font-size: 54px;
    color: #fff;
}

.camp-hero-subtitle {
    font-size: 18px;
    padding: 20px 0;
}

.camp-hero .section-wrapper p {
    color: #fff;
}

@media (min-width: 768px) {
	.camp-hero .section-wrapper p {
		white-space: nowrap;
	}
}

.camp-hero-small {
    color: #fff;
    margin-top: 20px;
}

.camp-btn {
    padding: 14px 24px;
    border-radius: 4px;
    background-color: #E06201;
    border: 1px solid #E06201;
    color: #ffffff;
    border-width: 0;
    cursor: pointer;

    font-weight: 600;
    transition: 0.3s;

    cursor: pointer;
}

.camp-btn:hover {
    background-color: #536428;
    border-color: #536428;
}

.camp-btn i {
    margin-right: 5px;
    font-size: 120%;
}

.camp-btn_big {
    padding: 20px 26px;
    font-size: 16px;
}

.camp-btn_outline {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.camp-btn_outline:hover {
    background-color: #DB640F;
    border-color: #DB640F;
}

.camp-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.camp-hero-items {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.camp-hero-items__el {
    display: flex;
    align-items: center;
}

.camp-hero-items__el i {
    color: #ffffff;
    font-size: 32px;
    margin-right: 10px;
}

.camp-hero-items__el p {
    line-height: 1.5;
}

.camp-why {
    background-color: #FAF7F2;
}

.camp-why h2 {
    padding-top: 24px;
    padding-bottom: 0;
    margin-bottom: 24px;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.camp-why-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.camp-why-card {
    width: 25%;
    padding: 20px;
    border: 2px solid #F2EBE2;
    background-color: #FBFAF7;
    border-radius: 8px;
}

.camp-why-card i {
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E8EADC;

    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    color: #73872E;
}

.camp-why-card:nth-child(even) i {
    background-color: #FAE2CF;
    color: #E06201;
    ;
}

.camp-why-card:nth-child(2) i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #E06201;


    transform: rotate(45deg);
}

.camp-why-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.camp-why-action {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.camp-about {
    background-color: #F5F3EE;
    padding: 20px 0;
}

.camp-about .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.camp-about-left {
    width: 30%;
}

.camp-about-left h2 {
    font-size: 26px;
    padding-bottom: 20px;
}

.camp-about-left p {
    line-height: 1.5;
    font-size: 14px;
}

.camp-about-right {
    width: calc(70% - 40px);

    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.camp-about-card {
    width: 25%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #FBFAF7;
    border: 2px solid #F2EBE2;
}

.camp-about-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.camp-about-card h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.camp-about-card__content {
    padding: 10px;
    border-top-width: 0;
    border-radius: 0 0 10px 10px;
}

.camp-about-card__content p {
    line-height: 1.5;
    font-size: 14px;
}

.camp-data {
    background-color: #F5F3EE;
    padding: 20px 0;
}

.camp-data .section-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.camp-data-item:first-child {
    width: 30%;
    background-color: #EDEEE6;
    border: 2px solid #F2EBE2;
    padding: 10px;
    border-radius: 10px;
}

.camp-data-item>p {
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 20px;
}

.camp-data-item-card {
    width: 23.33%;
    border-radius: 10px;
    background-color: #FBFAF7;
    border: 2px solid #F2EBE2;

    overflow: hidden;
}

.camp-data-item-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.camp-data-item-list__item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    background-color: #FAF9F6;
    gap: 10px;
    border-radius: 10px;
    padding: 10px;
}

.camp-data-item-list__item-num {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #536428;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-weight: 600;
}

.camp-data-item-list__item-text {
    margin-left: 10px;
    width: calc(100% - 40px);
}

.camp-data-item-list__item h4 {
    margin-top: 0;
    margin-bottom: 4px;

    font-size: 14px;
}

.camp-data-item-list__item p {
    font-size: 12px;
    line-height: 1.25;
}

.camp-data-item-card img {
    max-width: 100%;
}

.camp-data-item-card__content {
    padding: 10px;
}

.camp-data-item-card__title {
    font-size: 16px;
    font-weight: 600;
}

.camp-data-item-card__price {
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0;
}

.camp-data-item-card__content p {
    line-height: 1.5;
    font-size: 14px;
}

.camp-data-item-price {
    width: calc(23.33% - 40px);
    border-radius: 10px;
    padding: 40px;
    background-color: #EDEEE6;

    color: #536428;
}

.camp-list-check li {
    /*font-weight: 600;*/
    padding-left: 24px;
    margin-bottom: 12px;

    position: relative;
}

.camp-list-check li::before {
    content: '✔';

    position: absolute;
    left: 0;
    top: 0;

    color: #536428;
}

.camp-cta {
    background-color: #F5F3EE;
    padding: 20px 0;
}

.camp-cta .camp-cta__container {
    border: 2px solid #F2EBE2;
    padding: 10px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

.camp-cta .camp-cta__container i {
    color: #E06201;
    font-size: 42px;
    margin-right: 40px;
}

.camp-cta .camp-cta-text {
    margin-right: auto;
}

.camp-cta .camp-cta__container h3 {
    margin-bottom: 10px;
}

.camp-cta .camp-cta__container p {
    line-height: 1.5;
    font-size: 14px;
}

.camp-cta-big {
    background-color: #EEF1F5;
    padding: 20px 0;
}

.camp-cta-big .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.camp-cta-big .section-wrapper>img {
    width: 25%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.camp-cta-big-content {
    width: calc(75% - 24px);
    margin-left: 24px;
}

.camp-cta-big-content-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.camp-cta-big-content-main__left {
    width: 40%;
}

.camp-cta-big-content-main__right {
    width: 60%;

    display: flex;
    justify-content: space-between;
}

.camp-cta-big-content-main__left h2 {
    color: #344E67;

    font-size: 18px;
}

.camp-cta-big-content-main__left p {
    font-size: 12px;
    line-height: 1.5;
}

.camp-cta-big-content-main__right-card {
    width: calc(33.33% - 20px);
    padding: 0 10px;

    border-right: 1px solid #E0E0DD;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.camp-cta-big-content-main__right-card i {
    font-size: 32px;
}

.camp-cta-big-content-main__right-card:nth-child(1) i {
    color: #255C83;
}

.camp-cta-big-content-main__right-card:nth-child(2) i {
    color: #73872E;
}

.camp-cta-big-content-main__right-card:nth-child(3) i {
    color: #DB640F;
}

.camp-cta-big-content-main__right-card:last-child {
    border-right-width: 0;
}

.camp-cta-big-content-action {
    display: flex;
    justify-content: center;
}

.camp-cta-big-content-main__right-card h5 {
    margin-top: 10px;
    margin-bottom: 10px;

    font-size: 14px;
    text-align: center;

    white-space: nowrap;
}

.camp-cta-big-content-main__right-card p {
    font-size: 12px;
    line-height: 1.5;
}

.camp-where {
    background-color: #FBFAF8;
    padding: 20px 0;
}

.camp-where .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;

    gap: 20px;
}

.camp-where__left {
    width: 25%;
}

.camp-where-subtitle {
    font-size: 18px;
    font-weight: 600;

    margin-bottom: 10px;

    color: #536428;
}

.camp-where__left p {
    line-height: 1.5;
    font-size: 12px;
}

.camp-where__left .camp-list-check {
    margin-top: 10px;
    margin-bottom: 0;
}

.camp-where__left .camp-list-check li {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
}

.camp-where__center {
    width: 60%;
    display: flex;
    gap: 10px;
}

.camp-where-img-big {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.camp-where-img-flex-grid {
    width: 50%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}

.camp-where-img-flex-grid img {
    width: calc(50% - 5px);
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.camp-where__right {
    width: 15%;
    border-radius: 10px;
    padding: 30px;
    background-color: #EDEEE6;
    color: #536428;
}

.camp-where__right h3 {
    font-size: 20px;
}

.camp-where__right p {
    font-size: 14px;
    line-height: 1.5;
}

.camp-where__right .camp-btn {
    margin-top: 20px;
    width: 100%;

    border-color: #536428;
    color: #536428;
}

.camp-format {
    background-color: #FBFAF7;
    padding-bottom: 20px;
}

.camp-format-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.camp-format-card {
    display: flex;

    background-color: #FBFAF7;
    border: 1px solid #F2EBE2;

    padding: 10px;
    border-radius: 10px;
}

.camp-format-card img {
    width: 30%;
    height: auto;
    border-radius: 10px;

    object-fit: cover;
}

.camp-format-card-text {
    margin-left: 10px;
    width: calc(70% - 10px);
}

.camp-format-card-text-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;
}

.camp-format-card-text-title h5 {
    margin-top: 0;
    margin-bottom: 0;

    font-size: 16px;
}

.camp-format-card-text-price {
    font-size: 24px;
    font-weight: 600;
}

.camp-format-card-text p {
    line-height: 1.5;
}

.camp-format-action {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.camp-how {
    background-color: #FFFEFE;
    padding: 20px 0;
}

.camp-how-container {
    background-color: #FDF6EF;
    padding: 40px 20px;
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
}

.camp-how__left {
    width: 28.5%;

    display: flex;
    flex-direction: column;
}

.camp-how__left h2 {
    font-size: 48px;
    line-height: 1.15;
}

.camp-how__left .camp-btn {
    margin-top: 20px;

    width: 100%;
}

.camp-how__left img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;

    /* margin-top: 20px; */
    margin-top: auto;
}

.camp-how__right {
    width: calc(71.5% - 20px);
    margin-left: 20px;
}

.camp-how__right-container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.camp-how__right-card {
    width: calc(25% - 25px);
    background-color: #FFFCF9;
    border: 1px solid #FBF8F3;
    border-radius: 20px;
    padding: 20px 10px;
}

.camp-how__right-card-title {
    display: flex;
    align-items: center;

    font-size: 18px;

    padding-bottom: 20px;
    border-bottom: 1px solid #EEEDE3;
}

.camp-how__right-card-title i {
    background-color: #73872E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-right: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;

    font-size: 24px;
}

.camp-how__right-card-el {
    padding: 10px 0;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #EEEDE3;
}

.camp-how__right-card-el img,
.camp-how__right-card-el i {
    width: 30px;
    min-width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 5px;

    background-color: #EDEEDE;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    color: #73872E;
}

.camp-how__right-card-el-time {
    background-color: #EDEEDE;
    padding: 5px 10px;
    width: 38px;
    text-align: center;
    border-radius: 10px;
    margin-right: 10px;
}

.camp-how__right-card-el-text {
    line-height: 1.15;
    font-size: 14px;
    width: 100px;
}

.camp-how__right-card_blue .camp-how__right-card-title i {
    background-color: #255C83;
}

.camp-how__right-card_blue .camp-how__right-card-el img,
.camp-how__right-card_blue .camp-how__right-card-el i,
.camp-how__right-card_blue .camp-how__right-card-el-time {
    background-color: #E7EBED;
    color: #255C83;
}

.camp-how__right-card_yellow .camp-how__right-card-title i {
    background-color: #F4A50C;
}

.camp-how__right-card_yellow .camp-how__right-card-el img,
.camp-how__right-card_yellow .camp-how__right-card-el i,
.camp-how__right-card_yellow .camp-how__right-card-el-time {
    background-color: #FDECD2;
    color: #F4A50C;
}

.camp-how__right-card_red .camp-how__right-card-title i {
    background-color: #DB640F;
}

.camp-how__right-card_red .camp-how__right-card-el img,
.camp-how__right-card_red .camp-how__right-card-el i,
.camp-how__right-card_red .camp-how__right-card-el-time {
    background-color: #FAE7DA;
    color: #DB640F;
}

.camp-how__right-bennefits {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #2F3F31;
    border-radius: 20px;
    padding: 20px 40px;

    color: #ffffff;

    margin-top: 20px;
}

.camp-how__right-bennefits-item {
    display: flex;
    align-items: center;
}

.camp-how__right-bennefits-item i {
    font-size: 24px;
    margin-right: 10px;
}

.camp-how__right-bennefits-item p {
    line-height: 1.5;
    font-size: 14px;
}

.camp-how__right-bennefits-item-divider {
    height: 45px;
    width: 1px;
    background-color: #79806C;
}

.camp-security {
    padding: 20px;
    background-color: #F9F7F3;
}

.camp-security .section-top {
    text-align: center;
    margin-bottom: 20px;
}

.camp-security .section-top h2 {
    font-size: 32px;
}

.camp-security .section-top p {
    line-height: 1.5;
}

.camp-security-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.camp-security-card {
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #F4EFEA;

    display: flex;
    justify-content: space-between;
    overflow: hidden;

    width: calc(33.33% - 16px);
}

.camp-security-card__left {
    width: calc(66% - 40px);
    padding: 20px;
}

.camp-security-card .camp-security-card__left img,
.camp-security-card .camp-security-card__left i {
    /* background-color: #F4F5EC; */
    background-color: #E8EADC;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;
    color: #73872E;
}

.camp-security-card:nth-child(even) .camp-security-card__left img,
.camp-security-card:nth-child(even) .camp-security-card__left i {
    /* background-color: #FCF9F5; */
    background-color: #FAE2CF;
    color: #E06201;
}

.camp-security-card-title {
    font-size: 18px;
    font-weight: 600;
}

.camp-security-card__left p {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 16px;
}

.camp-security-card img {
    width: 34%;
    height: auto;
    object-fit: cover;
}

.camp-security-action {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.camp-whome {
    padding: 20px 0;
    background-color: #F2F2EA;
}

.camp-whome h2 {
    text-align: center;
    font-size: 32px;
}

.camp-whome-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.camp-whome-card {
    background-color: #FBFBF9;
    padding: 20px;
    border-radius: 20px;

    width: 50%;
}

.camp-whome-card-title {
    display: flex;
    align-items: center;
}

.camp-whome-card-title_check {
    background-color: #73872E;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #ffffff;
    font-size: 22px;
}

.camp-whome-card-title_text {
    font-size: 18px;
    font-weight: 600;
}

.camp-whome .camp-list-check li {
    font-weight: 400;
}

.camp-whome-card-title_close {
    background-color: #E06201;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #ffffff;
    font-size: 22px;
}

.camp-list-close li {
    font-weight: 400;
    padding-left: 24px;
    margin-bottom: 12px;

    position: relative;
}

.camp-list-close li::before {
    content: 'X';

    position: absolute;
    left: 0;
    top: 0;

    color: #E06201;
}

.camp-whome-action {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.camp-whome-action .camp-btn_outline {
    border-color: #536428;
    color: #536428;
}

.camp-booking {
    background-color: #F9F8F5;
    padding: 20px;
}

.camp-booking h2 {
    text-align: center;
    margin-bottom: 10px;
}

.camp-booking-container {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

.camp-booking__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    width: 20%;
    text-align: center;

    position: relative;
}

.camp-booking__item-step {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #73872E;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;

    top: 0;
    left: 0;
}

.camp-booking__item img,
.camp-booking__item i {
    background-color: #E8EADC;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 20px;
    margin-bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 48px;
    color: #73872E;
}

.camp-booking__item:nth-child(even) i {
    background-color: #FAE2CF;
    color: #E06201;
}

.camp-booking__item-title {
    font-weight: 600;
    font-size: 18px;

    margin-bottom: 10px;
}

.camp-booking__item p {
    line-height: 1.5;
}

.camp-booking-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.camp-booking__item:nth-child(even) img {
    background-color: #FAE2CF;
}

.camp-booking__item-dz {
    position: absolute;
    top: 45px;
    right: 0;
    width: 40px;
    border-top: 3px dashed #73872E;
}

.camp-booking__item-dz-inner {
    position: absolute;
    top: -8px;
    right: 0;

    width: 10px;
    height: 10px;

    border-top: 3px solid #73872E;
    border-right: 3px solid #73872E;

    transform: rotate(45deg);
}

.camp-faq {
    padding: 20px 0;
    background-color: #F6F6F1;
}

.camp-faq h2 {
    text-align: center;
    margin-bottom: 10px;
}

.camp-faq-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.camp-faq-action {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.camp-faq-action .camp-btn_outline {
    border-color: #536428;
    color: #536428;
}

.camp-faq-container .accordion {
    width: 50%;
}

.camp-faq-container .accordion__item {
    margin-bottom: 2px;
}

.camp-prefooter {
    position: relative;
    color: #fff;
}

.camp-prefooter-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left;
}

.camp-prefooter .camp-prefooter-content {
    padding: 80px 0 200px;
}

.camp-prefooter h2 {
    font-size: 48px;
    line-height: 1.15;

    max-width: 40%;
}

.camp-prefooter p {
    line-height: 1.5;
    max-width: 40%;

    margin: 10px 0 20px;
}

.camp-prefooter-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
	
	margin-bottom: 20px;
}

.camp-prefooter-contacts__item {
	display: flex;
	align-items: center;
	gap: 4px;
	
	color: #ffffff;
	font-size: 22px;
}

.camp-prefooter-contacts__item img {
	max-width: 22px;
}

.camp-prefooter-dop {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #1D2B17;

    width: 100%;
    height: 120px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.camp-prefooter-dop .section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.camp-prefooter-dop__item {
    width: 25%;
    color: #ffffff;

    display: flex;
    align-items: center;
}

.camp-prefooter-dop__item i {
    color: #ffffff;
    font-size: 38px;
    margin-right: 15px;
}

.camp-prefooter-dop__item-text {
    line-height: 1.25;
    font-size: 18px;
}

#sidenav.sidenav-camp {
    padding: 20px 10px;
    width: calc(100% - 20px);
    background: #2F3F31;
    color: #ffffff;
}

#sidenav.sidenav-camp .mobile-menu__logo {
    max-height: 60px;
    width: auto;
    filter: invert(1);
}

#sidenav.sidenav-camp .mobile-menu__logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
}

#sidenav.sidenav-camp .mobile-menu__close {
    font-size: 18px;
}

#sidenav.sidenav-camp ul {
    align-items: start;
}

#sidenav.sidenav-camp ul li a {
    color: #ffffff;
}

#sidenav.sidenav-camp .camp-btn {
    margin-top: auto;
    margin-bottom: 30px;
}

.camp-btn-mob {
    display: none;
}

.camp-where__right .camp-btn:hover,
.camp-whome-action .camp-btn_outline:hover,
.camp-faq-action .camp-btn_outline:hover {
    background-color: #536428;
    color: #ffffff;
}


@media (max-width: 1024px) {
    .header-camp .logo img {
        max-height: 60px;
    }

    .header-camp .camp-menu {
        display: none;
    }

    .header-camp .camp-btn {
        display: none;
    }

    .header-camp .camp-btn.camp-btn-mob {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        padding: 6px 12px;
    }

    .header-camp .camp-btn.camp-btn-mob i {
        margin-right: 0;
    }

    .camp-hero {
        height: auto;
        min-height: auto;
        padding-bottom: 20px;
    }

    .camp-hero .section-wrapper {
        padding-top: 120px;
    }

    .camp-hero__left {
        max-width: 100%;
    }

    .camp-hero .section-wrapper h1 {
        font-size: 40px;
    }

    .camp-hero-subtitle {
        font-weight: 600;
    }

    .camp-hero-items {
        flex-wrap: wrap;
        gap: 10px;
    }

    .camp-hero-items__el {
        width: calc(50% - 5px);
    }

    .camp-hero-actions {
        flex-direction: column;
    }

    .camp-hero-actions .camp-btn {
        width: 100%;
    }

    .camp-why h2 {
        font-size: 24px;
    }

    .camp-why-wrapper {
        flex-direction: column;
    }

    .camp-why-card {
        width: calc(100% - 44px);
    }

    .camp-about .section-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .camp-about-left {
        width: 100%;
    }

    .camp-about-left p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-about-right {
        width: 100%;
        flex-direction: column;
    }

    .camp-about-card {
        width: calc(100% - 4px);
    }

    .camp-about-card__content p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-data .section-wrapper {
        flex-direction: column;
    }

    .camp-data-item:first-child {
        width: calc(100% - 24px);
    }

    .camp-data-item>p {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .camp-data-item-card {
        width: calc(100% - 4px);
    }

    .camp-data-item-card__content p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-data-item-price {
        width: calc(100% - 20px);
        padding: 20px 10px;
    }

    .camp-cta .camp-cta__container {
        flex-direction: column;
        padding: 20px 10px;
        gap: 10px;
    }

    .camp-cta .camp-cta__container i {
        margin-right: 0;
    }

    .camp-cta .camp-cta__container p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-cta-big .section-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .camp-cta-big .section-wrapper>img {
        width: 100%;
    }

    .camp-cta-big-content {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .camp-cta-big-content-main {
        flex-direction: column;
        gap: 10px;
    }

    .camp-cta-big-content-main__left {
        width: 100%;
    }

    .camp-cta-big-content-main__left h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .camp-cta-big-content-main__left p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-cta-big-content-main__right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .camp-cta-big-content-main__right-card {
        width: calc(100% - 20px);
        border-right-width: 0;
    }

    .camp-cta-big-content-main__right-card h5 {
        font-size: 18px;
        line-height: 1.25;
    }

    .camp-cta-big-content-main__right-card p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-cta-big-content-action {
        margin-top: 10px;
    }

    .camp-where .section-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .camp-where__left {
        width: 100%;
    }

    .camp-where__left p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-where__left .camp-list-check li {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-where__center {
        width: 100%;
        flex-direction: column;
    }

    .camp-where-img-big {
        width: 100%;
    }

    .camp-where-img-flex-grid {
        width: 100%;
    }

    .camp-where__right {
        padding: 10px;
        width: calc(100% - 20px);
    }

    .camp-where__right h3 {
        margin-bottom: 10px;
    }

    .camp-where__right p {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-format-wrapper {
        flex-direction: column;
    }

    .camp-format-card {
        flex-direction: column;
        gap: 10px;
    }

    .camp-format-card img {
        width: 100%;
    }

    .camp-format-card-text {
        margin-left: 0;
        width: 100%;
    }

    .camp-format-card-text p {
        line-height: 1.25;
    }

    .camp-format-card-text-title {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }

    .camp-how-container {
        flex-direction: column;
        padding: 20px 10px;
    }

    .camp-how__left {
        width: 100%;
    }

    .camp-how__left h2 {
        font-size: 24px;
    }

    .camp-how__left p {
        line-height: 1.25;
    }

    .camp-how__left .camp-btn {
        margin-top: 10px;
    }

    .camp-how__left img {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .camp-how__right {
        width: 100%;
        margin-left: 0;
    }

    .camp-how__right-container {
        flex-direction: column;
        gap: 10px;
    }

    .camp-how__right-card {
        width: calc(100% - 20px);
    }

    .camp-how__right-card-el-text,
    .camp-how__right-card-el-time {
        font-size: 16px;
        line-height: 1.25;
    }

    .camp-how__right-bennefits {
        margin-top: 10px;
        padding: 20px 10px;
        flex-direction: column;

        width: calc(100% - 20px);
        align-items: start;
    }

    .camp-how__right-bennefits-item i {
        font-size: 32px;
    }

    .camp-how__right-bennefits-item p {
        font-size: 18px;
        line-height: 1.25;
    }

    .camp-how__right-bennefits-item-divider {
        height: 1px;
        width: 100%;
        margin: 10px 0;
    }

    .camp-security {
        padding: 10px;
    }

    .camp-security .section-top h2 {
        font-size: 24px;
    }

    .camp-security .section-top p {
        line-height: 1.25;
    }

    .camp-security-container {
        gap: 10px;
        padding: 0;
    }

    .camp-security-card {
        width: calc(100% - 2px);
    }

    .camp-security-action {
        margin-top: 10px;
    }

    .camp-whome h2 {
        font-size: 24px;
    }

    .camp-whome-container {
        flex-direction: column;
        gap: 10px;
    }

    .camp-whome-card {
        padding: 10px;
        width: calc(100% - 20px);
    }

    .camp-whome-action {
        margin-top: 10px;
    }

    .camp-booking-container {
        flex-direction: column;
        gap: 20px;
    }

    .camp-booking__item {
        width: 100%;
    }

    .camp-booking__item-dz {
        display: none;
    }

    .camp-booking-action {
        margin-top: 10px;
    }

    .camp-faq-container {
        flex-direction: column;
        gap: 2px;
    }

    .camp-faq-container .accordion {
        width: 100%;
    }

    .camp-faq-action {
        margin-top: 10px;
    }

    .camp-prefooter .camp-prefooter-content {
        padding: 40px 10px;
    }

    .camp-prefooter h2 {
        max-width: 100%;
        font-size: 32px;
    }

    .camp-prefooter p {
        margin: 0 0 10px;
        max-width: 100%;
        font-size: 16px;
        font-weight: 600;
    }

    .camp-prefooter-dop {
        position: static;
        height: auto;
        padding: 20px 0;
    }

    .camp-prefooter-dop .section-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .camp-prefooter-dop__item {
        width: 100%
    }
}

/* Modal */
.modal {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1002;
    margin-bottom: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .3);
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-close {
    height: 100%;
}

.modal-container {
    position: absolute;
    bottom: -100%;
    left: 50%;
    z-index: 110;
    width: 600px;
    background: #2F3F31;
    padding: 25px 15px 30px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    margin-bottom: 0;
    transition: 0.3s;
    transform: translateY(0%) translateX(-50%);

    color: #ffffff;
}

.modal.active .modal-container {
    bottom: 50%;
    transform: translateY(50%) translateX(-50%);
}

.modal-btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
}

.modal-btn-close {
    font-size: 28px;
}

.modal-title {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 1.5;
}

.modal-phone {
    margin: 0;
}

.modal-phone__info {
    max-width: 265px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin: auto;
}

.modal-phone__number {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    display: block;
    margin: auto;
    margin-top: 15px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
    width: max-content;
}

#modal-camp .form-top p {
    flex-direction: column;
}

#modal-camp .form-top input[type=tel] {
    max-width: 100%;
    width: calc(100% - 36px);
}

#modal-camp .form-top input[type=submit] {
    width: 100%;
}

.form-top p {
    display: flex;
}

.form-top span {
    display: block;
    width: auto;
    color: #fff;
}

.form-top input {
    -webkit-appearance: none;
    border-radius: 5px;
    box-shadow: none;
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    background: #f9f9f9;
    margin: 0;
    margin-right: 10px;
    padding: 0 18px;
    width: 100%;
    height: 50px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: auto;
}

.form-top input[type=tel] {
    max-width: 250px;
    font: 600 16px;
    color: #353535;
}

.form-top input[type=submit] {
    -webkit-appearance: none;
    display: block;
    font: 600 16px/30px;
    text-align: center;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 10px 24px;
    cursor: pointer;
    background: #1076E2;
    color: #fff;
    text-decoration: none;
    width: 220px;
}

.form-bottom .wpcf7-acceptance span {
    margin: 6px 0 3px 0;
}

.form-bottom .wpcf7-list-item-label {
    font: normal 13px/20px;
}

.agree {
    display: none;
}

@media(max-width: 768px) {
    .modal-container {
        width: calc(100% - 60px);
    }

    .modal-title {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .modal-phone__info {
        font-size: 16px;
    }

    .modal-phone__number {
        font-size: 18px;
        margin-top: 10px;
    }
}

#modal-camp.modal .btn-new {
    margin-top: 0;
    max-width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
}

#modal-camp.modal .btn-new:disabled {
    opacity: 0.6;
    pointer-events: none;
}

#modal-camp.modal .form-bottom input {
    display: inline-block;
    width: min-content;

    margin-top: 10px;
}

#modal-camp.modal .form-bottom {
    margin-bottom: 20px;
    margin-top: -40px;
}

#modal-camp.modal .form-bottom .wpcf7-list-item label {
    padding-left: 0;
    display: flex;
    align-items: start;

    margin-top: 20px;
}

#modal-camp.modal .wpcf7-spinner {
    width: 24px;
}

#modal-camp.modal .form-bottom .wpcf7-acceptance span {
    display: block;
    color: #ffffff;
}

#modal-camp.modal .form-bottom .wpcf7-acceptance span a {
    text-decoration: underline;
    color: #ffffff;
}

.camp .camp-btn.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 14px 24px;
    border-radius: 4px;
    background-color: #DB640F;
    border: 1px solid #DB640F;
    color: #ffffff;
    cursor: pointer;

    font-weight: 600;
    transition: 0.3s;

    cursor: pointer;

    margin: 0;

    max-width: 100%;
}

.camp .camp-btn.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #DB640F;
}

.camp-faq-container .accordion#accordion-2 {
	width: 100%;
}