.first-screen {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    font-size: 16px;
}

.first-screen::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: RGBA(0, 0, 0, 0.5);
    z-index: -1;
}


.first-screen__container {
    height: 100%;
}

.first-screen__flex {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-top: 65px;
}

.first-screen__background {
    top: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.first-screen__heading *{
    margin-bottom: 0;
    font-size: 500%;
    color: #dff8eb;
}

.first-screen__text {
    color: #FFF;
    font-size: 250%;
    margin-bottom: 50px!important;
    line-height: 1.5;
    font-weight: 400;
}

.first-screen__items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.first-screen__item {
    width: fit-content;
    background: #f2555C;
    padding: 10px 10px 10px 10px;
    border-radius: 12px;
    font-size: 87.5%;
    color: #FFF;
}
.first-screen__item:hover{
	color: #FFF;
	background: #f36269;
}
.first-screen__item:focus {
    box-shadow: rgba(242, 84, 91, 0.4) 0px 0px 0px 0.25rem;
}

.first-screen__bottom_text {
      margin-top: 50px;
}

.first-screen__bottom_text * {
color: #FFF;
}
@media screen and (min-width: 1199.98px) {
    .first-screen__bottom_text br {
        display:none;
    }
}
@media screen and (max-width: 1199.98px) {
    .first-screen__wrapper {
        font-size: calc(100% * 0.6);
    }
}

@media screen and (max-width: 991.98px) {
    .first-screen__flex {
        margin-top: 38px;
    }

.first-screen__bottom_text {
      margin-top: 40px;
}
}

@media screen and (max-width: 700.98px) {
    .first-screen__wrapper {
        font-size: calc(100% * 0.5);
    }

    .first-screen {
        padding-top: 95px;
        padding-bottom: 210px;
    }

.first-screen__bottom_text {
      margin-top: 30px;
}
}