@font-face {
    font-weight: 400; /* Соответствует значению normal */
    font-family: "Involve";
    src: url("../fonts/Involve-Regular.ttf");
  }
  
  @font-face {
    font-weight: 500; /* Соответствует значению bold */
    font-family: "Involve";
    src: url("../fonts/Involve-Medium.ttf");
  }
  
  @font-face {
    font-weight: 600;
    font-family: "Involve";
    src: url("../fonts/Involve-SemiBold.ttf");
  }
  
  @font-face {
    font-weight: 700;
    font-family: "Involve";
    src: url("../fonts/Involve-Bold.ttf");
  }
  

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Involve", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

body::before,
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    z-index: 0;
}

body::before {
    background-image: url(../images/home_t.webp);
    background-position: center;
    background-size: cover;
}

body::after {
    background: #000;
    opacity: 0.5;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

.home h1 {
    color: #fff;
    display: grid;
    text-align: center;
    font-size: 80px;
    font-weight: 600;
    margin: 0;
}

.home h1 span {
    font-weight: 400;
    font-size: 60px;
}

.manager {
    display: grid;
    grid-template-columns: 120px auto;
    gap: 20px;
    max-width: 670px;
}

.manager__cover {
    width: 120px;
    height: 120px;
    position: relative;
}

.manager__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px #c3f000;
}

.manager__cover span {
    position: absolute;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #FFE500;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 15px;
    font-weight: 600;
}

.manager__cover span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #25d366;
    animation: animate 0.8s linear infinite;
}

.manager__content {
    display: grid;
    gap: 10px;
}

.manager__content__cmt {
    background-color: #c3f000;
    color: #000;
    padding: 15px;
    border-radius: 10px;
}

.manager__content__ftr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.manager__content__ftr__name {
    display: grid;
    gap: 5px;
    justify-items: start;
}

.manager__content__ftr__name strong {}

.manager__content__ftr__name span {}

.manager__content__ftr__name a {
    background-color: #c3f000;
    color: #000;
    text-decoration: none;
    border-radius: 15px;
    padding: 5px 15px;
    font-weight: 600;
}

.manager__cta {
    margin: 25px auto;
}

.manager__cta .manager__content__ftr {
    color: #000;
    font-size: 14px;
}

.manager__cta .manager__content__ftr__name {
    gap: 0;
}

.manager__cta .manager__content__ftr__name a {
    margin: 5px 0 0 0;
}

.manager2 {
    margin: 25px auto 0;
}

.manager2 .manager__content__ftr {
    color: #000;
}

.home__title.home__title2 {
    color: #000;
    font-size: 24px;
    margin: 25px 0 0 0;
}

.seven {
    color: #fff;
    background: #6a47f7;
    padding: 10px 20px;
    border-radius: 30px;
    display: block;
    font-size: 18px;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.seven strong {
    /* text-decoration: underline; */
    display: block;
}

.msgs {
    display: flex;
    gap: 10px;
}

.msgs span {
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

.msgs__wa {background-image: url(../images/ico_wa.svg);}
.msgs__vb {background-image: url(../images/ico_vb.svg);}
.msgs__tg {background-image: url(../images/ico_tg.svg);}

.modal__msgs {
    max-width: 400px;
}

.modal__msgs__links {
    display: grid;
    gap: 15px;
    justify-items: center;
    margin: 15px 0;
}

.modal__msgs a {
    display: flex;
    align-items: center;
    gap: 10px;
    /* justify-content: center; */
    padding: 10px 20px;
    border-radius: 35px;
    color: #fff;
    text-decoration: none;
    width: 155px;
    font-weight: 600;
}

.modal__msgs a::before {
    content: '';
    /* mask-repeat: no-repeat; */
    width: 32px;
    height: 32px;
    /* background-color: #fff; */
    background-position: center;
    background-size: cover;
}

a.modal__msgs__wa {background-color: #25d366;}
a.modal__msgs__vb {background-color: #6f3faa;}
a.modal__msgs__tg {background-color: #039be5;}

a.modal__msgs__wa::before{background-image: url(../images/ico_wa.svg);}
a.modal__msgs__vb::before{background-image: url(../images/ico_vb.svg);}
a.modal__msgs__tg::before{background-image: url(../images/ico_tg.svg);}

.home__title {
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
}

.offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offer {
    position: relative;
    border: solid 3px #c3f000;
    border-radius: 10px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    text-align: center;
    align-items: center;
}

.offer img,
.offer::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.offer::after {
    content: '';
    background-image: url(../images/ico_hot.svg);
    background-position: center;
    background-size: cover;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 5;
}

.offer img {
    object-fit: cover;
    z-index: 0;
}

.offer::before {
    content: '';
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}

.offer > div {
    position: relative;
    z-index: 1;
    color: #fff;
}

.offer__title h2 {
    margin: 0;
}

.offer__title strong {
    margin: 10px 0;
    display: inline-block;
    font-size: 21px;
}

.offer__title p {
    margin: 0;
}

div.offer__cta {
    background-color: #c3f000;
    color: #000;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    /* grid-template-columns: 16px auto; */
    gap: 5px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

div.offer__cta::before {
    content: '';
    mask-image: url(../images/ico_arrow.svg);
    mask-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-color: #000;
    position: relative;
    top: 2px;
}

.cta {
    border: solid 3px #c3f000;
    padding: 30px;
    margin: 25px 0 0 0;
    border-radius: 10px;
}

.cta h2 {
    margin: 0;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.cta h2::before {
    content: '';
    background-image: url(../images/ico_egypt.svg);
    background-position: center;
    background-size: cover;
    width: 64px;
    height: 64px;
}

.cta__form {
    display: grid;
    gap: 20px;
    margin: 25px 0 0 0;
}

.line {
    display: grid;
    gap: 5px;
}

.cta__line__title {
    font-weight: 600;
    display: grid;
    grid-template-columns: 21px auto;
    gap: 10px;
    align-items: center;
}

.cta__line__title::before {
    content: '';
    width: 21px;
    height: 21px;
    background-position: center;
    background-size: cover;
}

.cta__line__title__date::before {background-image: url(../images/ico_cta_date.svg);}
.cta__line__title__group::before {background-image: url(../images/ico_cta_group.svg);}
.cta__line__title__hotel::before {background-image: url(../images/ico_cta_hotel.svg);}
.cta__line__title__cmt::before {background-image: url(../images/ico_cta_cmt.svg);}
.cta__line__title__cnt::before {background-image: url(../images/ico_cta_cnt.svg);}

.cta__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.cta__col {
    display: grid;
    gap: 3px;
}

.cta__col__title {
    font-size: 14px;
}

.cta__col input,
.cta__col select,
.cta__col textarea {
    background-color: #f9f9f9;
    border: solid 1px #f0f0f0;
    padding: 15px 10px;
    border-radius: 5px;
    font-family: "Involve", sans-serif;
}

.cta__col textarea {
    height: 100px;
}

.cta__cols button {
    align-self: end;
    font-family: "Involve", sans-serif;
    background-color: #c3f000;
    border: none;
    border-radius: 5px;
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.cta__col__dates__checkbox {}

.cta__col__dates__checkbox label {}

.cta__col__dates__checkbox label input {}

.cta__col__dates__checkbox label span {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.cta__col__dates__checkbox label span::before {
    content: '';
    mask-image: url(../images/ico_checkbox_0.svg);
    mask-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #000;
}

.cta__col__dates__checkbox label input[type=checkbox]:checked+span::before {
    mask-image: url(../images/ico_checkbox_1.svg);
}

.cta__hotels {
    display: flex;
    gap: 10px;
}

.cta__hotels span {
    background-color: #F8F8F8;
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    border: solid 2px #F8F8F8;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
}

.cta__hotels span strong {
    font-weight: 500;
    font-size: 14px;
}

.cta__hotels span p {
    display: flex;
    gap: 3px;
    margin: 0;
}

.cta__hotels span p i {
    background-image: url(../images/ico_star.svg);
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.cta__hotels input[type=checkbox]:checked+span {
    border-color: #c3f000;
    background-color: #f1ffb5;
}

a.lastphone {
    text-align: center;
    display: block;
    margin: 50px 0 0;
    color: #000;
    text-decoration: none;
    font-size: 27px;
}

.about {
    background-color: #f4f5fd;
    margin: 50px 0 0;
    padding: 50px 0 0;
}

.about__content {
    background-image: url(../images/galina.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 360px auto;
    padding: 0 380px 25px 20px;
}

.about__content h2 {
    margin: 0;
}

.about__content > :last-child {
    padding: 0;
    margin: 10px 0 0 0
}

.about__content ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about__content ul li h4 {
    margin: 0 0 5px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about__content ul li h4::before {
    content: '';
    mask-image: url(../images/ico_checkbox_1.svg);
    mask-repeat: no-repeat;
    width: 21px;
    height: 21px;
    background-color: #c3f000;
}

.about__content ul li p {
    margin: 0;
}

footer {
    background-color: #393939;
    padding: 20px 0;
}

footer .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    align-items: center;
}

footer .wrapper iframe {
    width: 100%;
    height: 400px;
    padding: 20px;
    background-color: #fff;
}

.footer__content {
    color: #fff;
    padding: 20px;
}

.footer__content a {
    color: #fff;
    text-decoration: none
}

.modal__getoffer {
    max-width: 800px;
    padding: 10px;
}

.ui-widget-header .ui-icon {
    background-image: url(../images/ui-icons_444444_256x240.png);
}

.getoffer {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: start;
}

.getoffer__cover {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.getoffer__cover span {
    width: 100%;
    height: 200px;
}

.getoffer__cover span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.getoffer__cover strong {
    font-weight: 500;
    font-size: 14px;
}

.getoffer__content {
    padding: 0 0 0 20px;
}

.getoffer__content__title {
    font-weight: 600;
}

.getoffer__content__manager {
    display: grid;
    grid-template-columns: 80px auto;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

.getoffer__content__manager__cover {
    width: 100%;
    height: 80px;
    position: relative;
}

.getoffer__content__manager__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px #c3f000;
}

.getoffer__content__manager__cover span {
    position: absolute;
    right: 0;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #FFE500;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 15px;
    font-weight: 600;
}

.getoffer__content__manager__cover span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #25d366;
}

.getoffer__content__manager__cmt {
    font-size: 14px;
}

.getoffer__content__manager__cmt strong {}

.getoffer__form {
    display: grid;
    gap: 10px;
}

.getoffer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.getoffer__form > :nth-child(2) {
    grid-template-columns: 1fr;
}

.getoffer__col {
    display: grid;
    gap: 3px;
}

.getoffer__col label {
    font-size: 14px;
    font-weight: 600;
}

.getoffer__col input,
.getoffer__col textarea,
.getoffer__col select {
    background-color: #f9f9f9;
    border: solid 1px #f0f0f0;
    padding: 12px 7px;
    border-radius: 5px;
    font-family: "Involve", sans-serif;
}

.getoffer__col textarea {}

.getoffer__cols button {
    align-self: end;
    font-family: "Involve", sans-serif;
    background-color: #c3f000;
    border: none;
    border-radius: 5px;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.getoffer__col__hot {}

.getoffer__col__hot label {
    display: flex;
    flex-direction: column;
}

.getoffer__col__hot label::before {
    content: '';
    background-image: url(../images/ico_hot.svg);
    background-position: center;
    background-size: cover;
    width: 24px;
    height: 24px;
}

.getoffer__col__hot label span {
    display: grid;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    grid-template-columns: 24px auto;
}

.getoffer__col__hot label span::before {
    content: '';
    mask-image: url(../images/ico_checkbox_0.svg);
    mask-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-color: #000;
}

.getoffer__col__hot label input[type=checkbox]:checked+span::before {
    mask-image: url(../images/ico_checkbox_1.svg);
}

.filetype {
    display: none;
}

.gethot {
    position: fixed;
    bottom: -410px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
    z-index: 10;
    /* padding: 25px; */
    box-shadow: rgba(0, 0, 0, .15) 0px 6px 16px;
    border-radius: 20px 20px 0 0;
    transition: all 1s ease 0s;
}

.gethot.active {
    bottom: 0;
    transition: all 0.5s ease 0s;
}

.gethot__btn {
    background-color: #ef3124;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* grid-template-columns: 24px auto; */
    gap: 10px;
    justify-content: center;
}

.gethot__btn::before,
.gethot__btn::after {
    content: '';
    mask-repeat: no-repeat;
    background-color: #fff;
}

.gethot__btn::before {
    mask-image: url(../images/ico_case.svg);
    width: 24px;
    height: 24px;
}

.gethot__btn::after {
    mask-image: url(../images/ico_arr.svg);
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
}

.gethot__btn.active::after {
    transform: unset;
}

.gethot__content {
    padding: 20px;
    background-color: #fff;
    height: 410px;
}

.gethot__content__title {
    font-size: 14px;
    text-align: center;
}

.gethot__content form {
    margin: 20px 0 0 0;
    display: grid;
    gap: 10px;
}

.gethot__col {
    display: grid;
    gap: 3px;
}

.gethot__col label {
    font-size: 12px;
    font-weight: 600;
}

.gethot__col select, .gethot__col input {
    background: #f2f4f7;
    border: none;
    padding: 15px 12px;
    font-size: 14px;
    border-radius: 8px;
}

.gethot__content form button {
    background: #c3f000;
    border: none;
    padding: 15px 0;
    font-family: "Involve", sans-serif;
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
}

.gethot__content form button:hover {
    background-color: #cdf716;
}

.blocker {
    z-index: 15;
}

.wa__icon {
    position: fixed;
    bottom: 80px;
    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: 5px 20px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
}

.privacy__form {
    font-size: 12px;
}

.privacy__form a {
    color: #000;
}

.gethot__content form .privacy__form {
    font-size: 10px;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media screen and (max-width: 999px) {
    .offers {
        gap: 10px;
    }
}

@media screen and (max-width: 899px) {
    .modal__getoffer {
        width: 100%;
    }
}

@media screen and (max-width: 849px) {
    .about__content {
        background-size: auto 48vw;
        padding: 0 15px 50vw;
    }
    footer {
        padding-bottom: 0;
    }
    footer .wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
    }
}

@media screen and (max-width: 799px) {
    .offers {
        grid-template-columns: repeat(2, 1fr);
    }
    .getoffer {
        grid-template-columns: 160px auto;
    }
    .getoffer__cover span {
        height: 20vw;
    }
}

@media screen and (max-width: 749px) {
    .getoffer {
        grid-template-columns: 1fr;
    }
    .getoffer__cover {
        display: none;
    }
}

@media screen and (max-width: 699px) {
    .home h1 {
        font-size: 60px;
    }
    .home h1 span {
        font-size: 45px;
    }
    .home__title {
        font-size: 27px;
    }
}

@media screen and (max-width: 649px) {
    .cta h2 {
        font-size: 21px;
    }
    .cta__cols {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 599px) {
    body {
        font-size: 14px;
    }
    body::before, body::after {
        height: 580px;
    }
    .home {
        padding: 40px 0;
    }
    .home h1 {
        font-size: 50px;
    }
    .home h1 span {
        font-size: 38px;
    }
    .seven {
        padding: 10px 10px;
        font-size: 16px;
    }
    .manager {
        grid-template-columns: 100px auto;
        gap: 15px;
    }
    .manager__cover {
        width: 100px;
        height: 100px;
    }
    .cta {
        padding: 15px;
    }
    .cta__hotels span {
        padding: 10px;
    }
    .cta__hotels span strong {
        font-size: 12px;
    }
    .cta__line__title {
        font-size: 14px;
        grid-template-columns: 16px auto;
        gap: 5px;
        font-weight: 700;
    }
    .cta__line__title::before {
        width: 16px;
        height: 16px;
    }
    .offer {
        height: auto;
        padding: 50px 0;
    }
    .getoffer__cols {
        grid-template-columns: 1fr;
    }
    .getoffer__content {
        padding: 0;
    }
    .getoffer__content__title {
        text-align: center;
    }
    .getoffer__col__hot label span {
        font-size: unset;
    }
    .getoffer__col__hot label {
        gap: 3px;
    }
}

@media screen and (max-width: 549px) {
    .cta h2 {
        font-size: 18px;
    }
    .offer {
        padding: 40px 0;
    }
    .offer__title h2,
    .offer__title strong {
        font-size: 18px;
    }
}

@media screen and (max-width: 499px) {
    .home {
        gap: 25px;
    }
    .home h1 {
        font-size: 40px;
    }
    .home h1 span {
        font-size: 30px;
    }
    .home__title {
        font-size: 21px;
    }
    .manager {
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
    }
    .offer {
        padding: 30px 10px;
    }
    div.offer__cta {
        padding: 15px 0;
        width: 100%;
        font-size: 12px;
    }
    .home__title.home__title2 {
        font-size: 18px;
    }
    /* div.offer__cta::before {
        display: none;
    } */
}

@media screen and (max-width: 449px) {
    .cta__hotels {
        flex-direction: column;
    }
    div.offer__cta::before {
        top: unset;
    }
    body::before, body::after {
        height: 595px;
    }
    .blocker {
        padding: 0 15px;
    }
}

@media screen and (max-width: 399px) {
    .home {
        gap: 15px;
    }
    .home__title {
        font-size: 16px;
    }
    .manager__content__ftr {
        flex-direction: column;
        gap: 10px;
    }
    .manager__content__ftr__name {
        justify-items: center;
    }
    .offers {
        grid-template-columns: 1fr;
    }
    .getoffer__content__title {
        display: none;
    }
    .getoffer__content__manager {
        grid-template-columns: 1fr;
        margin: 0 0 10px;
    }
    .getoffer__content__manager__cover {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    .getoffer__content__manager__cmt {
        text-align: center;
        font-size: 12px;
    }
    .getoffer__col label {
        font-size: 12px;
    }
}

@media screen and (max-width: 349px) {
    .home h1 {
        font-size: 30px;
    }
    .home h1 span {
        font-size: 22px;
    }
    .home {
        gap: 10px;
        padding: 20px 0;
    }
    .gethot__btn {
        font-size: 16px;
    }
    .gethot__btn::before {
        width: 20px;
        height: 20px;
    }
    .gethot__btn::after {
        width: 14px;
        height: 14px;
    }
    .gethot__content {
        padding: 15px;
    }
    .gethot__content__title {
        font-size: 12px;
    }
}

@media screen and (max-width: 599px) {
}