@font-face {
    font-family:'Open Sans';
    src: url(fonts/opensans-8a8b2b0f.woff2);
}

@font-face {
    font-family:'Oswald';
    src: url(fonts/oswald-c61ce773.woff2);
}

@font-face {
    font-family:'Raleway';
    src: url(fonts/raleway-8b2d2301.woff2);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

* {
    box-sizing: border-box;
}

html {
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;

    width: calc(100% - 40px);
    max-width: 880px;
    margin: 0 auto;
    padding: 20px 0;
}

main h1, main h2, main p {
    width: 100%;
}

.header {
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.logo {
    display: flex;
    width: 250px;
    padding-top: 10px;
}

.logo img {
    width: 100%;
    height: auto;
}

h1 {
    padding-top: 30px;

    font-family: "Oswald", Sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
    color: #000000;
}

h2 {
    padding-top: 20px;

    font-family: "Oswald", Sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    color: #000000;
}

p {
    padding-bottom: 10px;

    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000000;
}

p.post {
    width: 80%;

    font-size: 13px;
    line-height: 18px;
    opacity: 0.5;
    text-align: center;
}

b {
    font-weight: bold;
}

.button-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F32F2F;
    background-image: linear-gradient(90deg, #F32F2F 0%, #B40404 84%);
    border-radius: 60px 60px 60px 60px;
    padding: 20px 50px 20px 50px;

    font-family: "Open Sans", Sans-serif;
    font-size: 28px;
    font-weight: bold;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;

    cursor: pointer;
}

.promo-block {
    height: 250px;
    margin-bottom: 10px;
    background: url(../img/cyber-sec-1.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    height: 186px;
    padding: 20px;
    background-color: #FDFD96;
    border-radius: 10px 10px 10px 10px;
}

.grid-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.grid-item-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.grid-item-title {
    margin-bottom: 10px;

    font-family: "Raleway", Sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.grid-item-text {
    font-family: "Open Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    text-align: center;
}

.custom-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
}

.custom-list-li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.custom-list-li-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;
}

.custom-list-li-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center left;
}

.custom-list-li-text {
    font-family: "Open Sans", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
}

.color-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;

    width: 100%;
    padding-top: 50px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #FFEFEE;
    border-radius: 10px;
}

.color-block-title {
    font-family: "Oswald", Sans-serif;
    font-size: 35px;
    font-weight: bold;
    line-height: 45px;
    color: #383434;
    text-align: center;
}

.color-block p.text {
    text-align: center;
    color: #383434;
}

.color-block-img {
    width: 100%;
    max-width: 300px;
}

.color-block-img img {
    width: 100%;
    height: auto;
}

.color-block .custom-list {
    gap: 0;
}

.color-block .custom-list-li {
    justify-content: center;
    gap: 10px;
}

.color-block .custom-list-li-icon {
    width: 20px;
    height: 20px;
}

.color-block .custom-list-li-icon svg {
    fill: #383434;
}

.color-block .custom-list-li-text {
    color: #383434;
}


footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    height: 80px;
    background-color: #F2F2F2;
}

footer a {
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}





@media screen and (max-width: 768px) {
    h1 {font-size: 36px; line-height: 50px;}
    .grid {grid-template-columns: repeat(1, 1fr);}
    .custom-list-li:not(.color-block .custom-list-li) {padding: 10px 15px; border-radius: 10px; background-color: #f3f1f1;}
    .custom-list-li-icon {min-width: 30px;}
    .custom-list-li-text {font-size: 18px;}
    .color-block {padding: 30px 20px;}
    .color-block .custom-list {gap: 10px;}
    .color-block .custom-list-li {justify-content: flex-start; align-items: flex-start;}
    .color-block .custom-list-li-icon {margin-top: 6px;}

    footer {height: 100px; flex-wrap: wrap; gap: 10px; padding: 20px;}
    footer a {display: flex; padding: 0 10px;}
}