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

body {
    font-family: 'Oswald', sans-serif;
}

.container {
    background-image: url(img/bg.png);
    background-position: center;
    background-size: cover;
    background-color: #050729d4;
    display: flex;
    gap: 50px;
    overflow: hidden;
    position: relative;
}

.sidebar {
    width: 20%;
    height: 100vh;
    background-color: #0b0b0d76;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    position: fixed;
}

.logo {
    font-size: 30px;
    font-weight: 600;
    line-height: 44.46px;
    color: #a276ff;
    text-decoration: none;
    cursor: pointer;
}

.logo span {
    font-weight: 700;
    letter-spacing: 0.045em;
    color: #ffffff;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 142px;
}

.menu__nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    list-style-type: none;
}

.menu__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    line-height: 25.19px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.menu__nav-link.active {
    color: #a276ff;
}

.menu__nav-link:hover {
    color: #a276ff;
}

.menu__nav-link:hover::before,
.menu__nav-link.active::before {
    content: '';
    border: 2px solid #a276ff;
    position: absolute;
    height: 40px;
    top: -10px;
    left: -120px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.copyright {
    font-size: 17px;
    font-weight: 400;
    line-height: 25.19px;
    color: #ffffff40;
    text-transform: uppercase;
}

.content {
    display: flex;
    position: relative;
    width: 80%;
    margin-left: 320px;
}
.socials {
    width: 170px;
    height: 60px;
    border-radius: 0px 0px 10px 10px;
    background: #A276FF;
    position: absolute;
    top: 0;
    right: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.content__container {
    margin: 50px auto;
    color: #ffffff;
    padding-right: 50px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
} 

h1 span {
    font-size: 90px;
    font-weight: 700;
    color: #a276ff;
}

.content__text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 45px;
}

.btn {
    margin-top: 20px;
    width: 352px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 100px;
    color: #ffffff;
    text-align: center;
    border-radius: 17px;
    border: 3px solid #ffffff;
    cursor: pointer;
    background-color: transparent;
    transition: color 0.3s ease, border 0.3s ease;
}

.btn:hover {
    color: #a276ff;
    border: 3px solid #a276ff;
}

.content__images {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.news {
    font-size: 35px;
    font-weight: 700;
    line-height: 100px;
    position: relative;
}

.news::after {
    content: url(img/triangle.svg);
    position: absolute;
    left: 90px;
}

.news__text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26.51px;
}

.item {
    margin: 100px 50px 50px 0;
    border-radius: 50px;
    padding: 40px;
    background-color: #ffffffd9;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 4px 0px #00000040;
    color: #111111;
    display: flex;
}

.item__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 92.79px;
}

hr {
    width: 89px;
    height: 7px;
    border-radius: 12px;
    background: #a276ff;
}

.item__subtitle {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26.51px;
}

.item__text {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 45px;
}

.item__image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caption {
    font-size: 13px;
    font-weight: 400;
    line-height: 21.54px;
}
