
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.h1{
    font-size: 5rem;
}

.h2{
    font-size: 4rem;
}

.main{
    flex: 1;
}

.block {
    width: 100%;
    height: 800px;
    padding-top: 10px;
    position: relative;
}

.block::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: var(--cover);
    filter: brightness(80%);
    z-index: -1;
}

.bk-content{
    width: 70%;
    height: 100%;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo img {
    width: 60px;
    height: 60px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #002F47;
    margin: 0;
}

.bk-text {
    max-width: 600px;
}

.bk-title {
    font-size: 56px;
    font-weight: 800;
    color: #002F47;
    margin-bottom: 15px;
}

.bk-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bk-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #002F47;
    font-weight: 500;
    padding: 10px 0;
}

.bk-icon {
    width: 30px;
    height: 30px;
}

.block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 30%,  
        rgba(255, 255, 255, .7) 70%,  
        rgba(255, 255, 255, 0) 100%  
    );
    pointer-events: none;
    z-index: -1;
}

.block-2{
    position: relative;
    width: 100%;
    max-height: 900px;
    padding: 40px 0 70px;
    background-color: #002F47;
}

.bk-2-content{
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.block-2 .h1{
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.priv{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
    gap: 50px
}

.priv-card {
    flex: 1;
    min-width: 550px;
    background: #ffffff1a;
    border-radius: 20px;
    padding: 40px 20px;
    border: 1px solid #ffffff33;
    position: relative;
    font-size: 20px;
    color: white;
}

.priv-card:hover {
    background: #ffffff26;
    border-color: #ffffff66;
    transform: translateY(-5px);
}

.carous{
    min-height: 800px;
    max-height: 800px;
    object-fit: cover;
}

.round{
    background-color: #002F47;
    opacity: .8;
    border-radius: 50%;
}

footer{
    width: 100%;
    height: 200px;
}

footer hr{
    margin-top: 0; margin-bottom: 20px;
}
