*, body {
    font-family: font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.fw-9 {font-weight: 900;}
.fw-8 {font-weight: 800;}
.fw-7 {font-weight: 700;}
.fw-6 {font-weight: 600;}
.fw-5 {font-weight: 500;}
.fw-4 {font-weight: 400;}
.fw-3 {font-weight: 300;}
.fw-2 {font-weight: 200;}
.fw-1 {font-weight: 100;}
.border-yellow {
    border-left: 3px #dfb76e solid;
}

input {
    border-radius: 30px;
    height: 50px;
    width: 90%;
    text-align: center;
}
input[type='text'] {
    border: 2px solid #8a8684;
    background: white;}
input::placeholder {font-size: 12px; color: grey}
input[type='submit'] {
    text-transform: uppercase;
    font-weight: 700;
    background: background: rgb(2,0,36);
background: background: rgb(232,217,85);
background: linear-gradient(180deg, rgba(232,217,85,1) 0%, rgba(255,183,5,1) 8%, rgba(242,223,96,1) 25%, rgba(156,148,69,1) 100%);}
/*
цвет с сайта: https://cssgradient.io/
*/
input[type='submit']:hover {
    background: rgb(232,85,138);
background: linear-gradient(180deg, rgba(232,85,138,1) 0%, rgba(210,68,114,1) 8%, rgba(242,96,114,1) 25%, rgba(105,30,53,1) 100%);
}



ul {list-style: none;
    padding: 0px;
}
li {
    background: url(img/tick.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    padding-left: 50px;
}


/*
img:hover {
    transform: rotate(60deg);
    transition: 2s;    
}
img {
    transform: rotate(-60deg);
    transition: 2s;
}


Анимация при наведении курсора на картинку:
deg-градусы
1turn-1 оборот
img:hover {
    transform: rotate(1turn);
    transition: 2s;    
}
img {
    transform: rotate(-60deg);
    transition: 2s;
}


transform: rotate(1turn); -вращение картинки
transform: scale(1.5);-увеличение картинки в 1,5 раза при наведении курсором
Анимация при наведении курсора на блок div:
*/

.bg-fon0 {
    background: #c0b2c26b;
    backdrop-filter: blur(5px);
}
.bg-fon2 > div > div > div:hover > img {
    transform: scale(1.5);
    transition: 2s;    
}
.bg-fon2 > div > div > div > img {
    transform: scale(1);
    transition: 2s;
}




.bg-fon1 { 
    background: url(img/fon.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-fon2 {
    background: url(img/LP-TradingBook_08_00.png);
    background-repeat: no-repeat;
    background-size: cover;
}
div {border:0px red solid;}