.topSection {
    border-radius: 0 0 100px 100px;
    overflow: hidden;
    height: auto;
    position: relative;
}
.topSection > video {
    cursor: auto;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;
}
.topSection > .topSectionContent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}
.topSection > .topSectionContent > h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 61px;
    line-height: 61px;
    letter-spacing: -2px;
    color: #ececec;
    max-width: 495px;
}
.topSection > .topSectionContent > h2 > b {
    font-weight: 400;
}
.topSection > .topSectionContent > div {
    display: flex;
    justify-content: space-between;
    max-width: 495px;
}
.topSection > .topSectionContent > div > a:first-of-type {
    background-color: #ececec;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #001f2e;
}
.topSection > .topSectionContent > div > a:last-of-type {
    background-color: #121212a3;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
}
.topSection > .topSectionContent > div > a:first-child > img {
    width: 24px;
    height: 24px;
}
.topSection > .topSectionContent > div > a:last-child > img {
    width: 17px;
    height: 17px;
}
@media (max-width: 767px) {
    .topSection > .topSectionContent {
            gap: 30px;
        }
    .topSection > .topSectionContent > h2 {
            font-size: 32px;
            line-height: 32px;
            text-align: center;
            max-width: unset;
            padding: 0 20px;
        }
    .topSection > .topSectionContent > div {
            max-width: unset;
            gap: 20px;
        }
    .topSection > .topSectionContent > div > a:first-of-type {
            padding: 12px 12px;
            gap: 8px;
            font-size: 14px;
            line-height: 14px;
        }
    .topSection > .topSectionContent > div > a:last-of-type {
            padding: 12px 12px;
            gap: 8px;
            font-size: 14px;
            line-height: 14px;
        }
    .topSection > .topSectionContent > div > a:first-child > img {
            width: 18px;
            height: 18px;
        }
    .topSection > .topSectionContent > div > a:last-child > img {
            width: 14px;
            height: 14px;
        }
}
@media screen and (max-width: 1100px) {
    .topSection {
            height: 700px;
            border-radius: 0 0 50px 50px;
        }
}
