@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    font-weight: 300;
}

strong {
    font-weight: 700;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.home {
    background-image: url(../images/home.webp);
    background-position: center;
    background-size: cover;
    padding: 100px 0;
}

.home .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 5px 3px 4px rgba(0, 0, 0, .9);
}

.home h1 {
    display: grid;
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    margin: 0;
}

.home h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0 10px;
}

.home h2::before {
    content: '';
    width: 100px;
    height: 2px;
    background-color: #fff;
}

.home p {
    margin: 0;
    display: grid;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.home .wrapper > a {
    max-width: 470px;
    margin: 20px auto 30px;
    text-align: center;
    color: #fff;
    font-size: 41px;
    font-weight: 700;
    text-shadow: 5px 3px 4px rgba(0, 0, 0, .9);
    display: block;
    border-top: solid 3px #fff;
    border-bottom: solid 5px #fff;
    padding: 5px 20px;
    border-radius: 15px;
    text-decoration: none;
}

.home form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.home form .privacy__form {
    text-align: right;
    grid-column: span 2;
}

.home form .privacy__form a {
    color: #fff;
}

.form__col {
    display: grid;
}

.home form input {
    border-radius: 40px;
    padding: 15px 30px;
    height: auto;
    font-size: 18px;
    font-weight: 500;
    border: none;
    font-family: "Source Sans 3", sans-serif;
}

.home form button {
    background: #f03838;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 35px;
    padding: 10px;
    font-weight: 700;
    box-shadow: 0px 5px 10px rgba(240, 56, 56, 0.5);
    font-size: 18px;
    cursor: pointer;
    font-family: "Source Sans 3", sans-serif;
}

.slick-list {
    overflow: hidden;
    position: relative;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f84c8b;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 3px;
}

.slick-arrow::after {
    content: '';
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 50%;
    height: 50%;
}

.slick-arrow.slick-prev {
    left: 10px;
}

.slick-arrow.slick-prev::after {
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: 10px;
}

.about {
    padding: 25px 0;
    text-align: center;
}

.about__cover {
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.about__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.about__slide {
    max-width: 600px;
    margin: 50px auto;
}

.about__slide a.slick-slide {
    height: 60vw;
    max-height: 400px;
}

.about__slide a.slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about__slide__nav div {
    height: 75px;
    width: 100%;
    background-position: center;
    background-size: cover;
    font-size: 0;
    cursor: pointer;
    margin: 1px;
}

.about__slide__nav .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about p a {
    display: block;
    color: #f00;
    font-weight: 600;
    text-decoration: none;
}

.trips {
    display: grid;
    gap: 50px;
}

.trip {
}

.trip h2 {
    display: grid;
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    margin: 0;
    text-transform: uppercase;
}

.trip h2::after,
.trip h2::before {
    content: '';
    height: 2px;
    width: 100px;
    background: #ffae00;
    margin: 15px auto;
}

.trip__price {
    text-align: center;
    font-size: 27px;
    font-weight: 600;
    margin: 15px 0;
    color: #FB1FC3;
}

.trip__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.trip__body__slider {
    width: 100%;
    overflow: hidden;
}

.trip__body__slider a.slick-slide {
    height: 30vw;
}

.trip__body__slider a.slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.trip__body__content {
    font-weight: 300;
    font-size: 18px;
}

.trip__change {
    border: solid #ffae00 3px;
    margin: 20px 0;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 300;
}

.trip__arrow {
    mask-image: url(../images/ico_arrow2.svg);
    mask-repeat: no-repeat;
    width: 80px;
    height: 80px;
    background-color: #f00;
    margin: 15px auto;
}

.trip__form {
    background: #fbfbfb;
    padding: 40px;
    border: solid 1px #ddd;
    border-radius: 5px;
    display: grid;
    gap: 15px;
}

.trip__form__title {
    text-align: center;
    font-size: 21px;
    font-weight: 300;
    display: grid;
}

.trip__form__title a {
    text-decoration: none;
}

.trip__form form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.trip__form form input {
    width: 100%;
    border: solid 1px #ddd;
    padding: 15px 20px;
    border-radius: 35px;
}

.trip__form form button {
    background: #f03838;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 35px;
    padding: 10px;
    font-weight: 600;
    box-shadow: 0px 5px 10px rgba(240, 56, 56, 0.5);
    cursor: pointer;
}

.info {
    background-image: url(../images/info.webp);
    background-position: center;
    background-size: cover;
    margin: 25px 0 0;
}

.info .wrapper {
    padding-top: 125px;
    padding-bottom: 125px;
}

.info p {
    background: rgba(255, 255, 0, 0.6) none repeat scroll 0 0;
    color: #fff;
    padding: 5px 10px;
    font-size: 24px;
    line-height: 41px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .7);
    font-weight: 700;
}

.info p a {
    color: #fff;
}

.reviews {
    background: #f9f9f9;
    font-size: 18px;
    padding: 25px 0;
}

.reviews__form {
    background-color: #fff;
    padding: 15px;
    overflow: hidden;
    margin: 0 0 25px;
}

.reviews__form h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 500;
}

.reviews__form p {
    margin: 0;
}

.reviews__form form {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.reviews__form form > :nth-child(3) {
    grid-column: span 2;
}

.reviews__form form label {}

.reviews__form form input,
.reviews__form form textarea {
    width: 100%;
    padding: 5px 15px;
    border-radius: 10px;
    border: none;
    border: solid 1px #ddd;
    font-family: "Source Sans Pro", sans-serif;
}

.reviews__form form textarea {
    height: 100px;
    border-radius: 10px;
    padding: 15px;
}

.reviews__form form button {
    background: #f03838;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 10px;
    padding: 15px 10px;
    font-weight: 600;
    box-shadow: 0px 5px 10px rgba(240, 56, 56, .5);
    cursor: pointer;
}

.reviews__list {
    display: grid;
    gap: 15px;
}

.reviews__list {
    display: grid;
    gap: 15px;
}

.reviews__item {
    background-color: #fff;
    padding: 15px;
}

.reviews__item__name {}

.reviews__item p {
}

.reviews__item img {
    max-width: 250px;
}

.recomend {
    max-width: 1200px;
    margin: 25px auto;
}

.recomend h2 {
    display: grid;
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.recomend h2::after,
.recomend h2::before {
    content: '';
    height: 2px;
    width: 100px;
    background: #ffae00;
    margin: 15px auto;
}

.recomend__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.recomend__item__slider {
    width: 100%;
    overflow: hidden;
}

.recomend__item__slider a.slick-slide {
    height: 30vw;
    max-height: 460px;
}

.recomend__item__slider a.slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recomend > :nth-child(2n) .recomend__item__content {
    order: 1;
}

.recomend > :nth-child(2n) .recomend__item__slider {
    order: 2;
}

.recomend__item__content {
    text-align: center;
    padding: 20px;
}

.recomend__item__content h2 {
    margin: 0;
    font-weight: 300;
}

.recomend__item__content p {
    margin: 10px 0 0;
    font-size: 21px;
}

.end {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.end__title {
    color: #4346a7;
    font-weight: 600;
    font-size: 40px;
}

.end p {
    font-size: 24px;
    font-weight: 300;
}

.end form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.end form input {
    width: 100%;
    border: solid 1px #ddd;
    padding: 15px 20px;
    border-radius: 35px;
}

.end form button {
    background: #f03838;
    color: #fff;
    border: none;
    width: 100%;
    border-radius: 35px;
    padding: 10px;
    font-weight: 600;
    box-shadow: 0px 5px 10px rgba(240, 56, 56, .5);
    cursor: pointer;
}

.end > a {
    display: block;
    color: #333;
    font-size: 33px;
    font-weight: 900;
    text-decoration: none;
}

.end .privacy__form {
    margin: 10px 0 0 0;
}

.filetype {
    display: none;
}

.wa__icon {
    position: fixed;
    bottom: 60px;
    right: 25px;
    width: 30px;
    height: 30px;
    z-index: 5;
    cursor: pointer;
}

.wa__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa__icon::before,
.wa__icon::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #29A71A;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.wa__icon:after {
    animation-delay: .5s;
}

.tg__icon {
    position: fixed;
    bottom: 140px;
    right: 25px;
    width: 30px;
    height: 30px;
    z-index: 5;
    cursor: pointer;
}

.tg__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg__icon::before,
.tg__icon::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #039be5;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.tg__icon:after {
    animation-delay: .5s;
}

.cookie {
    max-width: 225px;
    box-shadow: rgba(0, 0, 0, .12) 0px 6px 16px;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    bottom: 10px;
    z-index: 9999;
    left: 10px;
    background: #fff;
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    display: none;
    justify-items: start;
    gap: 10px;
}

.cookie p {
    margin: 0;
}

.cookie p a {
    color: #000;
}

.cookie__close {
	background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}

.privacy__form {
    font-size: 12px;
}

.privacy__form a {
    color: #000;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media screen and (max-width: 849px) {
    .trip__body {
        grid-template-columns: 1fr;
    }
    .trip__body__slider a.slick-slide {
        height: 60vw;
    }
    .info .wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .recomend {
        display: grid;
        gap: 20px;
    }
    .recomend__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .recomend>:nth-child(2n) .recomend__item__slider,
    .recomend>:nth-child(2n) .recomend__item__content {
        order: unset;
    }
    .recomend__item__slider a.slick-slide {
        height: 60vw;
    }
}

@media screen and (max-width: 649px) {
    body {
        font-size: 21px;
    }
    .home {
        padding: 50px 0;
    }
    .home h1 {
        font-size: 27px;
    }
    .home h2 {
        font-size: 27px;
    }
    .home .wrapper > a {
        font-size: 27px;
    }
    .home form {
        grid-template-columns: 1fr;
    }
    .about__cover {
        width: 200px;
        height: 200px;
    }
    .trips {
        gap: 30px;
    }
    .trip h2 {
        font-size: 21px;
    }
    .trip h2::after, .trip h2::before {
        margin: 10px auto;
    }
    .trip__change {
        border: solid #ffae00 1px;
        padding: 20px;
        border-radius: 15px;
        font-size: 18px;
    }
    .trip__arrow {
        width: 60px;
        height: 60px;
    }
    .trip__form__title {
        font-size: 18px;
    }
    .trip__form form {
        grid-template-columns: 1fr;
    }
    .trip__form form button {
        padding: 15px 0;
    }
    .trip__form {
        padding: 25px 15px;
    }
    .trip__body {
        gap: 10px;
    }
    .info p {
        font-size: 21px;
    }
    .info .wrapper {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .reviews__form form {
        display: flex;
        flex-direction: column;
    }
    .reviews__form form input {
        padding: 15px;
    }
    .recomend h2 {
        font-size: 21px;
        margin: 0;
    }
    .recomend__item {
        gap: 0;
    }
    .recomend__item__content {
        padding: 20px 10px;
    }
    .end__title {
        font-size: 24px;
    }
    .end p {
        font-size: 18px;
        margin: 10px;
    }
    .end form {
        margin: 20px 0;
        grid-template-columns: 1fr;
    }
    .end form button {
        padding: 15px 0;
    }
    .end>a {
        font-size: 24px;
    }
    .home form .privacy__form {
        text-align: center;
        grid-column: unset;
    }
}

@media screen and (max-width: 449px) {
    .recomend h2 {
        font-size: 18px;
    }
    .recomend h2::after, .recomend h2::before {
        margin: 10px auto;
    }
    .info p {
        font-size: 18px;
        line-height: normal;
    }
}

@media screen and (max-width: 399px) {
    body {
        font-size: 18px;
    }
    .home h1 {
        font-size: 21px;
    }
    .home h2 {
        font-size: 21px;
        margin: 10px 0;
        gap: 5px;
    }
    .home p {
        font-size: 16px;
    }
    .home .wrapper > a {
        font-size: 21px;
    }
    .home form input {
        padding: 15px 30px;
        font-size: 14px;
    }
    .home form button {
        font-weight: 500;
        font-size: 14px;
    }
    .about {
        padding: 25px 0 0;
    }
    .about__cover {
        width: 150px;
        height: 150px;
    }
    .trip h2 {
        font-size: 18px;
    }
}