html {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

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

li {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    background: rgba(255, 255, 255, 1);
    padding: 11px 33px;
    opacity: 1;
    border-radius: 4px;
    color: #0E3FA2;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 94px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

.phone {
    margin-top: 24px;
}

.phone__number {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -7%;
    text-align: right;
}

.products__title {
    font-weight: 400;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 48px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.products__item {
    background: linear-gradient(180deg, #1664FF 0%, #0D3C99 100%);
    width: 416px;
    height: 460px;
    opacity: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
}

.products__item-icon {
    width: 100px;
    height: 100px;
}

.products__item-info {
    color: #fff;
}

.products__item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 9px;
}

.products__item-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 34px;
}



@media screen and (max-width: 1300px){
    .container {
    max-width: 1000px;
}
    
}
@media screen and (max-width: 767px){
        .container {
    max-width: 576px;
}

.products__item {
    width: 316px;
    height: 420px;
    padding: 25px;
    justify-content: space-around;
    padding-bottom: 10px;
}

.products__item-icon {
    width: 75px;
    height: 75px;
}

.products__item-info {
    align-self: flex-end;
}

.products__item-title {
    font-size: 16px;
}

.products__item-descr {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: .5px;
}
    
}
@media screen and (max-width: 576px){
            .container {
    max-width: 476px;
}

.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.products__item {
    width: 300px;
    height: 220px;
    padding: 25px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
}

.products__item-info {
    margin-bottom: 20px;
}

.products__item-icon {
    width: 75px;
    height: 75px;
}
}

