@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,600);
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
ul,
ol,
li {
    list-style: none;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit; 
}
html,
body {
    background: #1A1A1A;
    height: 100%;
    line-height: 1;
    color:#CAFF33;
    font-family:Montserrat;
}
button,
input {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
}
button {
    cursor: pointer;
    background-color: inherit;
}
/*--------------------------------------*/

.wrapper {
    overflow: hidden;
    margin: 100px 0px;
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}


.items {
    display: flex;
    flex-direction: column;
    
}

.item {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    
    border-bottom: #CAFF33 1px solid;
}
.item:not(:last-child) {
    margin-bottom: 60px;
}
.item__title {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.1;
    font-size: 50px;
}
.item__link {
    display: flex;
    gap: 15px;
    align-items:center;
}


.item__description {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
}
.item__description:not(:last-child) {
    margin-bottom: 20px;
}

.list-item {

}
.list-item__page {
    padding: 10px 0px;
}
.list-item__link {

}
@media(max-width:991.98px){
    .item__title {
        margin-bottom: 18px;
        font-size: 40px;
    }
    .item__link img {
        width: 24px;
        height: 24px;
    }
    .item__description  {
        font-size: 22px;
    }
}
@media(max-width:767.98px){
    .item__title {
        font-size: 30px;
        margin-bottom: 12px;
    }
    .item__description  {
        font-size: 18px;
    }
    .item__description:not(:last-child) {
        margin-bottom: 10px;
    }
}



