body {
    margin: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/trainer/background.png);
    background-size: cover; /* Масштабируем фон */
}
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 100px;
    font-weight: 900;
    white-space: nowrap;
    color: #000000;
}
h2 {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 900;
    white-space: nowrap;
    color: #000000;
}
.h2WhiteR{
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 900;
    white-space: nowrap;
    color: #ffffff;
}
.card{
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
}
.mainInfo{
    display: flex;
    align-items: center;
}
.LeftInf{
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: center;
    align-items: center;
}
.RiteInf{
    width: 50%;
}
.htoInf{
    height: 100%;
    border-radius: 50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-right: 50px;
    width: 45%;
}
.pWhite{
    color: white;
}
.button1 {
    min-width: 300px;
    min-height: 60px;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgb(255, 255, 255);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}

.b1::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(394px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #ffffff;
    box-shadow: 0 0 60px rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.b2::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(300px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #ffffff;
    box-shadow: 0 0 60px rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.b2 {
    top: 85%;
    position: fixed;
    left: 73%;
}


.button1:hover, .button:focus {
    color: #313133;
    transform: translateY(-6px);
}

.button1:hover::before, button:focus::before {
    opacity: 1;
}

.button1::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #ffffff;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.button1:hover::after, button:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}
.constructos-knopok {
    font-family: 'Montserrat', sans-serif;
    width: 250px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.constructos-knopok:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.constructos-knopok:focus {
    outline: none;
}

.constructos-knopok.bordovum {
    background-image: linear-gradient(to right, #179bd2, #32de8b, #23d47f, #1cbf71);
    box-shadow: 0 4px 15px 0 rgba(28, 179, 173, 0.75);
}

.constructos-knopok.adenscarlub {
    background-image: linear-gradient(to right, #232f3c, #3b4b5d, #205375, #43376b);
    box-shadow: 0 4px 15px 0 rgba(49, 62, 78, 0.75);
}
.buttO{
    margin-left: 20%;
}