* {
    margin: 0;
    padding: 0;
}

body {
    background: rgba(246, 246, 246, 1);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    position: absolute;
    width: 240px;
    height: 194px;
    left: calc(50% - 240px/2);
    top: calc(50% - 194px/2);
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 240px;
    height: 54px;
    background: #00AC86;
    border-radius: 32px;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: rgba(2, 157, 122, 1);
}

.icon {
    width: 20px;
    height: 20px;
}

.link-to-services {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}






