@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* 
{
    box-sizing: border-box;
    font-family: 'Montserrat';
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, li, img
{             
    margin: 0;
   	padding: 0;
    border: 0;
    vertical-align: middle;

    /* scroll-behavior: smooth; */
}

main
{
    width: 100%;
    height: 100vh;

    display: flex;
}

/* Блок слева с кнопок "На главную" */
.Main_Button
{
    width: fit-content;

    padding: 0 25px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo
{
    width: fit-content;
    height: fit-content;

    margin-right: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo img
{
    width: 80px;
    height: auto;

    display: block;
}

.logo hr
{
    width: 100%;

    border: 1px solid #BFBFBF;
    margin: 10px auto;
}

.Main_Button a
{
    width: fit-content;
    height: fit-content;

    border-radius: 10px;
    background-color: #F47920;
    border: 2px solid #F47920;

    text-decoration: none;

    padding: 15px;

/*     transform-origin: center;
    transform: rotate(270deg); */

    display: block;

    transition: all 0.5s ease; 
}

.Main_Button a:nth-child(3)
{
    display: none;
}

.Main_Button a p
{
    width: max-content;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    
    transition: all 0.5s ease; 
}

.Main_Button a:hover
{
    border-radius: 45px;
    background-color: #c45100;
    border: 2px solid #c45100;
}

.Main_Button a:hover p
{
    color: #ffffff;
}


/* Блок слева с кнопок "На главную" */

iframe
{
    width: 100%;
    height: auto;
}
