* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: caregiver;
    font-family: 'Roboto', sans-serif;
    background: black;
}

/* Home */
.container {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    max-width: 415px;
    overflow-x: hidden;
}

.container::-webkit-scrollbar,
.modal::-webkit-scrollbar {
    display: none;
}

.container,
.modal {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.container__item {
    display: flex;
    justify-content: center;
    position: relative;
}

.container__item img {
    width: 100%;
}

.btn {
    padding: 0;
    margin: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.wrape {
    width: 100%;
    height: 60px;
    background: transparent;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0px;
}

.wrape-professional {
    bottom: 34.7%;
}

.wrape-caregiver {
    bottom: 27.7%;
}

.wrape-professional, 
.wrape-caregiver {
    height: 43px;
}

.wrape-visit-uk,
.wrape-visit-usa {
    height: 46px;
}

.wrape-visit-uk {
    bottom: 197px;
}

.wrape-visit-usa {
    bottom: 137px;
}

.wrape-home {
    height: 85px;
    bottom: 0;
}

.wrape-professional a,
.wrape-caregiver a {
    width: 260px;
}

.wrape-visit-uk a,
.wrape-visit-usa a {
    width: 330px;
}

.btn-caregiver {
    background-image: url('../imgs/Botton_2.png');
}

.btn-professional {
    background-image: url('../imgs/Botton_1.png');
}

.btn-visit-usa {
    background-image: url('../imgs/web_site_US.png');
}

.btn-visit-uk {
    background-image: url('../imgs/web_site_UK.png');
}

/* modal */
.modal {
    max-width: 415px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    padding: 10px;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0px);
    background-color: rgba(0, 0, 0, 0.4);
    overflow-y: hidden;
    z-index: 2;
}

/* Modal Content */
.modal-content {
    margin: 0 auto;
    padding: 0px;
    width: 90%;
    background-color: #fefefe;
    border-radius: 25px;
}

.modal-content img {
    width: 100%;
}