*{
    box-sizing: border-box;
    position: relative;
}
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 24px;
}
img{
    max-width: 100%;
    height: auto;
}
h1{
    line-height: 40px;
}
h2, h3, h4, h5, h6{
line-height: 32px;
}
.container{
    max-width: 1500px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.btn {
    background: #47CF73;
    text-decoration: none;
    color: #fff;
    padding: 15px 55px;
    border-radius: 4px;
    display: inline-flex;
    font-size: 22px;
}
.header{
    padding-top: 100px;
}
.header-navbar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 99;
}
.header-navbar__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.header-logo img{
    height: 60px;
    width: auto;
}

.header-content__wrapper {
    align-items: center;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.header-content__props {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 35px 0;
}
.header-content__props-title {
    color: #c2c2c2;
    font-size: 14px;
    margin-bottom: 5px;
}
.header-content__props-value{
    font-weight: bold;
}
.header-content__img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}
.header-content__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.table {
   display: flex;
   justify-content: space-between;
    gap: 30px;
    margin: 55px 0;
}

.table-list{
    flex: 1 1 auto;
    background-color: #F8F7FC;
    border-radius: 10px;
    padding: 20px;
}
.table-list__wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.table-list:last-child .table-list__wrapper{
    grid-template-columns: auto;
}
.table-item{
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.table-item__title{
    font-size: 16px;
    color: #c2c2c2;
    margin-bottom: 10px;
}
.table-item__value{
    font-weight: bold;
    font-size: 22px;
}
.content-block {
    align-items: center;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 55px 0;
}
.content{
    background-color: #F8F7FC;
    padding: 55px 0;
}
.content-white{
    background-color: #fff;
}
.content-block__img{
    height: 500px;
}
.content-block__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.content-block__text-more{
    text-align: right;
    padding: 10px 0;
}
.content-block__text-more a{
    color: #1a1a1a;
}
.content-block__action{
    margin-top: 35px;
}
.footer{
    background-color: #1a1a1a;
    padding: 55px 0; 
}
.footer-navbar {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
.footer-nav ul{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    list-style-type: none;
    padding: 0;
}
.footer-nav ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.footer-images ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
}
#cookie-note{
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
 width: 100%;
    transform: translateX(-50%);
    padding: 5px 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
   
}
.cookie-note__wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
}
#cookie-note p{
    margin: 0;
    font-size: 11px;
    line-height: 13px;
    text-align: left;
    color: black;
    flex: 1 1 auto;
}

.cookie_accept{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 120px;
    flex: 1 1 auto;
  border: none;
    font-size: 12px;
    padding: 10px 20px;
    background: #F8F7FC;
    color: #1a1a1a;
}
@media (min-width: 576px){
    #cookie-note.show{
        display: flex;
    }
}

@media (max-width: 820px){
    #cookie-note.show{
        display: block;
        text-align: left;
    }
    .cookie-note__wrapper{
        flex-wrap: wrap;
    }
    .header-content__wrapper {
       display: flex;
       flex-direction: column-reverse;
    }
    .header-content__inner{
        display: flex;
        flex-direction: column;
    }
    .header-content__text{
        order: 3;
    }
    .header-content__props {
        flex-wrap: wrap;
        order: 2;
    }
    .header-content__action{
        order: 1;
    }
    .header-content__action .btn{
        width: 100%;
        justify-content: center;
    }
    .table{
        flex-direction: column;
    }
    .content-block{
        grid-template-columns: auto;
    }
    .content-block__action .btn{
        width: 100%;
        justify-content: center;
    }
    .footer-navbar{
        flex-direction: column;
    }
    .footer-images ul{
        justify-content: flex-start;
    }
}
@media screen and (max-width: 420px){
    h1{
        font-size: 36px;
    }
    .btn{
        font-size: 18px;
        padding: 10px 25px;
    }
    .header-logo img{
        height: 45px;
    }
    .header-content__img{
        height: 250px;
    }
    .header-navbar__wrapper{
        padding: 5px 0;
    }
    .table-item__value{
        font-size: 18px;
    }
    .content-block__img {
        height: 250px;
    }
}