@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    background: #212227;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    font-weight: 700;
    font-size: 85px;
    line-height: 106%;
    margin-bottom: 20px;
    color: white;
}

.subtitle {
    font-weight: 300;
    font-size: 30px;
    line-height: 155%;
    margin-bottom: 7px;
    color: white;
}

.place {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 600;
    font-size: 36px;
    line-height: 134%;
    margin-bottom: 115px;
    color: #17d69c;
}

.place__icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.price {
    background: white;
    border-radius: 16px;
    padding-top: 15px;
    padding-bottom: 20px;
    padding-left: 45px;
    padding-right: 45px;
    margin-bottom: 114px;
}

.price__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 134%;
    color: black;
    margin-bottom: 7px;
}

.price__table {
    margin-bottom: 9px;
}

.price__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    font-weight: 400;
    font-size: 20px;
    line-height: 134%;
    color: black;
}

.price__row span {
    flex-shrink: 0;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 22px;
    flex-wrap: wrap;
}

.cta__text {
    color: white;
    font-weight: 300;
    font-size: 25px;
    line-height: 136%;
}

.cta__price {
    color: #1f2025;
    padding: 8px 11px;
    font-weight: 600;
    font-size: 36px;
    line-height: 134%;
    background: #17D69C;
    border-radius: 17px;
    position: relative;
}

.cta__price::before {
    content: '';
    width: 209px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 84px;
    border-radius: 27px;
    border: 2px solid rgba(23, 214, 156, 0.8);
}

.cta__price::after {
    content: '';
    width: 229px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 104px;
    border-radius: 34px;
    border: 1px solid rgba(23, 214, 156, 0.6);
}

footer {
    margin-top: 44px;
    border-top: 1px solid white;
    padding-top: 45px;
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}

footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.price2.wrapper {
    background-image: url(https://static.tildacdn.com/tild6333-6435-4165-b533-626233326666/background.png);
    background-repeat: no-repeat;
    background-position: center 183px;
    background-size: contain;
    background-color: #020202;
}

.price2 .cta {
    padding-right: 16px;
    margin-bottom: 436px;
}

.price2 .cta__price {
    padding: 8px 6px;
    font-size: 26px;
    line-height: 134%;
    background: white;
    border-radius: 12px;
}

.price2 .cta__price::before {
    width: 145px;
    height: 63px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.price2 .cta__price::after {
    width: 162px;
    height: 78px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.price2 .price {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.price2 .price__title {
    color: white;
    margin-bottom: 9px;
}

.price2 .price__row {
    color: white;
}
