html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
iframe,
ol,
ul,
li,
form,
label,
i,
footer,
header,
menu,
nav,
a,
table,
thead,
tbody,
tfoot,
tr,
th,
td,
video,
canvas,
section,
/*commonly used tags*/
applet,
object,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
hgroup,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
dl,
dt,
dd,
fieldset,
legend,
article,
aside,
details,
embed,
figure,
figcaption,
output,
section,
summary,
time,
mark,
audio,
center,
ruby {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    position: relative;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    display: inline-block;
    text-decoration: none;
}

button {
    cursor: pointer;
}

input,
button,
select {
    display: inline-block;
    padding: 0;
    border: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
img {
    max-width: 100%;
}
body{
	background: #F5F5F5;
	font-family: "Inter", sans-serif;
}
.container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.main-area{
    margin:25px auto;
    display: grid;
    gap:25px;
}
.main-area__container { 
    display: grid; 
    grid-template-columns: 230px minmax(0, 1fr) 230px;
    grid-template-areas: "left content right";
    gap: 20px; 
}
.sidebars-column {
    display: contents;
}
.left-sidebar {
    grid-area: left;
}
.main-content,
.single-content,
.html-sitemap {
    grid-area: content;
    min-width: 0;
}
.right-sidebar {
    grid-area: right;
}
.main-content__title{
    color:#000000;
    font-size: 22px;
    font-weight: 800;
}
.main-content__cards{
    margin-top:20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
}



@media screen and (max-width: 1400px) {
    .main-area__container {
        grid-template-columns: 230px minmax(0, 1fr);
        grid-template-areas: "sidebars content";
    }
    .sidebars-column {
        display: flex;
        flex-direction: column;
        grid-area: sidebars;
        width: 100%;
    }
    .sidebars-column .sidebar {
        width: 100%;
    }
    .sidebars-column .right-sidebar {
        position: static;
        max-height: none;
    }
}
@media screen and (max-width: 1200px) {
   .main-content__cards{
        grid-template-columns: 1fr;
   } 
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
    .main-area__container{
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "sidebars";
    }
    .left-sidebar{
        display: none;
    }
    .sidebars-column {
        display: none;
    }
}
@media screen and (max-width: 576px) {
    
}