

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
    background-color: #f7f7f7;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

body{
    box-sizing: border-box;
    margin: 0px;
}




header{
    background-color: #1d1e22;
    position: sticky;
    z-index: 99;
    top: 0px;
    padding-left: 12px;
    padding-right: 12px;
    height: 3em;
    color: white;
    display: flex;
    align-items: center;
}

main{
    margin: 12px;
}

header>div{
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

header>div>a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumbs{
    background: white;
    position: sticky;
    z-index: 98;
    top: 48px;
    padding: 3px;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 0;
}

.contr{
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumbs__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 12px 0;
    font-size: 12px;
}

.breadcrumbs__inner a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .1px;
    color: #d92732;
    text-decoration: none;
}


.breadcrumbs__inner .icon {
    fill: currentColor;
    font-size: 8px;
    margin: 0 .4em 0 .5em;
}

.nav{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 16px 0;
    text-decoration: none;
}

.navlink{
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 344px;
    margin: 16px;
    padding: 16px;
    box-shadow: 0 4px 8px 0 hsla(210, 5%, 16%, 0.1);
    background-color: white;
    letter-spacing: .1px;
    color: var(--navlink__clr);
    transition: none;
        text-decoration: none;
}

.navlink:hover{
    box-shadow: 0 2px 3px 0 hsla(210, 5%, 16%, 0.1);
    transition: none;
    background-color: #e5e5e5;
}

.navlink>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navlink__title{
        font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: black;
    text-decoration: none;
    margin: 0px;
}
.navlink__descr{
    font-size: 12px;
    text-decoration: none;
}

.search__title{
    margin: 20px 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: .12px;
    color: var(--search__title-clr);
    text-align: center;
}

.desc__title{
    margin: 20px 0 16px;
    font-size: 12px;
    line-height: 1.17;
    letter-spacing: .12px;
    color: var(--search__title-clr);
    text-align: center;
}

.icon-in-circle{
    margin-right: 12px;

}

.icon-in-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-in-circle svg {
    width: 100%;
    height: 100%;
}

/* Prevent layout overflow */
html, body {
    overflow-x: hidden;
}

/* Make sure elements include padding inside width */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Ensure nav list does not create extra width */
.nav {
    padding-left: 0;
    padding-right: 0;
}

/* Prevent cards from exceeding container width */
/* Keep cards at the intended size, but allow shrinking on small screens */
.navlink {
    width: 100%;
    max-width: 344px;
}

/* Make the list layout behave consistently across browsers */
.nav {
    padding: 0;
    margin: 16px 0;
}