@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --accent: #3992ff;
    --light: #e3ecff;
}


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;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--accent);
}

body {
    font-family: "Golos Text", sans-serif;
    font-size: 14px;
    background: #f5f5f5;
    line-height: 1.4;
    color: #222;
}

textarea, input {
    font-family: "Golos Text", sans-serif;
    font-size: 14px;
}

.main-container {
    width: 1240px;
    margin: 0 auto;
}

.left-side {
    width: 260px;
    background: #fff;
    border-radius: 15px;
    float: left;
    height: calc(100vh - 40px - 66px - 20px);
    margin-top: 20px;
    position: fixed;
    padding: 20px;
}

.left-side-copyright {
    width: 260px;
    position: fixed;
    height: 66px;
    border-radius: 15px;
    bottom: 20px;
    background: #fff;
    font-size: 12px;
    padding: 18px 20px;
    line-height: 1.3;
    color: #636363;
}

.logo {
    display: flex;
}

.logo-round {
    width: 36px;
    padding-top: 10px;
    padding-left: 11px;
    height: 36px;
    font-size: 11px;
    background: var(--accent);
    border-radius: 50px;
}

.logo-round i {
    color: #fff;
}

.logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 7px;
    margin-left: 10px;
}

.logo-round svg {
    margin-top: 9px;
    margin-left: 10px;
}

.menu-place {
    display: flex;
    margin-top: 45px;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-bottom {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-item { 
    display: flex; 
    width: 100%;
    transition: 0.3s;
}

.menu-item-round {
    width: 36px;
    height: 36px;
    background: var(--light);
    border-radius: 50px;
    color: var(--accent) !important;
    text-align: center;
    transition: 0.3s;
}

.menu-item-round i {
    margin-top: 12px;
    font-size: 12px;
    transition: 0.3s;
}

.menu-item-text {
    font-size: 14px;
    color: #222 !important;
    margin-top: 8px;
    margin-left: 12px;
    transition: 0.3s;
}

.menu-item:hover .menu-item-round { 
    background: var(--accent) !important;
    color: #fff !important;
}

.menu-item:hover  { 
    transition: 0.3s;
}

.content-side {
    margin-top: 20px;
    float: left;
    margin-left: 280px;
    width: 680px;
}

.content-block {
    width: 100%;
    border-radius: 15px;
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
}

.content-block h2 {
    font-size: 19px;
    font-weight: 600;
    margin-top: -2px;
    color: #222 !important;
}

.content-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222 !important;
    margin-top: 26px;
}


.content-block p {
    font-size: 13px;
    margin-top: 17px;
    margin-bottom: 22px;
    color: #222 !important;
}

.content-block-pic {
    width: 100%;
    border-radius: 10px;
    height: 340px;
}

.right-side {
    width: 260px;
    background: #fff;
    border-radius: 15px;
    float: right;
    height: calc(100vh - 40px);
    margin-top: 20px;
    position: fixed;
    margin-left: 980px;
    padding: 20px 22px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}

.content-block-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.content-block-single-tag {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 15px;
    color: var(--accent) !important;
    background: var(--light);
    transition: 0.3s;
}

.content-block-single-tag:hover {
    background: var(--accent) !important;
    color: #fff !important;
    transition: 0.3s;
}

.right-side-block-tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.right-side-single-tag {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 15px;
    color: var(--accent) !important;
    background: var(--light);
    transition: 0.3s;
}

.right-side-single-tag:hover {
    background: var(--accent) !important;
    color: #fff !important;
    transition: 0.3s;
}

.article-block-tags {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.article-single-tag {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 15px;
    color: var(--accent) !important;
    background: var(--light);
    transition: 0.3s;
}

.article-single-tag:hover {
    background: var(--accent) !important;
    color: #fff !important;
    transition: 0.3s;
}

.right-side-title {
    font-size: 16px;
    font-weight: 600;
}

.right-side-popular-block {
    gap: 20px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.right-side-popular-link {
    font-size: 14px;
    color: #222 !important;
    display: block;
}

.right-side-popular-link:hover {
    color: #464646 !important;
}

.article p {
    font-size: 14px;
    margin-bottom: 0;
}

.first-p {
    font-size: 13px !important;
}

.article .content-block-pic {
    margin: 22px 0 26px 0;
}

.article h2 {
    margin-top: 26px;
}

.article h1 {
    font-size: 19px;
    font-weight: 600;
    margin-top: -2px;
    color: #222 !important;
}

.contact-pic {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    display: block;
}

.contact-pic-place {
    padding-top: 30px;
    height: 260px;
}

.gray-text {
    font-size: 12px !important;
    color: #868686 !important;
    margin-top: 20px;
    display: inline-block;
}

.admin-add {
    width: 36px;
    position: fixed;
    height: 36px;
    font-size: 11px;
    background: var(--accent);
    border-radius: 50px;
    left: 20px;
    bottom: 20px;
    padding-top: 10px;
    padding-left: 13px;
}

.admin-add i {
    color: #fff;
}

.edit-input-text {
    width: 100%;
    border-radius: 6px;
    outline: none;
    border: 1px #eee solid;
    padding: 6px 8px;
    margin-bottom: 15px;
}

.edit-inputs-place {
    margin-top: 30px;
}

.edit-submit-button {
    display: block;
    border-radius: 50px;
    color: #fff;
    background: var(--accent);
    font-weight: 500;
    border: none;
    outline: none;
    margin-top: 20px;
    padding: 12px 20px;
}

.editing-add-tag {
    background: var(--light);
    border-radius: 5px;
    padding: 2px 6px;
    cursor: pointer;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: 3px;
    font-size: 12px;
}

.editing-add-tag:hover {
    background: var(--accent);
    color: #fff;
}

.ca-img {
    margin-top: 30px;
    border-radius: 10px;
    max-width: 100%;
}

.ca-img-link {
    background: none !important;
    padding: 0 !important;
    cursor: zoom-in;
}