* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*#2598dc*/
/*#11448a*/
body {
    /*font-family: Arial, sans-serif;*/
    font-family: 'Inter', sans-serif;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_header {
    /*max-width: 1100px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    z-index: 1000;
    /*border: 1px solid black;*/
    top: 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    /*border: 1px solid black;*/
}
.container_nav{
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
    align-items: center;
    width: 50%;
    /*border: 1px solid black;*/
}
.nav a {
    margin-right: 20px;
    padding-left: 10px;
    font-weight: 500;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    /*width: 100px;*/
    /*height: 70px;*/

    /*border: 1px solid black;*/
}
.logo img {
   width: 180px;
   height: 65px;
}
.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    color: #11448a; /* акцентный синий */
    /*border: 1px solid black;*/
}
.icon img{
    width: 80px;
    height: 80px;
}
.icon svg {
    width: 100%;
    height: 100%;
}


.btn {
    padding: 10px 18px;
    width: 250px;
    border: 1px solid #333;
    border-radius: 6px;
    cursor: pointer;
}


.btn--primary {
    background: #11448a;
    color: #fff;
    border-color: #11448a;
}

.btn--primary:hover {
    /* transform: translateY(-1px); */
    /* padding: calc(1em + 1px) calc(2em + 1px); */
    opacity: 0.9;
    background-color: #2598dc;
}


.hero {
    background: #f8fafc;
    background-image: url("../images/font-whiet.png");
    background-size: cover;
    height: 600px;
    background-position: center;
    padding: 30px 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
    align-items: center;
    color: #fff;
    /* border: 1px solid white; */
}

.hero_text{
    margin-top: 25px;
    margin-left: 20px;
    /* width: 100%-100px; */
    /* border: 1px solid white; */
}
/* .hero__image {
   /* height: 260px;
    background: #e5e7eb;
    border-radius: 12px;*/
/*    height: 300px;
    background-image: url("images/font-whiet.png");
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat;
    border-radius: 12px;*/

/*.hero__image img {
    width: 300px;
}*/
.warning{
    display: flex;
    align-content: center;
    border: 1px solid black;
}
.section {
    padding: 70px 0;
}

.section--gray {
    background: #f3f4f6;
}

.section__title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333333;
}

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card_inner {
     display: flex;
    flex-direction: column;      /* элементы в столбик */
    align-items: center;         /* выравнивание по горизонтали */
    justify-content: center;     /* выравнивание по вертикали */
    
}
.card {

    padding: 24px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.cta {
    background: #1f2933;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.free {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    
}
.free div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.free h2{
    font-size: 24px;
    text-align: center;
    color: #333333;
}
.footer {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 20px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__text {
        width: calc(100% - 100px);
    }
    .nav {
        display: none;
    }
    .btn {
        width: 250px;
    }
}
@media (max-width: 768px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;

    }
    .hero__text {
        width: calc(100% - 100px);
    }

    .nav {

        display: none;
    }
    .btn {
        width: 250px;
    }
}
@media (max-width: 446px) {
    .hero__text {
        font-size: 20px
    }
    /* .btn {
        display: none;
    } */
}

.form {
    max-width: 500px;
    margin: 30px auto 0;
    display: grid;
    gap: 15px;
    border: 0px solid white;
    
}

.form input {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    color: #696969;
}

.form input:focus {
    outline: none;
    border-color: #2563eb;
}
.form button {
    width: 200px;

}
