* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

::selection {background: rgba(240, 231, 109, 0.5); color:#fff;}
::-moz-selection {background: rgb(240, 231, 109, 0.5); color:#fff;}
::-webkit-selection {background: rgb(240, 231, 109, 0.5); color:#fff;}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

.main {
    min-height: 100vh;
    background-image: url(../images/bg.png);
    background-repeat: repeat-y;
    background-size: cover;
}

.container {
    max-width: 1477px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    transform: scale(1);
    transition: all 0.5s;
}
.logo:hover{
    transform: scale(1.05);
}

.main__nav {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.main__nav__title {
    font-family: Roboto;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 0 20px;
}



.main__nav__links {
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0 25px;
    transition: all 0.2s;
}
.main__nav__links:active{
  color: #b4b4b4;
}

.main__title {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 55px;
    line-height: 85px;
    letter-spacing: -0.035em;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: #E4E7EF;
}

.main__text {
    font-family: Montserrat;
    font-weight: 100;
    font-size: 20px;
    line-height: 131.9%;
    letter-spacing: 0.035em;
    color: #DDE0EA;
}

.main__text {
    width: 1459px;
}

.main__info {
    margin-top: 90px;
    margin-right: 1px;
}



.main__btn__title {
    background: #EAD66B;
    box-shadow: 0px 0px 30px rgba(234, 214, 107, 0.2);
    border-radius: 65px;
    position: absolute;
    width: 247px;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    margin: 30px 0;
    padding: 20px;
    text-transform: uppercase;
    color: #282828;
}


.main__nav__links_auth {
    background: #EAD66B;
    box-shadow: 0px 0px 30px rgba(234, 214, 107, 0.2);
    border-radius: 65px;
    width: 150px;
    height: 40px;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
    text-transform: uppercase;
    color: #282828;
}

.main__nav__links_auth:active {
    background-color: beige;
}

.main__nav__links_auth:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.item1 {
    position: relative;
    left: 0px;
    bottom: -50px;
    width: 680px;
    transition: all 0.2s;
    border-radius: 40px;
    transition: all 0.2s;
}

.item1:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}


.item2 {
    position: relative;
    left: 766px;
    bottom: 291px;
    width: 680px;
    border-radius: 40px;
    transition: all 0.2s;
}

.item2:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}




.hs{
    position: relative;
    left: 315px;
    top: 71px;
}

.underline-one {
    color: #fff;  
    position: relative;
    cursor: pointer;
    text-decoration: none; 
}
.underline-one:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #fff; 
    transition: width 0.5s; 
}

.underline-one:hover:after {
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    background-color: #EAD66B; 
    transition: width 0.5s;  
}