* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.mt-3 {
    margin-top: 1.5rem;
}

.header {
    padding: 20px;
}

.header h1 {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}

.container {
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
}

.shadow {
    background-image: url('img/shadow.png');
    background-position: 0 0;
    background-repeat: repeat-x;
    height: 30px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.text {
    flex: 1 1 300px;
    padding: 20px;
}

.text-title {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.link-button {
    display: block;
    padding: 7.5px 10px;
    transition: all 0.2s ease, visibility 0s;
    background: #222222;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.link-button:hover {
    background: #333333;
}

.photos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.photo {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    border-style: solid;
    border-width: 6px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
    display: block;
    overflow: hidden;
}

.photo-item {
    width: 100%;
}

.contats {
    margin-top: 20px;
}

.contats p {
    text-align: center;
    font-size: 18px;
}

.link-phone {
    color: #222222;
}

.footer {
    padding: 20px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .text-title {
        font-size: 20px;
    }
}

