.mainContent {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.mainContentBox {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 var(--marginGlobal);
    text-align: center;
}

.blueBackground {
    width: 100%;
    background: var(--blueGradient);
    display: flex;
    justify-content: center;
}

.mainHead {
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainHead img {
    width: 100%;
}

.mainHeadBox {
    position: absolute;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.mainHeadBoxTitle {
    margin-bottom: 20px;
}

.mainHeadBox button {
    padding: 20px 60px;
    font-weight: bold;
    font-family: inherit;
    color: white;
    border: none;
    border-radius: 16px;
    background: linear-gradient(to right, #f5ac55 0%, #bc7e40 100%);
    cursor: pointer;
    font-size: 16px;
}

.mainHeadBox a {
    margin: 20px 0;
}

.mainWhiteLine {
    background-color: white;
    height: 2px;
    width: 100%;
    border-radius: 20px;
}

.mainHeadInfo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.mainMidInfo {
    margin: 40px 0;
}

.mainMidInfoItems {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    margin-top: 40px;
}

.mainMidInfoItems img {
    width: auto;
    height: 100px;
    margin-bottom: 10px;
}

.mainMidInfoItems h3 {
    font-weight: 400;
}

.mainMidInfoItem {
    width: 300px;
}

.mainTeamInfo {
    width: 100%;
    color: white;
}

.mainTeamInfo h1 {
    margin-top: 40px;
}

.mainTeamInfoItems {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    color: white;
    gap: 60px;
}

.mainTeamInfoItem {
    width: 100%;
}

.mainTeamInfoItem img {
    width: 200px;
    height: auto;
    border-radius: 38px;
    margin-bottom: 6px;
    box-shadow: -6px -4px white;
}

.mainTeamInfoItem h5 {
    font-weight: 400;
}

.publsInfo {
    color: black;
    margin-top: 40px;
}

.publsInfoItems {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    color: black;
    gap: 40px;
}

.publsInfoItem {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 100%;
    display: flex;
    align-items: center;
}